/* =============================================================
   TAFTRI USA — Amazon Wholesale & Brand Growth
   Design system: refined editorial luxury
   Bone / Ink / Evergreen / Champagne
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bone:      #F3F0E8;
  --bone-2:    #ECE8DD;
  --paper:     #FBFAF5;
  --ink:       #17140F;
  --ink-soft:  #4A4339;
  --ink-mute:  #7C7367;
  --line:      rgba(23, 20, 15, 0.14);
  --line-2:    rgba(23, 20, 15, 0.08);

  --forest:    #143528;
  --forest-2:  #1C4A35;
  --green:     #2C7A4E;
  --gold:      #A9834A;
  --gold-2:    #C6A46B;

  --shadow-sm: 0 1px 2px rgba(23,20,15,.05);
  --shadow-md: 0 24px 60px -32px rgba(23,20,15,.35);
  --shadow-lg: 0 40px 90px -40px rgba(20,53,40,.45);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--forest); color: var(--bone); }

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 12vw, 160px); position: relative; }
.section--tight { padding-block: clamp(60px, 8vw, 100px); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.02em; }
.h-display {
  font-size: clamp(2.9rem, 7.4vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.02; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
em, .it { font-style: italic; }
.serif { font-family: var(--serif); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}
.muted { color: var(--ink-mute); }
.tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--forest); color: var(--bone); }
.btn--primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: var(--forest); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--forest); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow:hover { border-color: var(--forest); gap: 12px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(243, 240, 232, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line-2);
}
.header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: baseline; gap: 9px; font-family: var(--serif); font-size: 24px; letter-spacing: -0.02em; }
.brand b { font-weight: 500; }
.brand .usa {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bone);
  background: var(--forest);
  padding: 4px 7px 3px;
  border-radius: 3px;
  transform: translateY(-3px);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--forest);
  transition: width .35s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 18px; }

.burger { display: none; width: 30px; height: 20px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 16px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bone);
  padding: 110px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem); padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu .btn { font-family: var(--sans); font-size: 16px; margin-top: 28px; align-self: flex-start; border-bottom: none; padding: 16px 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 100% 88px, calc(100% / 6) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
  opacity: .7;
}
.hero__glow {
  position: absolute;
  top: -10%; right: -8%;
  width: 46vw; height: 46vw;
  max-width: 640px; max-height: 640px;
  background: radial-gradient(circle at 50% 50%, rgba(44,122,78,.16), transparent 62%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 30px; }
.hero__title { max-width: 15ch; margin-bottom: 30px; }
.hero__title .it { color: var(--forest); }
.hero__sub { margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__rail {
  margin-top: clamp(50px, 7vw, 84px);
  border-top: 1px solid var(--line);
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; letter-spacing: -0.02em; }
.stat__num .u { color: var(--gold); }
.stat__label { margin-top: 10px; font-size: 13.5px; color: var(--ink-mute); max-width: 22ch; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 26px;
  overflow: hidden;
  background: var(--bone-2);
}
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem); color: var(--ink-soft);
  white-space: nowrap;
}
.marquee__item::before { content: "✦"; color: var(--gold); font-size: .8em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Section header ---------- */
.sec-head { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: clamp(48px, 6vw, 72px); }
.sec-head--split { grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 40px; }
.sec-head__title { max-width: 20ch; }
.sec-head__text { max-width: 46ch; }

/* ---------- Model cards (dual model) ---------- */
.models { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.model {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.model:hover { transform: translateY(-6px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.model--a { grid-column: span 6; }
.model--b { grid-column: span 6; }
.model--wide { grid-column: span 12; flex-direction: row; align-items: center; gap: 40px; min-height: auto; background: var(--forest); border-color: var(--forest); color: var(--bone); }
.model--wide .model__num, .model--wide .model__title { color: var(--bone); }
.model--wide .model__text { color: rgba(243,240,232,.7); }
.model__num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.model__title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 22px 0 14px; line-height: 1.05; }
.model__kicker { font-weight: 600; color: var(--forest); font-size: 15px; margin-bottom: 8px; }
.model__text { color: var(--ink-soft); max-width: 48ch; }
.model__list { margin-top: auto; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; font-weight: 500;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  transition: background .3s, color .3s, border-color .3s;
}
.model:hover .chip { border-color: var(--line); }
.chip--dark { border-color: rgba(243,240,232,.24); color: rgba(243,240,232,.85); }
.model__icon { flex-shrink: 0; }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feature { background: var(--bone); padding: clamp(28px, 3vw, 40px); transition: background .4s var(--ease); }
.feature:hover { background: var(--paper); }
.feature__idx { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
.feature__title { font-family: var(--serif); font-size: 1.35rem; margin: 18px 0 10px; }
.feature__text { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 40px 30px 40px 0; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: none; padding-right: 0; }
.step__num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--forest); line-height: 1; }
.step__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); position: absolute; top: -5px; left: 0; }
.step:first-child .step__dot { left: 0; }
.step__title { font-family: var(--serif); font-size: 1.3rem; margin: 22px 0 10px; }
.step__text { color: var(--ink-soft); font-size: 15px; max-width: 30ch; }

/* ---------- Split / About blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, var(--forest), var(--forest-2) 55%, #0d241b);
  border: 1px solid var(--line);
}
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(243,240,232,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,240,232,.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.media-badge {
  position: absolute; z-index: 2;
  background: var(--bone);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}
.media-badge--tl { top: 26px; left: 26px; }
.media-badge--br { bottom: 26px; right: 26px; }
.media-badge b { font-family: var(--serif); font-size: 1.8rem; display: block; line-height: 1; }
.media-badge span { font-size: 12.5px; color: var(--ink-mute); }
.media-mark { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(243,240,232,.9); }

/* ---------- Values / list ---------- */
.list-rows { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 64px 1fr 1.4fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left .4s var(--ease);
}
.row:hover { padding-left: 12px; }
.row__idx { font-family: var(--serif); color: var(--gold); font-size: 15px; padding-top: 6px; }
.row__title { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.row__text { color: var(--ink-soft); }

/* ---------- Categories ---------- */
.cats { display: flex; flex-wrap: wrap; gap: 12px; }
.cat {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s;
}
.cat:hover { background: var(--forest); color: var(--bone); border-color: var(--forest); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  color: var(--bone);
  border-radius: 6px;
  padding: clamp(50px, 8vw, 96px) clamp(30px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band__glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(198,164,107,.18), transparent 55%),
              radial-gradient(circle at 80% 90%, rgba(44,122,78,.4), transparent 50%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: var(--bone); max-width: 18ch; margin: 20px auto 28px; }
.cta-band .lead { color: rgba(243,240,232,.75); margin-inline: auto; }
.cta-band .eyebrow { color: var(--gold-2); }
.cta-band .eyebrow::before { background: var(--gold-2); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--bone); padding-top: clamp(70px, 9vw, 110px); }
.footer a { color: rgba(243,240,232,.62); transition: color .3s; }
.footer a:hover { color: var(--bone); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(243,240,232,.12); }
.footer .brand { color: var(--bone); }
.footer .brand .usa { background: var(--gold); }
.footer__blurb { color: rgba(243,240,232,.6); max-width: 34ch; margin-top: 20px; font-size: 15px; }
.footer__col h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(243,240,232,.45); margin-bottom: 20px; }
.footer__col a { display: block; padding: 7px 0; font-size: 15px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-block: 30px; font-size: 13.5px; color: rgba(243,240,232,.5); }
.footer__bottom a { text-decoration: none; }

/* ---------- Forms ---------- */
.form-shell { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.form-aside__stat { padding: 22px 0; border-bottom: 1px solid var(--line); }
.form-aside__stat b { font-family: var(--serif); font-size: 1.6rem; display: block; }
.form-aside__stat span { font-size: 14px; color: var(--ink-mute); }
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 3.4vw, 46px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-soft); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44,122,78,.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%234A4339' stroke-width='1.6'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form__foot { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.form__note { font-size: 13px; color: var(--ink-mute); max-width: 40ch; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .check { width: 62px; height: 62px; border-radius: 50%; background: var(--forest); color: var(--bone); display: grid; place-items: center; margin: 0 auto 24px; }

/* ---------- Contact rows ---------- */
.contact-methods { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.contact-method { background: var(--bone); padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: background .3s; }
.contact-method:hover { background: var(--paper); }
.contact-method h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.contact-method p { font-family: var(--serif); font-size: 1.25rem; margin-top: 6px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: 150px; padding-bottom: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.page-hero__glow { position: absolute; top: -20%; left: -10%; width: 40vw; height: 40vw; max-width: 560px; max-height: 560px; background: radial-gradient(circle, rgba(44,122,78,.12), transparent 62%); z-index: 0; }
.page-hero > .wrap { position: relative; z-index: 2; }
.crumbs { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.04em; margin-bottom: 24px; }
.crumbs a:hover { color: var(--ink); }
.page-hero__title { max-width: 18ch; margin: 24px 0 26px; }

/* ---------- Pull quote ---------- */
.pullquote { max-width: 24ch; }
.pullquote p { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.15; letter-spacing: -0.02em; }
.pullquote .attr { font-family: var(--sans); font-size: 14px; color: var(--ink-mute); margin-top: 24px; letter-spacing: 0.04em; }

/* ---------- Reveal animation ----------
   Hidden states are gated on html.motion, a class added by main.js itself:
   if the script never runs (404, blocked, parse error) content stays visible. */
.reveal { transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html.motion .reveal:not(.in) { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .veil { display: none !important; }
  .tsplit .wi { transform: none !important; }
  .split__media.reveal { clip-path: none !important; }
  .cursor-dot, .cursor-ring, .scroll-progress { display: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .header__cta { gap: 0; }
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
  .models { grid-template-columns: repeat(6, 1fr); }
  .model--a, .model--b { grid-column: span 6; }
  .model--wide { flex-direction: column; align-items: flex-start; }
  .features { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; padding-right: 20px; }
  .step:nth-child(odd) { border-right: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 11; }
  .form-shell { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .row { grid-template-columns: 40px 1fr; }
  .row__text { grid-column: 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero__rail { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .features { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step { border-right: none !important; padding: 30px 0; border-bottom: 1px solid var(--line); }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .contact-method { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   MOTION LAYER — page veil, split-text, cursor, orbit, parallax
   ============================================================= */

/* ---------- Page veil (load reveal + internal transitions) ---------- */
.veil {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--forest);
  display: grid;
  place-items: center;
  transform: translateY(0);
  pointer-events: none;
  transition: transform .6s cubic-bezier(.76, 0, .24, 1);
  /* Failsafe: if main.js never runs, slide the veil away on its own.
     main.js cancels this (style.animation='none') when it takes over the cover. */
  animation: veil-failsafe .8s cubic-bezier(.76, 0, .24, 1) 1.6s forwards;
}
html:not(.js) .veil { display: none; }
.veil--out { transform: translateY(-101%); transition: transform .8s cubic-bezier(.76, 0, .24, 1) .08s; }
@keyframes veil-failsafe { to { transform: translateY(-101%); visibility: hidden; } }
.veil__mark {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  color: var(--bone);
  letter-spacing: -0.02em;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.veil__mark i { font-style: italic; color: var(--gold-2); }
.veil--out .veil__mark { opacity: 0; transform: translateY(-16px); }

/* ---------- Split-text word masks (.tsplit — distinct from layout .split) ---------- */
.tsplit .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.14em 0.08em;
  margin: -0.14em -0.08em;
}
.tsplit .wi {
  display: inline-block;
  transition: transform 1s var(--ease-out);
  will-change: transform;
}
html.motion .tsplit:not(.in) .wi { transform: translateY(115%); }

/* ---------- Scroll progress hairline ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 300;
  pointer-events: none;
}

/* ---------- Custom cursor (fine pointers) ---------- */
html.has-cursor,
html.has-cursor body,
html.has-cursor a,
html.has-cursor button,
html.has-cursor .btn,
html.has-cursor .cat,
html.has-cursor label { cursor: none; }
html.has-cursor input,
html.has-cursor textarea,
html.has-cursor select { cursor: auto; }
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 9500;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); transition: opacity .3s; }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(169, 131, 74, .65);
  transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), background .35s, border-color .35s;
}
html.cursor-live .cursor-dot, html.cursor-live .cursor-ring { opacity: 1; }
.cursor-ring.is-link {
  width: 58px; height: 58px;
  background: rgba(169, 131, 74, .08);
  border-color: var(--gold);
}

/* ---------- Orbit badge (hero) ---------- */
.orbit {
  position: absolute;
  top: 30px;
  right: max(24px, 5%);
  width: 152px;
  height: 152px;
  z-index: 2;
}
.orbit svg { width: 100%; height: 100%; overflow: visible; animation: orbit-spin 28s linear infinite; }
.orbit text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  fill: var(--ink-soft);
}
.orbit__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@media (max-width: 1100px) { .orbit { display: none; } }

/* ---------- Button sheen ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .22) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }

/* ---------- Deeper entrances (gated on html.motion) ---------- */
html.motion .model.reveal:not(.in) { transform: translateY(44px); }
.split__media.reveal { transition: opacity 1s var(--ease-out), transform 1.15s var(--ease-out), clip-path 1.15s var(--ease-out); }
html.motion .split__media.reveal:not(.in) {
  clip-path: inset(10% 7% 10% 7% round 10px);
  transform: translateY(34px) scale(1.05);
}
.split__media.reveal.in { clip-path: inset(0 0 0 0 round 4px); transform: none; }

/* ---------- Ambient glow breathing ---------- */
.hero__glow, .page-hero__glow { animation: breathe 9s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { opacity: .72; filter: blur(10px); }
  50%      { opacity: 1;   filter: blur(18px); }
}

/* ---------- Nav label roll-over ---------- */
.nav a .roll { display: inline-flex; flex-direction: column; overflow: hidden; height: 1.4em; }
.nav a .roll span { display: block; line-height: 1.4; transition: transform .5s var(--ease); }
.nav a:hover .roll span { transform: translateY(-100%); }

/* ---------- Marquee edge fade ---------- */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

/* ---------- Chip micro-hover ---------- */
.chip { transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease); }
.chip:hover { transform: translateY(-2px); border-color: var(--gold); }

/* ---------- Footer watermark ---------- */
.footer { overflow: hidden; }
.footer__mark {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 15vw, 13rem);
  line-height: .8;
  text-align: center;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 232, .16);
  margin-top: clamp(30px, 5vw, 60px);
  margin-bottom: -0.18em;
  user-select: none;
  white-space: nowrap;
}
@supports not (-webkit-text-stroke: 1px black) {
  .footer__mark { color: rgba(243, 240, 232, .08); }
}
