/* ==========================================================================
   Spectraza — styles.css (v10)
   Single source of truth. Replaces styles-v911.css and the stacked
   v9.7 / v9.8 / v9.10 / v9.11 override blocks.
   Structure: tokens → base → utilities → components → page overrides
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surface */
  --bg:            #0a0a0a;
  --bg-raise:      #0f0f0f;
  --panel:         #121212;

  /* Line work */
  --line:          rgba(255, 255, 255, .09);
  --line-mid:      rgba(255, 255, 255, .16);
  --line-gold:     rgba(228, 204, 167, .30);

  /* Type colour */
  --text:          #f4f1ea;
  --muted:         #b8b2a7;   /* 8.4:1 on --bg */
  --muted-soft:    #9b958a;   /* 6.1:1 on --bg */

  /* Accent */
  --gold:          #e4cca7;
  --gold-soft:     #f2e3c9;
  --gold-deep:     #c9a978;

  /* Type */
  --font-sans:  "Inter Tight", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Newsreader, "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;

  --t-hero:    clamp(42px, 5.4vw, 78px);
  --t-h2:      clamp(34px, 4.6vw, 70px);
  --t-h3:      clamp(26px, 2.2vw, 36px);
  --t-display: clamp(30px, 4vw, 58px);
  --t-body:    17px;
  --t-small:   14px;
  --t-label:   11px;

  --tracking-tight: -.055em;
  --tracking-label: .17em;

  /* Layout */
  --wrap:        min(1240px, calc(100vw - 40px));
  --header-h:    88px;
  --section-y:   clamp(72px, 9vw, 118px);
  --ease:        cubic-bezier(.22, .78, .25, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-weight: 560; letter-spacing: var(--tracking-tight); line-height: .98; margin: 0; }
p { margin: 0; }
::selection { background: var(--gold); color: #0d0d0d; }

/* Anchor targets clear the fixed header */
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

/* Visible keyboard focus — applied globally, never removed */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: var(--t-small);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--hairline { border-top: 1px solid var(--line); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.eyebrow--plain { color: var(--text); }

.lede { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding-inline: 20px;
  border: 1px solid var(--line-gold);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: var(--t-small);
  font-weight: 650;
  letter-spacing: -.01em;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover {
  background: rgba(228, 204, 167, .1);
  border-color: rgba(228, 204, 167, .5);
  color: var(--gold-soft);
  transform: translateY(-1px);
}
.btn--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d0d0d;
}
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: #0d0d0d; }
.btn--light {
  background: #f2eee7;
  border-color: #f2eee7;
  color: #111;
  font-weight: 700;
}
.btn--light:hover { background: #fffaf2; border-color: #fffaf2; color: #111; }

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: var(--t-small);
  font-weight: 650;
  border-bottom: 1px solid rgba(228, 204, 167, .4);
  padding-bottom: 3px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link-quiet:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

/* Scroll reveal — only hides content once JS confirms it can reveal it ----- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }

/* Section heading pattern -------------------------------------------------- */
.heading {
  display: grid;
  grid-template-columns: minmax(0, .5fr) minmax(0, 1.5fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 44px;
}
.heading h2 { font-size: var(--t-h2); }
.heading p {
  margin-top: 16px;
  max-width: 620px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   4. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 20px;
  transition: background .28s var(--ease), backdrop-filter .28s var(--ease),
              border-color .28s var(--ease), padding .28s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header--solid {
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding-block: 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 200px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-desktop a {
  position: relative;
  color: rgba(255, 255, 255, .76);
  font-size: var(--t-small);
  transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a[aria-current] { color: var(--gold); }
.nav-desktop a[aria-current]::after,
.nav-desktop a:hover::after { transform: scaleX(1); }

.nav-mobile-controls { display: none; align-items: center; gap: 8px; margin-left: auto; }
.nav-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-inline: 15px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(10, 10, 10, .5);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.menu-toggle {
  width: 42px; height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line-mid);
  border-radius: 50%;
  background: rgba(10, 10, 10, .5);
}
.menu-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform .26s var(--ease), opacity .26s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile menu -------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s var(--ease), visibility .26s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-mobile { display: grid; border-top: 1px solid var(--line); }
.nav-mobile a {
  min-height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 8vw, 40px);
  letter-spacing: -.045em;
}
.nav-mobile a[aria-current] { color: var(--gold); }
.mobile-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
}
.mobile-social a {
  padding: 10px 14px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}
body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(660px, 92svh, 900px);
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.06) 30%, rgba(0,0,0,.62) 74%, rgba(0,0,0,.90) 100%),
    linear-gradient(90deg,  rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 52%, rgba(0,0,0,.18) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(660px, 92svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(46px, 6vh, 78px);
  padding-top: calc(var(--header-h) + 12px);
}
.hero__copy { width: min(920px, 74vw); }
.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.hero h1 {
  max-width: 860px;
  color: #f7f3ec;
  font-size: var(--t-hero);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 540;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .28);
}
.hero h1 em {
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.02em;
}
.hero__lower {
  display: grid;
  grid-template-columns: minmax(320px, 560px) auto;
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
  margin-top: 24px;
  max-width: 920px;
}
.hero__lower p {
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .3);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.hero__actions .link-quiet { color: #f5f0e9; border-bottom-color: rgba(255, 255, 255, .4); }
.hero__actions .link-quiet span { color: var(--gold); }
.hero__actions .link-quiet:hover { color: var(--gold-soft); }

.hero__meta {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
/* Pause control — WCAG 2.2.2: any motion over 5s needs a stop mechanism */
.video-toggle {
  width: 34px; height: 34px;
  display: grid;
  place-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(10, 10, 10, .5);
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.video-toggle:hover { border-color: var(--gold); background: rgba(10, 10, 10, .8); }
.video-toggle svg { width: 11px; height: 11px; fill: currentColor; }
.video-toggle .icon-play { display: none; }
.video-toggle[aria-pressed="true"] .icon-play  { display: block; }
.video-toggle[aria-pressed="true"] .icon-pause { display: none; }

/* --------------------------------------------------------------------------
   6. Intro statement
   -------------------------------------------------------------------------- */
.intro { border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 50px;
}
.intro-statement {
  font-size: var(--t-display);
  line-height: 1.06;
  letter-spacing: -.05em;
}
.intro-statement span { color: var(--muted); }

/* --------------------------------------------------------------------------
   7. Work
   -------------------------------------------------------------------------- */
.project {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 34px;
  align-items: stretch;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
.project--reverse { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.project--reverse .project__media { order: 2; }
.project--reverse .project__info  { order: 1; }

.project__media {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.project__media video,
.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project__media--landscape { min-height: min(58vw, 660px); }
.project__media--portrait  { min-height: min(60vw, 720px); }

/* Poster placeholder shown until the clip is lazily loaded */
.project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .35) 100%);
}

.project__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 18px;
}
.project__index {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}
.project__info h3 { font-size: clamp(34px, 4.6vw, 68px); letter-spacing: -.058em; }
.project__type {
  margin-top: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.project__copy { margin-top: 20px; max-width: 430px; color: var(--muted); }
.project__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.project__specs li {
  list-style: none;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: .02em;
}


.project__compare {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.project__compare-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project__compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.project__compare-card {
  margin: 0;
}
.project__compare-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project__compare-grid--portrait .project__compare-card img {
  aspect-ratio: 9 / 14;
  object-position: center;
}
.project__compare-card figcaption {
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 12px;
}
.project__compare-note {
  margin-top: 12px;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. Services + process (shared row pattern)
   -------------------------------------------------------------------------- */
.row-list { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 62px minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: start;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}
.row > span {
  padding-top: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}
.row h3 { font-size: var(--t-h3); line-height: 1.05; letter-spacing: -.04em; }
.row p { max-width: 560px; color: var(--muted); }

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 52px;
}
.process-grid .heading { display: block; align-self: start; margin-bottom: 0; }
.step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}
.step > span {
  padding-top: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}
.step h3 { margin-bottom: 8px; font-size: 27px; letter-spacing: -.04em; }
.step p { max-width: 560px; color: var(--muted); }
.step__time {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Included band
   -------------------------------------------------------------------------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.included-cell {
  background: var(--bg);
  padding: 28px 24px;
}
.included-cell strong {
  display: block;
  color: var(--gold);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.included-cell span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--t-small);
}

/* --------------------------------------------------------------------------
   10. Packages snapshot (home)
   -------------------------------------------------------------------------- */
.free-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.free-band h2,
.free-band h3 { margin-top: 6px; font-size: clamp(28px, 3.4vw, 52px); letter-spacing: -.05em; }
.free-band__price {
  color: var(--gold);
  font-size: clamp(40px, 4.4vw, 70px);
  line-height: .9;
  font-weight: 650;
  letter-spacing: -.06em;
  font-variant-numeric: tabular-nums;
}

.rate-table { margin-top: 24px; border-top: 1px solid var(--line); }
.rate-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.38fr) minmax(0, .4fr);
  gap: 20px;
  align-items: center;
}
.rate-head {
  padding-block: 12px;
  color: var(--muted-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.rate-row {
  padding-block: 24px;
  border-top: 1px solid var(--line);
  transition: background .22s var(--ease), padding-left .22s var(--ease);
}
.rate-row:hover { background: rgba(255, 255, 255, .022); padding-left: 10px; }
.rate-row strong { font-size: 28px; font-weight: 560; letter-spacing: -.04em; }
.rate-row__for { color: var(--muted); }
.rate-row__price {
  color: var(--gold);
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.tag {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  vertical-align: middle;
}
.rate-row--featured { border-top-color: rgba(228, 204, 167, .28); }

.pricing-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}
.pricing-actions p { max-width: 530px; color: var(--muted); text-align: right; }

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--line); }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(19px, 1.7vw, 25px);
  letter-spacing: -.035em;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .28s var(--ease);
}
.faq[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__body {
  padding-bottom: 26px;
  max-width: 760px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   12. Social
   -------------------------------------------------------------------------- */
.social-grid h2 {
  font-size: clamp(28px, 2.9vw, 44px);
  letter-spacing: -.05em;
}
.social-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: start;
}
.social-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.social-tiles a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  transition: border-color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
}
.social-tiles a:hover {
  border-color: rgba(228, 204, 167, .38);
  background: rgba(255, 255, 255, .022);
  transform: translateY(-2px);
}
.social-tiles span {
  color: var(--gold);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.social-tiles strong { font-size: 14px; font-weight: 600; }

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(32px, 3.5vw, 54px); }
.contact-copy p { margin-top: 18px; max-width: 470px; color: var(--muted); }
.mail-link {
  display: inline-flex;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(228, 204, 167, .4);
  color: var(--gold);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.03em;
}
.mail-link:hover { color: var(--gold-soft); }

.contact-form {
  display: grid;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.field { display: grid; gap: 8px; }
.field > span {
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  border: 1px solid var(--line-mid);
  border-inline: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
  transition: border-color .2s var(--ease);
}
.field textarea {
  min-height: 130px;
  padding: 14px;
  border: 1px solid var(--line-mid);
  resize: vertical;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255, 255, 255, .3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23e4cca7' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px;
}
.field select option { background: var(--bg-raise); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .3); }
.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea { border-color: #e08a7a; }
.field__error { color: #e8a294; font-size: 12.5px; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { color: var(--muted-soft); font-size: 12.5px; }
.form-status {
  padding: 14px 16px;
  border: 1px solid var(--line-gold);
  background: rgba(228, 204, 167, .07);
  color: var(--gold-soft);
  font-size: var(--t-small);
}
.form-status:empty { display: none; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer { padding-block: 36px; border-top: 1px solid var(--line); }
.footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}
.footer-row img { width: 170px; height: 44px; object-fit: contain; object-position: left center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-row > p { color: var(--muted-soft); font-size: 13px; text-align: right; }

/* --------------------------------------------------------------------------
   15. Pricing page
   -------------------------------------------------------------------------- */
.pricing-hero {
  padding: calc(var(--header-h) + 76px) 0 70px;
  border-bottom: 1px solid var(--line);
}
.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 50px;
  align-items: end;
}
.pricing-hero-grid h1 { font-size: clamp(48px, 6.4vw, 108px); line-height: .9; letter-spacing: -.068em; }
.pricing-hero-grid p { color: var(--muted); font-size: 18px; }

.package-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.package {
  position: relative;
  padding: 26px 0 22px;
  border-top: 1px solid var(--line-mid);
  border-bottom: 1px solid var(--line);
}
.package--featured { border-top: 1px solid rgba(228, 204, 167, .55); }
.package__label {
  color: var(--gold);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.package__price {
  margin-top: 8px;
  font-size: clamp(40px, 3.8vw, 60px);
  font-weight: 650;
  letter-spacing: -.06em;
  font-variant-numeric: tabular-nums;
}
.package__sub { margin: 12px 0 20px; max-width: 300px; color: var(--muted); }
.package ul { margin: 0; padding: 0; list-style: none; }
.package li {
  padding-block: 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #ddd7cf;
  font-size: 15.5px;
}
.package .btn { margin-top: 22px; width: 100%; }

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}
.line-list { border-top: 1px solid var(--line); }
.line-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}
.line-list strong {
  flex: none;
  color: var(--gold);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.note-list { border-top: 1px solid var(--line); }
.note-list > div { padding-block: 18px; border-bottom: 1px solid var(--line); }
.note-list p { margin-top: 7px; color: var(--muted); }
.detail-note { margin-top: 20px; max-width: 480px; color: var(--muted); }

.panel-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.panel {
  padding-top: 22px;
  border-top: 1px solid var(--line-mid);
}
.panel h3 { font-size: clamp(34px, 3.6vw, 54px); font-weight: 650; letter-spacing: -.06em; }
.panel p { margin-top: 14px; max-width: 460px; color: var(--muted); }

.final-block { padding-top: 28px; border-top: 1px solid var(--line-mid); }
.final-block h2 { font-size: var(--t-h2); }
.final-block p { margin-top: 14px; color: var(--muted); }

/* --------------------------------------------------------------------------
   16. Error page
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}
.error-page h1 { font-size: clamp(56px, 9vw, 130px); letter-spacing: -.07em; }
.error-page p { margin-top: 20px; max-width: 460px; color: var(--muted); }

/* ==========================================================================
   17. Responsive — one block per breakpoint, no per-version stacking
   ========================================================================== */
@media (max-width: 1000px) {
  .heading,
  .intro-grid,
  .social-grid,
  .contact-grid,
  .process-grid,
  .pricing-hero-grid,
  .split-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }

  .project,
  .project--reverse { grid-template-columns: minmax(0, 1fr); }
  .project--reverse .project__media,
  .project--reverse .project__info { order: initial; }

  .package-columns,
  .panel-pair { grid-template-columns: minmax(0, 1fr); }
  .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__lower { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .hero__actions { flex-wrap: wrap; white-space: normal; }
}

@media (max-width: 900px) {
  :root {
    --wrap: min(100vw - 28px, 760px);
    --header-h: 66px;
  }
  .site-header { padding-block: 12px; }
  .site-header.is-scrolled,
  .site-header--solid { padding-block: 10px; }

  .nav-desktop { display: none; }
  .nav-mobile-controls { display: flex; }
  .brand img { width: 150px; height: 42px; }

  .hero { min-height: clamp(600px, 88svh, 780px); }
  .hero__inner { min-height: clamp(600px, 88svh, 780px); padding-bottom: 40px; }
  .hero__copy { width: 100%; max-width: 520px; }

  .project__media--landscape { min-height: 46svh; }
  .project__media--portrait  { min-height: 62svh; }
  .project__compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .row { grid-template-columns: 44px minmax(0, 1fr); gap: 10px 16px; }
  .row p { grid-column: 2; }
  .step { grid-template-columns: 44px minmax(0, 1fr); }

  .rate-grid { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .rate-head { display: none; }
  .rate-row { padding-block: 20px; }
  .pricing-actions { flex-direction: column; align-items: flex-start; }
  .pricing-actions p { text-align: left; }

  .social-tiles { grid-template-columns: minmax(0, 1fr); }
  .footer-row { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .footer-links { justify-content: flex-start; }
  .footer-row > p { text-align: left; }
}

@media (max-width: 640px) {
  /* Tap targets: inline links are only ~20px tall from line-height alone */
  .footer-links { gap: 6px 18px; }
  .footer-links a { padding-block: 11px; }
  .link-quiet { padding-block: 9px; }
  .mail-link { padding-top: 6px; padding-bottom: 10px; }
  .nav-chip { min-height: 42px; }
  .menu-toggle { width: 42px; height: 42px; }
  .social-tiles a { min-height: 78px; }

  .hero { min-height: clamp(620px, 90svh, 800px); }
  .hero__inner {
    min-height: clamp(620px, 90svh, 800px);
    padding-top: calc(var(--header-h) + 22px);
    padding-bottom: 32px;
  }
  .hero__video { object-position: 55% center; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.06) 20%, rgba(0,0,0,.58) 50%, rgba(0,0,0,.94) 100%),
      linear-gradient(90deg,  rgba(0,0,0,.50) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.06) 100%);
  }
  /* Bottom-right meta would sit on top of the CTA row at this width */
  .hero__meta {
    top: calc(var(--header-h) + 16px);
    right: 14px;
    bottom: auto;
    gap: 10px;
  }
  .hero__meta span { display: none; }
  .hero__copy { max-width: 420px; }
  .hero__eyebrow { margin-bottom: 10px; font-size: 9.5px; letter-spacing: .145em; }
  .hero h1 { max-width: 400px; font-size: clamp(38px, 11vw, 50px); line-height: .95; }
  .hero h1 br { display: none; }
  .hero h1 em { display: block; margin-top: 3px; }
  .hero__lower { margin-top: 16px; max-width: 400px; }
  .hero__lower p { max-width: 380px; font-size: 14px; line-height: 1.45; }
  .hero__actions { gap: 16px; margin-top: 0; }
  .hero__actions .btn { min-height: 44px; padding-inline: 16px; font-size: 13px; }

  .included-grid { grid-template-columns: minmax(0, 1fr); }
  .free-band { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .line-list > div { flex-direction: column; gap: 6px; }
  .line-list strong { text-align: left; }
  .project__info h3 { font-size: clamp(32px, 10.5vw, 52px); }
  .step h3 { font-size: 24px; }
  .action-row { gap: 14px; }
}

@media (max-width: 390px) {
  .brand img { width: 132px; }
  .nav-chip { min-height: 42px; padding-inline: 12px; font-size: 12px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero h1 { font-size: clamp(35px, 10.6vw, 44px); }
  .hero__lower p { max-width: 330px; font-size: 13.5px; }
  .hero__actions { gap: 12px; }
}

/* --------------------------------------------------------------------------
   18. Motion + print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-menu, .hero__video, .hero__meta, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .js .reveal { opacity: 1; transform: none; }
}


/* v10.2 — hero breathing room + clearer video presentation */
@media (min-width: 901px) {
  .hero {
    min-height: clamp(720px, 97svh, 980px);
  }
  .hero__inner {
    min-height: clamp(720px, 97svh, 980px);
    padding-bottom: clamp(42px, 5.2vh, 68px);
  }
  .hero__copy {
    width: min(760px, 61vw);
  }
  .hero h1 {
    max-width: 700px;
    font-size: clamp(46px, 4.8vw, 72px);
  }
  .hero__lower {
    max-width: 770px;
    grid-template-columns: minmax(300px, 480px) auto;
    gap: clamp(28px, 4vw, 58px);
  }
  .hero__lower p {
    max-width: 480px;
  }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(0,0,0,.13) 0%, rgba(0,0,0,.03) 34%, rgba(0,0,0,.48) 72%, rgba(0,0,0,.86) 100%),
      linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.02) 72%, rgba(0,0,0,.06) 100%);
  }
}

@media (max-width: 640px) {
  .hero { min-height: clamp(650px, 93svh, 830px); }
  .hero__inner {
    min-height: clamp(650px, 93svh, 830px);
    padding-bottom: 28px;
  }
  .hero__copy { max-width: 370px; }
  .hero h1 { max-width: 360px; }
  .hero__lower { max-width: 360px; }
  .hero__lower p { max-width: 340px; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.03) 24%, rgba(0,0,0,.46) 55%, rgba(0,0,0,.92) 100%),
      linear-gradient(90deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 66%, rgba(0,0,0,.02) 100%);
  }
}


/* v10.3 — reliable autoplay + slightly deeper hero canvas */
@media (min-width: 901px) {
  .hero,
  .hero__inner {
    min-height: clamp(760px, 100svh, 1040px);
  }
  .hero__video {
    object-position: center 56%;
  }
  .hero__inner {
    padding-bottom: clamp(36px, 4.5vh, 58px);
  }
}

@media (max-width: 900px) {
  .hero,
  .hero__inner {
    min-height: clamp(680px, 96svh, 860px);
  }
}


/* v10.7 conversion-copy additions ----------------------------------------- */
.sales-heading h2 {
  font-size: var(--t-h2);
}
.sales-heading h2 em {
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 300;
}
.sales-heading > p:last-child {
  margin-top: 20px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}
.free-band__copy {
  max-width: 720px;
  margin-top: 12px;
}


/* --------------------------------------------------------------------------
   19. /examples — cold-outreach proof page (v10.9)
   -------------------------------------------------------------------------- */
.examples-page .site-header--solid {
  background: rgba(10, 10, 10, .9);
}

.examples-hero {
  padding-top: calc(var(--header-h) + clamp(64px, 8vw, 112px));
  padding-bottom: clamp(54px, 7vw, 88px);
  background:
    radial-gradient(circle at 78% 10%, rgba(228, 204, 167, .10), transparent 31%),
    linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
}
.examples-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
}
.examples-hero h1 {
  max-width: 880px;
  font-size: clamp(48px, 6.7vw, 104px);
  line-height: .91;
  letter-spacing: -.067em;
}
.examples-hero h1 em,
.examples-portfolio h2 em {
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 300;
}
.examples-hero__copy > p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}
.examples-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(54px, 7vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.examples-proof span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid var(--line);
}
.examples-proof span:last-child { border-right: 0; color: var(--gold); }

.examples-work .project:first-of-type { margin-top: 0; }
.examples-work .project__media video { background: #101010; }

.examples-deliverables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.examples-deliverables article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
}
.examples-deliverables article > span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.examples-deliverables strong {
  display: block;
  margin-top: 58px;
  font-size: 21px;
  letter-spacing: -.03em;
}
.examples-deliverables p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.examples-portfolio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: end;
}
.examples-portfolio h2 {
  font-size: var(--t-h2);
}
.examples-portfolio > div:last-child > p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}
.examples-portfolio .link-quiet { margin-top: 24px; }
.examples-cta { padding-top: clamp(60px, 7vw, 90px); }

@media (max-width: 900px) {
  .examples-hero__grid,
  .examples-portfolio {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .examples-hero h1 { max-width: 720px; }
  .examples-hero__copy { max-width: 620px; }
  .examples-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .examples-proof span:nth-child(2) { border-right: 0; }
  .examples-proof span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .examples-deliverables { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .examples-hero {
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 52px;
  }
  .examples-hero h1 {
    font-size: clamp(40px, 12.4vw, 58px);
    line-height: .94;
  }
  .examples-hero__copy > p { font-size: 16px; }
  .examples-proof { grid-template-columns: 1fr; }
  .examples-proof span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }
  .examples-proof span:last-child { border-bottom: 0; }
  .examples-deliverables { grid-template-columns: 1fr; }
  .examples-deliverables article { min-height: 190px; }
  .examples-deliverables strong { margin-top: 42px; }
}
