/* ==========================================================================
   Shatho Tibone — shathofilms.com
   Design system + components. Single stylesheet, no build step.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* Canvas */
  --bg:            #09090A;
  --bg-raise:      #101012;
  --bg-raise-2:    #17171A;
  --line:          rgba(244, 241, 235, 0.11);
  --line-strong:   rgba(244, 241, 235, 0.22);

  /* Ink */
  --ink:           #F4F1EB;
  --ink-soft:      #C3BDB2;
  --ink-mute:      #8B857B;

  /* Accent — Kalahari ochre */
  --accent:        #C8783C;
  --accent-warm:   #E3A566;
  --accent-ink:    #0A0705;
  --sand:          #E8DCC8;

  /* Type */
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --step--1: clamp(0.80rem, 0.77rem + 0.13vw, 0.875rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.10rem);
  --step-1:  clamp(1.20rem, 1.10rem + 0.45vw, 1.45rem);
  --step-2:  clamp(1.55rem, 1.32rem + 1.05vw, 2.15rem);
  --step-3:  clamp(2.05rem, 1.60rem + 2.00vw, 3.25rem);
  --step-4:  clamp(2.70rem, 1.85rem + 3.80vw, 5.20rem);
  --step-5:  clamp(3.20rem, 1.90rem + 5.80vw, 7.00rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 9rem);
  --maxw: 1280px;
  --maxw-text: 68ch;

  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- 2. 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(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

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

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

.skip-link {
  position: absolute; left: 0; top: 0; z-index: 200;
  transform: translateY(-120%);
  background: var(--accent); color: var(--accent-ink);
  padding: 0.75rem 1.25rem; font-weight: 600; font-size: var(--step--1);
}
.skip-link:focus { transform: translateY(0); }

/* ------------------------------------------------------------ 3. Typography */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.d-xl { font-size: var(--step-5); }
.d-lg { font-size: var(--step-4); }
.d-md { font-size: var(--step-3); }
.d-sm { font-size: var(--step-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-warm);
  margin: 0 0 1.15rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--accent); flex: none;
}
.eyebrow.no-rule::before { display: none; }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  text-wrap: pretty;
}
.prose p { margin: 0 0 1.2em; color: var(--ink-soft); max-width: var(--maxw-text); text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent-warm); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--ink); }

.muted { color: var(--ink-mute); }
.meta {
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); font-weight: 500;
}

/* ---------------------------------------------------------------- 4. Layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 900px; }
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-line { border-top: 1px solid var(--line); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.split, .split-40 {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.split-40 { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
@media (max-width: 860px) { .split, .split-40 { grid-template-columns: 1fr; } }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
.section-head > div { max-width: 40rem; }

/* --------------------------------------------------------------- 5. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-warm); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(244,241,235,0.06); }
.btn-sm { padding: 0.7rem 1.15rem; font-size: 0.7rem; }
.btn svg { flex: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-warm);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(200,120,60,0.35);
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow:hover { color: var(--ink); border-color: var(--ink); gap: 0.95rem; }

/* ---------------------------------------------------------------- 6. Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(9, 9, 10, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.brand-name {
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.brand-role {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.nav a {
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  position: relative; padding-block: 4px;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  position: relative; transition: background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 78px 0 0 0;
    background: var(--bg);
    flex-direction: column; justify-content: center;
    gap: 1.6rem;
    padding: 2rem var(--gutter) 6rem;
    opacity: 0; visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a { font-size: 1.15rem; letter-spacing: 0.1em; }
  .nav .btn { display: inline-flex; margin-top: 0.5rem; }
}

/* ------------------------------------------------------------------ 7. Hero */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(9,9,10,0.97) 0%, rgba(9,9,10,0.72) 34%, rgba(9,9,10,0.32) 62%, rgba(9,9,10,0.55) 100%),
    linear-gradient(to right, rgba(9,9,10,0.68) 0%, rgba(9,9,10,0.12) 60%);
}
.hero-inner { width: 100%; }
.hero h1 { max-width: 16ch; margin-bottom: 1.5rem; }
.hero .lede { max-width: 62ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  margin-top: 2.75rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-tags li { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }

.hero-sub {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 7vw, 6rem);
  writing-mode: vertical-rl;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 1100px) { .hero-sub { display: none; } }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: clamp(9rem, 15vw, 13rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero.has-media { padding-bottom: clamp(4rem, 8vw, 7rem); }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(9,9,10,0.96), rgba(9,9,10,0.80) 45%, rgba(9,9,10,0.62));
}
.page-hero h1 { max-width: 20ch; margin-bottom: 1.35rem; }

/* -------------------------------------------------------------- 8. Reel/CTA */
.reel-btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 0.4rem 1.4rem 0.4rem 0.4rem;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.reel-btn:hover { border-color: var(--accent); background: rgba(200,120,60,0.1); }
.reel-btn .disc {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; flex: none;
  transition: transform .4s var(--ease);
}
.reel-btn:hover .disc { transform: scale(1.06); }

/* Video facade */
.facade {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--bg-raise); border: 1px solid var(--line);
}
.facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity .5s; }
.facade:hover img { transform: scale(1.04); opacity: 0.82; }
.facade-play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.facade-play .disc {
  width: clamp(64px, 8vw, 88px); height: clamp(64px, 8vw, 88px);
  border-radius: 50%; background: rgba(9,9,10,0.55);
  border: 1px solid rgba(244,241,235,0.5);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  transition: background .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.facade:hover .facade-play .disc { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.facade-play .disc svg { margin-left: 4px; }
.facade-label {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(9,9,10,0.9), transparent);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5,5,6,0.94);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-frame {
  width: min(1200px, 100%); aspect-ratio: 16 / 9;
  background: #000; border: 1px solid var(--line);
}
.lightbox-frame iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s, border-color .3s;
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* -------------------------------------------------------------- 9. Stat band */
.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1rem, 2vw, 1.75rem); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; color: var(--ink); }
.stat-num span { color: var(--accent); }
.stat-label { margin-top: 0.7rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); line-height: 1.5; }
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ------------------------------------------------------------- 10. Work grid */
.work-card { display: block; position: relative; }
.work-card-media {
  position: relative; overflow: hidden;
  background: var(--bg-raise);
  aspect-ratio: 3 / 2;
}
.work-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
  filter: saturate(0.92);
}
.work-card:hover .work-card-media img { transform: scale(1.05); filter: saturate(1.05); }
.work-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,10,0.55), transparent 55%);
  opacity: 0.8; transition: opacity .5s;
}
.work-card:hover .work-card-media::after { opacity: 0.45; }
.work-card-body { padding-top: 1.35rem; }
.work-card-body h3 { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.05; margin-bottom: 0.55rem; transition: color .3s; }
.work-card:hover .work-card-body h3 { color: var(--accent-warm); }
.work-card-body p { color: var(--ink-mute); font-size: 0.95rem; line-height: 1.6; max-width: 46ch; }
.work-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; margin-bottom: 0.85rem; }

.badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line-strong);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.badge-accent { border-color: rgba(200,120,60,0.5); color: var(--accent-warm); background: rgba(200,120,60,0.08); }

/* Feature (large) work item */
.feature {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } }
.feature-media { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-raise); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------- 11. Quote */
.quote {
  border-left: 2px solid var(--accent);
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.28;
  color: var(--ink);
  text-wrap: pretty;
}
.quote cite {
  display: block; margin-top: 1.25rem;
  font-style: normal; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}

/* ------------------------------------------------------------- 12. Panels */
.panel {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  height: 100%;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.panel:hover { border-color: var(--line-strong); background: var(--bg-raise-2); }
.panel h3 { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.panel p { color: var(--ink-mute); font-size: 0.95rem; line-height: 1.65; }
.panel-num {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--accent); line-height: 1; margin-bottom: 1.1rem; display: block;
}
.panel ul { margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.panel ul li {
  font-size: 0.88rem; color: var(--ink-soft);
  padding-left: 1.1rem; position: relative;
}
.panel ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 1px; background: var(--accent);
}

/* --------------------------------------------------------- 13. Timeline/list */
.rows { border-top: 1px solid var(--line); }
.row-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  padding-block: clamp(1.5rem, 2.5vw, 2.1rem);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease);
}
.row-item:hover { background: rgba(244,241,235,0.025); }
.row-item h3 { font-size: var(--step-1); font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.row-item p { color: var(--ink-mute); font-size: 0.93rem; line-height: 1.6; max-width: 62ch; }
.row-item .row-date { color: var(--accent-warm); }
@media (max-width: 800px) {
  .row-item { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* ------------------------------------------------------------ 14. Logo strip */
.strip {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 0;
}
.strip li {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
  padding-inline: clamp(0.9rem, 2vw, 1.6rem);
  border-right: 1px solid var(--line);
  line-height: 1.4;
}
.strip li:first-child { padding-left: 0; }
.strip li:last-child { border-right: 0; }

/* --------------------------------------------------------------- 15. Forms */
.form { display: grid; gap: 1.4rem; }
.field { display: grid; gap: 0.55rem; }
.field label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit; font-size: 0.95rem;
  padding: 0.9rem 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5F5A53; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); background: var(--bg-raise-2); outline: none;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B857B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 0.8rem; color: var(--ink-mute); line-height: 1.6; }

/* -------------------------------------------------------------- 16. CTA band */
.cta-band {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(120% 130% at 15% 0%, rgba(200,120,60,0.14), transparent 55%),
    var(--bg-raise);
}
.cta-band .wrap { position: relative; }

/* --------------------------------------------------------------- 17. Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { font-size: 0.92rem; color: var(--ink-soft); transition: color .3s; }
.footer-col a:hover { color: var(--accent-warm); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem; color: var(--ink-mute);
}
.footer-mark { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.1; margin-bottom: 1rem; }

/* --------------------------------------------------------------- 18. Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .work-card:hover .work-card-media img, .facade:hover img { transform: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --------------------------------------------------------------- 19. Utils */
.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 2.5rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.full-media { position: relative; overflow: hidden; }
.full-media img { width: 100%; object-fit: cover; }
.ratio-21 { aspect-ratio: 21 / 9; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-34 { aspect-ratio: 3 / 4; }
.ratio-11 { aspect-ratio: 1 / 1; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-21 img, .ratio-32 img, .ratio-34 img, .ratio-11 img, .ratio-169 img { width: 100%; height: 100%; object-fit: cover; }
figcaption { margin-top: 0.85rem; font-size: 0.74rem; letter-spacing: 0.08em; color: var(--ink-mute); }

/* ------------------------------------------------------- 20. Page variants */
.page-hero-center {
  min-height: 70svh;
  display: flex; align-items: center;
  border-bottom: 0;
}
.gap-form { gap: 1.4rem; }

/* Desktop: the in-nav CTA is a mobile-drawer affordance only */
@media (min-width: 941px) {
  .nav > .btn { display: none; }
}
.align-start { align-items: start; }
.feature-alt { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
@media (max-width: 900px) {
  .feature-alt { grid-template-columns: 1fr; }
  .feature-alt > *:first-child { order: 2; }
  .feature-alt > *:last-child { order: 1; }
}
