/* ============ TOKENS ============ */
:root {
  --bg: #0E0D0B;
  --bg-2: #15130F;
  --bg-3: #1C1A15;
  --fg: #F2EFE8;
  --fg-dim: #B6B0A2;
  --fg-mute: #6B6657;
  --line: #2A2620;
  --gold: #C4A26B;
  --gold-2: #D9BA85;
  --gold-soft: rgba(196, 162, 107, 0.12);
  --accent: var(--gold);

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; padding: 0; }

::selection { background: var(--gold); color: var(--bg); }

/* ============ LAYOUT ============ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding-block: clamp(80px, 12vw, 160px); position: relative; }
.section--tight { padding-block: clamp(60px, 8vw, 110px); }

/* ============ TYPE ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--center::after { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--gold); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--gold); }

.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.h3 em { font-style: italic; color: var(--gold); }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 56ch;
  text-wrap: pretty;
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--gold);
  color: #1a1610;
  box-shadow: 0 0 0 1px var(--gold), 0 18px 40px -16px rgba(196, 162, 107, 0.5);
}
.btn--primary:hover {
  background: var(--gold-2);
  box-shadow: 0 0 0 1px var(--gold-2), 0 24px 48px -16px rgba(217, 186, 133, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--fg-dim); }

.btn--text {
  padding: 0;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  border-radius: 0;
}
.btn--text:hover { color: var(--gold); border-color: var(--gold); }

.arrow {
  width: 14px; height: 14px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 13, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.nav__logo em { font-style: italic; color: var(--gold); }
.nav__logo .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 999px;
  display: inline-block;
  margin-left: 6px;
  transform: translateY(-2px);
}
.nav__links {
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  color: var(--fg-dim);
  transition: color 0.2s;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--fg); }
.nav__cta { display: inline-flex; align-items: center; gap: 10px; }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(32px, 6vw, 80px);
}
.hero__loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__loc .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__loc .dot {
  width: 7px; height: 7px;
  background: #6BD18B;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(107, 209, 139, 0.18);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(107, 209, 139, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(107, 209, 139, 0.04); }
}

.hero__display { margin-bottom: 40px; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}
.hero__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--fg-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 8px;
}
.hero__meta strong { color: var(--fg); font-weight: 500; }

.hero__bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 50ch;
  text-wrap: pretty;
}
.hero__sub em { font-style: italic; color: var(--gold); }

.hero__retention {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
}
.retention__item {
  display: flex; flex-direction: column; gap: 4px;
}
.retention__num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.retention__num em { font-style: italic; color: var(--gold); }
.retention__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

@media (max-width: 760px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__retention { justify-content: flex-start; }
  .hero__top { flex-direction: column; align-items: flex-start; }
  .hero__meta { display: none; }
}

/* Scroll cue removed */
.scroll-cue { display: none !important; }

/* ============ LOGOS ============ */
.logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 60px);
  background: var(--bg-2);
}
.logos__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.logos__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  max-width: 18ch;
  line-height: 1.5;
  padding-right: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line);
}
.logos__label em {
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--gold);
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: clamp(32px, 4vw, 56px);
  flex: 1;
}
.logos__item {
  display: flex; align-items: center;
  height: 40px;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(.2,.8,.2,1);
  cursor: default;
  user-select: none;
}
.logos__item:hover { opacity: 1; transform: translateY(-1px); }

.logo-mark { display: inline-flex; align-items: baseline; gap: 4px; line-height: 1; }

.logo-mark--serif {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
}
.logo-mark--serif em { font-style: italic; }
.logo-mark__on {
  font-style: italic;
  font-size: 0.7em;
  margin: 0 2px;
  opacity: 0.85;
}

.logo-mark--mono {
  font-family: var(--mono);
  display: inline-flex; flex-direction: column;
  line-height: 1;
  gap: 2px;
  align-items: flex-start;
}
.logo-mark__vga {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.logo-mark__det {
  font-size: 9px;
  letter-spacing: 0.32em;
  opacity: 0.8;
}

.logo-mark--bold {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.logo-mark__dot {
  display: inline-block;
  margin: 0 4px;
  opacity: 0.6;
  font-weight: 400;
}

.logo-mark--script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.logo-mark__amp {
  font-style: normal;
  font-size: 0.85em;
  margin: 0 2px;
  opacity: 0.7;
}

@media (max-width: 760px) {
  .logos__inner { grid-template-columns: 1fr; }
  .logos__label {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 20px;
    max-width: none;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
  }
  .logos__row { justify-content: flex-start; }
}


.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 38s linear infinite;
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  font-style: italic;
  white-space: nowrap;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track .sep {
  color: var(--gold);
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.5em;
  transform: translateY(-0.1em);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.about__copy p {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  margin: 0 0 22px 0;
  color: var(--fg-dim);
  text-wrap: pretty;
}
.about__copy p strong { color: var(--fg); font-weight: 500; }
.about__copy p em { font-style: italic; color: var(--gold); }
.about__side {
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 8px;
}
.about__card {
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.3s, background 0.3s;
}
.about__card:hover { border-color: var(--gold); background: var(--gold-soft); }
.about__card .big {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__card .big em { font-style: italic; color: var(--gold); }
.about__card .lbl {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim);
}
.about__card .desc {
  color: var(--fg-mute);
  font-size: 14px; line-height: 1.5;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ============ SERVICES ============ */
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.services__list { display: flex; flex-direction: column; }
.service {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 8px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding 0.4s cubic-bezier(.2,.8,.2,1);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.service:hover::before { transform: scaleX(1); }
.service:hover { padding-left: 16px; }
.service__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.service__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.service__name em { font-style: italic; }
.service:hover .service__name em { color: var(--gold); }
.service__desc {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 48ch;
}
.service__arrow {
  width: 56px; height: 56px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.service:hover .service__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .services__head { grid-template-columns: 1fr; }
  .service { grid-template-columns: 40px 1fr auto; gap: 16px; }
  .service__desc { grid-column: 1 / -1; padding-left: 56px; padding-top: 4px; }
  .service:hover { padding-left: 8px; }
}

/* ============ WORK ============ */
.work__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.case {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: border-color 0.3s;
}
.case:hover { border-color: var(--gold); }
.case--feat { grid-column: span 12; aspect-ratio: 16/9; }
.case--half { grid-column: span 6; aspect-ratio: 4/3; }

.case__media {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.case:hover .case__media { transform: scale(1.015); }

.case__placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(196,162,107,0.08), transparent 50%),
    linear-gradient(135deg, var(--bg-3), var(--bg-2) 60%, var(--bg));
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.case__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  pointer-events: none;
  opacity: 0.5;
}
.case__placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.case__mono-bg {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18vw;
  color: rgba(196,162,107,0.10);
  line-height: 0.8;
  pointer-events: none;
}
.case--feat .case__mono-bg { font-size: 22vw; }
.case--half .case__mono-bg { font-size: 13vw; }

.case__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s;
  filter: brightness(0.9) saturate(1.05);
}
.case--has-video:hover .case__thumb { filter: brightness(1) saturate(1.1); }

.case__thumb-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.case--playing .case__thumb-iframe {
  pointer-events: auto;
}
.case__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  z-index: 2;
}
.case__soon {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14,13,11,0.5);
  backdrop-filter: blur(8px);
}

.case--playing {
  cursor: default;
}
.case--playing .case__shade,
.case--playing .case__corner,
.case--playing .case__play,
.case--playing .case__meta {
  display: none;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 60px);
  animation: lightboxIn 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 24px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 110;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 8px 24px -8px rgba(196, 162, 107, 0.5);
}
.lightbox__close:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(196, 162, 107, 0.7);
}
.lightbox__hint {
  text-align: center;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.lightbox__frame {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: lightboxFrameIn 0.4s cubic-bezier(.2,.8,.2,1);
}
@keyframes lightboxFrameIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.lightbox__caption {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  padding: 0 4px;
}
.lightbox__name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
}
.lightbox__loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.lightbox__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
}
.lightbox__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case__play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  z-index: 3;
  pointer-events: none;
}
.case__play-btn {
  width: 88px; height: 88px;
  border-radius: 999px;
  background: rgba(14,13,11,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,239,232,0.18);
  display: grid; place-items: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s, border-color 0.3s;
}
.case:hover .case__play-btn {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}
.case__play-btn svg { transform: translateX(2px); color: var(--fg); transition: color 0.3s; }
.case:hover .case__play-btn svg { color: var(--bg); }

.case__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.case__name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.case__loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 4px;
}
.case__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: flex-end;
}
.case__tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(242,239,232,0.2);
  background: rgba(14,13,11,0.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.case__corner {
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
}
.case__index {
  padding: 5px 10px;
  background: rgba(14,13,11,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,239,232,0.12);
  border-radius: 999px;
}
.case__runtime {
  padding: 5px 10px;
  background: rgba(14,13,11,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,239,232,0.12);
  border-radius: 999px;
  color: var(--gold);
}

.work__cta {
  margin-top: 56px;
  padding: 56px;
  border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--bg-2), transparent);
}
.work__cta-text { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -0.01em; line-height: 1.1; max-width: 28ch; }
.work__cta-text em { font-style: italic; color: var(--gold); }

@media (max-width: 900px) {
  .work__head { grid-template-columns: 1fr; }
  .case--feat, .case--half { grid-column: span 12; aspect-ratio: 4/3; }
  .work__cta { flex-direction: column; align-items: flex-start; padding: 32px; }
}

/* ============ STATS BAR ============ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 56px 32px;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num em { font-style: italic; color: var(--gold); }
.stat__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.stat__sub { color: var(--fg-mute); font-size: 13px; margin-top: 4px; }
@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============ PROCESS ============ */
.process__head { text-align: center; margin-bottom: clamp(48px, 6vw, 88px); }
.process__head .eyebrow { justify-content: center; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__line {
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), var(--line), transparent);
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; gap: 16px;
  position: relative; z-index: 1;
  padding-top: 0;
}
.step__num-wrap {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.step__circle {
  width: 76px; height: 76px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--bg);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
}
.step__num-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.step__title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.step__desc {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__line { display: none; }
}
@media (max-width: 560px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonials__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: clamp(48px, 6vw, 80px);
}
.testimonials__head .ratings {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.stars {
  display: inline-flex; gap: 2px; color: var(--gold);
  font-size: 18px; letter-spacing: 1px;
}
.t__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.t {
  padding: 36px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 24px;
  background: var(--bg);
  transition: border-color 0.3s;
}
.t:hover { border-color: var(--gold); }
.t__quote {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  flex: 1;
}
.t__quote::before {
  content: "“";
  font-size: 60px;
  line-height: 0.4;
  display: block;
  color: var(--gold);
  margin-bottom: 14px;
}
.t__meta {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; align-items: center; gap: 16px;
}
.t__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 19px;
}
.t__name { font-weight: 500; font-size: 14px; }
.t__role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); margin-top: 2px; }
@media (max-width: 880px) {
  .testimonials__head { grid-template-columns: 1fr; }
  .testimonials__head .ratings { align-items: flex-start; }
  .t__grid { grid-template-columns: 1fr; }
}

/* ============ BOOKING ============ */
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.booking__copy { position: sticky; top: 120px; }
.booking__heading { margin-bottom: 24px; }
.booking__lead {
  color: var(--fg-dim);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 44ch;
}
.booking__bullets { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.booking__bullets li {
  list-style: none;
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--fg-dim);
  font-size: 15px;
}
.booking__bullets .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.booking__card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0;
  overflow: hidden;
}
.booking__embed {
  background: var(--bg-2);
  position: relative;
  height: 760px;
}
.booking__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: relative;
  z-index: 1;
}
/* Tap-to-engage overlay — prevents iframe from hijacking page scroll
   until the user explicitly chooses to interact with the calendar. */
.booking__embed:not(.is-engaged) iframe {
  pointer-events: none;
}
.booking__engage {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(14, 13, 11, 0.04);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  transition: background 0.25s;
}
.booking__engage:hover { background: rgba(14, 13, 11, 0.10); }
.booking__engage-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1610;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px -12px rgba(196, 162, 107, 0.55), 0 0 0 1px var(--gold);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s;
}
.booking__engage:hover .booking__engage-pill {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(196, 162, 107, 0.7), 0 0 0 1px var(--gold-2);
}
@media (max-width: 760px) {
  .booking__engage { padding: 16px; }
  .booking__engage-pill { padding: 9px 14px; font-size: 10px; gap: 6px; }
}
.booking__embed-skeleton {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 0;
  background: var(--bg-2);
}
.booking__embed-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  flex: 1;
}
.booking__embed-skeleton-cell {
  background: linear-gradient(
    90deg,
    rgba(196, 162, 107, 0.04) 0%,
    rgba(196, 162, 107, 0.10) 50%,
    rgba(196, 162, 107, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
  min-height: 48px;
}
.booking__embed-skeleton-cell:nth-child(odd) { animation-delay: 0.1s; }
.booking__embed-skeleton-cell:nth-child(even) { animation-delay: 0.3s; }
.booking__embed-skeleton-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
@keyframes skeletonShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: 0 0; }
}
@media (max-width: 880px) {
  .booking__embed { height: 680px; }
}
.booking__card-top {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg);
}
.booking__card-top .ttl {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.booking__card-top .badge {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  padding: 5px 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.booking__card-body { padding: 32px; }
.booking__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.booking__row label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.booking__row input, .booking__row textarea, .booking__row select {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: 0;
  transition: border-color 0.3s;
  width: 100%;
}
.booking__row input:focus, .booking__row textarea:focus, .booking__row select:focus {
  outline: none;
  border-color: var(--gold);
}
.booking__row textarea { resize: vertical; min-height: 100px; }
.booking__half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.booking__half .booking__row { margin-bottom: 0; }
.booking__submit {
  width: 100%;
  justify-content: center;
  padding: 20px;
  margin-top: 8px;
}
.booking__fineprint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  text-align: center;
  margin-top: 16px;
}

.booking__success {
  padding: 60px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.booking__success .check-big {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  display: grid; place-items: center;
}

@media (max-width: 880px) {
  .booking__inner { grid-template-columns: 1fr; }
  .booking__copy { position: static; }
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 0;
}
.footer__cta {
  padding-block: clamp(80px, 12vw, 160px) clamp(60px, 8vw, 100px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.footer__cta-text {
  font-family: var(--serif);
  font-size: clamp(56px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 auto;
  text-wrap: balance;
}
.footer__cta-text em { font-style: italic; color: var(--gold); }
.footer__main {
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .logo {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.01em;
}
.footer__brand .logo em { font-style: italic; color: var(--gold); }
.footer__brand p {
  color: var(--fg-mute);
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 32ch;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--fg-dim); transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* ============ FADE-IN ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================ */
/* ============ SERVICE PAGE STYLES =========================== */
/* ============================================================ */

/* SERVICE HERO */
.service-hero {
  padding-top: 140px;
  padding-bottom: clamp(60px, 8vw, 100px);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-hero__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  margin-bottom: clamp(32px, 6vw, 64px);
}
.service-hero__back {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.2s;
}
.service-hero__back:hover { color: var(--gold); }
.service-hero__title {
  font-size: clamp(48px, 8vw, 124px);
  margin-bottom: 0;
}
.service-hero__bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  padding-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 6vw, 64px);
}
.service-hero__sub {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 52ch;
  text-wrap: pretty;
  margin: 0;
}
.service-hero__sub em { font-style: italic; color: var(--gold); }
.service-hero__stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  justify-content: flex-end;
  flex-wrap: wrap;
}
.service-hero__stat {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.service-hero__stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.service-hero__stat-num em { font-style: italic; color: var(--gold); }
.service-hero__stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  max-width: 18ch;
  line-height: 1.4;
}
.service-hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(32px, 5vw, 48px);
}

@media (max-width: 760px) {
  .service-hero__bottom { grid-template-columns: 1fr; }
  .service-hero__stats { justify-content: flex-start; }
}

/* DELIVERABLES */
.deliverables__head { margin-bottom: clamp(48px, 6vw, 80px); }
.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.deliverable {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.3s;
  min-height: 240px;
}
.deliverable:hover { background: var(--bg-2); }
.deliverable__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.deliverable__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  margin-top: 4px;
}
.deliverable__desc {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 880px) {
  .deliverables__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .deliverables__grid { grid-template-columns: 1fr; }
}

/* WHO FOR */
.whofor__head { margin-bottom: clamp(48px, 6vw, 72px); max-width: 28ch; }
.whofor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.whofor__col {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.whofor__col-head { margin-bottom: 24px; }
.whofor__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.whofor__pill--yes {
  background: rgba(196, 162, 107, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.whofor__pill--no {
  background: rgba(180, 180, 180, 0.06);
  border: 1px solid var(--line);
  color: var(--fg-mute);
}
.whofor__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.whofor__list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.whofor__icon {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.whofor__icon--yes {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.whofor__icon--no {
  background: transparent;
  color: var(--fg-mute);
  border: 1px solid var(--fg-mute);
}
@media (max-width: 760px) {
  .whofor__grid { grid-template-columns: 1fr; }
}

/* PRICING */
.pricing__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.tier:hover { border-color: var(--gold); }
.tier--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-soft), transparent 30%), var(--bg-2);
  box-shadow: 0 32px 80px -32px rgba(196, 162, 107, 0.18);
}
.tier__badge {
  position: absolute;
  top: -12px; left: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
}
.tier__head { display: flex; flex-direction: column; gap: 8px; }
.tier__name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.tier__summary {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
  margin: 0;
  max-width: 30ch;
}
.tier__price {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tier__price-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier__price-period {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.tier__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tier__features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.tier__check {
  width: 20px; height: 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing__footnote {
  margin-top: 40px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
@media (max-width: 900px) {
  .pricing__head { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
  color: var(--fg);
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  color: var(--fg-dim);
}
.faq__item.is-open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.faq__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(.2,.8,.2,1);
}
.faq__item.is-open .faq__a-wrap {
  grid-template-rows: 1fr;
}
.faq__a {
  overflow: hidden;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
  text-wrap: pretty;
}
.faq__item.is-open .faq__a {
  padding: 0 8px 32px 8px;
}
@media (max-width: 760px) {
  .faq__head { grid-template-columns: 1fr; }
}

/* SERVICE CTA */
.service-cta { padding-block: clamp(60px, 8vw, 120px); }
.service-cta__inner {
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--bg-2), transparent);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.service-cta__heading { font-size: clamp(28px, 3.4vw, 48px); }
.service-cta__sub {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 44ch;
  margin: 16px 0 0;
}
.service-cta__actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: stretch;
}
.service-cta__actions .btn { justify-content: center; }
@media (max-width: 760px) {
  .service-cta__inner { grid-template-columns: 1fr; }
}


/* ============================================================ */
/* ============ PAGE HERO (About + Case Studies) ============== */
/* ============================================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
}
.page-hero__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.page-hero__title {
  font-size: clamp(48px, 8vw, 120px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.page-hero__sub {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 60ch;
  text-wrap: pretty;
  margin: 0 0 clamp(40px, 5vw, 64px) 0;
}
.page-hero__sub em { font-style: italic; color: var(--gold); }
.page-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(32px, 4vw, 48px);
}
.page-hero__meta-item {
  padding: 24px 0;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.page-hero__meta-item:last-child { border-right: none; }
.page-hero__meta-item:not(:first-child) { padding-left: 24px; }
.page-hero__meta-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.page-hero__meta-val {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
@media (max-width: 760px) {
  .page-hero__meta { grid-template-columns: 1fr 1fr; }
  .page-hero__meta-item:nth-child(2) { border-right: none; }
  .page-hero__meta-item:nth-child(1), .page-hero__meta-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .page-hero__meta-item:nth-child(3), .page-hero__meta-item:nth-child(4) { padding-top: 24px; }
}

/* ============================================================ */
/* ============ CASE STUDY SECTIONS =========================== */
/* ============================================================ */
.case-video {
  padding-block: clamp(20px, 3vw, 40px);
}
.case-video__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.case-video__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.case-video__caption {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.case-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-overview__col {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid var(--line);
}
.case-overview__col:last-child { border-right: none; }
.case-overview__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.case-overview__copy {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .case-overview__grid { grid-template-columns: 1fr; }
  .case-overview__col { border-right: none; border-bottom: 1px solid var(--line); }
  .case-overview__col:last-child { border-bottom: none; }
}

.case-quote {
  text-align: center;
  padding-block: clamp(40px, 6vw, 80px);
}
.case-quote__text {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto;
  font-style: italic;
  text-wrap: balance;
  position: relative;
}
.case-quote__mark {
  color: var(--gold);
  margin-right: 4px;
}
.case-quote__attr {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.case-services__head { margin-bottom: clamp(40px, 5vw, 64px); }
.case-services__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.case-services__item {
  display: flex; gap: 16px;
  padding: clamp(28px, 3vw, 40px) clamp(16px, 2vw, 32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.case-services__item:last-child { border-right: none; }
.case-services__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-top: 4px;
  min-width: 24px;
}
.case-services__name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.case-services__desc {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .case-services__list { grid-template-columns: 1fr; }
  .case-services__item { border-right: none; }
}

/* ============================================================ */
/* ============ ABOUT PAGE SECTIONS =========================== */
/* ============================================================ */
.about-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-story__heading { margin-bottom: 32px; }
.about-story__copy p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--fg-dim);
  margin: 0 0 20px 0;
  text-wrap: pretty;
}
.about-story__copy p em { font-style: italic; color: var(--gold); }

.about-story__portrait {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 16px;
}
.about-story__portrait-inner {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(196,162,107,0.18), transparent 60%),
    linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.about-story__portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-story__portrait-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22vw;
  color: rgba(196,162,107,0.18);
  line-height: 0.8;
}
.about-story__caption {
  display: flex; flex-direction: column; gap: 4px;
}
.about-story__caption .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.about-story__caption .name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.005em;
}
@media (max-width: 880px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__portrait { position: static; max-width: 380px; }
}

.values__head { margin-bottom: clamp(48px, 6vw, 80px); max-width: 28ch; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  transition: background 0.3s;
}
.value:hover { background: var(--bg-2); }
.value__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.value__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 4px 0;
}
.value__desc {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 760px) {
  .values__grid { grid-template-columns: 1fr; }
}

.vs__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.vs__heading { margin-bottom: 24px; }
.vs__lead { color: var(--fg-dim); }
.vs__table {
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.vs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.vs__row:last-child { border-bottom: none; }
.vs__cell {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg-dim);
}
.vs__cell--left {
  border-right: 1px solid var(--line);
  color: var(--fg-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(180,180,180,0.4);
}
.vs__cell--right {
  color: var(--fg);
  font-weight: 500;
}
.vs__row--head .vs__cell {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-mute);
  background: var(--bg);
}
.vs__row--head .vs__cell--right { color: var(--gold); }
@media (max-width: 880px) {
  .vs__grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* ============ CASE STUDY LINK ON WORK TILE ================== */
/* ============================================================ */
.case__meta-right {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.case__study-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 6px 10px;
  background: rgba(14,13,11,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,239,232,0.15);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.case__study-link:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}


/* ============================================================ */
/* ============ MOBILE REFINEMENTS ============================ */
/* ============================================================ */

/* Hamburger — hidden on desktop */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(14,13,11,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.nav__burger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), top 0.25s, opacity 0.2s, background 0.3s;
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 24px; }
.nav__burger.is-open { border-color: var(--gold); }
.nav__burger.is-open span { background: var(--gold); }
.nav__burger.is-open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 96px var(--gutter) 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s cubic-bezier(.2,.8,.2,1), transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-menu__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.mobile-menu__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.mobile-menu__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 999px;
  display: inline-block;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.mobile-menu__links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  transition: padding-left 0.4s cubic-bezier(.2,.8,.2,1), color 0.3s;
}
.mobile-menu__links a:active,
.mobile-menu__links a:hover { color: var(--gold); padding-left: 12px; }
.mobile-menu__links .mm-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  min-width: 28px;
}
.mobile-menu__links .mm-name {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
}
.mobile-menu__cta {
  justify-content: center;
  padding: 20px 28px;
  width: 100%;
}
.mobile-menu__loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* ============ NARROW VIEWPORT REFINEMENTS ============ */
@media (max-width: 760px) {
  :root { --gutter: 22px; }

  /* Nav: show burger, hide CTA pill (lives in menu instead) */
  .nav { padding: 12px 0; }
  .nav__inner { gap: 12px; }
  .nav.scrolled {
    background: rgba(14, 13, 11, 0.88);
  }
  .nav__cta--desktop { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav__logo { font-size: 20px; }

  /* Buttons: bigger touch targets, full-width primary */
  .btn { padding: 17px 24px; font-size: 14px; }
  .hero__cta .btn,
  .work__cta .btn,
  .service-cta__actions .btn { width: 100%; justify-content: center; }
  .hero__cta { gap: 12px; }

  /* HERO */
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .hero__top {
    margin-bottom: 40px;
    gap: 14px;
  }
  .hero__top .label { display: none; }
  .hero__loc { font-size: 10px; gap: 4px; }
  .hero__display { margin-bottom: 28px; }
  .display { font-size: clamp(54px, 14vw, 84px); line-height: 0.96; }
  .hero__cta { margin-top: 28px; flex-direction: column; align-items: stretch; }
  .hero__bottom {
    padding-top: 36px;
    gap: 28px;
  }
  .hero__sub { font-size: 16px; }
  .hero__retention { gap: 24px; }
  .retention__num { font-size: 44px; }

  /* MARQUEE — calmer on mobile */
  .marquee { padding: 16px 0; }
  .marquee__track { font-size: 26px; gap: 32px; animation-duration: 28s; }
  .marquee__track span { gap: 32px; }

  /* LOGOS row: stack as wrapped row, smaller marks */
  .logos { padding-block: 32px; }
  .logos__label { font-size: 10px; padding-bottom: 14px; }
  .logos__label em { font-size: 14px; }
  .logos__row { gap: 28px 36px; justify-content: space-between; }
  .logo-mark--serif, .logo-mark--bold, .logo-mark--script { font-size: 20px; }
  .logo-mark__vga { font-size: 18px; }

  /* SECTION rhythm */
  .section { padding-block: 72px; }
  .section--tight { padding-block: 56px; }

  /* TYPE */
  .h2 { font-size: clamp(38px, 9vw, 56px); }
  .lead { font-size: 16px; }

  /* ABOUT */
  .about__copy p { font-size: 17px; }
  .about__card { padding: 22px; }
  .about__card .big { font-size: 42px; }

  /* SERVICES — cleaner two-row layout per service */
  .service {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 26px 4px;
    align-items: start;
  }
  .service__num { margin-top: 6px; }
  .service__name { font-size: 26px; line-height: 1.05; }
  .service__desc {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 8px;
    font-size: 14px;
  }
  .service__arrow { width: 44px; height: 44px; }
  .service:hover { padding-left: 4px; }

  /* WORK */
  .work__grid { gap: 16px; }
  .case__meta { padding: 18px; gap: 12px; }
  .case__corner { top: 14px; left: 14px; right: 14px; }
  .case__play-btn { width: 64px; height: 64px; }
  .case__play-btn svg { width: 18px; height: 18px; }
  .case__tags { gap: 4px; }
  .case__tags span { padding: 4px 8px; font-size: 9px; }
  .work__cta { padding: 28px 22px; gap: 24px; }
  .work__cta-text { font-size: 22px; }

  /* STATS — tighter on mobile */
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 20px; gap: 6px; }
  .stat__num { font-size: 42px; }
  .stat__lbl { font-size: 10px; }
  .stat__sub { display: none; }

  /* PROCESS */
  .process__steps { gap: 28px; }
  .step { gap: 12px; }
  .step__num-wrap { margin-bottom: 8px; gap: 14px; }
  .step__circle { width: 60px; height: 60px; font-size: 26px; }
  .step__title { font-size: 22px; }
  .step__desc { font-size: 14px; }

  /* TESTIMONIALS */
  .testimonials__head .ratings { gap: 4px; }
  .t { padding: 26px; gap: 18px; }
  .t__quote { font-size: 18px; line-height: 1.4; }
  .t__quote::before { font-size: 48px; margin-bottom: 8px; }
  .t__meta { padding-top: 16px; gap: 12px; }
  .t__avatar { width: 40px; height: 40px; font-size: 17px; }

  /* BOOKING */
  .booking__heading { margin-bottom: 16px; }
  .booking__lead { margin-bottom: 24px; }
  .booking__bullets { margin: 24px 0; gap: 12px; }
  .booking__bullets li { font-size: 14px; }
  .booking__card-top { padding: 20px 22px; }
  .booking__card-top .ttl { font-size: 18px; }
  .booking__embed { height: 620px; }

  /* FOOTER */
  .footer__cta { padding-block: 72px 56px; }
  .footer__cta-text { font-size: 18vw; line-height: 0.92; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding: 48px 0 24px; }
  .footer__brand .logo { font-size: 26px; }
  .footer__brand p { font-size: 13px; }
  .footer__col h4 { margin-bottom: 14px; }
  .footer__col a { font-size: 13px; }
  .footer__bottom {
    padding: 22px 0;
    gap: 14px;
    font-size: 9px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* SERVICE-PAGE HEROS */
  .service-hero { padding-top: 112px; min-height: auto; }
  .service-hero__top { margin-bottom: 32px; }
  .service-hero__bottom { gap: 28px; padding-top: 32px; margin-top: 32px; }
  .service-hero__cta { margin-top: 28px; flex-direction: column; align-items: stretch; }
  .service-hero__cta .btn { width: 100%; justify-content: center; }
  .service-hero__stats { gap: 20px 28px; }
  .service-hero__stat-num { font-size: 36px; }

  .page-hero { padding-top: 112px; }
  .page-hero__top { margin-bottom: 32px; }

  /* SERVICE CTA */
  .service-cta__inner { padding: 28px 22px; gap: 22px; }

  /* TIER / FAQ */
  .tier { padding: 26px; gap: 22px; }
  .tier__price-num { font-size: 44px; }
  .faq__q { padding: 22px 4px; font-size: 18px; }
  .faq__item.is-open .faq__a { padding: 0 4px 24px; font-size: 14px; }

  /* DELIVERABLES + VALUES */
  .deliverable { padding: 24px; min-height: 0; }
  .value { padding: 24px; min-height: 0; }

  /* CASE OVERVIEW / SERVICES */
  .case-overview__col { padding: 28px 22px; gap: 12px; }
  .case-overview__copy { font-size: 18px; }
  .case-services__item { padding: 24px 22px; }

  /* VS table */
  .vs__cell { padding: 16px 18px; font-size: 14px; }

  /* Better tap behavior */
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* Extra-narrow phones */
@media (max-width: 380px) {
  :root { --gutter: 18px; }
  .display { font-size: 48px; }
  .hero__retention { gap: 18px; }
  .retention__num { font-size: 38px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}
