/* ============================================================
   NOMAX — Nomad Xplora
   Design system & layout
   ============================================================ */

:root {
  /* Palette — Manual de Identidade Visual NOMAX */
  --ink: #1f2b3c;          /* azul-mar aprofundado — fundo (mesma família do #28374A) */
  --ink-2: #28374a;        /* azul-mar oficial do manual — superfícies */
  --indigo: #28374a;       /* azul-mar oficial — texto sobre creme */
  --indigo-soft: #3a4c63;
  --gold: #b89974;         /* tan, o nó — materiais naturais */
  --gold-bright: #d4b48c;
  --ivory: #fcefd4;        /* creme, o papel */
  --muted: rgba(252, 239, 212, 0.62);
  --faint: rgba(252, 239, 212, 0.15);
  --hairline: rgba(184, 153, 116, 0.32);
  --terra: #754437;
  --oliva: #6c6751;

  /* Type — Sora (manual: Medium títulos, Light textos) */
  --font-serif: "Sora", "Avenir Next", sans-serif;
  --font-sans: "Sora", "Avenir Next", "Helvetica Neue", sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.18vw, 0.9rem);
  --step-0: clamp(1rem, 0.94rem + 0.3vw, 1.2rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.7vw, 1.7rem);
  --step-2: clamp(1.7rem, 1.35rem + 1.7vw, 2.8rem);
  --step-3: clamp(2.2rem, 1.6rem + 3vw, 4.2rem);
  --step-4: clamp(3rem, 1.9rem + 5.5vw, 6.5rem);
  --step-hero: clamp(4rem, 14vw, 13rem);

  /* Space scale */
  --sp-1: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
  --sp-2: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
  --sp-3: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --sp-4: clamp(4rem, 3rem + 4vw, 7rem);
  --sp-5: clamp(7rem, 5rem + 8vw, 13rem);

  --gutter: clamp(1.25rem, 4vw, 5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body[data-loading] { overflow: hidden; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -100%; left: var(--gutter);
  background: var(--gold); color: var(--ink);
  padding: 0.6em 1.2em; z-index: 200;
  font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase;
  transition: top 0.3s;
}
.skip-link:focus { top: var(--sp-1); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- Custom cursor ---------- */
.cursor { display: none; }
/* .has-cursor is set by JS only when the custom cursor is running,
   so the native cursor never disappears without a replacement */
html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 150; pointer-events: none; }
  .cursor__dot {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-bright);
    transform: translate(-50%, -50%);
  }
  .cursor__ring {
    position: absolute; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--hairline);
    transform: translate(-50%, -50%);
    display: grid; place-items: center;
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                border-color 0.35s, background-color 0.35s;
  }
  .cursor__ring::after {
    content: attr(data-label);
    font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink); opacity: 0; transition: opacity 0.25s;
  }
  .cursor.is-hover .cursor__ring { width: 56px; height: 56px; border-color: var(--gold); }
  .cursor.is-view .cursor__ring {
    width: 72px; height: 72px;
    background: var(--gold-bright); border-color: var(--gold-bright);
  }
  .cursor.is-view .cursor__ring::after { opacity: 1; }
  .cursor.is-view .cursor__dot { opacity: 0; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ink);
  display: grid; place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__mark { width: clamp(72px, 10vw, 110px); margin-inline: auto; color: var(--gold); }
.preloader__mark {
  opacity: 0; transform: scale(0.94);
  animation: mark-in 1.4s var(--ease-out) 0.15s forwards;
}
@keyframes mark-in { to { opacity: 1; transform: scale(1); } }
.preloader__word-svg {
  width: clamp(120px, 16vw, 190px);
  margin: var(--sp-3) auto 0;
  color: var(--muted);
}
body:not([data-loading]) .preloader { display: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.75rem) var(--gutter);
  transition: transform 0.5s var(--ease-out), background-color 0.5s;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-solid { background: color-mix(in srgb, var(--ink) 82%, transparent); backdrop-filter: blur(12px); }
.nav__brand { display: flex; align-items: center; gap: 0.9rem; }
.nav__mark { width: 36px; color: var(--gold); }
.nav__word { width: clamp(92px, 9vw, 124px); height: auto; color: var(--ivory); }
.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.5rem); }
.nav__links a {
  font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  border: 1px solid var(--hairline); padding: 0.55em 1.3em; border-radius: 100px;
  color: var(--ivory) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { border-color: var(--gold); background: rgba(184, 153, 116, 0.14); }

@media (max-width: 1020px) { .nav__word { display: none; } }
@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  overflow: clip;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
/* soft vignette keeps the wordmark legible over the particles */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 62% 45% at 50% 52%, rgba(31,43,60,0.55), transparent 70%);
}
.hero__content { position: relative; text-align: center; padding: 0 var(--gutter); z-index: 2; }

/* cinematic viewfinder frame — four corner brackets + set labels */
.hero__frame {
  position: absolute;
  inset: clamp(4.5rem, 8vh, 6.5rem) var(--gutter) clamp(1.5rem, 4vh, 3rem);
  z-index: 2; pointer-events: none;
  --c: var(--hairline);
  background:
    linear-gradient(var(--c), var(--c)) top left / 18px 1px,
    linear-gradient(var(--c), var(--c)) top left / 1px 18px,
    linear-gradient(var(--c), var(--c)) top right / 18px 1px,
    linear-gradient(var(--c), var(--c)) top right / 1px 18px,
    linear-gradient(var(--c), var(--c)) bottom left / 18px 1px,
    linear-gradient(var(--c), var(--c)) bottom left / 1px 18px,
    linear-gradient(var(--c), var(--c)) bottom right / 18px 1px,
    linear-gradient(var(--c), var(--c)) bottom right / 1px 18px;
  background-repeat: no-repeat;
}
.hero__frame-label {
  position: absolute;
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(252, 239, 212, 0.35);
}
.hero__frame-label--tl { top: 0.55rem; left: 1.8rem; }
.hero__frame-label--tr { top: 0.55rem; right: 1.8rem; }
.hero__frame-label--bl { bottom: 0.55rem; left: 1.8rem; }
.hero__frame-label--br { bottom: 0.55rem; right: 1.8rem; }
@media (max-width: 720px) { .hero__frame-label--tr, .hero__frame-label--br { display: none; } }
.hero__eyebrow {
  font-size: var(--step--1); letter-spacing: 0.4em; text-indent: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-2);
}
.hero__title { display: flex; justify-content: center; color: var(--ivory); }
.hero__wordmark {
  width: min(80vw, 760px);
  height: auto;
  overflow: visible;
}
.hero__letter { will-change: transform, opacity; }
.hero__lockup-sub { color: var(--muted); }
.hero__sub {
  margin-top: clamp(3.5rem, 9vh, 6.5rem);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: var(--step-0); font-weight: 300;
  letter-spacing: 0.32em; text-indent: 0.32em; text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
}
.hero__sub::before, .hero__sub::after {
  content: ""; height: 1px; flex: 0 1 clamp(2rem, 7vw, 5.5rem);
  background: var(--hairline);
}
@media (max-width: 560px) { .hero__sub { font-size: var(--step--1); } }
.hero__scrollhint {
  position: absolute; bottom: clamp(1.5rem, 4vh, 3rem); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  font-size: 0.68rem; letter-spacing: 0.3em; text-indent: 0.3em; text-transform: uppercase;
  color: var(--muted); z-index: 2;
}
.hero__scrollline {
  width: 1px; height: 56px; background: var(--faint);
  position: relative; overflow: hidden;
}
.hero__scrollline::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  animation: scroll-drip 2.2s var(--ease-out) infinite;
}
@keyframes scroll-drip {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Sections shared ---------- */
.section { padding: var(--sp-5) var(--gutter); position: relative; }
.section__head {
  display: flex; align-items: baseline; gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--faint);
  padding-bottom: var(--sp-2);
  flex-wrap: wrap;
}
.section__index {
  font-size: var(--step--1); color: var(--gold); letter-spacing: 0.2em;
}
.section__label {
  font-size: var(--step--1); font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ivory);
}
.section__note {
  margin-left: auto; max-width: 38ch;
  font-size: var(--step--1); color: var(--muted); letter-spacing: 0.04em;
}

/* nav current-page marker */
.nav__links a[aria-current="page"] { color: var(--gold-bright); }

/* ---------- Intro (home: um parágrafo, uma ação) ---------- */
.intro { max-width: 1200px; margin-inline: auto; }
.intro__lead {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.12;
  color: var(--ivory);
  max-width: 16ch;
  margin-bottom: var(--sp-3);
}
.intro__body {
  font-family: var(--font-serif);
  font-size: var(--step-2); line-height: 1.45; font-weight: 300;
  color: var(--muted);
  max-width: 32ch;
  margin-left: auto;
}
.intro__actions {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}

/* ---------- CTAs ---------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.1em 2.6em;
  border: 1px solid var(--gold); border-radius: 100px;
  font-size: var(--step-0); letter-spacing: 0.12em;
  color: var(--gold-bright);
  background: none; font-family: var(--font-sans); font-weight: 300;
  position: relative; overflow: hidden;
  transition: color 0.4s;
  cursor: pointer;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%); border-radius: 100px 100px 0 0;
  transition: transform 0.5s var(--ease-out), border-radius 0.5s var(--ease-out);
}
.cta:hover::before { transform: translateY(0); border-radius: 0; }
.cta:hover { color: var(--ink); }
.cta span { position: relative; z-index: 1; }
.cta-quiet {
  font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.4em;
  transition: color 0.3s, border-color 0.3s;
}
.cta-quiet:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---------- Nomax 15 (home) ---------- */
.experience { max-width: 1200px; margin-inline: auto; }
.experience__text {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-3); line-height: 1.25;
  color: var(--ivory);
  max-width: 24ch;
  margin-bottom: var(--sp-3);
}
.experience__rule {
  color: var(--muted); max-width: 52ch;
  border-left: 1px solid var(--gold);
  padding-left: var(--sp-2);
  line-height: 1.8;
}

/* ---------- Inner pages ---------- */
.page { padding: calc(var(--sp-5) + 3rem) var(--gutter) var(--sp-5); max-width: 1100px; margin-inline: auto; }
.page__head { margin-bottom: var(--sp-4); border-bottom: 1px solid var(--faint); padding-bottom: var(--sp-3); }
.page__eyebrow {
  font-size: var(--step--1); letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-2);
}
.page__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-3); line-height: 1.15;
  color: var(--ivory);
  max-width: 24ch;
}
.page__next {
  margin-top: var(--sp-4);
  display: flex; align-items: center; flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
}

/* ---------- Página O Intervalo ---------- */
.page--wide { max-width: 1200px; }
.page__sub {
  margin-top: var(--sp-3);
  font-size: var(--step-1); font-family: var(--font-serif); font-weight: 500;
  color: var(--muted); line-height: 1.65;
  max-width: 52ch;
}
.notlist { padding: var(--sp-4) 0; }
.notlist__items {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin: var(--sp-3) 0;
}
.notlist__items li {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-1); color: var(--muted);
  border: 1px solid var(--faint); border-radius: 100px;
  padding: 0.5em 1.4em;
  position: relative;
}
.notlist__items li::before {
  content: "não é"; display: block;
  font-family: var(--font-sans); font-style: normal;
  font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--hairline);
  position: absolute; top: -1.5em; left: 1.6em;
}
.notlist__note {
  color: var(--gold); font-size: var(--step--1);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.ethos--band {
  min-height: 62svh;
  margin: var(--sp-4) calc(-1 * var(--gutter));
}
.movements { padding: var(--sp-5) 0 var(--sp-4); }
.movements__list { max-width: 760px; }
.movements__item {
  display: grid; grid-template-columns: 4.5rem 1fr;
  gap: 0 var(--sp-2);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--faint);
  align-items: baseline;
}
.movements__item:first-child { padding-top: 0; }
.movements__num {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); color: var(--gold); line-height: 1;
}
.movements__item h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); color: var(--ivory); line-height: 1.15;
}
.movements__item p {
  grid-column: 2;
  color: var(--muted); margin-top: 0.6em;
  font-size: var(--step-0); line-height: 1.7;
  max-width: 48ch;
}
.section--flush { padding-left: 0; padding-right: 0; }
.place { padding: var(--sp-4) 0 var(--sp-5); }
.place__text {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-3); line-height: 1.2;
  color: var(--ivory);
  max-width: 20ch;
  margin: var(--sp-3) 0;
}
.place__body {
  color: var(--muted); max-width: 52ch; line-height: 1.85;
  border-left: 1px solid var(--gold);
  padding-left: var(--sp-2);
}
.prose__version {
  margin-top: var(--sp-4);
  font-size: var(--step--1) !important;
  color: var(--hairline) !important;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--faint);
  padding-top: var(--sp-2);
}

/* ---------- Conversa (Cal.com) ---------- */
.convo { margin-top: var(--sp-5); border-top: 1px solid var(--faint); padding-top: var(--sp-4); max-width: 720px; }
.convo h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); color: var(--ivory);
  margin-bottom: var(--sp-2);
}
.convo__embed { margin-top: var(--sp-3); }
.convo__embed iframe {
  width: 100%; min-height: 560px; border: 1px solid var(--faint);
  border-radius: 8px; background: var(--ink-2);
}

.ethos__mark { --lens-fill: var(--indigo); }

/* ---------- Prose ---------- */
.prose { max-width: 62ch; }
.prose h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); color: var(--gold-bright);
  margin: var(--sp-4) 0 var(--sp-2);
}
.prose p { color: var(--muted); line-height: 1.85; margin-bottom: var(--sp-2); }
.prose ul { margin: 0 0 var(--sp-2); }
.prose ul li {
  color: var(--ivory); line-height: 2;
  padding-left: 1.6em; position: relative;
}
.prose ul li::before {
  content: "·"; color: var(--gold);
  position: absolute; left: 0.4em;
}
.prose--narrative p {
  font-family: var(--font-serif);
  font-size: var(--step-1); line-height: 1.7;
}
.prose__close {
  color: var(--gold-bright) !important;
  font-size: var(--step-2) !important;
  margin-top: var(--sp-4);
}
.prose__disclaimer {
  border-left: 1px solid var(--gold);
  padding-left: var(--sp-2);
  color: var(--ivory) !important;
}

/* ---------- Para quem é ---------- */
.whoisit {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.whoisit__col h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); color: var(--gold-bright);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--faint);
}
.whoisit__col--nao h2 { color: var(--muted); }
.whoisit__col li {
  color: var(--ivory); line-height: 1.7;
  padding: 0.7em 0 0.7em 1.6em; position: relative;
  border-bottom: 1px solid rgba(252, 239, 212, 0.06);
}
.whoisit__col li::before {
  content: "·"; color: var(--gold);
  position: absolute; left: 0.4em;
}
.whoisit__col--nao li { color: var(--muted); }
.whoisit__col--nao li::before { content: "—"; color: var(--faint); left: 0; }
@media (max-width: 760px) { .whoisit { grid-template-columns: 1fr; } }

.voices { margin-top: var(--sp-5); }
.voices__intro {
  font-size: var(--step--1); letter-spacing: 0.3em; text-indent: 0.3em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: var(--sp-3);
}
.voices blockquote {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); line-height: 1.4;
  color: var(--ivory); text-align: center;
  margin-bottom: var(--sp-2);
}

/* ---------- Lista privada ---------- */
.listform { max-width: 560px; }
.listform__intro { color: var(--muted); line-height: 1.85; margin-bottom: var(--sp-2); }
.listform__intro--quiet {
  font-size: var(--step--1); letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-3);
}
.form__field { margin-bottom: var(--sp-3); }
.form__field label {
  display: block;
  font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory); margin-bottom: 0.8em;
}
.form__field label span { color: var(--muted); text-transform: none; letter-spacing: 0.05em; }
.form__field input, .form__field textarea {
  width: 100%;
  background: none; border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--ivory);
  font-family: var(--font-serif); font-size: var(--step-1); font-weight: 300;
  padding: 0.4em 0 0.6em;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form__field input:focus, .form__field textarea:focus {
  outline: none; border-color: var(--gold);
}
.form__field textarea { resize: vertical; }
.form__note {
  margin-top: var(--sp-2);
  font-size: var(--step--1); color: var(--muted); letter-spacing: 0.05em;
}

/* ---------- Ethos (light interlude) ---------- */
.ethos {
  background: var(--ivory); color: var(--indigo);
  min-height: 88svh;
  display: grid; place-content: center; justify-items: center;
  text-align: center; padding: var(--sp-5) var(--gutter);
  gap: var(--sp-3);
}
.ethos__mark { width: clamp(56px, 7vw, 88px); color: var(--gold); }
.ethos__line {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.2;
  color: var(--indigo);
  max-width: 16ch;
}
.ethos__note {
  font-size: var(--step--1); letter-spacing: 0.3em; text-indent: 0.3em; text-transform: uppercase;
  color: color-mix(in srgb, var(--indigo) 60%, var(--ivory));
}

/* ---------- Approach ---------- */
.approach { max-width: 1200px; margin-inline: auto; }
.approach__steps {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-3);
  counter-reset: step;
}
.approach__step { position: relative; padding-top: var(--sp-2); border-top: 1px solid var(--faint); }
.approach__num {
  position: absolute; top: -0.55em; right: 0;
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-3); color: var(--hairline); line-height: 1;
}
.approach__step h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-2); color: var(--gold-bright);
  margin-bottom: var(--sp-1);
}
.approach__step p { color: var(--muted); max-width: 42ch; }
@media (max-width: 760px) {
  .approach__steps { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--faint); overflow: clip; }
.footer__marquee {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--faint);
  white-space: nowrap;
}
.footer__track { display: inline-flex; animation: marquee 40s linear infinite; }
.footer__track span {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--step-1); color: var(--hairline);
}
@keyframes marquee { to { transform: translateX(-50%); } }
.footer__row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  padding: var(--sp-3) var(--gutter);
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__mark { width: 42px; color: var(--gold); }
.footer__wordwrap { display: flex; flex-direction: column; }
.footer__word { width: 104px; height: auto; color: var(--ivory); }
.footer__brand small {
  font-size: 0.6rem; letter-spacing: 0.3em; color: var(--muted); margin-top: 0.55em;
  text-transform: uppercase;
}
.footer__links { display: flex; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: wrap; }
.footer__links a {
  font-size: var(--step--1); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-bright); }
.footer__legal { font-size: var(--step--1); color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Reveal defaults (JS enhances) ---------- */
[data-reveal], [data-hero-fade] { opacity: 0; }
[data-words] .w { display: inline-block; opacity: 0.12; }
.no-js [data-reveal], .no-js [data-hero-fade], .no-js [data-words] .w { opacity: 1; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal], [data-hero-fade] { opacity: 1; }
  [data-words] .w { opacity: 1; }
  .grain { animation: none; }
  .footer__track { animation: none; }
}
