/* ============================================================
   Asri — marketing & production
   Editorial dark cinema. Hairlines, square corners, generous air:
   the same house rules as the Asri decks, carried to the web.
   ============================================================ */

:root {
  /* ground */
  --ink:        #0B1517;
  --ink-2:      #101E21;
  --paper:      #F4F2ED;
  --paper-2:    #E9E6DF;

  /* type */
  --on-dark:    #E9EEED;
  --on-dark-dim:#93A6A5;
  --on-light:   #16262B;   /* the decks' INK */
  --on-light-dim:#4E6066;  /* the decks' MUT */

  /* accent — Asri green-teal, lifted for dark grounds */
  --accent:     #0E7A72;
  --accent-lift:#5FBFB0;

  /* hairlines */
  --rule-dark:  rgba(233, 238, 237, .15);
  --rule-light: #C9D6D4;

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad:   clamp(18px, 3vw, 58px);
  --wrap:  1720px;
  --sec:   clamp(84px, 11vw, 168px);
  --ease:  cubic-bezier(.22, .68, .16, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -.015em;
  line-height: 1.06;
}

:focus-visible {
  outline: 2px solid var(--accent-lift);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--paper); color: var(--on-light);
  padding: 12px 20px; font-size: 14px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- shared ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { max-width: var(--wrap); }
.wrap-narrow > * { max-width: 940px; }

.kicker {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--accent-lift);
  margin: 0 0 22px;
}
.section-light .kicker { color: var(--accent); }

.section-dark  { background: var(--ink);   color: var(--on-dark);  padding: var(--sec) 0; }
.section-light { background: var(--paper); color: var(--on-light); padding: var(--sec) 0; }
.section-light h1, .section-light h2, .section-light h3 { color: var(--on-light); }

.sec-head { margin-bottom: clamp(44px, 6vw, 84px); }
.sec-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); max-width: 17ch; }
.sec-lead {
  margin-top: 24px; max-width: 56ch;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  color: var(--on-dark-dim);
}
.section-light .sec-lead { color: var(--on-light-dim); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid transparent;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--on-dark); color: var(--ink); }
.btn-solid:hover { background: var(--accent-lift); color: var(--ink); }
.btn-ghost { border-color: var(--rule-dark); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--accent-lift); color: var(--accent-lift); }
.btn-lg { padding: 19px 40px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 21, 23, .88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--rule-dark);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  height: 78px; display: flex; align-items: center; gap: 32px;
}
.nav.scrolled .nav-inner { height: 66px; transition: height .45s var(--ease); }

.wordmark { display: block; flex: none; }
.wordmark img { height: 30px; width: auto; }

.nav-links {
  margin-left: auto; display: flex; align-items: center; gap: 34px;
  font-size: 13px; letter-spacing: .06em; font-weight: 400;
}
.nav-links a { color: var(--on-dark); opacity: .78; transition: opacity .3s, color .3s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent-lift); }
.nav-cta-inline { display: none; }
.nav-cta { flex: none; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 0 clamp(40px, 6vh, 64px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 50%;
  transform: scale(1.08);
  animation: slowpan 26s var(--ease) forwards;
}
@keyframes slowpan { to { transform: scale(1); } }

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,21,23,.82) 0%, rgba(11,21,23,.46) 42%, rgba(11,21,23,0) 78%),
    linear-gradient(to top, rgba(11,21,23,.92) 0%, rgba(11,21,23,.46) 34%, rgba(11,21,23,.08) 62%, rgba(11,21,23,.52) 100%);
}
.hero-inner { position: relative; }
.hero-kicker { color: var(--accent-lift); margin-bottom: 26px; }
.hero-title {
  font-size: clamp(2.8rem, 7.4vw, 6.5rem);
  line-height: .99; max-width: 15ch;
  text-shadow: 0 2px 40px rgba(11,21,23,.45);
}
.hero-sub {
  margin-top: 30px; max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  color: rgba(233,238,237,.86);
}
.hero-actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-foot {
  position: relative; margin-top: clamp(46px, 8vh, 88px);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--rule-dark); padding-top: 20px;
  font-size: 11px; letter-spacing: .19em; text-transform: uppercase;
  color: var(--on-dark-dim);
}
.hero-scroll { position: relative; padding-left: 26px; }
.hero-scroll::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 1px;
  background: var(--accent-lift); transform-origin: left;
  animation: nudge 2.6s var(--ease) infinite;
}
@keyframes nudge { 0%,100% { transform: scaleX(.4); opacity: .5; } 50% { transform: scaleX(1); opacity: 1; } }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { padding-top: clamp(96px, 13vw, 190px); padding-bottom: clamp(52px, 6vw, 92px); }
.statement-lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.3vw, 2.72rem);
  line-height: 1.24; letter-spacing: -.012em;
  margin-bottom: clamp(44px, 5vw, 68px);
}
.statement-cols {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  color: var(--on-dark-dim);
  padding-top: 34px; border-top: 1px solid var(--rule-dark);
}
.pull {
  margin-top: clamp(52px, 6vw, 84px);
  padding-top: 34px; border-top: 1px solid var(--rule-dark);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  line-height: 1.32; color: var(--on-dark); max-width: 34ch;
}

/* ============================================================
   WORK / MOSAIC
   ============================================================ */
.work { padding-top: clamp(56px, 7vw, 108px); padding-bottom: clamp(64px, 8vw, 110px); }
.mosaic {
  max-width: var(--wrap); margin-left: auto; margin-right: auto;
  padding: 0 var(--pad);
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 15vw, 248px);
  grid-auto-flow: dense;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.tile { margin: 0; overflow: hidden; background: var(--ink-2); }
.t-wide { grid-column: span 2; }
.t-tall { grid-row: span 2; }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: saturate(.94);
}
.tile:hover img { transform: scale(1.045); filter: saturate(1.06); }

/* Directly under the hero now, so it is a shallow band rather than a full section. */
.worked { padding: clamp(44px, 5vw, 76px) 0 clamp(30px, 3.4vw, 52px); }
.reel-head { border-top: 1px solid var(--rule-dark); padding-top: 34px; }
.reel-head .kicker { margin-bottom: 0; }

/* Marquee: one set plus an aria-hidden clone, translated by exactly -50% so the
   seam is invisible. The duration is set from the track width in script.js, so
   the pace stays constant however many brands are in the list. */
.reel {
  margin-top: 30px; overflow: hidden; outline: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reel:focus-visible { outline: 2px solid var(--accent-lift); outline-offset: 6px; }
.reel-track {
  display: flex; width: max-content;
  animation: reelScroll var(--reel-dur, 46s) linear infinite;
}
.reel:hover .reel-track,
.reel:focus-within .reel-track,
.reel.paused .reel-track { animation-play-state: paused; }
@keyframes reelScroll { to { transform: translateX(calc(-1 * var(--reel-shift, 50%))); } }

.reel-set {
  display: flex; align-items: center; flex: none;
  gap: clamp(48px, 6vw, 92px);
  padding-right: clamp(48px, 6vw, 92px);
}
.reel-set li { display: flex; align-items: center; flex: none; }

.reel-set img {
  width: auto; opacity: .5;
  transition: opacity .45s var(--ease);
}
.reel-set li:hover img, .reel-set li:hover .mark { opacity: .95; }

/* Brands with no logo file are set as wordmarks in the site's own type rather
   than as reproductions of their marks. Weighted to sit level with the images. */
.mark {
  font-family: var(--sans); font-size: 1.16rem; font-weight: 500;
  letter-spacing: -.012em; white-space: nowrap;
  color: var(--on-dark); opacity: .5;
  transition: opacity .45s var(--ease);
}

/* Optically matched rather than uniform: these marks carry very different visual
   weight, so a single height would let Canon shout and DJI disappear. Boattime is
   a stacked lockup, hence the extra height. */
.l-corona    { height: 31px; }
.l-marriott  { height: 33px; }
.l-dji       { height: 23px; }
.l-indonesia { height: 34px; }
.l-canon     { height: 22px; }
.l-natgeo    { height: 29px; }
.l-talalla   { height: 25px; }
.l-boattime  { height: 38px; }
.l-bluepass  { height: 27px; }

/* BluePass has no wordmark of its own — mark plus name, as its own site sets it. */
.lockup { gap: 11px; }

/* ============================================================
   QUOTE BAND
   ============================================================ */
.band {
  position: relative; overflow: hidden;
  min-height: clamp(340px, 52vh, 560px);
  display: flex; align-items: center;
}
.band-media { position: absolute; inset: -12% 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,21,23,.9) 0%, rgba(11,21,23,.62) 52%, rgba(11,21,23,.34) 100%);
}
.band-inner { position: relative; z-index: 1; }
.band-quote {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4.3vw, 3.4rem);
  line-height: 1.14; max-width: 20ch;
  text-shadow: 0 2px 40px rgba(11,21,23,.5);
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.svc {
  padding: 34px clamp(20px, 2.4vw, 34px) 8px 0;
  border-top: 1px solid var(--rule-light);
}
.svc + .svc { padding-left: clamp(20px, 2.4vw, 34px); }
.svc .svc-num {
  font-family: var(--serif); font-size: 2.05rem; line-height: 1;
  color: var(--accent); margin-bottom: 20px;
}
.svc h3 { font-size: clamp(1.4rem, 2vw, 1.72rem); margin-bottom: 14px; }
.svc > p { color: var(--on-light-dim); max-width: 42ch; }
.ticks { margin: 24px 0 0; }
.ticks li {
  position: relative; padding-left: 20px; margin-bottom: 11px;
  font-size: 14.5px; line-height: 1.6; color: var(--on-light-dim);
  max-width: 46ch;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 9px; height: 1px; background: var(--accent);
}
.svc .svc-terms {
  margin-top: 26px; padding-top: 16px;
  border-top: 1px solid var(--rule-light);
  font-size: 11px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--accent);
}

.craft {
  margin-top: clamp(56px, 7vw, 96px); padding-top: 40px;
  border-top: 1px solid var(--rule-light);
}
.craft-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.craft-list li {
  font-size: 14.5px; line-height: 1.62; color: var(--on-light-dim);
  padding-top: 18px; border-top: 1px solid var(--rule-light);
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors { padding-top: 0; }
.sector {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(30px, 5vw, 76px); align-items: center;
  padding: clamp(46px, 6vw, 82px) 0;
  border-top: 1px solid var(--rule-light);
}
.sector-flip .sector-media { order: 2; }
.sector-media { overflow: hidden; background: var(--paper-2); }
.sector-media img {
  width: 100%; height: clamp(240px, 34vw, 440px); object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.sector:hover .sector-media img { transform: scale(1.035); }
/* The beach-club frame is mostly sky above the parasols; hold the crop low. */
.sector-media img.focus-low { object-position: 50% 88%; }
.sector-body h3 {
  font-size: clamp(1.6rem, 2.9vw, 2.35rem);
  line-height: 1.12; margin-bottom: 18px; max-width: 18ch;
}
.sector-body > p { color: var(--on-light-dim); max-width: 48ch; }
.sector-closer {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--rule-light);
  color: var(--on-light) !important;
  font-size: 15.5px;
}

.studio { padding-top: clamp(48px, 5.5vw, 88px); }

/* ============================================================
   STUDIO / TEAM
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.8vw, 48px); }
.member { padding-top: 30px; border-top: 1px solid var(--rule-dark); }
.member h3 { font-size: clamp(1.25rem, 1.7vw, 1.5rem); margin-bottom: 7px; }

/* Staged for the team portraits. Nothing renders these yet: the photographs are
   all-or-nothing (see PORTRAITS in prep_img.py), and only one of the four exists,
   so the team section is type only. Add the .portrait blocks back to index.html
   once prep_img.py reports all four present.
   Square corners, same as every other frame on the page. */
.portrait { margin-bottom: 22px; overflow: hidden; background: var(--ink-2); }
.portrait img {
  width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: filter .7s var(--ease), transform 1.1s var(--ease);
}
.member:hover .portrait img { filter: saturate(1); transform: scale(1.02); }
/* A placeholder must never pass for a photograph of a real person. */
.portrait-pending img { opacity: .8; }
.about { font-size: 14.5px; line-height: 1.62; color: var(--on-dark-dim); max-width: 42ch; }
.member-pending { opacity: .6; border-top-style: dashed; }
.member-pending .role { color: #C98F6A; }
.role {
  font-size: 11px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--accent-lift); margin-bottom: 24px;
}
.dashes li {
  position: relative; padding-left: 20px; margin-bottom: 12px;
  font-size: 14.5px; line-height: 1.62; color: var(--on-dark-dim);
  max-width: 44ch;
}
.dashes li::before {
  content: ""; position: absolute; left: 0; top: .74em;
  width: 9px; height: 1px; background: var(--accent-lift);
}
.section-light .dashes li { color: var(--on-light-dim); }
.section-light .dashes li::before { background: var(--accent); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding-top: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px); }
.step { padding-top: 28px; border-top: 1px solid var(--rule-dark); }
.step .step-num {
  font-family: var(--serif); font-size: 1.85rem; line-height: 1;
  color: var(--accent-lift); margin-bottom: 18px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 12px; }
.step > p { font-size: 14.5px; color: var(--on-dark-dim); max-width: 40ch; }
.step .step-when {
  margin-top: 20px; font-size: 11px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--accent-lift);
}
.process-closer {
  margin-top: clamp(48px, 6vw, 78px); padding-top: 32px;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.72rem);
  line-height: 1.34; max-width: 40ch;
}

/* ============================================================
   METRICS
   ============================================================ */
.metric-cols {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(26px, 4vw, 60px);
}
.metric-cols ul { padding-top: 28px; border-top: 1px solid var(--rule-light); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative; overflow: hidden;
  padding: clamp(104px, 14vw, 200px) 0;
}
.contact-media { position: absolute; inset: -10% 0; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.contact::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,21,23,.9) 0%, rgba(11,21,23,.68) 48%, rgba(11,21,23,.34) 100%);
}
.contact-inner { position: relative; z-index: 1; }
.contact-inner > * { max-width: 760px; }
.contact-inner h2 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); }
.contact-lead {
  margin-top: 28px; font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(233,238,237,.88); max-width: 52ch;
  text-shadow: 0 1px 20px rgba(11, 21, 23, .7);
}
.contact-line {
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.32;
}
.contact-inner .btn { margin-top: 38px; }
.contact-sig {
  margin-top: 40px; font-size: 13px; line-height: 1.9;
  color: rgba(233, 238, 237, .82);
  text-shadow: 0 1px 16px rgba(11, 21, 23, .8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); border-top: 1px solid var(--rule-dark); padding: 54px 0 60px; }
.foot-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 40px; }
.foot-mark img { height: 26px; opacity: .8; }
.foot-meta { font-size: 12.5px; color: var(--on-dark-dim); letter-spacing: .04em; }
.foot-meta a { border-bottom: 1px solid var(--rule-dark); padding-bottom: 2px; }
.foot-meta a:hover { color: var(--accent-lift); border-bottom-color: var(--accent-lift); }
.foot-copy { flex-basis: 100%; font-size: 11.5px; color: rgba(147,166,165,.65); margin-top: 8px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .craft-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 42px; height: 42px; padding: 0 9px;
    background: none; border: 0; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 1px; background: var(--on-dark);
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .nav-toggle.open span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle.open span:last-child  { transform: translateY(-3px) rotate(-45deg); }

  .nav-links {
    position: fixed; inset: 78px 0 auto; margin: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(11,21,23,.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--rule-dark);
    padding: 8px var(--pad) 26px;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .45s var(--ease), visibility .45s;
  }
  .nav-links.open { max-height: 70vh; visibility: visible; }
  .nav-links a {
    width: 100%; padding: 17px 0; font-size: 16px;
    border-bottom: 1px solid var(--rule-dark);
  }
  .nav-cta-inline { display: block; color: var(--accent-lift) !important; opacity: 1; border-bottom: 0; }

  .statement-cols { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc, .svc + .svc { padding-left: 0; padding-right: 0; }
  .sector { grid-template-columns: 1fr; }
  .sector-flip .sector-media { order: 0; }
  .team { grid-template-columns: 1fr; }
  .metric-cols { grid-template-columns: 1fr; }
  .metric-cols ul + ul { padding-top: 0; border-top: 0; margin-top: -4px; }
}

@media (max-width: 620px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); gap: 10px; grid-auto-rows: clamp(130px, 30vw, 200px); }
  .t-wide { grid-column: span 2; }
  .hero { min-height: 92svh; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .craft-list, .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .reel-set { gap: 40px; padding-right: 40px; }
  .mark { font-size: 1rem; }
  .l-corona { height: 25px; }  .l-marriott  { height: 26px; }
  .l-dji    { height: 19px; }  .l-indonesia { height: 27px; }
  .l-canon  { height: 18px; }  .l-natgeo    { height: 24px; }
  .l-talalla{ height: 20px; }  .l-boattime  { height: 31px; }
  .l-bluepass { height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-media img { animation: none; transform: none; }
  .hero-scroll::before { animation: none; transform: none; }
  .tile img, .sector-media img { transition: none; }
  .tile:hover img, .sector:hover .sector-media img { transform: none; }
  .reel { -webkit-mask-image: none; mask-image: none; padding: 0 var(--pad); }
  .reel-track { animation: none; width: 100%; flex-wrap: wrap; }
  .reel-set { flex-wrap: wrap; gap: 30px 44px; padding-right: 0; }
  .reel-set[aria-hidden="true"] { display: none; }
}

/* ============================================================
   VERIFICATION HOOK (?shot) — see script.js
   ============================================================ */
.shot-mode .hero { min-height: 860px; }
.shot-mode .hero-media img { animation: none; transform: none; }
.shot-mode .reveal { opacity: 1; transform: none; transition: none; }
.shot-mode .hero-scroll::before { animation: none; transform: none; }
