:root {
  --bg: #0a0a12;
  --bg-elevated: #12101a;
  --text: #f5f0eb;
  --cream: #f0e8e0;
  --muted: #a898a0;
  --soft: #d4c4cc;
  --coral: #e8897a;
  --coral-soft: #f0a090;
  --mauve: #c9a0b0;
  --blue: #6b8cce;
  --line: rgba(232, 137, 122, 0.12);
  --glass: rgba(18, 16, 26, 0.55);
  --glass-border: rgba(201, 160, 176, 0.18);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Outfit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 42rem;
  --wide: 58rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-anim { opacity: 1 !important; transform: none !important; animation: none !important; }
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
a:hover { color: var(--coral-soft); }

a:focus-visible,
.nav a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1.1rem;
  background: var(--coral);
  color: var(--bg);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 0.4rem 0.4rem;
}
.skip-link:focus { top: 0; }

/* Atmosphere — stylised city dusk: pink–coral + cool blue washes */
.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(232, 137, 122, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 20%, rgba(107, 140, 206, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 75%, rgba(201, 160, 176, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 20% 90%, rgba(107, 140, 206, 0.08), transparent 50%),
    linear-gradient(180deg, #0a0a12 0%, #12101a 50%, #0a0a12 100%);
}

/* Minimal nav — sparse top-right cluster */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.nav-brand {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.nav-brand:hover { color: var(--cream); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.5rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a[aria-current="page"] {
  color: var(--coral-soft);
}

.page { position: relative; z-index: 1; }

/* Hero */
.hero {
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 12vw, 8rem) clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 8vw, 6rem);
}
.hero-inner {
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.75rem;
}
.hero-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 7.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.35rem;
}
.hero-theme {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.45rem, 3.8vw, 2.2rem);
  color: var(--coral);
  line-height: 1.3;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-pitch {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 100%);
  color: var(--bg);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-soft) 0%, #f5b8a8 100%);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--glass-border);
}
.btn-ghost:hover {
  border-color: rgba(232, 137, 122, 0.45);
  color: var(--coral-soft);
}

.hero-anim {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: fadeUp 1.15s var(--ease) forwards;
}
.hero-anim:nth-child(1) { animation-delay: 0.05s; }
.hero-anim:nth-child(2) { animation-delay: 0.18s; }
.hero-anim:nth-child(3) { animation-delay: 0.32s; }
.hero-anim:nth-child(4) { animation-delay: 0.46s; }
.hero-anim:nth-child(5) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Page header (inner pages) */
.page-hero {
  padding: clamp(3.5rem, 10vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(2rem, 5vw, 3rem);
}
.page-hero-inner {
  max-width: var(--wide);
  margin: 0 auto;
}
.page-hero .section-title {
  margin-bottom: 1rem;
}
.page-hero-lead {
  max-width: 34rem;
  color: var(--muted);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 12vw, 7.5rem) clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-wide {
  max-width: var(--wide);
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 2.75rem;
  letter-spacing: -0.02em;
}

/* Journey chapters — spatial panels with watermark numerals */
.chapters {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 0;
  border-left: none;
}
.chapter {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 1.1rem;
  overflow: hidden;
}
.chapter::before {
  content: none;
}
.chapter-watermark {
  position: absolute;
  right: clamp(0.5rem, 3vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(5rem, 14vw, 8.5rem);
  line-height: 1;
  color: rgba(232, 137, 122, 0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.chapter-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}
.chapter-num {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.55rem;
}
.chapter-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.chapter-body {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}
.chapter-body strong {
  color: var(--soft);
  font-weight: 500;
}

/* Today */
.today {
  background: transparent;
}
.today-block {
  max-width: var(--max);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 1.1rem;
}
.today-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.today-copy {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.today-copy:last-of-type { margin-bottom: 2rem; }
.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lang {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(201, 160, 176, 0.06);
}

/* Contact — oversized cinematic wordmark */
.contact-stage {
  min-height: min(78vh, 44rem);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 10vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  border-top: none;
}
.contact-inner {
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
}
.contact-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4.5rem, 18vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 45%, var(--mauve) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-intro {
  color: var(--muted);
  font-weight: 300;
  max-width: 28rem;
  margin-bottom: 2rem;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-list a {
  display: inline-block;
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
  border-bottom: none;
  transition: color 0.3s var(--ease);
}
.contact-list a:hover {
  color: var(--coral-soft);
}

/* Footer */
.site-footer {
  padding: 2rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.site-footer p {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 152, 160, 0.55);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
