:root {
  --bg: #fff0e3;
  --accent: #f05f78;
  --accent2: #6a56d6;
  --accent3: #20b7a1;
  --blue: #428cf4;
  --coral: #ff7056;
  --text: #34283d;
  --muted: #6b5f75;
  --white: #ffffff;
  --shadow: rgba(52, 40, 61, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 95, 120, 0.12), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(106, 86, 214, 0.1), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

.page { max-width: 1120px; margin: 0 auto; padding: 32px 20px 64px; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--coral);
  margin: 0 0 12px;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero__tagline {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 24px;
}

.hero__links { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__links a {
  text-decoration: none;
  color: var(--white);
  background: var(--accent2);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero__links a:last-child {
  background: var(--white);
  color: var(--accent2);
  box-shadow: 0 8px 24px var(--shadow);
}

.hero__visual { position: relative; min-height: 320px; }

.hero__photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px var(--shadow);
  transform: rotate(-1.5deg);
}

.sheet {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 12px 30px var(--shadow);
}

.sheet--a {
  background: linear-gradient(135deg, var(--accent), var(--coral));
  top: -18px;
  right: -12px;
  transform: rotate(8deg);
}

.sheet--b {
  background: linear-gradient(135deg, var(--accent3), var(--blue));
  bottom: -20px;
  left: -16px;
  transform: rotate(-12deg);
}

.trail__intro { margin-bottom: 36px; }

.trail__intro h2,
.legal h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 10px;
}

.trail__intro p { color: var(--muted); margin: 0; max-width: 40rem; }

.trail__path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  padding-top: 28px;
}

.trail__line {
  position: absolute;
  top: 8px;
  left: 4%;
  right: 4%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 12px,
    transparent 12px 20px
  );
  opacity: 0.45;
}

.station {
  background: var(--white);
  border-radius: 20px;
  padding: 22px 18px 20px;
  box-shadow: 0 14px 34px var(--shadow);
  position: relative;
  border-top: 6px solid var(--accent);
}

.station--studio { border-top-color: var(--coral); }
.station--projects { border-top-color: var(--accent2); transform: translateY(8px); }
.station--diagrams { border-top-color: var(--blue); }
.station--paper { border-top-color: var(--accent3); transform: translateY(14px); }
.station--progress { border-top-color: #ffb63f; transform: translateY(6px); }

.station__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.station h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.station p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 72px 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 40px var(--shadow);
}

.gallery figure:nth-child(2) img { transform: rotate(2deg); }
.gallery figure:nth-child(3) img { transform: rotate(-2deg); }

.legal {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  margin-bottom: 24px;
  box-shadow: 0 12px 36px var(--shadow);
}

.legal p { color: var(--muted); }

.legal a { color: var(--accent2); }

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 32px;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .trail__path { grid-template-columns: 1fr; }
  .trail__line { display: none; }
  .station { transform: none !important; }
  .gallery { grid-template-columns: 1fr; }
}
