/* ===========================================================
   Aisha — portfolio & enquiry site
   Black and gold, carried over from the rate card:
   near-black ground, antique gold, high-contrast serif.
   =========================================================== */

:root {
  --ink:        #0b0a08;   /* page ground, sampled from the rate card */
  --ink-2:      #100e0c;   /* alternating band */
  --panel:      #15110e;   /* cards */
  --panel-2:    #1c1711;   /* raised cards, stat blocks */
  --paper:      #f4efe6;   /* primary text */
  --paper-2:    #b9ad9c;   /* secondary text */
  --muted:      #8d8073;   /* labels, fine print */

  --gold:       #c9a56b;   /* accent: rules, labels, links */
  --gold-lt:    #e6cf9e;   /* bright accent: figures, display italics */
  --gold-deep:  #6f5730;   /* hairlines on dark */
  --gold-glow:  rgba(201, 165, 107, .14);

  --rule:       rgba(201, 165, 107, .26);
  --rule-soft:  rgba(244, 239, 230, .12);
  --field:      #0e0c0a;
  --field-line: #6a6055;

  --focus:      #7fc4d0;

  --display: "Playfair Display", "Bodoni 72", Didot, "Hoefler Text", Georgia, serif;
  --sans: Jost, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shell: 1400px;
  --gutter: clamp(20px, 4.2vw, 72px);
  --band: clamp(84px, 11vw, 168px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 82px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 1px; }

.shell {
  width: 100%; max-width: var(--shell); margin: 0 auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px)) max(var(--gutter), env(safe-area-inset-right, 0px));
}

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

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 12px 18px; text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
}
.skip-link:focus { top: calc(12px + env(safe-area-inset-top, 0px)); }

/* ---------- Type roles ---------- */
.eyebrow, .section-mark, .plate-no, .route-eyebrow, .step-no,
.colophon-label, .direct-label, .form-sub, .video-rank, .features-title, .stat h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.gold, .section-mark [lang="id"], .route-eyebrow, .step-no, .video-rank { color: var(--gold); }

.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.012em;
  margin: 20px 0 0;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold-lt); }

.lede {
  margin-top: 22px;
  font-size: clamp(16.5px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--paper-2);
  max-width: 56ch;
}
.section-head { max-width: 920px; }
.section-head .lede { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 30px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: 0; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn-gold { background: var(--gold); color: #17120b; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline { border-color: var(--rule); color: var(--paper); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); }
.btn-quiet { background: transparent; color: var(--paper-2); border-color: var(--rule-soft); }
.btn-quiet:hover { border-color: var(--paper-2); color: var(--paper); }
.btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }
.btn[aria-disabled="true"]:hover { background: var(--gold); color: #17120b; }

.link-underline {
  font: 500 14px/1.5 var(--sans);
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--paper);
  text-decoration: underline; text-underline-offset: 6px;
  text-decoration-color: var(--gold); text-decoration-thickness: 1px;
}
.link-underline:hover { color: var(--gold-lt); }

/* ---------- Masthead ---------- */
.masthead {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(11, 10, 8, .82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.masthead.is-scrolled { border-bottom-color: var(--rule); background: rgba(11, 10, 8, .94); }
.masthead-inner {
  max-width: var(--shell); margin: 0 auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px)) max(var(--gutter), env(safe-area-inset-right, 0px));
  height: 80px; display: flex; align-items: center; gap: 28px;
}
.wordmark {
  font-family: var(--display); font-size: 26px; line-height: 1;
  letter-spacing: .06em; text-decoration: none; margin-right: auto; color: var(--paper);
}
.nav ul { display: flex; gap: 32px; }
.nav-enquire { display: none; }
.nav a {
  font-size: 11.5px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; position: relative; padding-block: 6px; color: var(--paper-2);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after { transform: scaleX(1); }
.masthead-cta {
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold); color: var(--gold); padding: 12px 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.masthead-cta:hover { background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    background: none; border: 0; padding: 10px 0; cursor: pointer; color: var(--paper);
    font: 500 11.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  }
  .nav-toggle-rule, .nav-toggle-rule::before {
    display: block; width: 24px; height: 1px; background: var(--gold); position: relative;
    transition: transform .3s var(--ease);
  }
  .nav-toggle-rule::before { content: ""; position: absolute; top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-rule { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-rule::before { transform: translateY(-7px) rotate(-90deg); }
  .masthead-inner { gap: 14px; height: 72px; }
  .masthead-cta { padding: 10px 14px; font-size: 11px; letter-spacing: .14em; }
  .nav {
    position: fixed; left: 0; right: 0; top: calc(72px + env(safe-area-inset-top, 0px));
    background: var(--ink); border-bottom: 1px solid var(--rule);
    padding: 8px var(--gutter) 28px; display: none;
    max-height: calc(100svh - 72px - env(safe-area-inset-top, 0px));
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li + li { border-top: 1px solid var(--rule-soft); }
  .nav a {
    display: block; padding: 16px 0; font-family: var(--display); font-size: 28px;
    text-transform: none; letter-spacing: 0; color: var(--paper);
  }
  .nav a::after { display: none; }
  .nav-enquire { display: block; }
  .nav-enquire a { color: var(--gold-lt); }
}

/* ---------- Hero ---------- */
.hero {
  container-type: inline-size;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  align-items: stretch;
  min-height: 88svh;
  padding-top: 80px;
  border-bottom: 1px solid var(--rule);
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px, 4.6vw, 76px) clamp(28px, 4vw, 72px) clamp(36px, 4.6vw, 76px)
           max(var(--gutter), calc((100cqw - var(--shell)) / 2 + var(--gutter)));
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 5.9vw, 92px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 24px 0 0;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-lede { margin: 22px 0 0; max-width: 46ch; font-size: clamp(16px, 1.2vw, 18.5px); color: var(--paper-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 52px);
  margin: clamp(26px, 3vw, 40px) 0 0; padding-top: 22px; border-top: 1px solid var(--rule);
}
.hero-stats dt { font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero-stats dd {
  margin: 6px 0 0; font-family: var(--display); font-size: clamp(30px, 3vw, 42px);
  line-height: 1; color: var(--gold-lt); font-variant-numeric: tabular-nums;
}
.hero-stats .unit { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-figure { margin: 0; position: relative; overflow: hidden; background: var(--panel); }
.hero-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(11,10,8,.75) 0%, rgba(11,10,8,0) 32%);
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: calc(72px + env(safe-area-inset-top, 0px)); }
  .hero-figure { order: -1; aspect-ratio: 3 / 2; }
  .hero-figure img { position: static; height: 100%; object-position: 50% 30%; }
  .hero-figure::after { background: linear-gradient(0deg, rgba(11,10,8,.85) 0%, rgba(11,10,8,0) 45%); }
  .hero-text { padding: 32px var(--gutter) 56px; }
}
@media (max-width: 400px) { .hero-actions .btn { width: 100%; } }

/* ---------- Numbers ---------- */
.numbers { padding-block: var(--band); background: var(--ink-2); }
.stat-grid {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 26px);
}
.stat {
  background: var(--panel); border: 1px solid var(--rule-soft); border-top: 2px solid var(--gold);
  padding: clamp(22px, 2.4vw, 34px);
  display: flex; flex-direction: column;
}
.stat-lead {
  grid-column: span 3;
  background: linear-gradient(120deg, var(--panel-2) 0%, var(--panel) 62%);
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(18px, 3vw, 54px); row-gap: 10px;
  align-items: start;
}
.stat-lead .stat-figure { grid-column: 1; grid-row: 1 / span 3; align-self: center; }
.stat-lead h3 { grid-column: 2; grid-row: 1; }
.stat-lead > p { grid-column: 2; grid-row: 2; }
.stat-lead .stat-link { grid-column: 2; grid-row: 3; }
.stat-figure {
  font-family: var(--display); font-size: clamp(46px, 5.6vw, 84px); line-height: .95;
  color: var(--gold-lt); margin: 0 0 12px; font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.stat-lead .stat-figure { font-size: clamp(64px, 9vw, 132px); margin: 0; }
.stat-figure .unit {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted);
}
.stat h3 { margin-bottom: 10px; }
.stat p { margin: 0; color: var(--paper-2); font-size: 15px; line-height: 1.6; }
.stat-lead h3 { color: var(--gold); }
.stat-lead p { font-size: 16.5px; }
.stat-link {
  margin-top: 16px; align-self: start; font-size: 12px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: underline; text-underline-offset: 6px;
  text-decoration-color: var(--gold); color: var(--paper);
}
.stat-link:hover { color: var(--gold-lt); }
.numbers-note { margin: clamp(30px, 4vw, 46px) 0 0; font-size: 13px; color: var(--muted); max-width: 96ch; }

@media (max-width: 980px) {
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-lead { grid-column: span 2; grid-template-columns: 1fr; grid-template-rows: auto; }
  .stat-lead .stat-figure, .stat-lead h3, .stat-lead > p, .stat-lead .stat-link { grid-column: 1; grid-row: auto; }
}
@media (max-width: 620px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-lead { grid-column: span 1; }
}

/* ---------- Work / video ---------- */
.work { padding-block: var(--band); }
.viral { margin-top: clamp(40px, 5vw, 72px); display: grid; gap: clamp(20px, 2.4vw, 32px); }
.video-lead {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 3vw, 56px); align-items: center;
  background: linear-gradient(120deg, var(--panel-2) 0%, var(--panel) 70%);
  border: 1px solid var(--rule-soft); border-top: 2px solid var(--gold);
  padding: clamp(20px, 2.4vw, 34px);
}
.video-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 32px); }
.video-pair .video-card, .video-small {
  background: var(--panel); border: 1px solid var(--rule-soft); border-top: 2px solid var(--gold-deep);
  padding: clamp(18px, 2vw, 26px);
  display: grid; grid-template-columns: minmax(0, 150px) minmax(0, 1fr); gap: clamp(16px, 2vw, 26px);
  align-items: start;
}
.video-frame { position: relative; }
.video-play {
  display: block; width: 100%; padding: 0; border: 0; background: var(--ink-2);
  position: relative; cursor: pointer; overflow: hidden;
}
.video-play img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; transition: transform 1.2s var(--ease), opacity .4s var(--ease); }
.video-play:hover img { transform: scale(1.03); opacity: .82; }
.play-mark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%; border: 1px solid var(--gold);
  background: rgba(11, 10, 8, .55); backdrop-filter: blur(2px);
  transition: background .3s var(--ease);
}
.play-mark::after {
  content: ""; position: absolute; left: 25px; top: 20px;
  border-style: solid; border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent var(--gold-lt);
}
.video-play:hover .play-mark { background: rgba(201, 165, 107, .22); }
.play-hint {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-lt); background: rgba(11, 10, 8, .6); padding: 6px 12px; white-space: nowrap;
}
.video-frame iframe { width: 100%; aspect-ratio: 9 / 16; min-height: 480px; border: 0; background: #000; display: block; }
.video-lead .video-frame iframe { min-height: 620px; }
.video-fallback { margin: 12px 0 0; font-size: 13px; color: var(--muted); }

.video-figure {
  font-family: var(--display); font-size: clamp(38px, 4.4vw, 62px); line-height: 1;
  color: var(--gold-lt); margin: 10px 0 14px; font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.video-figure.small { font-size: clamp(26px, 2.6vw, 34px); margin: 4px 0 8px; }
.video-figure .unit {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted);
}
.video-copy h3 { font-family: var(--display); font-size: clamp(22px, 2.2vw, 32px); line-height: 1.15; margin-bottom: 12px; }
.video-copy h4 { font-family: var(--display); font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
.video-copy p { color: var(--paper-2); font-size: 15.5px; }
.video-facts { display: grid; gap: 10px; margin: 20px 0; border-top: 1px solid var(--rule); padding-top: 18px; }
.video-facts li { font-size: 14.5px; color: var(--paper-2); display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 14px; }
.video-facts span { font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.video-link {
  font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--gold); color: var(--paper);
}
.video-link:hover { color: var(--gold-lt); }

.features { margin-top: clamp(44px, 5vw, 76px); }
.features-title { margin-bottom: 22px; }
.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); }
.video-small { grid-template-columns: minmax(0, 110px) minmax(0, 1fr); }
.video-small p { font-size: 14px; }
.work-note {
  margin: clamp(36px, 4vw, 56px) 0 0; padding-top: 22px; border-top: 1px solid var(--rule);
  font-size: 13px; color: var(--muted); max-width: 96ch;
}

@media (max-width: 980px) {
  .video-lead { grid-template-columns: minmax(0, 240px) minmax(0, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .video-facts li { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 720px) {
  .video-lead, .video-pair .video-card, .video-small { grid-template-columns: 1fr; }
  .video-pair { grid-template-columns: 1fr; }
  .video-frame { max-width: 320px; }
  .video-lead .video-frame iframe, .video-frame iframe { min-height: 540px; }
}

/* ---------- Editorial plates ---------- */
.editorial { padding-block: var(--band); background: var(--ink-2); }
.plates {
  margin-top: clamp(40px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2.2vw, 32px); row-gap: clamp(44px, 6vw, 96px);
}
.plate { margin: 0; }
.plate a { display: block; }
.plate img { width: 100%; border: 1px solid var(--rule); padding: 8px; background: var(--panel); }
.plate figcaption { margin-top: 16px; display: grid; gap: 8px; }
.plate figcaption p { margin: 0; font-family: var(--display); font-size: clamp(19px, 1.6vw, 25px); line-height: 1.25; max-width: 30ch; }
.plate-link {
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  text-underline-offset: 6px; text-decoration-color: var(--gold); justify-self: start; color: var(--paper-2);
}
.plate-link:hover { color: var(--gold-lt); }
.plate-1 { grid-column: 1 / span 6; }
.plate-2 { grid-column: 8 / span 4; align-self: end; }
.plate-3 { grid-column: 2 / span 5; }
.plate-4 { grid-column: 8 / span 4; margin-top: clamp(-72px, -4vw, 0px); }
@media (max-width: 980px) {
  .plates { grid-template-columns: repeat(2, 1fr); }
  .plate-1, .plate-2, .plate-3, .plate-4 { grid-column: auto; margin-top: 0; align-self: start; }
}
@media (max-width: 560px) { .plates { grid-template-columns: 1fr; } }

/* ---------- Why ---------- */
.why { padding-block: var(--band); }
.why-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.props { margin-top: clamp(36px, 4vw, 64px); }
.props li { padding: 28px 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: 56px minmax(0, 1fr); }
.props li:last-child { border-bottom: 1px solid var(--rule); }
.prop-no { font-size: 11px; font-weight: 500; letter-spacing: .2em; color: var(--gold); padding-top: 8px; }
.props h3 { grid-column: 2; font-family: var(--display); font-size: clamp(22px, 2.1vw, 30px); line-height: 1.15; }
.props p { grid-column: 2; margin: 10px 0 0; color: var(--paper-2); font-size: 15.5px; max-width: 58ch; }
.why-figure { margin: clamp(12px, 3vw, 56px) 0 0; }
.why-figure img { width: 100%; border: 1px solid var(--rule); padding: 8px; background: var(--panel); }
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-figure { max-width: 460px; }
  .props li { grid-template-columns: 44px minmax(0, 1fr); }
}

/* ---------- Routes ---------- */
.routes { padding-block: var(--band); background: var(--ink-2); }
.route-list { margin-top: clamp(40px, 5vw, 76px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 26px); }
.route {
  background: var(--panel); border: 1px solid var(--rule-soft); border-top: 2px solid var(--gold-deep);
  padding: clamp(24px, 2.4vw, 36px); display: flex; flex-direction: column;
}
.route-feature { background: linear-gradient(150deg, var(--panel-2) 0%, var(--panel) 65%); border-top-color: var(--gold); }
.route-name { font-family: var(--display); font-size: clamp(28px, 2.9vw, 40px); line-height: 1.04; margin: 24px 0 0; }
.route-promise { margin: 16px 0 0; color: var(--paper-2); font-size: 15.5px; }
.route-points { margin: 20px 0 28px; display: grid; gap: 12px; }
.route-points li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--paper-2); }
.route-points li::before { content: ""; position: absolute; left: 0; top: 12px; width: 10px; height: 1px; background: var(--gold); }
.route-cta {
  margin-top: auto; align-self: start; font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 7px; text-decoration-color: var(--gold); color: var(--paper);
}
.route-cta:hover { color: var(--gold-lt); }
.routes-note {
  margin: clamp(32px, 4vw, 52px) 0 0; padding-top: 22px; border-top: 1px solid var(--rule);
  font-size: 14px; color: var(--paper-2); max-width: 96ch;
}
.routes-note strong { color: var(--paper); font-weight: 500; }
@media (max-width: 980px) { .route-list { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { padding-block: var(--band); }
.steps { margin-top: clamp(40px, 5vw, 76px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.4vw, 40px); }
.steps li { border-top: 1px solid var(--gold); padding-top: 22px; }
.steps h3 { font-family: var(--display); font-size: clamp(21px, 2vw, 27px); line-height: 1.15; margin: 14px 0 10px; }
.steps p:not(.step-no) { color: var(--paper-2); font-size: 15px; margin: 0; }
.process-note {
  margin: clamp(36px, 4vw, 56px) 0 0;
  font-family: var(--display); font-size: clamp(20px, 2vw, 28px); line-height: 1.4;
  color: var(--paper); max-width: 48ch;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about { padding-block: var(--band); background: var(--ink-2); }
.about-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.about-figure { margin: 0; }
.about-figure img { width: 100%; border: 1px solid var(--rule); padding: 8px; background: var(--panel); }
.about-copy p { color: var(--paper-2); max-width: 58ch; }
.about-copy .section-title { margin-bottom: 26px; }
.about-facts { margin: 34px 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); }
.about-facts > div { padding: 16px 0; border-bottom: 1px solid var(--rule-soft); }
.about-facts > div:nth-child(odd) { padding-right: 26px; }
.about-facts dt { font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.about-facts dd { margin: 6px 0 0; font-size: 15px; color: var(--paper); }
.about-note { margin-top: 26px; font-size: 13.5px; color: var(--muted); }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } .about-figure { max-width: 420px; } }
@media (max-width: 520px) { .about-facts { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { padding-block: var(--band); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq-list { border-top: 1px solid var(--gold); }
.faq details { border-bottom: 1px solid var(--rule-soft); }
.faq summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(19px, 1.8vw, 25px); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 20px; color: var(--gold); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--gold-lt); }
.faq-body { padding: 0 0 26px; max-width: 68ch; }
.faq-body p { margin: 0 0 1em; color: var(--paper-2); font-size: 15.5px; }
.faq-body p:last-child { margin-bottom: 0; }
@media (max-width: 980px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Enquiry ---------- */
.enquire { padding-block: var(--band); background: var(--ink-2); border-top: 1px solid var(--rule); }
.enquire-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(36px, 5vw, 88px); align-items: start; }

.direct { margin-top: clamp(30px, 4vw, 48px); border-top: 1px solid var(--rule); padding-top: 24px; }
.direct-label { margin-bottom: 10px; color: var(--gold); }
.direct-number { font-family: var(--display); font-size: clamp(28px, 3vw, 44px); line-height: 1.05; margin: 0; color: var(--paper); }
.direct-number a { text-decoration: none; }
.direct-number a:hover { color: var(--gold-lt); }
.direct-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 18px; }
.copy-status { font-size: 13px; color: var(--gold-lt); }
.helps { margin-top: 30px; display: grid; gap: 10px; }
.helps li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--paper-2); }
.helps li::before { content: ""; position: absolute; left: 0; top: 12px; width: 10px; height: 1px; background: var(--gold); }

.brief-form { background: var(--panel); border: 1px solid var(--rule-soft); border-top: 2px solid var(--gold); padding: clamp(24px, 3vw, 44px); }
.form-title { font-family: var(--display); font-size: clamp(22px, 2vw, 28px); margin: 0; }
.form-sub { margin: 8px 0 26px; }
.field { margin-bottom: 20px; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field > label, .field > legend {
  display: block; font-size: 12.5px; font-weight: 400; letter-spacing: .06em;
  margin-bottom: 8px; padding: 0; color: var(--paper);
}
.req { color: var(--gold); }
.field input[type="text"], .field input[type="url"], .field textarea, .field select {
  width: 100%; font: 300 16px/1.5 var(--sans); color: var(--paper);
  background: var(--field); border: 1px solid var(--field-line); border-radius: 0;
  padding: 13px 14px; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select.is-flagged { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-glow); }
.field input::placeholder, .field textarea::placeholder { color: #8a7f72; }
.field input:focus, .field textarea:focus, .field select:focus { background-color: #0a0807; border-color: var(--gold); }
.field [aria-invalid="true"] { border-color: #d98b7a; background: #1b100d; }
.field-hint { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.field-err { margin: 8px 0 0; font-size: 13px; color: #e7a795; font-weight: 400; }

.usage legend { margin-bottom: 4px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 12px; }
.checks label { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--paper); cursor: pointer; }
.checks input { margin: 3px 0 0; accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
@media (max-width: 620px) { .checks { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

.more { border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); margin: 4px 0 26px; }
.more summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--paper);
}
.more summary::-webkit-details-marker { display: none; }
.more summary::after { content: "+"; color: var(--gold); font-size: 18px; }
.more[open] summary::after { content: "–"; }
.more-body { padding-bottom: 12px; }

.form-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.form-actions .btn { flex: 1 1 auto; }

.preview { margin-top: 28px; border-top: 1px solid var(--rule); padding-top: 24px; }
.preview-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 18px; }
.preview h3 { font-family: var(--display); font-size: 22px; }
.preview-state { margin: 0; font-size: 13px; color: var(--muted); }
.preview.is-stale .preview-state { color: #e7a795; }
#brief-text {
  width: 100%; margin-top: 14px; font: 300 15px/1.65 var(--sans); color: var(--paper);
  background: var(--field); border: 1px solid var(--field-line); padding: 16px; resize: vertical; min-height: 220px;
}
.preview.is-stale #brief-text { border-color: #d98b7a; opacity: .75; }
#brief-text:focus { outline: 2px solid var(--focus); outline-offset: 2px; }
.preview-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.preview-note { margin: 16px 0 0; font-size: 13px; color: var(--muted); }
.form-status { margin: 18px 0 0; font-size: 14px; color: var(--paper); }
.form-status a { color: var(--gold-lt); }
.form-status:empty { margin: 0; }
@media (max-width: 980px) { .enquire-grid { grid-template-columns: 1fr; } }

/* ---------- Colophon ---------- */
.colophon { background: var(--ink); color: var(--paper-2); padding-block: clamp(56px, 7vw, 96px) 40px; border-top: 1px solid var(--rule); }
.colophon-mark {
  font-family: var(--display); font-size: clamp(56px, 11vw, 132px); line-height: .9;
  color: var(--paper); margin: 0 0 clamp(28px, 4vw, 52px); letter-spacing: .02em;
}
.colophon-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 64px); }
.colophon-label { margin-bottom: 14px; color: var(--gold); }
.colophon-cols p:not(.colophon-label) { font-size: 13px; line-height: 1.65; margin: 0; max-width: 46ch; color: var(--muted); }
.colophon-cols ul { display: grid; gap: 10px; }
.colophon-cols li a {
  display: flex; justify-content: space-between; gap: 14px; text-decoration: none;
  font-size: 14.5px; color: var(--paper); border-bottom: 1px solid var(--rule-soft); padding-bottom: 10px;
}
.colophon-cols li a span { color: var(--muted); }
.colophon-cols li a:hover, .colophon-cols li a:hover span { color: var(--gold-lt); }
.colophon-fine { margin: clamp(36px, 5vw, 60px) 0 0; padding-top: 20px; border-top: 1px solid var(--rule-soft); font-size: 12.5px; color: var(--muted); }
@media (max-width: 860px) { .colophon-cols { grid-template-columns: 1fr; } }

/* ---------- Mobile refinements ---------- */
@media (max-width: 900px) {
  /* Legible labels: nothing under 12px on a phone */
  .eyebrow, .section-mark, .plate-no, .route-eyebrow, .step-no,
  .colophon-label, .direct-label, .form-sub, .video-rank, .features-title, .stat h3 {
    font-size: 12px; letter-spacing: .18em;
  }
  .hero-stats dt, .about-facts dt, .stat-figure .unit, .video-figure .unit, .hero-stats .unit { font-size: 11.5px; }
  .numbers-note, .work-note, .colophon-cols p:not(.colophon-label), .colophon-fine,
  .field-hint, .preview-note, .preview-state, .about-note, .copy-status, .video-fallback { font-size: 13.5px; }
  .stat p, .video-copy p, .route-points li, .helps li, .steps p:not(.step-no) { font-size: 15.5px; }

  /* Comfortable tap targets on every inline link */
  .plate-link, .video-link, .stat-link, .route-cta, .link-underline, .faq summary, .more summary {
    display: inline-flex; align-items: center; min-height: 44px; font-size: 12.5px;
  }
  .faq summary, .more summary { display: flex; }
  .colophon-cols li a { min-height: 44px; align-items: center; }
  .nav a { padding: 18px 0; }

  /* A shorter opening so the headline and buttons arrive sooner */
  .hero-figure { aspect-ratio: 4 / 3; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .hero-lede { font-size: 16px; margin-top: 18px; }
  .hero-stats { gap: 22px 28px; }
  .hero-stats dd { font-size: 30px; }

  /* Breathing room where cards stack */
  .stat { padding: 22px; }
  .video-lead, .video-pair .video-card, .video-small { padding: 20px; gap: 18px; }
  .video-frame { max-width: 100%; }
  .video-play img { max-height: 62svh; object-position: 50% 20%; }
}

@media (max-width: 480px) {
  .hero-stats { width: 100%; justify-content: space-between; gap: 18px; }
  .hero-stats > div { flex: 1 1 30%; }
  .hero-stats dd { font-size: 27px; }
}

/* ---------- Sticky enquire bar (phones only) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 12px; align-items: center; justify-content: space-between;
  padding: 12px max(16px, env(safe-area-inset-left, 0px)) calc(12px + env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-right, 0px));
  background: rgba(11, 10, 8, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--rule);
  transform: translateY(110%);
  transition: transform .4s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta p { margin: 0; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.sticky-cta strong { display: block; font-family: var(--display); font-size: 17px; letter-spacing: 0; text-transform: none; color: var(--paper); font-weight: 400; }
.sticky-cta .btn { min-height: 46px; padding: 0 20px; font-size: 12px; letter-spacing: .14em; }
@media (max-width: 900px) { .sticky-cta { display: flex; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: none; } }

/* ---------- Motion: type and rules only ---------- */
.js .rise { transform: translateY(18px); opacity: .001; transition: transform .8s var(--ease), opacity .8s var(--ease); }
.js .rise.is-in { transform: none; opacity: 1; }
.js .hero-text > * { animation: rise-in .9s var(--ease) both; }
.js .hero-text > *:nth-child(2) { animation-delay: .06s; }
.js .hero-text > *:nth-child(3) { animation-delay: .12s; }
.js .hero-text > *:nth-child(4) { animation-delay: .18s; }
.js .hero-text > *:nth-child(5) { animation-delay: .24s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rise { transform: none; opacity: 1; }
}

/* ---------- Print ---------- */
@media print {
  @page { margin: 14mm; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .masthead, .nav-toggle, .brief-form, .hero-actions, .helps, .play-mark, .play-hint { display: none !important; }
  .numbers, .editorial, .routes, .about, .enquire, .colophon, .stat, .route, .video-lead, .video-card { background: #fff !important; }
  .numbers *, .editorial *, .routes *, .about *, .enquire *, .colophon *, .work * { color: #000 !important; }
  .lede, .colophon-cols p, .colophon-fine, .work-note, .numbers-note { color: #333 !important; }
  .hero { min-height: 0; padding-top: 0; border: 0; }
  .plate, .route, .steps li, .props li, .stat, .video-card, .faq details { break-inside: avoid; }
  .section-head, h2, h3 { break-after: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #555; word-break: break-all; }
}
