/* StellerWeb · Cinematic Websites — dark editorial + scroll-scrubbed film cover */
:root {
  --bg: #0E0D0B;          /* warm near-black page */
  --bg-2: #16130D;        /* elevated dark surface */
  --bg-3: #1E1A12;        /* card / hover */
  --ink: #F5F1E6;         /* warm off-white, primary text */
  --ink-soft: #A9A292;    /* muted secondary */
  --ink-faint: #6E685B;   /* metadata */
  --line: rgba(245, 241, 230, 0.12);
  --line-soft: rgba(245, 241, 230, 0.07);
  --gold: #FFB300;        /* StellerWeb amber */
  --gold-deep: #E09A00;
  --gold-text: #FFC94D;   /* gold that reads bright on dark */
  --gold-wash: rgba(255, 179, 0, 0.14);
  --max: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Clash Display', 'Satoshi', sans-serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--ink);
}
h2 { font-size: clamp(2.05rem, 4.4vw, 3.5rem); max-width: 20ch; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

em { font-style: normal; color: var(--gold-text); }

/* marker highlight: sweeps in on scroll */
.mark {
  background-image: linear-gradient(transparent 60%, var(--gold-wash) 60%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.06em;
}
.js .mark { background-size: 0% 100%; }
.mark.on { background-size: 100% 100%; transition: background-size 0.8s var(--ease) 0.1s; }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem;
  transition: opacity 0.6s var(--ease);
}
.loader-word {
  font-family: 'Clash Display', sans-serif; font-weight: 500;
  letter-spacing: 0.42em; font-size: 0.8125rem; color: var(--ink-soft);
  text-indent: 0.42em;
}
.loader-bar { width: 150px; height: 2px; background: var(--line); overflow: hidden; }
.loader-fill { display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.25s ease; }

/* ---------- running head: subpage header, hidden until the cover ends ---------- */
.siteheader {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.runhead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  opacity: 0; transform: translateY(-100%);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.runhead.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sh-brand { display: flex; align-items: center; gap: 0.6rem; }
.sh-brand img { height: 24px; width: auto; }
.siteheader nav { display: flex; gap: clamp(1rem, 2.4vw, 2rem); margin-left: auto; flex-wrap: wrap; }
.siteheader nav a { font-weight: 500; font-size: 0.9375rem; color: var(--ink-soft); }
.siteheader nav a:hover, .siteheader nav a.here { color: var(--ink); }
.sh-cta {
  font-weight: 600; font-size: 0.9rem; background: var(--gold); color: #15140E;
  padding: 0.5rem 1.15rem; border-radius: 999px;
}
.sh-cta:hover { background: var(--gold-deep); }

/* ---------- cover: scroll-scrubbed film ---------- */
.cover { position: relative; height: 380vh; }
.cover-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100dvh;
  overflow: hidden; display: flex; flex-direction: column;
  background: #000;
}
#heroCanvas { position: absolute; inset: 0; z-index: 1; display: block; }
/* cinematic vignette + floor so the film sits in a dark frame and text stays legible */
.cover-sticky::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(8,7,6,0.55) 0%, rgba(8,7,6,0) 22%, rgba(8,7,6,0) 45%, rgba(8,7,6,0.72) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(8,7,6,0) 55%, rgba(8,7,6,0.55) 100%);
}
/* interim poster cover (until the film is dropped in) */
.cover.poster { height: 100vh; height: 100dvh; }
.cover.poster .cover-sticky {
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(255,179,0,0.10), transparent 55%),
    radial-gradient(120% 90% at 50% 120%, rgba(255,179,0,0.08), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0E0D0B 55%, #050505 100%);
}
/* a faint glowing screen forming in the dark, right of the headline */
.cover.poster .cover-sticky::before {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  right: -6%; top: 50%; transform: translateY(-50%) perspective(1400px) rotateY(-18deg) rotateX(6deg);
  width: min(52vw, 720px); height: min(40vw, 460px);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,201,77,0.08), rgba(255,255,255,0.02) 45%, transparent 70%);
  box-shadow: inset 0 0 0 1px rgba(255,201,77,0.22), 0 0 120px rgba(255,179,0,0.10);
  opacity: 0.9;
}
.cover.poster .cover-sticky::after { opacity: 0.85; }
@media (max-width: 720px) { .cover.poster .cover-sticky::before { opacity: 0.35; right: -20%; } }

.masthead {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem);
  color: var(--ink);
  font-size: 0.8125rem; letter-spacing: 0.05em;
}
.masthead-left { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.6875rem; color: var(--ink-soft); justify-self: start; }
.masthead-center { justify-self: center; }
.masthead-center img { height: 26px; width: auto; }
.masthead-right-group { justify-self: end; display: flex; align-items: center; gap: 1.6rem; }
.masthead-nav { display: flex; gap: 1.4rem; font-weight: 500; }
.masthead-nav a { color: var(--ink-soft); }
.masthead-nav a:hover { color: var(--ink); }
.masthead-cta { font-weight: 600; color: #15140E; background: var(--gold); padding: 0.45rem 1.15rem; border-radius: 999px; }
.masthead-cta:hover { background: var(--gold-deep); }

.cover-text {
  position: relative; z-index: 3; color: var(--ink);
  margin: auto 0 0; padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 12vh, 8rem);
  max-width: 64rem;
}
.cover-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1.4rem;
}
.cover-text h1 {
  font-size: clamp(2.5rem, 6.4vw, 5.4rem); font-weight: 600; line-height: 1.04;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55);
}
.cover-line {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); margin: 1.6rem 0 2rem; color: var(--ink-soft);
  max-width: 46ch; text-shadow: 0 1px 20px rgba(0,0,0,0.6);
}
.cover-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.scrollcue {
  position: absolute; z-index: 3; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  pointer-events: none;
  font-family: 'Satoshi', sans-serif;
  animation: cuePulse 2.4s var(--ease) infinite;
}
.scrollcue-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #15140E;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-indent: 0.18em;
  padding: 0.7rem 1.5rem; border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255, 179, 0, 0.14), 0 8px 30px rgba(255, 179, 0, 0.25);
}
.scrollcue-chev { width: 16px; height: 16px; animation: cueChev 1.6s var(--ease) infinite; }
@keyframes cuePulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes cueChev {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.7; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Satoshi', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.6rem; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.15s var(--ease), color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #15140E; }
.btn-primary:hover { background: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-text); }
.arw { font-size: 0.9em; }

/* ---------- credibility bar ---------- */
.credbar {
  position: relative; z-index: 3;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center;
}
.credbar span { padding: 0 1.6rem; }
.credbar span + span { border-left: 1px solid var(--line); }

/* ---------- bands / sections ---------- */
.band { position: relative; }
.band .inner { max-width: var(--max); margin: 0 auto; padding: clamp(4.5rem, 11vh, 8rem) clamp(1.25rem, 4vw, 3rem); }
.band-2 { background: var(--bg-2); }
.band-hair { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1.5rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.7; }

.lede { font-size: clamp(1.15rem, 1.9vw, 1.45rem); color: var(--ink-soft); max-width: 54ch; margin-top: 1.5rem; line-height: 1.6; }
.big-p { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ink-soft); max-width: 56ch; margin-top: 1.4rem; }

/* headline quote (customer voice) */
.quote-head { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 600; line-height: 1.12; max-width: 20ch; }
.quote-head em { color: var(--gold-text); }

/* ---------- stat row ---------- */
.statrow { display: flex; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; margin-top: 3.5rem; }
.stat .n { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--ink); }
.stat .l { font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.6rem; max-width: 22ch; }

/* ---------- pillars (what a cinematic site is) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.pillar {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.pillar:hover { border-color: rgba(255,179,0,0.4); transform: translateY(-4px); background: var(--bg-3); }
.pillar-no { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--gold-text); letter-spacing: 0.1em; }
.pillar-ico { width: 34px; height: 34px; color: var(--gold); margin: 1.5rem 0 1.2rem; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- work showcase ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-top: 3rem; }
.showcase-copy h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.showcase-copy p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 1rem; }
.browser {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8);
  transition: transform 0.4s var(--ease);
}
.showcase:hover .browser { transform: translateY(-6px) rotate(-0.4deg); }
.browser-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.9rem; background: var(--bg-3); border-bottom: 1px solid var(--line); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-faint); opacity: 0.6; }
.browser-bar .url { margin-left: 0.8rem; font-size: 0.75rem; color: var(--ink-soft); font-family: 'Satoshi', monospace; letter-spacing: 0.02em; }
.browser-screen img, .browser-screen video { width: 100%; height: auto; display: block; }
.metatag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.tier { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.75rem, 3vw, 2.6rem); position: relative; }
.tier.feat { border-color: rgba(255,179,0,0.45); background: linear-gradient(180deg, rgba(255,179,0,0.06), var(--bg-2) 60%); }
.tier h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.tier .price { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--ink); margin: 1rem 0; }
.tier .price .from { display: block; font-family: 'Satoshi', sans-serif; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.4rem; }
.tier .price small { font-size: 1.1rem; color: var(--ink-soft); font-weight: 500; }
.tier .desc { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 38ch; }
.tier ul { list-style: none; display: grid; gap: 0.7rem; }
.tier li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ink); font-size: 0.98rem; }
.tier li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--gold-wash); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FFB300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.badge { position: absolute; top: -0.8rem; left: clamp(1.75rem, 3vw, 2.6rem); background: var(--gold); color: #15140E; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 999px; }
.price-foot { margin-top: 2rem; color: var(--ink-soft); font-size: 0.95rem; }
.price-foot strong { color: var(--ink); }

/* ---------- steps / process ---------- */
.steps { list-style: none; margin-top: 3rem; max-width: 46rem; }
.steps li { display: flex; align-items: baseline; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line); font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-no { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1rem; color: var(--gold-text); flex: none; width: 2rem; }
.steps b { color: var(--ink); font-weight: 600; }
.steps span.t { color: var(--ink-soft); font-size: 1rem; display: block; margin-top: 0.2rem; }

/* ---------- final cta ---------- */
.final { text-align: center; background: radial-gradient(120% 120% at 50% 0%, rgba(255,179,0,0.09), transparent 60%), var(--bg); }
.final .inner { padding: clamp(5rem, 13vh, 9rem) clamp(1.25rem, 4vw, 3rem); }
.final h2 { margin: 0 auto; max-width: 18ch; font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
.final p { color: var(--ink-soft); max-width: 46ch; margin: 1.4rem auto 2.4rem; font-size: 1.15rem; }
.final .cover-actions { justify-content: center; }
.final .fineprint { margin-top: 1.5rem; font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.footer .inner { max-width: var(--max); margin: 0 auto; padding: clamp(3.5rem, 7vh, 5rem) clamp(1.25rem, 4vw, 3rem) 2.5rem; }
.foot-row { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.foot-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.foot-links a { color: var(--ink-soft); font-size: 0.95rem; }
.foot-links a:hover { color: var(--gold-text); }
.foot-brand img { height: 26px; width: auto; }
.foot-meta { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 0.82rem; letter-spacing: 0.04em; }
.foot-meta a { color: var(--ink-soft); }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ---------- odometer ---------- */
[data-odometer] { display: inline-flex; align-items: baseline; }
.odo-anim { display: inline-flex; align-items: baseline; }
.odo-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.odo-fix { display: inline-block; }
.odo-col { display: inline-block; height: 1.02em; overflow: hidden; }
.odo-strip { display: inline-block; line-height: 1.02; transition: transform 1.6s var(--ease); will-change: transform; }

/* ---------- mobile nav ---------- */
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; width: 40px; height: 40px; padding: 9px 8px; }
.burger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; }
.mobilenav { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .statrow { gap: 2rem; }
}
@media (max-width: 720px) {
  .masthead { grid-template-columns: auto 1fr auto; }
  .masthead-left { display: none; }
  .masthead-center { justify-self: start; }
  .masthead-nav { display: none; }
  .masthead-right-group .masthead-cta { display: none; }
  .burger { display: inline-flex; }
  .runhead nav { display: none; }
  .runhead .burger span { background: var(--ink); }
  .mobilenav {
    display: flex; position: fixed; inset: 0; z-index: 90; background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
    opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
  }
  .mobilenav.open { opacity: 1; pointer-events: auto; }
  .mobilenav a { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 1.7rem; color: var(--ink); }
  .mobilenav .mobilenav-cta { background: var(--gold); color: #15140E; padding: 0.6rem 1.6rem; border-radius: 999px; font-size: 1.4rem; margin-top: 0.8rem; }
  .mobilenav-close { position: absolute; top: 1rem; right: 1.2rem; background: none; border: 0; color: var(--ink); font-size: 2.4rem; cursor: pointer; }
  body.menu-open { overflow: hidden; }
  .foot-row { flex-direction: column; align-items: flex-start; }
}

/* ================= inner pages ================= */
.topbar { position: sticky; top: 0; z-index: 70; }

/* page hero */
.pagehead { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(120% 130% at 82% -10%, rgba(255,179,0,0.10), transparent 55%), var(--bg); }
.pagehead .inner { padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vh, 5rem); }
.pagehead h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; max-width: 16ch; }
.pagehead .lede { margin-top: 1.5rem; }
.pagehead .eyebrow { margin-bottom: 1.5rem; }

/* prose (services / about body) */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 3rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 2.2rem 0 0.6rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1.15rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a.golink { color: var(--gold-text); border-bottom: 1px solid rgba(255,201,77,0.5); font-weight: 600; }

/* feature rows (services) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: clamp(2.5rem, 6vh, 4.5rem) 0; border-top: 1px solid var(--line); }
.feature:first-of-type { border-top: 0; }
.feature.flip .feature-media { order: -1; }
.feature-media { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 4/3; display: grid; place-items: center; color: var(--ink-faint); }
.feature-media svg { width: 46%; height: 46%; color: var(--gold); opacity: 0.9; }
.feature h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 1rem; max-width: 18ch; }
.feature p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 0.9rem; }
.feature .tag { display: inline-block; margin-top: 0.6rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-text); border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem; }

/* work / portfolio */
.workgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3rem; }
.workgrid .lead { grid-column: 1 / -1; }
.wcard { display: block; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--bg-2); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.wcard:hover { border-color: rgba(255,179,0,0.4); transform: translateY(-5px); }
.wcard .shot { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3); }
.wcard .shot img, .wcard .shot video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.wcard .wmeta { padding: 1.25rem 1.4rem 1.5rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.wcard h3 { font-size: 1.3rem; }
.wcard .wtag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-text); white-space: nowrap; }
.wcard.soon { display: grid; place-items: center; text-align: center; min-height: 200px; padding: 2rem; color: var(--ink-faint); border-style: dashed; }
.wcard.soon:hover { transform: none; border-color: var(--line); }

/* faq accordion */
.faqlist { max-width: 48rem; margin-top: 2.5rem; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { cursor: pointer; list-style: none; padding: 1.5rem 2.5rem 1.5rem 0; position: relative; font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold-text); transition: transform 0.3s var(--ease); font-weight: 300; }
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa .a { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 58ch; }

/* about founders */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.founder { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.75rem, 3vw, 2.4rem); }
.founder .role { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-text); }
.founder h3 { font-size: 1.5rem; margin: 0.4rem 0 0.8rem; }
.founder p { color: var(--ink-soft); font-size: 0.98rem; }

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.5rem; align-items: start; }
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.field input, .field textarea, .field select { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 0.85rem 1rem; color: var(--ink); font-family: inherit; font-size: 1rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-wash); }
.form .btn { justify-self: start; margin-top: 0.4rem; }
.contact-side { border-left: 1px solid var(--line); padding-left: clamp(2rem, 5vw, 4rem); }
.contact-side h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.contact-side p { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 34ch; }
.contact-side a.big { display: block; font-family: 'Clash Display', sans-serif; font-size: 1.15rem; color: var(--gold-text); margin-bottom: 0.4rem; }
.formnote { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.6rem; }

@media (max-width: 820px) {
  .feature, .contact-grid { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
  .workgrid, .founders { grid-template-columns: 1fr; }
  .contact-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 2rem; }
}

/* ---------- reduced motion / capture ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cover { height: 100vh; height: 100dvh; }
  .js .reveal { opacity: 1; transform: none; }
  .js .mark { background-size: 100% 100%; }
  .scrollcue { display: none; }
  .odo-strip { transition: none; }
}
@media (min-height: 2000px) {
  .cover { height: auto; }
  .cover-sticky { height: 940px; }
  .loader { display: none; }
  .runhead { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}
