:root {
  --ink: #161616;
  --ink-soft: #6b6b68;
  --paper: #fbfbfa;
  --line: #e4e4e1;
  --timber: #a06534;
  --radius: 14px;
  --ph: #e9e7e2;
  --hover: #f0f0ed;
  --glass: rgba(251, 251, 250, .92);
  --chip: rgba(251, 251, 250, .92);
  --glass-nav: rgba(251, 251, 250, .78);
  --nav-bg: rgba(251, 251, 250, .92);
  --foot-bg: #161616;
  --menu-bg: #161616;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --ink: #f1efe9;
  --ink-soft: #a09e96;
  --paper: #171614;
  --line: #2e2c28;
  --timber: #c98d4b;
  --ph: #242220;
  --hover: #26241f;
  --glass: rgba(24, 23, 21, .9);
  --chip: rgba(26, 25, 23, .88);
  --glass-nav: rgba(23, 22, 20, .82);
  --nav-bg: rgba(23, 22, 20, .9);
  --foot-bg: #0e0d0c;
  --menu-bg: #0e0d0c;
  color-scheme: dark;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--paper); color: var(--ink);
  font-family: "Helvetica Neue", -apple-system, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.25rem, 3.5vw, 3rem); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--nav-bg); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  height: 68px; display: flex; align-items: center; gap: 2rem;
}
.brand { text-decoration: none; line-height: 1; display: flex; align-items: center; }
.brand img { height: 46px; width: auto; display: block; transition: filter .3s ease, height .35s ease; }
.brand b {
  display: block; font-weight: 500; font-size: 1.02rem; letter-spacing: .34em;
}
.brand span {
  display: block; font-size: .56rem; letter-spacing: .42em; color: var(--ink-soft);
  border-top: 1px solid var(--ink); padding-top: .18rem; margin-top: .18rem;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: .92rem; color: var(--ink-soft);
  transition: color .2s ease; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.on { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--paper) !important; padding: .5rem 1.1rem;
  border-radius: 999px; font-weight: 500;
}
.nav-cta:hover { filter: brightness(1.12); }
.nav-menu { display: none; }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-menu { display: block; margin-left: auto; position: relative; }
  .nav-menu summary {
    list-style: none; cursor: pointer; font-size: .95rem; padding: .5rem 1rem;
    border: 1px solid var(--line); border-radius: 999px;
  }
  .nav-menu summary::-webkit-details-marker { display: none; }
  .nav-menu[open] .menu-drop { display: flex; }
  .menu-drop {
    position: absolute; right: 0; top: calc(100% + .6rem); min-width: 220px;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(40, 32, 20, .14);
    display: flex; flex-direction: column; padding: .5rem;
  }
  .menu-drop a {
    text-decoration: none; padding: .6rem .8rem; border-radius: 8px; font-size: .95rem;
  }
  .menu-drop a:hover, .menu-drop a.on { background: var(--hover); }
}

/* ---------- hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem); }
.hero-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(1.5rem, 3vw, 3.5rem); align-items: center;
}
.kicker {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 1rem;
}
h1, .h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.05;
}
.hero p.lead {
  margin-top: 1rem; font-size: 1.05rem; line-height: 1.55;
  color: var(--ink-soft); max-width: 28rem;
}
.hero .cta-row { margin-top: 1.8rem; display: flex; gap: .9rem; align-items: center; }
.btn {
  display: inline-block; background: var(--ink); color: var(--paper); text-decoration: none;
  font-size: .95rem; font-weight: 500; padding: .85rem 1.6rem; border-radius: 999px;
  transition: transform .15s ease, background-color .2s ease; border: 0; cursor: pointer;
}
.btn:hover { filter: brightness(1.12); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn.ghost:hover { background: var(--hover); }
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px rgba(40, 32, 20, .14); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 899px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- sections ---------- */
section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.sec-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); max-width: 44rem; }
h2, .h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 600;
  letter-spacing: -.015em; line-height: 1.1;
}
.sec-head p { margin-top: .7rem; color: var(--ink-soft); line-height: 1.55; }

/* services grid (home) */
.svc-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem;
}
.svc {
  position: relative; border-radius: var(--radius); overflow: hidden;
  text-decoration: none; display: block; background: var(--ph);
}
.svc.big { grid-column: span 6; aspect-ratio: 16 / 10; }
.svc.std { grid-column: span 6; aspect-ratio: 16 / 9; }
@media (min-width: 900px) {
  .svc.std { grid-column: span 3; aspect-ratio: 4 / 3.4; }
}
.svc img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}
.svc:hover img { transform: scale(1.045); }
.svc .label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.2rem .95rem;
  background: linear-gradient(180deg, transparent, rgba(15, 13, 10, .68));
  color: #fff;
}
.svc .label b { font-size: 1.12rem; font-weight: 600; display: block; }
.svc .label span { font-size: .85rem; opacity: .8; }
@media (max-width: 899px) {
  .svc.big, .svc.std { grid-column: span 12; aspect-ratio: 16 / 9; }
}

/* craft band */
.band {
  display: grid; grid-template-columns: 7fr 5fr; gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}
.band .media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.band .media img { width: 100%; height: 100%; object-fit: cover; }
.band blockquote {
  font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 500; line-height: 1.3;
  letter-spacing: -.01em;
}
.band .sub { margin-top: 1rem; color: var(--ink-soft); line-height: 1.55; max-width: 26rem; }
@media (max-width: 899px) { .band { grid-template-columns: 1fr; } }

/* gallery */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .8rem;
}
.gallery a {
  display: block; border-radius: 10px; overflow: hidden; background: var(--ph);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.gallery a:hover img { transform: scale(1.04); }


/* video poster */
.vid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.vid-grid.single { grid-template-columns: 1fr; max-width: 980px; }
.vid {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: #14120f; aspect-ratio: 16 / 9;
}
.vid img, .vid video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem; color: #fff;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 9, 7, .6));
}
.vid .play i {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, .92);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.vid:hover .play i { transform: scale(1.08); }
.vid .play i::after {
  content: ""; border-left: 18px solid var(--ink); border-top: 11px solid transparent;
  border-bottom: 11px solid transparent; margin-left: 5px;
}
.vid .play b { font-weight: 500; font-size: .95rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
@media (max-width: 899px) { .vid-grid { grid-template-columns: 1fr; } }

/* contact band */
.contact-band {
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.contact-band h2 { color: #fff; }
.contact-band p { margin-top: .6rem; color: rgba(251, 251, 250, .72); }
.contact-band .btn { background: var(--paper); color: var(--ink); }
.contact-band .btn:hover { background: #fff; }
@media (max-width: 700px) { .contact-band { grid-template-columns: 1fr; } }

/* contact page cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; max-width: 900px; }
.ccard {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  text-decoration: none; transition: background-color .2s ease;
}
.ccard:hover { background: var(--hover); }
.ccard span { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.ccard b { display: block; font-size: 1.35rem; font-weight: 600; margin-top: .5rem; letter-spacing: -.01em; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }

/* ---------- build (scroll scrub) section ---------- */
.lc-build { position: relative; }
.lc-runway { height: 520vh; position: relative; }
.lc-frame {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  display: grid; grid-template-columns: minmax(360px, 5fr) 7fr;
  max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.25rem, 3.5vw, 3rem);
  gap: clamp(1.5rem, 3vw, 3.5rem); align-items: center;
}
.lc-rail { max-width: 30rem; }
.lc-rail h2 { margin-bottom: .9rem; }
.lc-rail .lc-kicker {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 1.1rem;
}
.lc-intro { font-size: 1rem; line-height: 1.55; color: var(--ink-soft); max-width: 26rem; margin-bottom: 1.9rem; }
.lc-stages { list-style: none; margin-bottom: 2.1rem; }
.lc-stage-btn {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  font: inherit; cursor: pointer; padding: .55rem .9rem; border-radius: var(--radius);
  transition: background-color .25s ease;
}
.lc-stage-btn:hover { background: var(--hover); }
.lc-stage-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.lc-stage-name { display: block; font-size: 1.02rem; font-weight: 500; color: var(--ink-soft); transition: color .25s ease; }
.lc-stage-detail {
  display: block; font-size: .87rem; line-height: 1.45; color: var(--ink-soft);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease, margin .35s ease;
}
.lc-track {
  display: block; height: 2px; background: var(--line); border-radius: 1px;
  margin-top: .5rem; overflow: hidden; transform: scaleY(0); transition: transform .3s ease;
}
.lc-track i { display: block; height: 100%; width: 100%; background: var(--timber); transform: scaleX(0); transform-origin: left; }
li.is-active .lc-stage-name { color: var(--ink); font-weight: 600; }
li.is-active .lc-stage-detail { max-height: 3.2rem; opacity: 1; margin-top: .3rem; }
li.is-active .lc-track { transform: scaleY(1); }
li.is-done .lc-stage-name { color: var(--ink); }
.lc-media {
  position: relative; height: min(78dvh, 56.25vw); border-radius: var(--radius);
  overflow: hidden; background: var(--ph); box-shadow: 0 24px 60px rgba(40, 32, 20, .14);
}
.lc-media canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.lc-loader {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(180deg, transparent 70%, rgba(22, 22, 22, .28));
  opacity: 1; transition: opacity .5s ease; pointer-events: none;
}
.lc-loader.done { opacity: 0; }
.lc-loader i { display: block; height: 3px; width: 100%; background: #fff; transform-origin: left; transform: scaleX(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lc-runway { height: auto; }
  .lc-frame { position: static; height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .lc-stage-detail { max-height: none; opacity: 1; margin-top: .3rem; }
  .lc-track, .lc-loader { display: none; }
  .lc-media { height: auto; aspect-ratio: 16 / 9; }
  .lc-media img.lc-static { width: 100%; height: 100%; object-fit: cover; display: block; }
}
@media (max-width: 899px) {
  .lc-runway { height: 460vh; }
  .lc-frame { grid-template-columns: 1fr; gap: 0; padding: 0; align-items: stretch; grid-template-rows: auto 1fr; }
  .lc-media { order: -1; height: 44dvh; border-radius: 0; box-shadow: none; }
  .lc-rail { max-width: none; padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; overflow: hidden; }
  .lc-rail .lc-kicker { margin-bottom: .45rem; font-size: .62rem; }
  .lc-rail h2 { font-size: 1.4rem; margin-bottom: .55rem; }
  .lc-intro { display: none; }
  .lc-stages { margin-bottom: .9rem; }
  .lc-stage-btn { padding: .32rem .6rem; }
  .lc-stage-name { font-size: .92rem; }
  .lc-stage-detail { font-size: .8rem; }
  li.is-active .lc-stage-detail { max-height: 2.6rem; }
  li:not(.is-active) .lc-stage-detail { display: none; }
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line); padding: 3rem 0 3.5rem; margin-top: 2rem;
}
.foot { display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem; align-items: center; }
.foot img { width: 130px; }
.foot-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.foot-links a { text-decoration: none; color: var(--ink-soft); font-size: .9rem; }
.foot-links a:hover { color: var(--ink); }
.foot-contact { text-align: right; font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }
.foot-contact a { color: var(--ink); text-decoration: none; font-weight: 500; }
@media (max-width: 799px) {
  .foot { grid-template-columns: 1fr; text-align: left; }
  .foot-contact { text-align: left; }
}

/* ================= v2 components ================= */

/* fullscreen video hero */
.vhero { position: relative; height: 100dvh; overflow: hidden; background: #14120f; margin-top: -68px; }
.vhero video, .vhero img.vhero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vhero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,.18), transparent 35%, transparent 55%, rgba(10,9,7,.62));
}
.vhero .vhero-copy {
  position: absolute; left: 0; right: 0; bottom: clamp(2.5rem, 7vh, 5.5rem); color: #fff;
}
.vhero h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.6rem); text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.vhero .lead {
  margin-top: 1rem; font-size: 1.08rem; line-height: 1.55; max-width: 30rem;
  color: rgba(255,255,255,.88); text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.vhero .cta-row { margin-top: 1.7rem; display: flex; gap: .9rem; }
.vhero .btn { background: #fff; color: var(--ink); }
.vhero .btn:hover { background: var(--paper); }
.vhero .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.vhero .btn.ghost:hover { background: rgba(255,255,255,.14); }

/* horizontal scroll-snap service strip */
.strip-wrap { position: relative; }
.strip {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 clamp(1.25rem, 3.5vw, 3rem) .5rem; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip .panel {
  position: relative; flex: 0 0 auto; width: min(72vw, 860px); height: min(62vh, 560px);
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: center;
  text-decoration: none; background: var(--ph);
}
.strip .panel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.strip .panel:hover img { transform: scale(1.04); }
.strip .panel .label {
  position: absolute; left: 0; right: 0; bottom: 0; color: #fff;
  padding: 3rem 1.6rem 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(15,13,10,.72));
}
.strip .panel .label b { display: block; font-size: 1.5rem; font-weight: 600; letter-spacing: -.01em; }
.strip .panel .label span { font-size: .95rem; opacity: .85; }
.strip-nav { display: flex; gap: .6rem; justify-content: flex-end; padding: 1rem clamp(1.25rem,3.5vw,3rem) 0; }
.strip-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; font-size: 1.7rem; line-height: 1; color: var(--ink);
  transition: background-color .2s ease;
}
.strip-nav button:hover { background: var(--hover); }
@media (max-width: 700px) { .strip .panel { width: 84vw; height: 54vh; } }

/* big type statement */
.statement { text-align: left; max-width: 62rem; }
.statement p {
  font-size: clamp(1.9rem, 4.4vw, 3.6rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.12;
}
.statement em {
  font-style: normal; box-shadow: inset 0 -0.18em 0 rgba(160, 101, 52, .35);
}
.statement .sub { margin-top: 1.2rem; font-size: 1.05rem; color: var(--ink-soft); max-width: 34rem; line-height: 1.55; }

/* cinema: video card scales to fullscreen on scroll */
.cinema { position: relative; }
.cinema-runway { height: 260vh; position: relative; }
.cinema-frame {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cinema-card {
  position: relative; width: 100%; height: 100%; overflow: hidden; cursor: pointer;
  background: #14120f; transform: scale(.62); border-radius: var(--radius);
  will-change: transform;
}
.cinema-card img, .cinema-card video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.cinema-card .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem; color: #fff;
  background: linear-gradient(180deg, transparent 55%, rgba(10,9,7,.6));
}
.cinema-card .play i {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center; transition: transform .2s ease;
}
.cinema-card:hover .play i { transform: scale(1.08); }
.cinema-card .play i::after {
  content: ""; border-left: 20px solid var(--ink); border-top: 12px solid transparent;
  border-bottom: 12px solid transparent; margin-left: 6px;
}
.cinema-card .play b { font-weight: 500; font-size: 1rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
@media (prefers-reduced-motion: reduce) {
  .cinema-runway { height: auto; }
  .cinema-frame { position: static; height: auto; aspect-ratio: 16/9; }
  .cinema-card { transform: none !important; border-radius: 0 !important; }
}

/* mosaic gallery */
.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px;
  grid-auto-flow: dense; gap: .8rem;
}
.mosaic a { position: relative; display: block; border-radius: 10px; overflow: hidden; background: var(--ph); }
.mosaic a img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.mosaic a:hover img { transform: scale(1.045); }
.mosaic a.m-big { grid-column: span 2; grid-row: span 2; }
.mosaic a.m-wide { grid-column: span 2; }
.mosaic a.m-tall { grid-row: span 2; }
@media (max-width: 899px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .mosaic a.m-wide { grid-column: span 2; }
  .mosaic a.m-big { grid-column: span 2; grid-row: span 2; }
  .mosaic a.m-tall { grid-row: span 2; }
}


/* ================= v3: clipped video showcase ================= */
.clipshow-wrap { height: 420vh; position: relative; }
.clipshow { position: sticky; top: 0; height: 100dvh; overflow: hidden; background: #14120f; }
.clip-panel {
  position: absolute; inset: 0; height: 100dvh; overflow: hidden; display: flex;
  color: #fff;
}
.clip-panel:nth-of-type(1) { z-index: 3; }
.clip-panel:nth-of-type(2) { z-index: 2; }
.clip-panel:nth-of-type(3) { z-index: 1; }
.clip-bg { position: absolute; inset: 0; }
.clip-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(14px) brightness(.5); transform: scale(1.12);
}
.clip-media {
  position: absolute; z-index: 2; width: 44%; aspect-ratio: 16 / 10; left: 7%;
  top: 50%; transform: translateY(-50%); overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.45); cursor: pointer; background: #000;
}
.clip-media video, .clip-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clip-media .play-chip {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(251,251,250,.92); color: var(--ink); border-radius: 999px;
  padding: .5rem 1rem .5rem .6rem; font-size: .88rem; font-weight: 500;
  transition: transform .2s ease;
}
.clip-media:hover .play-chip { transform: scale(1.05); }
.clip-media .play-chip i {
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.clip-media .play-chip i::after {
  content: ""; border-left: 8px solid #fff; border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; margin-left: 2px;
}
.clip-meta {
  position: relative; z-index: 2; width: 40%; margin-left: 55%;
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  padding-right: clamp(1.25rem, 4vw, 4rem);
}
.clip-meta .idx { font-size: .78rem; letter-spacing: .28em; color: rgba(255,255,255,.55); text-transform: uppercase; }
.clip-meta h3 { font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 600; letter-spacing: -.015em; line-height: 1.08; }
.clip-meta p { color: rgba(255,255,255,.75); line-height: 1.55; max-width: 24rem; }
.clip-meta a.link {
  color: #fff; font-weight: 500; text-decoration: none; font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.5); align-self: flex-start; padding-bottom: .15rem;
}
.clip-meta a.link:hover { border-color: #fff; }
@media (max-width: 899px) {
  .clip-media { width: 86%; left: 7%; top: 10%; transform: none; aspect-ratio: 16 / 10; }
  .clip-meta { width: 86%; margin: 0 7%; position: absolute; bottom: 8vh; gap: .6rem; }
  .clip-meta p { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .clipshow-wrap { height: auto; }
  .clipshow { position: static; height: auto; }
  .clip-panel { position: relative; height: 100dvh; clip-path: none !important; }
}

/* ================= v3: filmstrip gallery ================= */
.filmstrip { position: relative; }
.fs-pin { overflow: hidden; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; padding-top: 68px; }
.fs-head {
  display: flex; align-items: baseline; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
  padding: clamp(1.5rem, 3.5vh, 3rem) clamp(1.25rem, 3.5vw, 3rem) 1.2rem;
}
.fs-count { font-size: .85rem; letter-spacing: .18em; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.fs-track { display: flex; gap: 1rem; padding: 0 calc(max((100vw - 1400px) / 2, 0px) + clamp(1.25rem, 3.5vw, 3rem)) 2rem; width: max-content; }
.fs-track a { display: block; height: 62vh; border-radius: var(--radius); overflow: hidden; background: var(--ph); flex: 0 0 auto; }
.fs-track a img { height: 100%; width: auto; display: block; }
@media (prefers-reduced-motion: reduce), (max-width: 899px) {
  .fs-pin { overflow-x: auto; min-height: 0; display: block; padding-top: 0; }
  .fs-track a { height: 46vh; }
}

/* archive grid (secondary, compact) */
.archive {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .55rem;
}
.archive a { display: block; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--ph); }
.archive a img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.archive a:hover img { transform: scale(1.06); }

/* GSAP reveal defaults (elements start visible; JS sets initial state) */
.gs-reveal { will-change: transform, opacity; }

/* ================= v4: dynamic header ================= */
.nav { transition: transform .35s ease, background-color .3s ease, border-color .3s ease; }
.nav--hidden { transform: translateY(-100%); }
.nav--overlay {
  background: transparent; border-bottom-color: transparent; backdrop-filter: none;
}
.nav--overlay .brand img { filter: invert(1) brightness(1.6); }
.nav--overlay .nav-links a { color: #fff; }
.nav--overlay .nav-links a.on, .nav--overlay .nav-links a:hover { color: #fff; }
.nav--overlay .nav-cta { background: #fff; color: var(--ink) !important; }
.nav--overlay .nav-menu summary { border-color: rgba(255,255,255,.6); color: #fff; }

/* ================= v4: statement footer ================= */
.site-foot { background: var(--foot-bg); color: var(--paper); margin-top: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.foot-cta {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end;
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.foot-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); }
.foot-cta p { margin-top: .7rem; color: rgba(251,251,250,.65); max-width: 30rem; line-height: 1.55; }
.foot-cta .cta-row { display: flex; gap: .9rem; }
.foot-cta .btn { background: #fbfbfa; color: #161616; }
.foot-cta .btn:hover { background: #fff; filter: none; }
.foot-cta .btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.foot-cta .btn.ghost:hover { background: rgba(255,255,255,.12); }
.foot-word {
  font-weight: 600; letter-spacing: .16em; text-align: center; white-space: nowrap;
  font-size: clamp(3rem, 12.5vw, 13rem); line-height: 1;
  color: rgba(251,251,250,.07); user-select: none;
  margin: clamp(1.5rem, 4vw, 3rem) 0 0; transform: translateY(18%);
}
.foot-grid {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem; align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: 2rem;
  border-top: 1px solid rgba(251,251,250,.14);
}
.foot-grid img.foot-logo { width: 132px; height: auto; opacity: .95; }
.foot-grid .foot-links a { color: rgba(251,251,250,.66); }
.foot-grid .foot-links a:hover { color: #fff; }
.foot-contact-dark { text-align: right; font-size: .9rem; color: rgba(251,251,250,.6); line-height: 1.7; }
.foot-contact-dark a { color: #fff; text-decoration: none; font-weight: 500; }
.foot-base {
  padding-bottom: 2rem; font-size: .8rem; color: rgba(251,251,250,.4);
  display: flex; justify-content: space-between; gap: 1rem;
}
@media (max-width: 799px) {
  .foot-cta { grid-template-columns: 1fr; align-items: start; }
  .foot-grid { grid-template-columns: 1fr; text-align: left; gap: 1.4rem; }
  .foot-contact-dark { text-align: left; }
  .foot-base { flex-direction: column; }
}

/* ================= v5: connected archive grid ================= */
.cgrid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: auto; gap: 1rem 1rem; position: relative;
}
.cgrid a {
  grid-column: var(--c) / span var(--s); grid-row: var(--r);
  display: block; position: relative; margin: 0;
}
.cgrid .cg-img {
  display: block; position: relative; overflow: hidden; width: 100%;
  aspect-ratio: var(--ar, 4 / 3); border-radius: 10px; background: var(--ph);
}
.cgrid .cg-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 767px) {
  .cgrid a { grid-column: 1 / span 8 !important; }
}

/* ================= v6: justified archive rows ================= */
.jgrid { display: flex; flex-wrap: wrap; gap: .6rem; }
.jgrid a {
  position: relative; display: block; border-radius: 10px; overflow: hidden;
  background: var(--ph); height: 230px;
  flex-grow: var(--ar); flex-basis: calc(var(--ar) * 230px);
}
.jgrid a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.jgrid a:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .jgrid a { height: 150px; flex-basis: calc(var(--ar) * 150px); } }

/* ================= v6: full-bleed film band ================= */
.filmband {
  position: relative; height: 82vh; min-height: 480px; overflow: hidden;
  background: #14120f; cursor: pointer; display: flex; align-items: flex-end;
}
.filmband .fb-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); will-change: transform;
}
.filmband video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; }
.filmband .fb-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,.08), transparent 40%, rgba(10,9,7,.66));
}
.filmband .fb-copy {
  position: relative; z-index: 2; color: #fff; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding-bottom: clamp(1.8rem, 4.5vh, 3.2rem);
}
.filmband .fb-copy h2 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.filmband .fb-copy p { margin-top: .5rem; color: rgba(255,255,255,.82); max-width: 30rem; line-height: 1.5; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.fb-play {
  display: inline-flex; align-items: center; gap: .6rem; flex: 0 0 auto;
  background: rgba(251,251,250,.94); color: #161616; border: 0; cursor: pointer;
  border-radius: 999px; padding: .8rem 1.5rem .8rem .9rem; font: inherit; font-weight: 500;
  transition: transform .2s ease;
}
.filmband:hover .fb-play { transform: scale(1.06); }
.fb-play i {
  width: 34px; height: 34px; border-radius: 50%; background: #161616;
  display: inline-flex; align-items: center; justify-content: center;
}
.fb-play i::after {
  content: ""; border-left: 10px solid #fff; border-top: 6px solid transparent;
  border-bottom: 6px solid transparent; margin-left: 3px;
}
.filmband + .filmband { border-top: 1px solid rgba(251,251,250,.12); }
@media (max-width: 700px) {
  .filmband .fb-copy { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ================= v6: floating pill header ================= */
.nav { border-bottom-color: var(--line); }
.nav .nav-in {
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease,
              border-radius .35s ease, margin .35s ease, padding .35s ease, height .35s ease;
  border: 1px solid transparent;
}
.nav--float { border-bottom-color: transparent; background: transparent; backdrop-filter: none; }
.nav--float .nav-in {
  margin-top: .6rem; height: 56px; padding: 0 1.1rem 0 1.3rem;
  background: var(--glass-nav); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line); border-radius: 999px;
  box-shadow: 0 12px 34px rgba(40, 32, 20, .12);
}
.nav--float .brand img { height: 38px; }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1.5px;
  background: currentColor; transition: right .28s cubic-bezier(.16,1,.3,1);
}
.nav-links a:not(.nav-cta):hover::after, .nav-links a.on:not(.nav-cta)::after { right: 0; }

/* ================= v6: footer refinements ================= */
.foot-grid .foot-links a { position: relative; text-decoration: none; }
.foot-grid .foot-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: #fff; transition: right .28s cubic-bezier(.16,1,.3,1);
}
.foot-grid .foot-links a:hover::after { right: 0; }
.foot-contact-dark { font-size: 1.02rem; }
.foot-contact-dark a { font-size: 1.15rem; }
.foot-word {
  margin: clamp(1rem, 3vw, 2rem) 0 0; transform: translateY(30%);
  font-size: clamp(3.4rem, 13.5vw, 14.5rem); letter-spacing: .14em;
  color: rgba(251,251,250,.09);
}

/* ================= v7: normalisboring-inspired layer ================= */
/* scroll progress */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 60;
  background: var(--timber); transform-origin: left; transform: scaleX(0);
  pointer-events: none;
}

/* masked line/word reveals */
.wsplit .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wsplit .wi { display: inline-block; will-change: transform; }

/* services index */
.sindex { border-top: 1px solid var(--line); }
.srow {
  display: grid; grid-template-columns: 3.2rem 1fr auto auto; gap: 1.2rem;
  align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line);
  text-decoration: none; position: relative;
}
.s-num {
  font-size: .8rem; color: var(--ink-soft); font-variant-numeric: tabular-nums;
  transition: color .3s ease;
}
.s-name {
  font-size: clamp(1.7rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -.02em;
  line-height: 1.05; transition: color .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
}
.s-desc { font-size: .92rem; color: var(--ink-soft); text-align: right; max-width: 15rem; }
.s-thumb { display: none; }
.srow::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
@media (pointer: fine) {
  .srow:hover .s-name { color: var(--timber); transform: translateX(.6rem); }
  .srow:hover .s-num { color: var(--timber); }
  .srow:hover::after { transform: scaleX(1); }
}
.s-preview {
  position: fixed; z-index: 40; width: min(24vw, 360px); aspect-ratio: 4 / 3;
  border-radius: 12px; overflow: hidden; pointer-events: none;
  opacity: 0; transform: scale(.85); top: 0; left: 0;
  box-shadow: 0 28px 70px rgba(40, 32, 20, .28);
}
.s-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px), (pointer: coarse) {
  .srow { grid-template-columns: 2.2rem 1fr 84px; }
  .s-desc { display: none; }
  .s-thumb {
    display: block; width: 84px; height: 62px; border-radius: 8px;
    object-fit: cover;
  }
  .s-preview { display: none; }
}

/* page transition curtain */
.pt-curtain {
  position: fixed; inset: 0; z-index: 80; background: #141312;
  transform: translateY(101%); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.pt-curtain span {
  color: rgba(251,251,250,.55); font-size: .8rem; letter-spacing: .34em;
  text-transform: uppercase;
}

/* fullscreen mobile menu takeover */
@media (max-width: 1023px) {
  .nav-menu[open] summary { position: relative; z-index: 95; color: #fff; border-color: rgba(255,255,255,.5); }
  .menu-drop {
    position: fixed; inset: 0; z-index: 90; border: 0; border-radius: 0;
    background: var(--menu-bg); padding: 6rem 2rem 3rem;
    display: flex; flex-direction: column; justify-content: center; gap: .3rem;
    box-shadow: none; animation: menuIn .35s cubic-bezier(.16,1,.3,1);
  }
  .menu-drop a {
    color: rgba(251,251,250,.85); font-size: 1.7rem; font-weight: 600;
    letter-spacing: -.01em; padding: .45rem 0; border-radius: 0;
  }
  .menu-drop a:hover, .menu-drop a.on { background: none; color: var(--timber); }
  @keyframes menuIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* ================= v8: journey + brand layer ================= */
.brand-mark { display: block; width: 84px; height: auto; opacity: .85; }
.brand-mark--light { filter: invert(1) brightness(1.7); }

/* how it works steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.steps.three { grid-template-columns: repeat(3, 1fr); max-width: 62rem; }
.step { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.step .n {
  font-size: 2.2rem; font-weight: 600; color: var(--timber);
  font-variant-numeric: tabular-nums; line-height: 1; display: block;
}
.step h3 { font-size: 1.12rem; font-weight: 600; margin: .8rem 0 .45rem; letter-spacing: -.01em; }
.step p { font-size: .93rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 899px) {
  .steps, .steps.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps, .steps.three { grid-template-columns: 1fr; }
}

/* next-service bridge */
.next-svc {
  display: block; position: relative; text-decoration: none; overflow: hidden;
  border-top: 1px solid var(--line);
}
.next-svc .wrap {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
  padding-top: clamp(2.2rem, 5vw, 4rem); padding-bottom: clamp(2.2rem, 5vw, 4rem);
}
.next-svc .nx-kicker {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft); display: block; margin-bottom: .8rem;
}
.next-svc .nx-name {
  font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -.02em;
  line-height: 1; color: var(--ink); transition: color .35s ease, transform .5s cubic-bezier(.16,1,.3,1);
  display: inline-block;
}
.next-svc:hover .nx-name { color: var(--timber); transform: translateX(.8rem); }
.next-svc .nx-img {
  width: min(300px, 26vw); aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; transform: rotate(2.5deg); transition: transform .5s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 18px 44px rgba(40, 32, 20, .18);
}
.next-svc:hover .nx-img { transform: rotate(0deg) scale(1.04); }
.next-svc .nx-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .next-svc .nx-img { display: none; } }

/* contact action cards */
.action-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.acard {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  text-decoration: none; transition: background-color .25s ease, border-color .25s ease;
  display: flex; flex-direction: column; gap: .5rem;
}
.acard:hover { background: var(--hover); border-color: var(--ink); }
.acard .a-kicker { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); }
.acard b { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 600; letter-spacing: -.01em; }
.acard span { font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 700px) { .action-cards { grid-template-columns: 1fr; } }

/* service hero meta line */
.svc-meta {
  display: flex; gap: 1rem; align-items: center; margin-top: 1.1rem;
  font-size: .85rem; color: var(--ink-soft);
}
.svc-meta i { display: block; width: 44px; height: 2px; background: var(--timber); }

/* ================= v9: chapters + what-we-build fill rows ================= */
.chapter { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.chapter-title {
  font-size: clamp(2.7rem, 6.2vw, 5.6rem); font-weight: 600;
  letter-spacing: -.03em; line-height: .98; margin-bottom: 1.2rem;
}
.chapter-sub { color: var(--ink-soft); line-height: 1.55; max-width: 34rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }

/* what we build: full-bleed hover-fill rows */
.sindex { border-top: 1px solid var(--line); }
.srow {
  grid-template-columns: 4rem 1fr auto; gap: 1.4rem;
  padding: clamp(1.6rem, 3.2vw, 2.4rem) clamp(.4rem, 1vw, 1rem);
  overflow: hidden; isolation: isolate;
}
.srow .s-fill {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; clip-path: inset(0 0 100% 0);
  transition: clip-path .55s cubic-bezier(.16,1,.3,1);
  filter: brightness(.52);
}
.srow .s-num, .srow .s-name, .srow .s-desc { position: relative; z-index: 1; }
.s-name {
  font-size: clamp(2.2rem, 5vw, 4.4rem); letter-spacing: -.025em; line-height: 1;
}
.s-desc { transition: color .35s ease; }
@media (pointer: fine) {
  .srow:hover .s-fill { clip-path: inset(0 0 0% 0); }
  .srow:hover .s-name { color: #fff; transform: translateX(.8rem); }
  .srow:hover .s-num { color: rgba(255,255,255,.75); }
  .srow:hover .s-desc { color: rgba(255,255,255,.85); }
  .srow:hover::after { transform: scaleX(1); background: #fff; }
}
@media (max-width: 899px), (pointer: coarse) {
  .srow { grid-template-columns: 2.4rem 1fr 84px; }
  .srow .s-fill { display: none; }
}

/* statement + band presence */
.statement-wrap { min-height: 52vh; display: flex; flex-direction: column; justify-content: center; }
.band blockquote { font-size: clamp(1.5rem, 2.7vw, 2.4rem); }

/* ================= v10: story, quote, materials, faq ================= */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.fact { border-top: 2px solid var(--ink); padding-top: .9rem; }
.fact b { display: block; font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 600; letter-spacing: -.02em; }
.fact span { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 700px) { .facts { grid-template-columns: 1fr; } }

.quote-ch blockquote {
  font-size: clamp(1.7rem, 3.6vw, 3.2rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.15; max-width: 56rem;
}
.quote-ch blockquote em { font-style: normal; box-shadow: inset 0 -0.16em 0 rgba(160,101,52,.35); }
.quote-ch cite {
  display: block; margin-top: 1.4rem; font-style: normal; font-size: .95rem; color: var(--ink-soft);
}
.quote-ch cite b { color: var(--ink); font-weight: 600; }

.materials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.mat { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.mat .m-img { aspect-ratio: 4 / 3; overflow: hidden; }
.mat .m-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.mat:hover .m-img img { transform: scale(1.04); }
.mat .m-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.mat h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.01em; }
.mat p { font-size: .93rem; color: var(--ink-soft); line-height: 1.55; }
.mat .m-badge { margin-top: auto; padding-top: .9rem; }
.mat .m-badge img { height: 30px; width: auto; opacity: .85; }
@media (max-width: 899px) { .materials { grid-template-columns: 1fr; } }

.faq { border-top: 1px solid var(--line); max-width: 56rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; padding: 1.3rem .2rem;
  font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  flex: 0 0 auto; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%;
  position: relative; transition: transform .3s ease, background-color .3s ease;
}
.faq summary i::before, .faq summary i::after {
  content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%;
}
.faq summary i::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq summary i::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq details[open] summary i { transform: rotate(45deg); background: var(--hover); }
.faq details p { padding: 0 .2rem 1.4rem; color: var(--ink-soft); line-height: 1.6; max-width: 44rem; }

/* ================= v11: reviews rotator ================= */
.quote-ch .q-stage { position: relative; min-height: 14rem; }
.quote-ch .q-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.quote-ch .q-slide.on { position: relative; opacity: 1; pointer-events: auto; }
.q-controls { display: flex; align-items: center; gap: 1.1rem; margin-top: 2rem; }
.q-dots { display: flex; gap: .5rem; }
.q-dots button {
  width: 34px; height: 3px; border: 0; border-radius: 2px; cursor: pointer;
  background: var(--line); transition: background-color .3s ease; padding: 0;
}
.q-dots button.on { background: var(--timber); }
.q-more { font-size: .9rem; color: var(--ink-soft); text-decoration: none; margin-left: auto; }
.q-more:hover { color: var(--ink); }
@media (max-width: 700px) { .quote-ch .q-stage { min-height: 20rem; } }

/* overlay border fix: outrank the later .nav border rule */
.nav.nav--overlay { border-bottom-color: transparent; background: transparent; backdrop-filter: none; }

/* ================= v13: filmstrip photo viewer ================= */
dialog.pviewer {
  border: 0; padding: 0; width: 100vw; height: 100dvh;
  max-width: 100vw; max-height: 100dvh; background: rgba(17, 16, 14, .97);
  color: #fff; overflow: hidden;
}
dialog.pviewer::backdrop { background: transparent; }
.pv-top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem;
}
.pv-count { font-size: .85rem; letter-spacing: .18em; color: rgba(255,255,255,.75); font-variant-numeric: tabular-nums; }
.pv-close {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: transparent; color: #fff; font-size: 1rem; cursor: pointer;
  transition: background-color .25s ease;
}
.pv-close:hover { background: rgba(255,255,255,.14); }
.pv-strip {
  display: flex; align-items: center; gap: 2.5vw; height: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 16vw; scrollbar-width: none;
}
.pv-strip::-webkit-scrollbar { display: none; }
.pv-slide {
  flex: 0 0 auto; width: min(68vw, 1150px); margin: 0;
  scroll-snap-align: center; display: flex; align-items: center; justify-content: center;
  opacity: .32; transform: scale(.94); cursor: pointer;
  transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
}
.pv-slide.is-current { opacity: 1; transform: scale(1); cursor: default; }
.pv-slide img {
  max-height: 78vh; max-width: 100%; width: auto; object-fit: contain;
  border-radius: 12px; display: block; background: #24221f; min-width: 200px; min-height: 200px;
}
.pv-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(251,251,250,.94); color: #161616;
  font-size: 1.7rem; line-height: 1; transition: transform .2s ease;
}
.pv-nav:hover { transform: translateY(-50%) scale(1.07); }
.pv-prev { left: 1.4rem; }
.pv-next { right: 1.4rem; }
@media (max-width: 700px) {
  .pv-slide { width: 86vw; }
  .pv-strip { padding: 0 7vw; }
  .pv-nav { display: none; }
}

/* ================= v14: service page titles ================= */
.page-title {
  font-size: clamp(3.4rem, 9vw, 8rem); font-weight: 600;
  letter-spacing: -.035em; line-height: .95; margin-bottom: 1rem;
}
.svc-hero { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }


/* ---------- WebGL runway ---------- */
/* The scenes are framed for 16:9. The image-sequence panel is taller than that,
   which crops the build at the sides, so WebGL sections get a true 16:9 box. */
/* The canvas clears transparent, so the drawing sits straight on the page
   paper — no card, no shadow, no edge where the animation stops. */
.lc-build[data-webgl] .lc-media {
  height: auto; width: 100%; aspect-ratio: 16 / 9; align-self: center;
  background: transparent; box-shadow: none; border-radius: 0; overflow: visible;
}
.lc-build[data-webgl] .lc-cue { background: transparent; }
@media (max-width: 900px) {
  .lc-build[data-webgl] .lc-media { height: auto; aspect-ratio: 16 / 9; border-radius: 0; }
}

.lc-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft); background: rgba(251, 251, 250, .88);
  padding: .55rem .9rem .7rem; border-radius: var(--radius);
  transition: opacity .45s ease, transform .45s ease; pointer-events: none;
}
.lc-cue.hide { opacity: 0; transform: translateX(-50%) translateY(8px); }
.lc-cue i {
  display: block; width: 1px; height: 18px; background: var(--ink-soft);
  transform-origin: top; animation: lcCue 1.6s ease-in-out infinite;
}
@keyframes lcCue {
  0% { transform: scaleY(0); opacity: 0 }
  35% { transform: scaleY(1); opacity: 1 }
  75% { transform: scaleY(1); opacity: 1 }
  100% { transform: scaleY(1) translateY(10px); opacity: 0 }
}
@media (prefers-reduced-motion: reduce) { .lc-cue { display: none } }

/* ================= v16: cross-image reveal ================= */
.xreveal { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--paper); }
.band .media.has-xreveal { background: var(--paper); box-shadow: none; border-radius: 0; }
.xr-clip { position: absolute; inset: 0; }
.xr-clip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.35); transform-origin: center; will-change: transform;
  border-radius: 0;
}
.xr-cross { position: absolute; inset: 0; pointer-events: none; }
.xr-cross i { position: absolute; background: var(--ink); opacity: .8; }
.xr-vf { top: 0; bottom: 0; width: 1px; }
.xr-hf { left: 0; right: 0; height: 1px; }
.xr-v { top: 0; bottom: 0; left: 0; width: 1px; will-change: transform; }
.xr-h { left: 0; right: 0; top: 0; height: 1px; will-change: transform; }
.xr-dot {
  top: 0; left: 0; width: 9px; height: 9px; margin: -4px 0 0 -4px;
  border-radius: 50%; background: var(--timber) !important; opacity: 1 !important;
}
.xr-x, .xr-y {
  position: absolute; top: 0; left: 0; font-size: .7rem; letter-spacing: .14em;
  color: var(--ink); background: var(--chip); padding: .15rem .45rem;
  border-radius: 4px; font-variant-numeric: tabular-nums; white-space: nowrap;
  opacity: 0; transition: opacity .3s ease;
}
.xr-x { margin: 10px 0 0 -78px; }
.xr-y { margin: -34px 0 0 10px; }
@media (prefers-reduced-motion: reduce) {
  .xr-clip { clip-path: none !important; }
  .xr-clip img { transform: none !important; }
  .xr-cross { display: none; }
}

/* ================= v17: measured film frames + video xreveal ================= */
.filmframe { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.filmframe .xreveal { aspect-ratio: 16 / 9; cursor: pointer; }
.filmframe .xr-clip video { width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.35); transform-origin: center; will-change: transform; }
.filmframe .fb-play { position: absolute; right: 26px; bottom: 26px; z-index: 3; }
.ff-caption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding-top: 1rem;
}
.ff-caption h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -.01em; }
.ff-caption p { color: var(--ink-soft); line-height: 1.5; max-width: 34rem; text-align: right; }
@media (max-width: 700px) {
  .ff-caption { flex-direction: column; gap: .3rem; }
  .ff-caption p { text-align: left; }
  .filmframe .fb-play { right: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .filmframe .xr-clip video { transform: none !important; }
}

/* v18: hero exit reveal */
.vhero.xreveal { background: var(--paper); height: 100dvh; }
.vhero .xr-clip { position: absolute; inset: 0; }
.vhero .xr-clip video, .vhero .xr-clip img.vhero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vhero .xr-cross i { opacity: .8; }
.vhero .xr-x, .vhero .xr-y { z-index: 4; }

/* v19: materials + filmstrip reveals */
.m-img .xreveal { width: 100%; height: 100%; }
.m-img .xreveal img { transition: none; }
.mat:hover .m-img img { transform: none; }
.fs-track a { position: relative; }
.fsx-line {
  position: absolute; top: 0; bottom: 0; left: 0; width: 1px;
  background: var(--paper); opacity: 0; pointer-events: none; mix-blend-mode: screen;
}
.fsx-dot {
  position: absolute; top: 0; left: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px;
  border-radius: 50%; background: var(--timber); opacity: 0; pointer-events: none;
}
.fs-track a img { will-change: transform, clip-path; }

/* v20: filmstrip coordinate chips */
.fsx-x, .fsx-y {
  position: absolute; top: 0; left: 0; font-size: .66rem; letter-spacing: .14em;
  color: var(--ink); background: var(--chip); padding: .12rem .4rem;
  border-radius: 4px; font-variant-numeric: tabular-nums; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.fsx-x { margin: 8px 0 0 -66px; }
.fsx-y { margin: -28px 0 0 8px; }

/* ================= v21: measured gallery (review) ================= */
.mgallery-wrap { position: relative; }
.mg-stage {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.mg-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.mg-count { font-size: .85rem; letter-spacing: .18em; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.mg-box { position: relative; height: min(70vh, 46vw); }
.mg-datum { position: absolute; background: var(--ink); opacity: .55; pointer-events: none; z-index: 5; }
.mg-datum.v { top: 0; bottom: 0; left: 18px; width: 1px; }
.mg-datum.h { left: 0; right: 0; top: 18px; height: 1px; }
.mg-panels { position: absolute; inset: 18px; overflow: hidden; border-radius: 2px; }
.mg-panels a { position: absolute; inset: 0; display: block; }
.mg-panels a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mg-rig { position: absolute; inset: 0; pointer-events: none; z-index: 6; }
.mg-rig i { position: absolute; background: var(--ink); opacity: 0; }
.mg-rig .rv { top: 0; bottom: 0; left: 0; width: 1px; }
.mg-rig .rh { left: 0; right: 0; top: 0; height: 1px; }
.mg-rig .rdot {
  width: 9px; height: 9px; margin: -4px 0 0 -4px; border-radius: 50%;
  background: var(--timber); top: 0; left: 0;
}
.mg-rig .rx, .mg-rig .ry {
  position: absolute; top: 0; left: 0; font-size: .7rem; letter-spacing: .14em;
  color: var(--ink); background: var(--chip); padding: .15rem .45rem;
  border-radius: 4px; font-variant-numeric: tabular-nums; white-space: nowrap; opacity: 0;
}
.mg-rig .rx { margin: 10px 0 0 -78px; }
.mg-rig .ry { margin: -34px 0 0 10px; }
@media (max-width: 899px) { .mg-box { height: 52vh; } }
@media (prefers-reduced-motion: reduce) {
  .mgallery-wrap { height: auto !important; }
  .mg-stage { position: static; height: auto; }
  .mg-box { height: auto; }
  .mg-panels { position: static; inset: auto; display: grid; gap: .6rem; }
  .mg-panels a { position: static; aspect-ratio: 16/10; clip-path: none !important; }
  .mg-datum, .mg-rig { display: none; }
}

/* v22: measured gallery nav buttons */
.mg-nav { display: flex; gap: .6rem; justify-content: flex-end; margin-top: 1rem; }
.mg-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; font-size: 1.7rem; line-height: 1;
  color: var(--ink); transition: background-color .2s ease, transform .15s ease;
}
.mg-nav button:hover { background: var(--hover); }
.mg-nav button:active { transform: scale(.94); }
@media (prefers-reduced-motion: reduce) { .mg-nav { display: none; } }

/* ================= v23: build-sequence hero (Decks) ================= */
.lc-build--hero .lc-frame { display: block; max-width: none; padding: 0; }
.lc-build--hero .lc-media {
  position: absolute; inset: 0; height: auto; border-radius: 0; box-shadow: none;
}
.lcb-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,7,.42), transparent 34%),
              linear-gradient(100deg, rgba(10,9,7,.34), transparent 46%);
}
.lcb-title {
  position: absolute; z-index: 3; top: clamp(5rem, 12vh, 8rem);
  left: calc(max((100vw - 1400px) / 2, 0px) + clamp(1.25rem, 3.5vw, 3rem));
  color: #fff; will-change: transform;
}
.lcb-title .page-title { color: #fff; margin-bottom: .4rem; text-shadow: 0 2px 26px rgba(0,0,0,.35); }
.lcb-tag {
  color: rgba(255,255,255,.88); max-width: 30rem; line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.lcb-panel {
  position: absolute; z-index: 3; bottom: 4.5vh;
  left: calc(max((100vw - 1400px) / 2, 0px) + clamp(1.25rem, 3.5vw, 3rem));
  width: min(440px, calc(100vw - 2.5rem));
  background: var(--glass); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.3rem 1.3rem; max-width: none;
  box-shadow: 0 24px 60px rgba(20, 16, 10, .25);
}
.lcb-panel .lc-kicker { margin-bottom: .5rem; }
.lcb-panel h2 { font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: .45rem; }
.lcb-panel .lc-intro { font-size: .85rem; margin-bottom: .8rem; max-width: none; }
.lcb-panel .lc-stages { margin-bottom: 1rem; }
.lcb-panel .lc-stage-btn { padding: .34rem .6rem; }
.lcb-panel .lc-stage-name { font-size: .95rem; }
.lcb-panel .lc-stage-detail { font-size: .82rem; }
.lcb-panel .btn { padding: .7rem 1.3rem; font-size: .9rem; }
@media (max-height: 760px) {
  .lcb-panel { padding: .9rem 1.1rem 1rem; bottom: 2.5vh; }
  .lcb-panel .lc-stage-btn { padding: .22rem .55rem; }
  .lcb-panel h2 { margin-bottom: .25rem; }
  .lcb-panel .lc-intro { display: none; }
  .lcb-panel li.is-active .lc-stage-detail { max-height: 2.4rem; }
}
@media (max-width: 899px) {
  .lc-build--hero .lc-runway { height: 460vh; }
  .lc-build--hero .lc-frame { display: block; padding: 0; }
  .lcb-title { top: 4.6rem; }
  .lcb-title .page-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .lcb-tag { display: none; }
  .lcb-panel {
    left: 0; right: 0; bottom: 0; width: auto;
    border-radius: var(--radius) var(--radius) 0 0; border-bottom: 0;
  }
  .lcb-panel li:not(.is-active) .lc-stage-detail { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lc-build--hero .lc-frame { position: static; height: auto; }
  .lc-build--hero .lc-media { position: relative; aspect-ratio: 16 / 9; }
  .lcb-title { position: static; color: var(--ink); padding: 4rem 0 1rem; }
  .lcb-title .page-title { color: var(--ink); text-shadow: none; }
  .lcb-tag { color: var(--ink-soft); text-shadow: none; }
  .lcb-scrim { display: none; }
  .lcb-panel { position: static; width: auto; box-shadow: none; backdrop-filter: none; }
}

/* v23.1: webgl hero sits on a light scene — ink title, no scrim */
.lc-build--hero[data-webgl] .lcb-scrim { display: none; }
.lc-build--hero[data-webgl] .lcb-title .page-title { color: var(--ink); text-shadow: none; }
.lc-build--hero[data-webgl] .lcb-tag { color: var(--ink-soft); text-shadow: none; }

/* ================= v24: theme toggle ================= */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer;
  font-size: 1.05rem; line-height: 1; display: inline-flex;
  align-items: center; justify-content: center;
  transition: background-color .25s ease, transform .3s ease;
}
.theme-toggle:hover { background: var(--hover); }
:root[data-theme="dark"] .theme-toggle { transform: rotate(180deg); }
.nav--overlay .theme-toggle { color: #fff; border-color: rgba(255,255,255,.5); }
.nav--overlay .theme-toggle:hover { background: rgba(255,255,255,.14); }
.menu-drop .theme-toggle { align-self: flex-start; margin-top: 1rem; color: rgba(251,251,250,.85); border-color: rgba(251,251,250,.4); }
/* nav wordmark: recolor via filter in dark mode (source art is ink) */
:root[data-theme="dark"] .nav:not(.nav--overlay) .brand img { filter: invert(1) brightness(1.55); }
:root[data-theme="dark"] .statement .brand-mark,
:root[data-theme="dark"] .band .brand-mark { filter: invert(1) brightness(1.55); }
:root[data-theme="dark"] .mat .m-badge img { filter: brightness(1.6) contrast(.9); }

/* ================= v25: survey board gallery ================= */
.splan-wrap { position: relative; }
.splan-stage {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.splan-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; }
.splan-meta { display: flex; align-items: center; gap: 1.2rem; }
.splan-count { font-size: .85rem; letter-spacing: .18em; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.splan-nav { display: flex; gap: .5rem; }
.splan-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; font-size: 1.5rem; line-height: 1;
  color: var(--ink); transition: background-color .2s ease, transform .15s ease;
}
.splan-nav button:hover { background: var(--hover); }
.splan-nav button:active { transform: scale(.94); }
.splan-view { position: relative; height: 72vh; overflow: hidden; }
.splan-datum {
  position: absolute; left: 0; right: 0; top: 50%; height: 1px;
  background: var(--ink); opacity: .28; pointer-events: none;
}
.splan-track {
  display: flex; align-items: center; gap: clamp(2rem, 4vw, 3.5rem);
  height: 100%; width: max-content;
  padding: 0 calc(max((100vw - 1400px) / 2, 0px) + clamp(1.25rem, 3.5vw, 3rem));
}
.sp-item { display: block; flex: 0 0 auto; position: relative; }
.sp-item img {
  display: block; width: auto; border-radius: 10px; background: var(--ph);
  will-change: clip-path;
}
.sp-l img { height: 56vh; }
.sp-m img { height: 42vh; }
.sp-s img { height: 31vh; }
.sp-up { align-self: flex-start; margin-top: 2vh; }
.sp-down { align-self: flex-end; margin-bottom: 2vh; }
/* plotter head: stationary reader */
.splan-cursor { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.splan-cursor .sc-line {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: var(--ink); opacity: .8;
}
.splan-cursor .sc-dot {
  position: absolute; width: 9px; height: 9px; margin: -4px 0 0 -4px;
  border-radius: 50%; background: var(--timber);
  transition: opacity .3s ease;
}
.splan-cursor .sc-chip {
  position: absolute; font-size: .7rem; letter-spacing: .14em;
  color: var(--ink); background: var(--chip); padding: .15rem .45rem;
  border-radius: 4px; font-variant-numeric: tabular-nums; white-space: nowrap;
  margin: -32px 0 0 10px; transition: opacity .3s ease;
}
@media (max-width: 899px) {
  .splan-view { height: 56vh; }
  .sp-l img { height: 42vh; }
  .sp-m img { height: 33vh; }
  .sp-s img { height: 26vh; }
}
@media (prefers-reduced-motion: reduce) {
  .splan-wrap { height: auto !important; }
  .splan-stage { position: static; height: auto; }
  .splan-view { height: auto; overflow: visible; }
  .splan-track { flex-wrap: wrap; width: auto; padding: 0; }
  .splan-cursor, .splan-datum, .splan-nav { display: none; }
}

/* ================= v27: Test page candidates ================= */
.cand { border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.cand-label {
  display: flex; align-items: baseline; gap: 1rem; margin-bottom: .4rem;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--timber);
}
.cand-note { color: var(--ink-soft); max-width: 44rem; line-height: 1.5; margin-bottom: 2rem; font-size: .95rem; }

/* 01 stats */
.t-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.t-stat { border-top: 2px solid var(--ink); padding-top: 1rem; }
.t-stat b { display: block; font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.t-stat span { color: var(--ink-soft); font-size: .9rem; }
@media (max-width: 700px) { .t-stats { grid-template-columns: 1fr 1fr; } }

/* 02 before/after */
.t-ba { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; touch-action: none; }
.t-ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-ba .ba-after { clip-path: inset(0 0 0 50%); }
.t-ba .ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1.5px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.4); }
.t-ba .ba-dot {
  position: absolute; top: 50%; left: 50%; width: 40px; height: 40px;
  margin: -20px 0 0 -20px; border-radius: 50%; background: var(--timber);
  border: 3px solid #fff; cursor: ew-resize; box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.t-ba .ba-tag { position: absolute; top: 14px; font-size: .68rem; letter-spacing: .18em; color: #fff; background: rgba(17,16,14,.6); padding: .2rem .55rem; border-radius: 4px; }
.t-ba .ba-tag.a { left: 14px; } .t-ba .ba-tag.b { right: 14px; }

/* 03 review marquee */
.t-marq { overflow: hidden; }
.t-marq-track { display: flex; gap: 1rem; width: max-content; animation: tmarq 42s linear infinite; }
.t-marq:hover .t-marq-track { animation-play-state: paused; }
.t-mcard {
  width: 340px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; background: var(--paper);
}
.t-mcard p { font-size: .95rem; line-height: 1.5; }
.t-mcard cite { display: block; margin-top: .8rem; font-style: normal; font-size: .82rem; color: var(--ink-soft); }
.t-mcard cite b { color: var(--ink); }
@keyframes tmarq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .t-marq-track { animation: none; flex-wrap: wrap; width: auto; } }

/* 04 timeline */
.t-tl { position: relative; padding-top: 2.2rem; }
.t-tl::before { content: ""; position: absolute; left: 0; right: 0; top: .55rem; height: 1px; background: var(--ink); opacity: .45; }
.t-tl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.t-tlstep { position: relative; }
.t-tlstep::before {
  content: ""; position: absolute; top: -2rem; left: 0; width: 9px; height: 9px;
  border-radius: 50%; background: var(--timber); transform: translateY(.33rem);
}
.t-tlstep h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .35rem; }
.t-tlstep p { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 700px) { .t-tl { grid-template-columns: 1fr 1fr; } }

/* 05 season planner */
.t-season { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.t-sea {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem;
}
.t-sea .s-when { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--timber); }
.t-sea h3 { font-size: 1.15rem; font-weight: 600; margin: .5rem 0 .3rem; }
.t-sea p { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 899px) { .t-season { grid-template-columns: 1fr 1fr; } }

/* 06 big CTA banner */
.t-cta { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 64vh; display: flex; align-items: flex-end; }
.t-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-cta .t-cta-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,9,7,.72)); }
.t-cta .t-cta-in { position: relative; z-index: 2; color: #fff; padding: clamp(1.6rem, 4vw, 3rem); display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; width: 100%; }
.t-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.6rem); max-width: 18ch; }
.t-cta .btn { background: #fff; color: #161616; flex: 0 0 auto; }
.t-corner { position: absolute; width: 26px; height: 26px; border: 1.5px solid rgba(255,255,255,.85); z-index: 2; }
.t-corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.t-corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
@media (max-width: 700px) { .t-cta .t-cta-in { flex-direction: column; align-items: flex-start; } }

/* 07 spotlight */
.t-spot { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: stretch; }
.t-spot .sp-media { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 380px; }
.t-spot .sp-media video, .t-spot .sp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-spot .sp-body { display: flex; flex-direction: column; gap: .9rem; justify-content: center; }
.t-spot h3 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 600; letter-spacing: -.02em; }
.t-spot .sp-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; margin-top: .4rem; }
.t-spot .sp-facts div { border-top: 1px solid var(--line); padding-top: .5rem; font-size: .9rem; }
.t-spot .sp-facts span { display: block; color: var(--ink-soft); font-size: .78rem; }
@media (max-width: 899px) { .t-spot { grid-template-columns: 1fr; } }

/* 08 hover film cards */
.t-films { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.t-film { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; cursor: pointer; }
.t-film video, .t-film img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-film video { opacity: 0; transition: opacity .35s ease; }
.t-film:hover video { opacity: 1; }
.t-film .f-label {
  position: absolute; left: 1rem; bottom: .9rem; z-index: 2; color: #fff;
  font-weight: 600; text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
@media (max-width: 899px) { .t-films { grid-template-columns: 1fr; } }

/* 09 where we build */
.t-area { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.t-area h3 { font-size: clamp(1.8rem, 3.4vw, 3rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.t-area .a-note { margin-top: .8rem; color: var(--ink-soft); line-height: 1.55; max-width: 26rem; }
.t-communities { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.t-communities li { list-style: none; border-bottom: 1px solid var(--line); padding: .85rem .2rem; display: flex; justify-content: space-between; font-size: .98rem; }
.t-communities li span { color: var(--ink-soft); font-size: .85rem; }
@media (max-width: 899px) { .t-area, .t-communities { grid-template-columns: 1fr; } }

/* 10 meet brian */
.t-brian { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.t-brian .b-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.t-brian .b-img img { width: 100%; height: 100%; object-fit: cover; }
.t-brian blockquote { font-size: clamp(1.4rem, 2.4vw, 2.1rem); font-weight: 500; line-height: 1.25; letter-spacing: -.015em; max-width: 24ch; }
.t-brian .b-line { margin-top: 1.2rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
@media (max-width: 700px) { .t-brian { grid-template-columns: 1fr; } }


/* ================= Full yard journey (homepage) =================
   A sticky, full-bleed blueprint of one yard being built by all four trades.
   The canvas clears transparent, so it sits on the page's own paper. */
.lc-journey { position: relative; padding: 0; }
.lcj-stick {
  position: sticky; top: 0; height: 100dvh; z-index: 0;
  display: grid; place-items: center; overflow: hidden;
}
.lcj-stick canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
@media (min-width: 900px) {
  .lcj-stick canvas { left: 13%; width: 113%; }
}
/* A paper wash under the copy column. Without it the text sits on top of the
   line work and neither one is readable; the rest of the frame stays seamless. */
.lcj-stick::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right,
    var(--paper) 0%,
    color-mix(in srgb, var(--paper) 92%, transparent) 22%,
    color-mix(in srgb, var(--paper) 55%, transparent) 36%,
    transparent 50%);
}

/* Stage copy scrolls over the drawing. One screen per stage. */
.lcj-steps { position: relative; z-index: 1; margin-top: -100dvh; pointer-events: none; }
.lcj-step {
  min-height: 100dvh; display: flex; align-items: center;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}
.lcj-card {
  width: min(30rem, 92%); pointer-events: auto;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.lcj-step.is-active .lcj-card { opacity: 1; transform: none; }
.lcj-eyebrow {
  display: flex; gap: 1rem; align-items: baseline; margin-bottom: .7rem;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
}
.lcj-num { margin-left: auto; font-variant-numeric: tabular-nums; }
.lcj-card h3 {
  font-size: clamp(1.5rem, 2.7vw, 2.15rem); line-height: 1.12;
  letter-spacing: -.02em; text-wrap: balance; margin-bottom: .7rem;
}
.lcj-body { font-size: 1rem; line-height: 1.6; color: var(--ink-soft); }
.lcj-spec {
  display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin-top: 1.1rem;
}
.lcj-spec > div {
  display: flex; gap: .45rem; align-items: baseline;
  border: 1px solid var(--line); border-radius: 999px; padding: .3rem .7rem;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
}
.lcj-spec dt { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.lcj-spec dd { font-size: .78rem; font-weight: 600; font-variant-numeric: tabular-nums; }

/* Trade rail — which of the four you are in */
.lcj-rail {
  position: absolute; right: clamp(1rem, 3vw, 2.75rem); top: 50%; translate: 0 -50%;
  display: flex; flex-direction: column; gap: 1.15rem; list-style: none; margin: 0; padding: 0;
  opacity: 0; transition: opacity .4s ease; z-index: 2;
}
.lcj-rail.on { opacity: 1; }
.lcj-rail li { display: flex; align-items: center; justify-content: flex-end; gap: .6rem; }
.lcj-rail li span {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  opacity: 0; transform: translateX(6px); transition: opacity .3s ease, transform .3s ease;
}
.lcj-rail li.on span { opacity: 1; transform: none; color: var(--ink); }
.lcj-rail li i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--line);
  transition: background .3s ease, transform .3s ease;
}
.lcj-rail li.done i { background: var(--ink-soft); }
.lcj-rail li.on i { background: var(--timber); transform: scale(1.5); }

/* Trade change announcement */
.lcj-mark {
  position: absolute; left: clamp(1.25rem, 5vw, 5rem); top: 7%; z-index: 3;
  pointer-events: none;
  opacity: 0; transform: translateY(-8px); transition: opacity .45s ease, transform .45s ease;
}
.lcj-mark.on { opacity: 1; transform: none; }
.lcj-mark b {
  display: block; font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft); margin-bottom: .25rem;
}
.lcj-mark span { font-size: 1.6rem; letter-spacing: -.01em; }

.lcj-cue {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
  pointer-events: none; transition: opacity .45s ease;
}
.lcj-cue.hide { opacity: 0; }
.lcj-cue i {
  display: block; width: 1px; height: 18px; background: var(--ink-soft);
  transform-origin: top; animation: lcCue 1.6s ease-in-out infinite;
}

@media (max-width: 899px) {
  /* A portrait viewport shows far less of a 16:9-framed camera, so the drawing
     gets its own 16:9 band at the top and the copy sits on clean paper below
     it rather than fighting the line work for the same pixels. */
  .lcj-rail { display: none; }
  .lcj-card { width: 100%; }
  .lcj-stick canvas { top: 0; height: 56.25vw; }
  .lcj-stick::after {
    background: linear-gradient(to bottom,
      transparent 0, transparent 56.25vw, var(--paper) 56.25vw);
  }
  .lcj-step { align-items: center; padding-top: calc(56.25vw + 1rem); }
  .lcj-mark { top: calc(56.25vw + 0.5rem); }
  .lcj-mark span { font-size: 1.2rem; }
  .lcj-cue { bottom: auto; top: calc(56.25vw - 2.6rem); }
}
@media (prefers-reduced-motion: reduce) {
  .lcj-stick { position: static; height: auto; aspect-ratio: 16 / 9; }
  .lcj-steps { margin-top: 0; }
  .lcj-step { min-height: 0; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .lcj-card { opacity: 1; transform: none; }
  .lcj-cue { display: none; }
}

/* ================= v28: spotlight play + contact form ================= */
.t-spot .sp-media[data-film] { cursor: pointer; }
.t-spot .sp-media .play-chip {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(251,251,250,.92); color: #161616; border-radius: 999px;
  padding: .5rem 1rem .5rem .6rem; font-size: .88rem; font-weight: 500;
  transition: transform .2s ease;
}
.t-spot .sp-media:hover .play-chip { transform: scale(1.05); }
.t-spot .sp-media .play-chip i {
  width: 26px; height: 26px; border-radius: 50%; background: #161616;
  display: inline-flex; align-items: center; justify-content: center;
}
.t-spot .sp-media .play-chip i::after {
  content: ""; border-left: 8px solid #fff; border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; margin-left: 2px;
}

.t-form { max-width: 56rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.t-form .f-full { grid-column: 1 / -1; }
.t-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; }
.t-field input, .t-field select {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; padding: .8rem .9rem;
  transition: border-color .2s ease;
}
.t-field input:focus, .t-field select:focus { outline: none; border-color: var(--timber); }
.t-field .f-help { font-size: .8rem; color: var(--ink-soft); margin-top: .35rem; }
.t-form .btn { justify-self: start; margin-top: .4rem; }
@media (max-width: 700px) { .t-form { grid-template-columns: 1fr; } }

/* ================= v30: quote modal ================= */
dialog.qmodal {
  border: 0; padding: 0; background: var(--paper); color: var(--ink);
  border-radius: var(--radius); width: min(680px, 92vw);
  box-shadow: 0 40px 100px rgba(10, 8, 5, .4);
}
dialog.qmodal::backdrop { background: rgba(12, 11, 9, .6); backdrop-filter: blur(4px); }
.qm-in { padding: clamp(1.6rem, 4vw, 2.4rem); }
.qm-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .4rem; }
.qm-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -.015em; }
.qm-close {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer; font-size: .95rem;
  transition: background-color .2s ease;
}
.qm-close:hover { background: var(--hover); }
.qm-sub { color: var(--ink-soft); font-size: .92rem; line-height: 1.5; margin-bottom: 1.4rem; }
dialog.qmodal .t-form { max-width: none; }

/* ================= v31: test bench round 2 ================= */
/* 11 project register */
.t2-reg { border-top: 1px solid var(--line); }
.t2-reg a {
  display: grid; grid-template-columns: 3rem 1fr auto auto; gap: 1.2rem; align-items: baseline;
  padding: 1.05rem .4rem; border-bottom: 1px solid var(--line); text-decoration: none;
  position: relative;
}
.t2-reg .r-no { font-size: .78rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.t2-reg .r-name { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -.01em; transition: color .3s ease, transform .4s cubic-bezier(.16,1,.3,1); }
.t2-reg .r-trade { color: var(--ink-soft); font-size: .88rem; }
.t2-reg .r-go { color: var(--ink-soft); transition: transform .3s ease; }
.t2-reg a:hover .r-name { color: var(--timber); transform: translateX(.4rem); }
.t2-reg a:hover .r-go { transform: translateX(.3rem); }

/* 12 dimension string */
.t2-dim { display: flex; align-items: stretch; }
.t2-seg { flex: 1; position: relative; padding: 1.6rem .8rem 0; text-align: center; }
.t2-seg::before { content: ""; position: absolute; top: .45rem; left: 0; right: 0; height: 1px; background: var(--ink); opacity: .6; }
.t2-seg::after {
  content: ""; position: absolute; top: .45rem; left: 0; width: 1px; height: 14px;
  background: var(--ink); transform: translateY(-7px);
}
.t2-seg:last-child { border-right: 1px solid transparent; }
.t2-dim .t2-seg:last-child::marker { content: none; }
.t2-seg .d-dot { position: absolute; top: .45rem; right: -4.5px; width: 9px; height: 9px; border-radius: 50%; background: var(--timber); transform: translateY(-4px); z-index: 2; }
.t2-seg b { display: block; font-size: .98rem; font-weight: 600; }
.t2-seg span { font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 899px) { .t2-dim { flex-wrap: wrap; } .t2-seg { flex: 1 1 40%; margin-bottom: 1rem; } }

/* 13 guarantee certificate */
.t2-cert {
  position: relative; border: 1px solid var(--ink); outline: 1px solid var(--line); outline-offset: 5px;
  padding: clamp(2.2rem, 5vw, 4rem); text-align: center; max-width: 46rem; margin: 0 auto;
}
.t2-cert img.brand-mark { margin: 0 auto 1.2rem; }
.t2-cert h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 600; letter-spacing: -.015em; }
.t2-cert p { margin-top: .9rem; color: var(--ink-soft); line-height: 1.6; max-width: 34rem; margin-left: auto; margin-right: auto; }
.t2-cert .c-sig { margin-top: 1.8rem; display: inline-block; }
.t2-cert .c-sig i { display: block; width: 180px; height: 1px; background: var(--ink); margin-bottom: .5rem; }
.t2-cert .c-sig span { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.t2-cert .t-corner { border-color: var(--ink); }

/* 14 dark stats ribbon */
.t2-ribbon { background: var(--foot-bg); color: #fbfbfa; border-radius: var(--radius); overflow: hidden; position: relative; padding: clamp(1.8rem, 4vw, 3rem); }
.t2-ribbon .t-stats { position: relative; z-index: 2; }
.t2-ribbon .t-stat { border-top-color: rgba(251,251,250,.5); }
.t2-ribbon .t-stat b { color: #fbfbfa; }
.t2-ribbon .t-stat span { color: rgba(251,251,250,.6); }
.t2-ribbon .rb-mark { position: absolute; right: -3%; bottom: -18%; width: 38%; opacity: .1; filter: invert(1); }

/* 15 material swatches */
.t2-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.t2-sw { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; display: block; }
.t2-sw img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.t2-sw:hover img { transform: scale(1.05); }
.t2-sw .sw-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(15,13,10,.72)); color: #fff;
}
.t2-sw .sw-label b { font-size: 1.2rem; font-weight: 600; display: block; }
.t2-sw .sw-label i { display: block; height: 2px; width: 0; background: var(--timber); margin-top: .45rem; transition: width .45s cubic-bezier(.16,1,.3,1); }
.t2-sw:hover .sw-label i { width: 46px; }
@media (max-width: 700px) { .t2-swatches { grid-template-columns: 1fr; } .t2-sw { aspect-ratio: 16/9; } }

/* 16 booking chart */
.t2-gantt { border-top: 1px solid var(--line); }
.t2-grow { display: grid; grid-template-columns: 9rem repeat(12, 1fr); align-items: center; border-bottom: 1px solid var(--line); min-height: 3.2rem; position: relative; }
.t2-grow.head { min-height: 2.2rem; border-bottom-color: var(--ink); }
.t2-grow .g-label { font-size: .92rem; font-weight: 600; }
.t2-grow .g-m { font-size: .68rem; letter-spacing: .1em; color: var(--ink-soft); text-align: center; }
.t2-grow .g-bar { grid-row: 1; height: 12px; border-radius: 6px; background: var(--timber); opacity: .85; }
.t2-grow .g-bar.alt { background: var(--ink); opacity: .5; }
@media (max-width: 700px) { .t2-grow { grid-template-columns: 6rem repeat(12, 1fr); } }

/* 17 built nearby */
.t2-near { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: .6rem; scrollbar-width: none; }
.t2-near::-webkit-scrollbar { display: none; }
.t2-card { flex: 0 0 260px; scroll-snap-align: start; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; background: var(--paper); }
.t2-card .n-img { aspect-ratio: 4 / 3; overflow: hidden; }
.t2-card .n-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.t2-card:hover .n-img img { transform: scale(1.05); }
.t2-card .n-body { padding: .9rem 1rem 1rem; }
.t2-card .n-body b { display: block; font-size: 1.02rem; font-weight: 600; }
.t2-card .n-body span { font-size: .82rem; color: var(--ink-soft); }

/* 18 proof pairs */
.t2-pairs { display: grid; gap: 1.1rem; }
.t2-pair { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(1.2rem, 2.5vw, 2.2rem); align-items: center; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.t2-pair .p-img { height: 100%; min-height: 240px; }
.t2-pair .p-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t2-pair blockquote { font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.3; letter-spacing: -.01em; padding: 1.4rem 1.6rem 1.4rem 0; }
.t2-pair cite { display: block; font-style: normal; font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; }
.t2-pair cite b { color: var(--ink); }
@media (max-width: 700px) { .t2-pair { grid-template-columns: 1fr; } .t2-pair blockquote { padding: 0 1.4rem 1.4rem; } }

/* 19 ask-brian chip */
.t2-chip {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50;
  display: inline-flex;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ink); color: var(--paper); border: 0; cursor: pointer;
  border-radius: 999px; padding: .8rem 1.4rem .8rem 1rem; font: inherit; font-weight: 500;
  box-shadow: 0 16px 40px rgba(20, 14, 8, .3);
  transition: transform .2s ease;
}
.t2-chip:hover { transform: translateY(-2px); }
.t2-chip img { width: 30px; height: auto; filter: invert(1) brightness(1.6); }
:root[data-theme="dark"] .t2-chip img { filter: none; }

/* 20 measured divider */
.t2-div { position: relative; height: 60px; display: flex; align-items: center; justify-content: center; }
.t2-div::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 14px; transform: translateY(-7px);
  background:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 36px) top / 100% 6px no-repeat,
    repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 180px) top / 100% 14px no-repeat,
    linear-gradient(var(--line), var(--line)) 0 0 / 100% 1px no-repeat;
  opacity: .8;
}
.t2-div img { position: relative; z-index: 2; width: 64px; background: var(--paper); padding: 0 12px; }

/* chip: desktop lead tool; mobile keeps the menu CTA */
@media (max-width: 699px) { .t2-chip { display: none; } }

/* ================= v35: mobile-first pass (desktop untouched) ================= */
@media (max-width: 899px) {
  /* journey: card rides just under the drawing band, quicker cadence */
  .lcj-step {
    min-height: 74dvh; align-items: flex-start;
    padding-top: calc(56.25vw + 3.4rem);
  }
  .lcj-card h3 { font-size: 1.35rem; }
  .lcj-body { font-size: .95rem; }

  /* build-hero: stacked mobile layout — title / 16:9 scene band / process card */
  .lc-build--hero .lc-frame { display: flex; flex-direction: column; overflow: hidden; }
  .lcb-scrim { display: none; }
  .lc-build--hero .lcb-title {
    position: static; order: 1; padding: 1.1rem 1.25rem .7rem; top: auto; left: auto;
  }
  .lc-build--hero .lcb-title .page-title { font-size: 2.4rem; color: var(--ink); text-shadow: none; }
  .lc-build--hero .lc-media {
    position: relative; inset: auto; order: 2; height: 56.25vw; flex: 0 0 auto;
  }
  .lc-build--hero .lcb-panel {
    position: static; order: 3; width: auto; flex: 1 1 auto; min-height: 0;
    margin: 0; border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0;
    box-shadow: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: .9rem 1.25rem 1rem;
  }
  .lcb-panel h2 { font-size: 1.05rem; }
  .lcb-panel .lc-kicker { font-size: .6rem; margin-bottom: .3rem; }

  /* materials: no cross-card stagger when stacked (handled in JS too) */
  .m-img .xreveal .xr-x, .m-img .xreveal .xr-y { font-size: .62rem; }

  /* survey board header: one tidy row */
  .splan-head { flex-wrap: nowrap; align-items: center; gap: .8rem; }
  .splan-head h2 { font-size: 1.3rem; white-space: nowrap; }
  .splan-meta { gap: .7rem; flex: 0 0 auto; }
  .splan-count { white-space: nowrap; }
  .splan-nav button { width: 40px; height: 40px; font-size: 1.3rem; }

  /* homepage film showcase: meta follows the media card */
  .clip-media { top: 11vh; }
  .clip-meta {
    bottom: auto; top: calc(11vh + 86vw * 0.625 + 1.4rem); gap: .45rem;
  }
  .clip-meta h3 { font-size: 1.35rem; }

  /* film frames: captions breathe */
  .ff-caption h3 { font-size: 1.05rem; }
}
