/* InterGlobal Test Index 2027
   Cream field. Accents: Dallas navy from the knockout type. */

@font-face {
  font-family: "Refinity";
  src: url("/assets/fonts/refinity/Refinity-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Refinity";
  src: url("/assets/fonts/refinity/Refinity-Oblique.woff") format("woff");
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
}
@font-face {
  font-family: "Grift";
  src: url("/assets/fonts/grift/Grift-Regular.woff2") format("woff2"),
       url("/assets/fonts/grift/Grift-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grift";
  src: url("/assets/fonts/grift/Grift-Medium.woff2") format("woff2"),
       url("/assets/fonts/grift/Grift-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grift";
  src: url("/assets/fonts/grift/Grift-Bold.woff2") format("woff2"),
       url("/assets/fonts/grift/Grift-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grift";
  src: url("/assets/fonts/grift/Grift-ExtraBold.woff2") format("woff2"),
       url("/assets/fonts/grift/Grift-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #ead9c0;
  --cream-deep: #d9c4a4;
  --paper: #f3ead8;
  --ink: #2a241c;
  --ink-soft: #5c5348;
  --blue: #163a62;
  --blue-deep: #0d2744;
  --blue-mid: #1a4f86;
  --moss: var(--blue);
  --moss-hover: var(--blue-deep);
  --moss-tint: color-mix(in srgb, var(--blue) 16%, var(--paper));
  --accent-grad: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  --line: color-mix(in srgb, var(--ink) 14%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 24%, transparent);
  --line-hair: color-mix(in srgb, var(--ink) 9%, transparent);

  /* Layered elevation. One blur reads as a sticker; two reads as a lift.
     Contact shadow is tight and darker, ambient is wide and faint. */
  --shadow-sm:
    0 1px 2px color-mix(in srgb, var(--ink) 7%, transparent),
    0 4px 12px color-mix(in srgb, var(--ink) 5%, transparent);
  --shadow-md:
    0 2px 4px color-mix(in srgb, var(--ink) 7%, transparent),
    0 12px 28px color-mix(in srgb, var(--ink) 8%, transparent);
  --shadow-lg:
    0 3px 6px color-mix(in srgb, var(--ink) 8%, transparent),
    0 28px 60px color-mix(in srgb, var(--ink) 13%, transparent);
  --shadow: var(--shadow-lg);

  /* Specimen plate tones. Eight work cards should read as a tonal run,
     not one repeated swatch. */
  --plate-1: #d9c4a4;
  --plate-2: #e2d0b4;
  --plate-3: #cbb694;
  --plate-4: #dfd2bb;
  --plate-5: #c9bb9f;
  --plate-6: #e6d6ba;
  --radius-media: 14px;
  --radius-field: 8px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --nav-h: 64px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1320px;
  --film-w: min(100%, 960px);
  --z-nav: 40;
  --z-overlay: 50;
  --z-grain: 60;
  --z-dialog: 70;
  --z-wash: 0;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; scroll-padding-top: 5.75rem; }
html.is-film-open {
  overflow: hidden;
  scroll-behavior: auto;
  overscroll-behavior: none;
}

html,
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Refinity", "Grift", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: "Grift", "Refinity", ui-sans-serif, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-field);
}
.skip:focus { top: 1rem; }

/* Viewport-sized, not page-sized. A document gradient never shows in the first screen. */
.wash {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-wash);
  background:
    radial-gradient(90% 70% at 0% 0%, color-mix(in srgb, var(--paper) 35%, white) 0%, transparent 58%),
    radial-gradient(80% 65% at 100% 100%, color-mix(in srgb, var(--cream-deep) 72%, var(--ink)) 0%, transparent 62%),
    linear-gradient(135deg, color-mix(in srgb, var(--paper) 42%, white) 0%, var(--cream) 42%, var(--cream-deep) 78%, color-mix(in srgb, var(--cream-deep) 68%, var(--ink)) 100%);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  height: 48px;
  padding: 0 0.4rem 0 1.25rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--accent-grad);
  color: var(--paper);
  text-decoration: none;
  font-family: "Grift", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.45s var(--ease), filter 0.35s var(--ease);
}
.btn:hover { filter: brightness(1.08); }
.btn-ghost:hover,
.btn-light:hover { filter: none; }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--blue-mid); outline-offset: 3px; }
.btn .mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 16%, transparent);
  display: grid;
  place-items: center;
  transition: transform 0.45s var(--ease);
}
.btn:hover .mark { transform: translateX(2px); }
.btn svg { width: 14px; height: 14px; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding-right: 0.4rem;
}
.btn-ghost:hover { background: color-mix(in srgb, var(--ink) 5%, transparent); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { background: var(--cream); }
.btn-light .mark { background: color-mix(in srgb, var(--ink) 10%, transparent); }
#scheduleSubmitBtn { width: 100%; justify-content: center; padding-right: 1.25rem; }

.text-link {
  color: var(--ink);
  text-underline-offset: 0.22em;
}
.text-link:visited { color: var(--moss); }

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 0.7rem var(--pad) 0;
  transition: padding 0.5s var(--ease);
}
.nav-shell.is-tight { padding-top: 0.4rem; }
.nav {
  height: var(--nav-h);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.55rem 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(18px);
}
.brand img { display: block; height: 22px; width: auto; }
.nav-links { display: none; gap: 1.6rem; }
.nav-links a { text-decoration: none; font-size: 0.95rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }
.menu-btn[aria-expanded="true"] span { background: transparent; }
.menu-btn[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(22px);
  display: none;
  padding: 6rem var(--pad) 2rem;
}
.overlay.open { display: block; }
.overlay nav { display: grid; gap: 0.4rem; }
.overlay a {
  font-family: "Grift", sans-serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  letter-spacing: -0.04em;
  text-decoration: none;
  line-height: 1.15;
  padding-bottom: 0.15rem;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  background: transparent;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  mask-mode: alpha;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}
.hero.is-punched .hero-media { opacity: 1; }
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-media video { z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-media video { visibility: hidden; }
}
/* Dallas is clipped to the headline glyphs. Cream is the page, not a plate on top.
   Do not transform .hero (that would trap the video containing-block). */
.hero-knockout {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 0;
  padding-top: calc(var(--nav-h) + 0.9rem);
}
.hero-layout {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: 0 0 1.75rem;
}
.hero-title {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.65rem, 2vw, 1.35rem);
  margin: 0;
  font-size: clamp(2.75rem, 9.2vw, 6.85rem);
}
.hero-stage {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
}
.hero-logo {
  display: block;
  height: 2.58em;
  width: auto;
  flex: 0 0 auto;
  opacity: 0;
  pointer-events: none;
}
.hero.is-ink .hero-logo { opacity: 1; }
.hero h1 {
  font-weight: 800;
  font-size: 1em;
  line-height: 0.86;
  letter-spacing: -0.055em;
  margin: 0;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 720px) {
  .hero-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }
  .hero-logo { height: 2.58em; }
  .hero-stage { width: 100%; flex-wrap: wrap; }
}
.hero.is-ink h1 {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
.hero h1 em {
  font-family: "Refinity", sans-serif;
  font-style: oblique;
  font-weight: 400;
}
.hero h1 .line { display: block; }
.hero h1 .line > span {
  display: inline-block;
  padding-bottom: 0.04em;
  white-space: nowrap;
}
.hero-cta {
  position: relative;
  flex: 0 0 16.5rem;
  width: 16.5rem;
  font-size: 1.02rem;
  line-height: 1.45;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
.hero-cta p {
  max-width: 28ch;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .hero-knockout { padding-top: calc(var(--nav-h) + 0.55rem); }
  .hero-layout { padding-bottom: 1.15rem; }
  .hero-cta {
    position: static;
    flex: 1 1 100%;
    width: auto;
    max-width: 36rem;
    margin-top: 0.9rem;
    align-items: flex-start;
    text-align: left;
  }
}

.section {
  position: relative;
  z-index: 1;
  background: transparent;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding: clamp(5.5rem, 10vh, 8rem) 0 clamp(3.5rem, 7vh, 6.5rem);
  scroll-margin-top: 5.75rem;
}
#services.section { padding-bottom: 8.5rem; }
#proof.section { align-content: start; }
.section.band {
  background: var(--paper);
  border-block: 1px solid var(--line-hair);
}
.kicker {
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  max-width: 54ch;
}
.section h2 {
  font-size: clamp(2.05rem, 4.6vw, 3.7rem);
  margin-bottom: 0.7rem;
  max-width: 18ch;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section h2::after {
  content: "";
  display: block;
  width: 2.7rem;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 99px;
  background: var(--accent-grad);
}

.pulse-banner {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-top: 1px solid var(--line-hair);
  padding: 0.7rem 0 0.8rem;
  scroll-margin-top: 5.75rem;
}
.pulse {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.1rem;
}
@media (min-width: 800px) {
  .pulse {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .pulse p {
    padding: 0.15rem 1.35rem;
    border-right: 1px solid var(--line-hair);
  }
  .pulse p:first-child { padding-left: 0; }
  .pulse p:last-child { border-right: 0; padding-right: 0; }
}
.pulse p { margin: 0; }
.pulse-link { color: inherit; text-decoration: none; display: block; }
.pulse-link:hover span { color: var(--blue); }
.pulse strong {
  display: block;
  font-family: "Grift", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.18rem;
  font-variant-numeric: tabular-nums;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.pulse span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.3;
}

.lanes { display: grid; gap: 1rem; }
@media (min-width: 860px) {
  .lanes { grid-template-columns: 1fr 1fr; }
}
.lane {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-media) + 6px);
  aspect-ratio: 16 / 11;
  max-height: 360px;
  min-height: 0;
  display: grid;
  align-items: end;
  text-decoration: none;
  color: var(--paper);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
  background: #1c1814;
}
@media (min-width: 860px) {
  .lane { height: auto; }
}
.lane img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.lane::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--blue-deep) 28%, transparent) 0%,
      color-mix(in srgb, var(--blue-deep) 46%, transparent) 28%,
      color-mix(in srgb, var(--blue-deep) 86%, transparent) 58%,
      color-mix(in srgb, var(--blue-deep) 96%, #020617) 100%
    );
}
.lane:hover img { transform: scale(1.05); }
.lane div {
  position: relative;
  z-index: 2;
  padding: 4.5rem 1.4rem 1.25rem;
}
.lane h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.4rem; }
.lane p { margin: 0 0 0.7rem; color: color-mix(in srgb, var(--paper) 94%, transparent); max-width: 36ch; }
.lane span { font-size: 0.82rem; color: color-mix(in srgb, var(--paper) 82%, transparent); }

.work-head { margin-bottom: 2.4rem; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: wk;
}
@media (min-width: 700px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.2rem;
  }
}
/* Eight cards two-up at 1320 makes each plate 650px wide, which reads as a
   poster wall rather than an index. Three-up keeps the monogram dominant and
   the section scannable. */
@media (min-width: 1120px) {
  .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.work-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  counter-increment: wk;
}
/* Plate index. Fills the top-right of the plate and gives the grid an
   editorial spine without duplicating the client name. */
.work-card::after {
  content: counter(wk, decimal-leading-zero);
  position: absolute;
  top: 0.95rem;
  right: 1.1rem;
  z-index: 3;
  font-family: "Grift", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--ink) 42%, transparent);
  pointer-events: none;
}
.work-card:has(.work-preview)::after { color: color-mix(in srgb, var(--paper) 78%, transparent); }
.work-preview {
  position: relative;
  background: var(--blue-deep);
}
.work-preview iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1280px;
  height: 800px;
  border: 0;
  transform: scale(calc(100cqi / 1280));
  transform-origin: top left;
  pointer-events: none;
  background: #0b1220;
}
.work-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.work-preview .work-open {
  position: absolute;
  z-index: 3;
  top: 0.9rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Grift", sans-serif;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  color: var(--paper);
  background: color-mix(in srgb, var(--blue-deep) 72%, transparent);
  backdrop-filter: blur(10px);
  padding: 0.34rem 0.72rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.work-preview .work-open::after { content: "→"; }
.work-card:hover .work-preview .work-open,
.work-card:focus-visible .work-preview .work-open {
  background: var(--moss);
  color: var(--paper);
}
.studio-visual.work-preview {
  aspect-ratio: 16 / 10;
  min-height: 0;
  width: 100%;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-md);
}
.work-card .thumb,
.studio-visual {
  container-type: inline-size;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--cream-deep);
  pointer-events: none;
}
.work-card .thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 0.9rem;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-md);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.work-card:hover .thumb,
.work-card:focus-visible .thumb {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.work-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; border-radius: 4px; }
/* Specimen plate. No client screenshot exists yet, so the plate is a type
   specimen, not a placeholder: the monogram IS the image. Sized in cqi off
   .thumb's inline-size container so it fills the plate at every column width
   and crops optically past the left and bottom edges. */
.work-face {
  position: relative;
  display: block;
  padding: 0;
  background:
    radial-gradient(120% 100% at 8% 4%, color-mix(in srgb, var(--paper) 62%, transparent), transparent 62%),
    var(--plate, var(--plate-1));
  color: var(--ink);
}
.work-face::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--paper) 40%, transparent);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
/* Optically centred, not bottom-cropped. A monogram sinking off the bottom
   edge while the upper half sits empty reads as a mistake; centred at low
   contrast it reads as a specimen. Nudged up slightly because the pill and
   index number weight the top of the plate. */
.work-face .work-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  /* Grift caps fill the upper em box (cap height ~0.72em, baseline ~0.75em), so
     geometric centring lands the glyphs ~0.14em high. Padding the top shifts the
     content box down half that and restores the optical centre. */
  padding-top: 0.26em;
  margin: 0;
  font-family: "Grift", sans-serif;
  font-weight: 800;
  font-size: 40cqi;
  line-height: 1;
  letter-spacing: -0.055em;
  color: color-mix(in srgb, var(--ink) 21%, transparent);
  white-space: nowrap;
  transition: transform 0.8s var(--ease), color 0.45s var(--ease);
}
.work-card:hover .work-face .work-mark,
.work-card:focus-visible .work-face .work-mark {
  transform: translate3d(0.9%, -1.6%, 0);
  color: color-mix(in srgb, var(--ink) 24%, transparent);
}
.work-face .work-open {
  position: absolute;
  z-index: 3;
  top: 0.9rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Grift", sans-serif;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  padding: 0.34rem 0.72rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.45s var(--ease);
}
.work-face .work-open::after {
  content: "→";
  transition: transform 0.45s var(--ease);
}
.work-card:hover .work-face .work-open,
.work-card:focus-visible .work-face .work-open {
  background: var(--moss);
  color: var(--paper);
}
.work-card:hover .work-face .work-open::after { transform: translateX(3px); }

/* Tonal run across the eight plates. */
.work-grid .work-card:nth-child(1) .work-face { --plate: var(--plate-1); }
.work-grid .work-card:nth-child(2) .work-face { --plate: var(--plate-2); }
.work-grid .work-card:nth-child(3) .work-face { --plate: var(--plate-3); }
.work-grid .work-card:nth-child(4) .work-face { --plate: var(--plate-4); }
.work-grid .work-card:nth-child(5) .work-face { --plate: var(--plate-5); }
.work-grid .work-card:nth-child(6) .work-face { --plate: var(--plate-6); }
/* Photo plates: the still is the image, so the mark drops to a caption
   weight instead of a watermark. */
.work-face.has-photo {
  color: var(--paper);
  background: #1c1814;
}
.work-face.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.work-card:hover .work-face.has-photo img { transform: scale(1.04); }
.work-face.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, color-mix(in srgb, var(--ink) 78%, transparent) 12%, transparent 62%);
}
.work-face.has-photo .work-mark {
  inset: auto auto 0.85rem 1.05rem;
  display: block;
  place-items: initial;
  padding-top: 0;
  z-index: 2;
  font-size: clamp(1.5rem, 9cqi, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  max-width: calc(100% - 2.1rem);
}
.work-card:hover .work-face.has-photo .work-mark,
.work-card:focus-visible .work-face.has-photo .work-mark {
  transform: none;
  color: var(--paper);
}
.steps h3,
.values h3,
.market-grid h3 {
  color: var(--blue-deep);
}
.work-card h3 {
  color: var(--blue-deep);
  font-size: 1.18rem;
  margin-bottom: 0.12rem;
}
.work-card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.lane img[data-asset="salsa-roja-umbrella-patio"] { object-position: 50% 38%; }
.lane img[data-asset="potros-concrete-night-pour"] { object-position: 50% 62%; }
/* aspect-ratio + min-height together let the ratio solve for WIDTH off the
   forced height (400 * 1.6 = 640px) and overflow the grid column into
   .desk-chips. Width must stay column-bound; height is the free axis. */
.studio-visual.work-face {
  aspect-ratio: auto;
  width: 100%;
  min-height: 400px;
}
.work-more { margin: 1.6rem 0 0; }

.film-sec { padding-inline: 0; }
.film-desk {
  width: min(1400px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.film-copy { margin-bottom: 1.4rem; }
.film-copy h2 { max-width: 11ch; }
.film-copy .kicker { margin-bottom: 0; }
@media (min-width: 1080px) {
  .film-desk {
    display: grid;
    grid-template-columns: minmax(16.5rem, 0.32fr) minmax(0, 1fr);
    gap: clamp(1.4rem, 3vw, 2.8rem);
    align-items: stretch;
  }
  .film-copy {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.2rem 1.5rem 0.2rem 0;
    border-right: 1px solid color-mix(in srgb, var(--blue) 22%, transparent);
  }
  .film-copy h2 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 7.2ch;
  }
  .film-copy .kicker { max-width: 26ch; font-size: 1.02rem; }
  .film-desk .film-toolbar,
  .film-desk .film-dots,
  .film-desk .film-hero,
  .film-desk .film-stills,
  .film-desk .film-caption { max-width: 100%; }
  .film-desk .film-toolbar.wrap,
  .film-desk .film-dots.wrap {
    width: 100%;
    margin-inline: 0;
  }
}
/* Toolbar and dots track the strip, not the 1320 wrap, or the controls float
   wider than the thing they control. */
.film-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  max-width: min(var(--film-w), calc(100% - (var(--pad) * 2)));
}
.film-dots { max-width: min(var(--film-w), calc(100% - (var(--pad) * 2))); }
.film-status {
  margin: 0;
  font-family: "Grift", sans-serif;
  font-variant-numeric: tabular-nums;
}
.film-nav { display: flex; gap: 0.45rem; }
.film-nav button {
  height: 44px;
  padding: 0 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.film-nav button:hover { background: var(--cream-deep); border-color: var(--ink-soft); }
.film-nav button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.film-rail {
  position: relative;
  isolation: isolate;
}
.film-fx {
  position: absolute;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}
.film-fx canvas {
  position: absolute;
  display: block;
}
.film-fx-card {
  position: absolute;
  background-color: var(--cream-deep);
  background-repeat: no-repeat;
}
.film-fx-cap {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  background: var(--cream);
}
.film-fx::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, var(--paper) 38%, color-mix(in srgb, var(--moss) 42%, var(--paper)) 62%, transparent 96%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.film-fx.is-live::after {
  animation: film-scan 0.64s cubic-bezier(0.83, 0, 0.17, 1);
}
@keyframes film-scan {
  0% { opacity: 0; transform: translateY(-6%); }
  14% { opacity: 0.95; }
  100% { opacity: 0; transform: translateY(106%); }
}
.film-fx.is-live .film-fx-card--0 {
  animation: fx-card-out-a 0.54s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.film-fx.is-live .film-fx-card--1 {
  animation: fx-card-out-b 0.54s 0.04s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.film-fx.is-live .film-fx-card--2 {
  animation: fx-card-out-c 0.54s 0.08s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.film-fx.is-live .film-fx-cap {
  animation: fx-cap-out 0.42s 0.05s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
@keyframes fx-card-out-a {
  0% { clip-path: inset(0); transform: translate3d(0, 0, 0); }
  14% { transform: translate3d(16px, 0, 0); }
  32% { clip-path: inset(20% 0 38% 0); transform: translate3d(-20px, 0, 0); }
  58% { clip-path: inset(0 12% 0 0); transform: translate3d(10px, 0, 0); }
  100% { clip-path: inset(0 100% 0 0); transform: translate3d(-12%, 0, 0); opacity: 0; }
}
@keyframes fx-card-out-b {
  0% { clip-path: inset(0); transform: translate3d(0, 0, 0); }
  16% { clip-path: inset(0 0 18% 0); transform: translate3d(0, -12px, 0); }
  40% { clip-path: inset(28% 0 0 0); transform: translate3d(0, 8px, 0); }
  100% { clip-path: inset(100% 0 0 0); transform: translate3d(0, -14%, 0); opacity: 0; }
}
@keyframes fx-card-out-c {
  0% { clip-path: inset(0); transform: translate3d(0, 0, 0); }
  14% { transform: translate3d(-14px, 0, 0); }
  34% { clip-path: inset(0 24% 0 0); transform: translate3d(12px, 0, 0); }
  100% { clip-path: inset(0 0 0 100%); transform: translate3d(12%, 0, 0); opacity: 0; }
}
@keyframes fx-cap-out {
  to { opacity: 0; transform: translate3d(0, -10px, 0); clip-path: inset(0 0 100% 0); }
}
.film-slide.is-arriving .film-hero {
  animation: fx-hero-in 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.film-slide.is-arriving .film-stills img:nth-child(1) {
  animation: fx-still-in-a 0.56s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.film-slide.is-arriving .film-stills img:nth-child(2) {
  animation: fx-still-in-b 0.56s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
.film-slide.is-arriving .film-stills img:nth-child(3) {
  animation: fx-still-in-c 0.56s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
.film-slide.is-arriving .film-caption {
  animation: fx-cap-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes fx-hero-in {
  from { clip-path: inset(0 0 0 78%); transform: translate3d(7%, 0, 0) skewX(5deg); }
  42% { clip-path: inset(0 0 0 16%); transform: translate3d(-1%, 0, 0) skewX(-1deg); }
  to { clip-path: inset(0); transform: none; }
}
@keyframes fx-still-in-a {
  from { clip-path: inset(0 0 0 100%); transform: translate3d(10%, 0, 0); }
  to { clip-path: inset(0); transform: none; }
}
@keyframes fx-still-in-b {
  from { clip-path: inset(100% 0 0 0); transform: translate3d(0, 12%, 0); }
  to { clip-path: inset(0); transform: none; }
}
@keyframes fx-still-in-c {
  from { clip-path: inset(0 100% 0 0); transform: translate3d(-10%, 0, 0); }
  to { clip-path: inset(0); transform: none; }
}
@keyframes fx-cap-in {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: none; }
}
.film-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.film-viewport::-webkit-scrollbar { display: none; }
.film-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  gap: 0.85rem;
  padding: 0 var(--pad) 0.2rem;
  max-width: 100%;
}
/* The film stage is deliberately narrower than --max (1320). These stills are
   tight close-ups; at 1300px wide they render near 1:1 and read as blown-up
   detail rather than as a frame. A centred cinema strip keeps the subject
   legible and gives the section its own measure. */
.film-hero,
.film-stills,
.film-caption {
  width: 100%;
  max-width: var(--film-w);
  margin-inline: auto;
}
.film-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-media) + 4px);
  background: var(--cream-deep);
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
.film-hero img,
.film-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.film-hero img { transition: opacity 0.4s var(--ease), transform 1.4s var(--ease); }
.film-hero.is-playing img { opacity: 0; }
.film-hero:hover img { transform: scale(1.03); }
.film-hero.is-playing:hover img { transform: none; }
.film-hero:focus-within { outline: 2px solid var(--ink); outline-offset: 4px; }
.film-slide[data-client="odelay"] .film-label { display: none; }
.film-hero img[data-asset="odelay-catrina-niches"],
.film-hero:has(img[data-asset="odelay-catrina-niches"]) video { object-position: 50% 42%; }
.film-hero img[data-asset="salsa-roja-umbrella-patio"],
.film-hero:has(img[data-asset="salsa-roja-umbrella-patio"]) video { object-position: 50% 38%; }
.film-hero img[data-asset="potros-concrete-night-pour"],
.film-hero:has(img[data-asset="potros-concrete-night-pour"]) video { object-position: 50% 62%; }
.film-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(42 36 28 / 0.58), transparent 46%);
  pointer-events: none;
}
.play-orb {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 1;
  cursor: pointer;
}
.play-orb:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.play-orb svg { width: 14px; height: 14px; margin-left: 2px; }
.film-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--paper);
  text-align: right;
  font-family: "Grift", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1;
  z-index: 1;
}
.film-label small {
  display: block;
  font-family: "Refinity", sans-serif;
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0;
}
.film-stills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.film-stills img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.film-caption {
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.film-stills img[data-asset="odelay-plata-o-plomo-neon"] { object-position: 50% 30%; }
.film-stills img[data-asset="odelay-michelada-chile-rim"] { object-position: 50% 45%; }
.film-stills img[data-asset="odelay-guest-toast"] { object-position: 50% 35%; }
.film-stills img[data-asset="salsa-roja-barro-mugs"] { object-position: 50% 42%; }
.film-stills img[data-asset="salsa-roja-neon-dallas"] { object-position: 50% 48%; }
.film-stills img[data-asset="salsa-roja-umbrella-patio"] { object-position: 50% 42%; }
.film-stills img[data-asset="potros-concrete-team"] { object-position: 50% 38%; }
.film-stills img[data-asset="potros-concrete-mixer-crew"] { object-position: 50% 46%; }
.film-stills img[data-asset="potros-concrete-night-pour"] { object-position: 50% 58%; }
.film-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  padding: 1rem 0 0;
}
/* The dot is 8px; the target is 44px. Painting the dot on a pseudo-element
   keeps the visual small without shipping an 8px tap target. */
.film-dots button {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.film-dots button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: width 0.4s var(--ease), background 0.4s var(--ease);
}
.film-dots button[aria-current="true"]::before {
  background: var(--moss);
  width: 22px;
  border-radius: 8px;
}
.film-dots button:focus-visible { outline: 2px solid var(--ink); outline-offset: -6px; border-radius: 50%; }
@media (max-width: 699px) {
  .film-hero { aspect-ratio: 16 / 10; }
  .film-stills { grid-template-columns: 1fr 1fr; }
  .film-stills img { aspect-ratio: 4 / 3; }
  .film-stills img:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

.studio {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 900px) {
  .studio {
    grid-template-columns: minmax(200px, 240px) 1fr;
    align-items: start;
    gap: 1.6rem;
  }
}
.studio-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
@media (min-width: 900px) {
  .studio-tabs {
    grid-template-columns: 1fr;
    position: sticky;
    top: 5.75rem;
  }
}
.studio-tabs button {
  display: grid;
  gap: 0.1rem;
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  line-height: 1.15;
}
.studio-tabs button small {
  font-family: "Refinity", sans-serif;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0;
  font-weight: 400;
}
@media (max-width: 899px) {
  .studio-tabs button {
    text-align: center;
    padding: 0.7rem 0.35rem;
    font-size: 0.92rem;
  }
  .studio-tabs button small { display: none; }
}
.studio-tabs button[aria-selected="true"] {
  background: var(--moss);
  color: var(--paper);
  border-color: var(--moss);
}
.studio-tabs button[aria-selected="true"] small { color: color-mix(in srgb, var(--paper) 78%, transparent); }
.studio-stage {
  min-height: 420px;
}
.studio-panel {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 860px) {
  .studio-panel { grid-template-columns: 1.08fr 0.92fr; align-items: stretch; }
}
.studio-panel[hidden] { display: none; }
.studio-visual {
  min-height: 380px;
  width: 100%;
  min-width: 0;
  position: relative;
  pointer-events: none;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-md);
}
/* The studio plate carries a wordmark, not two or three letters, so it gets
   its own cap and a block caption instead of the pill. */
.studio-visual.work-face { --plate: var(--plate-3); }
.studio-visual.work-face .work-mark {
  inset: auto auto 3.6rem 1.3rem;
  display: block;
  place-items: initial;
  padding-top: 0;
  font-size: 15cqi;
  line-height: 0.9;
  color: color-mix(in srgb, var(--ink) 30%, transparent);
  max-width: calc(100% - 2.6rem);
}
.studio-visual.work-face .work-open {
  top: auto;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.25rem;
  display: block;
  max-width: 34ch;
  white-space: normal;
  font-family: "Refinity", sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-soft);
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.studio-visual.work-face .work-open::after { content: none; }
.studio-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 0.2rem 0 0;
}
.studio-copy .btn { justify-self: start; }
.studio-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.studio-copy p { color: var(--ink-soft); margin: 0; max-width: 44ch; }
.desk-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.desk-chip {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}
.desk-chip:hover { background: var(--cream-deep); }
.desk-chip[aria-pressed="true"] {
  background: var(--moss);
  color: var(--paper);
  border-color: var(--moss);
}
.desk-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.desk-ops,
.desk-data,
.desk-chat {
  padding: 1.35rem 1.3rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 70%, transparent), var(--cream-deep));
}
.desk-ops.has-film {
  color: var(--paper);
  background: #1c1814;
}
.desk-ops.has-film > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.desk-ops.has-film::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / 0.45);
}
.desk-ops.has-film > *:not(video) { position: relative; z-index: 2; }
.desk-ops.has-film .desk-kicker { color: color-mix(in srgb, var(--paper) 72%, transparent); }
.desk-ops.has-film .ops-bar { background: rgb(255 255 255 / 0.18); }
.desk-ops.has-film .ops-list li {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--ink);
}
.ops-row,
.desk-data li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}
.ops-bar {
  height: 6px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  margin: 0.35rem 0 0.9rem;
  overflow: hidden;
}
.ops-bar i {
  display: block;
  height: 100%;
  background: var(--moss);
  border-radius: inherit;
}
.ops-list,
.desk-data ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ops-list li,
.desk-data li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
}
.desk-data ul { display: grid; gap: 0.45rem; }
.desk-data li {
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}
.bars {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 120px;
  margin: 0.4rem 0 1.1rem;
}
.bars i {
  flex: 1;
  background: var(--moss);
  border-radius: 6px 6px 2px 2px;
  opacity: 0.85;
}
.bars i:nth-child(1) { height: 42%; }
.bars i:nth-child(2) { height: 68%; }
.bars i:nth-child(3) { height: 51%; }
.bars i:nth-child(4) { height: 88%; }
.bars i:nth-child(5) { height: 60%; }
.bars i:nth-child(6) { height: 74%; }
.bars i:nth-child(7) { height: 46%; }
.desk-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.desk-brand img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  padding: 1.1rem;
  background: var(--paper);
}
.desk-chat { display: grid; gap: 0.65rem; align-content: center; }
.desk-chat p {
  margin: 0;
  max-width: 92%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.92rem;
}
.desk-chat .in {
  background: var(--paper);
  border: 1px solid var(--line);
}
.desk-chat .out {
  margin-left: auto;
  background: var(--moss);
  color: var(--paper);
}
.desk-growth { position: relative; }
.desk-growth img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 50% 32%;
}
.desk-growth p {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
}

.picker-board {
  display: grid;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-media) + 4px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.picker-col {
  display: grid;
  gap: 0;
  align-content: start;
  min-width: 0;
  padding: 1.35rem 1.2rem 1.05rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.picker-col + .picker-col { border-top: 1px solid var(--line-hair); }
@media (min-width: 760px) {
  .picker-board { grid-template-columns: 1fr 1fr; }
  .picker-col + .picker-col { border-top: 0; }
  .picker-col:nth-child(odd) { border-right: 1px solid var(--line-hair); }
  .picker-col:nth-child(-n+2) { border-bottom: 1px solid var(--line-hair); }
}
@media (min-width: 1120px) {
  .picker-board { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .picker-col { border-right: 1px solid var(--line-hair); border-bottom: 0; }
  .picker-col:nth-child(even) { border-right: 1px solid var(--line-hair); }
  .picker-col:nth-child(-n+2) { border-bottom: 0; }
  .picker-col:last-child { border-right: 0; }
}
.picker-label {
  margin: 0 0 0.35rem;
  padding: 0 0.2rem 0.7rem;
  border-bottom: 1px solid var(--line-hair);
  font-family: "Grift", sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.svc {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.12rem;
  text-align: left;
  min-height: 0;
  margin: 0.12rem 0;
  padding: 0.72rem 1.55rem 0.72rem 0.2rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.svc:hover { background: color-mix(in srgb, var(--blue) 6%, transparent); }
.svc:active { transform: none; }
.svc:focus-visible { outline: 2px solid var(--blue-mid); outline-offset: 2px; }
.svc-name {
  font-family: "Grift", sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
  padding-right: 0;
}
.svc.feat .svc-name {
  font-weight: 700;
  font-size: 1.08rem;
}
.svc-out {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: none;
}
.svc-mark {
  position: absolute;
  top: 0.78rem;
  right: 0.45rem;
  width: 10px;
  height: 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transform: rotate(-45deg);
  box-shadow: none;
}
.svc-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 5px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}
.svc[aria-pressed="true"] {
  background: var(--blue);
  color: var(--paper);
  border-color: transparent;
}
.svc[aria-pressed="true"]:hover { background: var(--blue-deep); }
.svc[aria-pressed="true"] .svc-out { color: color-mix(in srgb, var(--paper) 78%, transparent); }
.svc[aria-pressed="true"] .svc-mark {
  opacity: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--paper);
}
.inquiry {
  display: flex;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.inquiry.has-picks {
  position: sticky;
  bottom: 0.85rem;
  z-index: 6;
  box-shadow: 0 -12px 40px color-mix(in srgb, var(--cream) 55%, transparent);
}
.inquiry-empty { margin: 0; color: var(--ink-soft); }
.inquiry.has-picks .inquiry-empty { display: none; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  background: var(--moss-tint);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
}

.market-visual {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-media) + 6px);
  aspect-ratio: 16 / 9;
  min-height: 200px;
  margin: 0 0 1.1rem;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow);
  background: #1c1814;
}
.market-visual img,
.market-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 40%;
}
.market-visual video {
  z-index: 1;
  opacity: 0;
  background: transparent;
  transition: opacity 0.45s var(--ease);
}
.market-visual video.is-on { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .market-visual video { visibility: hidden; opacity: 0; }
}
.market-stills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 0 0 2rem;
}
@media (min-width: 800px) {
  .market-stills { grid-template-columns: 1fr 1fr; }
}
.market-stills figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-media);
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
  background: #1c1814;
}
.market-stills img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market-stills figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.65rem;
  margin: 0;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  font-family: "Grift", sans-serif;
  font-size: 0.72rem;
}
.market-grid {
  display: grid;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) { .market-grid { grid-template-columns: 1fr 1fr; } }
.market-grid article {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1.8rem 0 2rem;
  display: grid;
  gap: 0.5rem;
  overflow: hidden;
  min-width: 0;
}
@media (min-width: 800px) {
  .market-grid article:first-child { padding-right: 2.2rem; border-right: 1px solid var(--line-hair); }
  .market-grid article:last-child { padding-left: 2.2rem; }
}
.market-grid article span {
  font-family: "Grift", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: color-mix(in srgb, var(--ink) 12%, transparent);
}
.market-grid h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin: 0; position: relative; }
.market-grid p { margin: 0; color: var(--ink-soft); max-width: 42ch; position: relative; }
.logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (min-width: 800px) {
  .logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.logo-tile {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line-hair);
  border-radius: 14px;
}
.logos img {
  height: 36px;
  width: auto;
  max-width: 78%;
  object-fit: contain;
}
.logo-tile:has(img[alt="Google Business"]) img,
.logo-tile:has(img[alt="Apple Maps"]) img {
  height: 52px;
  max-width: 64%;
}

.creators { display: grid; gap: 2.2rem; }
@media (min-width: 960px) {
  .creators { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}
.phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: end;
}
.phone {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 9 / 16;
  background: #1c1814;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}
.phone:nth-child(2) { transform: translateY(-1.6rem); }
.phone:nth-child(4) { display: none; }
.phone video { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 767px) {
  .phones { grid-template-columns: 1fr 1fr; }
  .phone:nth-child(4) { display: none; }
  .phone:nth-child(2) { transform: none; }
}
.creator-count {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 0 0 1rem;
}
.creator-count strong {
  font-family: "Grift", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
}
.creator-count span { color: var(--ink-soft); font-size: 0.95rem; }
.plain { margin: 0 0 1.4rem; padding: 0; list-style: none; display: grid; gap: 0.7rem; color: var(--ink-soft); }
.plain strong { color: var(--ink); }
.row-btns { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Both covers are 1000x1000. A square frame is the right frame; the old plate
   was only oversized because two columns of a 1320 wrap makes each cell 651px.
   Capping the block keeps the frame square with no letterboxing and cuts the
   plate from 651 to ~450. */
.guides { display: grid; gap: 1.4rem; max-width: 940px; }
@media (min-width: 800px) { .guides { grid-template-columns: 1fr 1fr; } }
.guides a { text-decoration: none; color: inherit; }
.guides img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius-media);
  margin-bottom: 0.9rem;
  background:
    radial-gradient(90% 70% at 50% 0%, color-mix(in srgb, var(--paper) 96%, transparent), var(--paper));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.guides a:hover img,
.guides a:focus-visible img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guides h3 { font-size: 1.3rem; }
.guides p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.guides p::after { content: "→"; transition: transform 0.4s var(--ease); }
.guides a:hover p::after { transform: translateX(3px); }

.guide-live {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.1rem;
  padding: 1rem;
  border-radius: calc(var(--radius-media) + 8px);
  background:
    linear-gradient(160deg, #052A25 0%, #0F5A52 42%, #073E38 100%);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
.guide-live-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FDF8E8;
}
.guide-live-mark img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #041614;
  border-radius: 22px;
  padding: 0.7rem;
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.28);
}
.guide-live-mark h3 {
  margin: 0 0 0.2rem;
  font-size: 1.35rem;
  color: #FDF8E8;
  background: none;
  -webkit-text-fill-color: #FDF8E8;
}
.guide-live-mark h3::after { display: none; }
.guide-live-mark p { margin: 0 0 0.35rem; color: color-mix(in srgb, #FDF8E8 78%, transparent); }
.guide-live-mark .text-link { color: #F4C41C; }
.guide-live-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #FDF8E8;
  min-height: min(72vh, 820px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #052A25 18%, transparent);
}
.guide-live-frame iframe {
  display: block;
  width: 100%;
  height: min(72vh, 820px);
  border: 0;
  background: #FDF8E8;
}

.steps { display: grid; gap: 0; border-top: 1px solid var(--line); padding: 0; margin: 0; }
.steps li {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .steps li { grid-template-columns: 72px 1fr; align-items: baseline; }
}
@media (min-width: 1100px) {
  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--paper);
  }
  .steps li {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 1.4rem 1.2rem 1.5rem;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    gap: 0.55rem;
  }
  .steps li:last-child { border-right: 0; }
  .steps p { max-width: none; font-size: 0.9rem; }
  .steps h3 { font-size: 1.32rem; }
}
.steps span {
  font-family: "Grift", sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}
.steps h3 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.steps p { margin: 0.25rem 0 0; color: var(--ink-soft); max-width: 54ch; }
/* Tech stack. The named items were a prose list; naming them as discrete
   tokens makes the stack scannable without turning into a logo wall. */
.stack {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .stack { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: center; gap: 2.4rem; }
}
.stack-line { margin: 0; color: var(--ink-soft); max-width: 46ch; }
.stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.stack-list li {
  font-family: "Grift", sans-serif;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--paper);
}

/* Core values. Six principles as a hairline grid, not six cards: the card
   would add a border per item and say nothing the rule does not. */
.values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.values li {
  display: grid;
  gap: 0.18rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
/* Two columns. The index sits above the heading so the body uses the full cell.
   A side index at this width stole ~2.6rem and dropped the measure under 25ch. */
@media (min-width: 760px) {
  .values { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 4rem); }
  .values li:nth-last-child(2) { border-bottom: 0; }
}
.values li:last-child { border-bottom: 0; }
.values span {
  font-family: "Grift", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.values h3 { font-size: 1.28rem; margin-bottom: 0.25rem; }
.values p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; max-width: none; }

/* Named AI capabilities inside the AI desk. */
.desk-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 46ch;
}
.desk-notes li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-hair);
  line-height: 1.45;
}
.desk-notes li:first-child { border-top: 0; padding-top: 0; }
.desk-notes strong { color: var(--ink); font-weight: 500; }

.proof-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.proof-g { display: block; flex: 0 0 auto; }
.proof-score { margin: -0.35rem 0 1.6rem; }
.proof-score a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.32rem 0.85rem 0.32rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.proof-score a:hover { border-color: var(--line-strong); color: var(--ink); }
.proof-score strong {
  font-family: "Grift", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
}
.proof-stars {
  display: block;
  width: 4.7rem;
  height: 0.82rem;
  margin: 0 0 0.45rem;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2.6l2.47 6.64 7.03.54-5.35 4.5 1.64 6.86L12 17.77l-5.79 3.37 1.64-6.86-5.35-4.5 7.03-.54z'/%3E%3C/svg%3E") repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2.6l2.47 6.64 7.03.54-5.35 4.5 1.64 6.86L12 17.77l-5.79 3.37 1.64-6.86-5.35-4.5 7.03-.54z'/%3E%3C/svg%3E") repeat-x;
  -webkit-mask-size: 0.94rem 0.82rem;
  mask-size: 0.94rem 0.82rem;
}
.proof-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.proof-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 12%, var(--paper));
  color: var(--blue-deep);
  font-family: "Grift", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: -0.02em;
}
.proof-feature { margin: 0 0 1.6rem; }
.proof-plate {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: calc(var(--radius-media) + 6px);
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-md);
  background: #1c1814;
  min-height: 22rem;
}
.proof-plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 8% 50%;
  pointer-events: none;
}
.proof-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 28%, color-mix(in srgb, var(--ink) 38%, transparent) 100%);
  pointer-events: none;
}
.proof-plate blockquote {
  position: relative;
  z-index: 3;
  margin: 0.7rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border: 0;
  border-radius: 10px;
  max-width: none;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
}
@media (min-width: 880px) {
  .proof-plate {
    aspect-ratio: 16 / 9;
    min-height: 0;
    display: grid;
    align-items: end;
    justify-items: start;
  }
  .proof-plate blockquote {
    margin: 0 0 1.25rem 1.25rem;
    width: min(34rem, 54%);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
  }
}
.proof-stills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
}
@media (min-width: 760px) {
  .proof-stills { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.proof-stills img {
  display: block;
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
  border-radius: var(--radius-media);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-sm);
  filter: grayscale(0.35) contrast(1.04);
}
.proof-stills img:last-child { filter: grayscale(1) contrast(1.06); }
.proof-more { margin: 2rem 0 0; }

#proof .quote {
  font-family: "Grift", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 22ch;
  margin: 0 0 1rem;
}
#proof .who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-soft);
  margin: 0;
}
#proof .who strong { color: var(--ink); font-weight: 500; }
.more-quotes {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.2rem;
}
@media (min-width: 800px) { .more-quotes { grid-template-columns: 1fr 1fr; gap: 0.9rem 1rem; } }
.more-quotes figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line-hair);
  border-radius: 12px;
}
.more-quotes p { margin: 0; }
.more-quotes .who { margin-top: auto; padding-top: 0.15rem; }
.proof-card-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.proof-card-top .proof-stars,
.proof-card-top .proof-source { margin: 0; }
.proof-card-top .proof-source { margin-top: 0.2rem; }

.book {
  display: grid;
  gap: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
}
@media (min-width: 960px) { .book { grid-template-columns: 0.92fr 1.08fr; } }
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-head button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
}
.dow, .cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.dow span {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-soft);
  padding: 0.3rem 0;
}
.day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
}
.day:hover { background: var(--moss-tint); }
.day[aria-pressed="true"] { background: var(--moss); color: var(--paper); }
.day:disabled { opacity: 0.28; cursor: default; }
.day.is-today:not([aria-pressed="true"]) { box-shadow: inset 0 0 0 1px var(--moss); }
.times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.times button {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  padding: 0.7rem 0.4rem;
  min-height: 44px;
  cursor: pointer;
}
.times button[aria-pressed="true"] {
  background: var(--moss);
  color: var(--paper);
  border-color: var(--moss);
}
.field { display: grid; gap: 0.4rem; margin-bottom: 0.9rem; }
.field label { font-size: 0.82rem; color: var(--ink-soft); }
.field input,
.field select,
.field textarea,
#form-services {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: var(--radius-field);
  padding: 0.75rem 0.8rem;
  min-height: 46px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--blue-mid);
  outline-offset: 1px;
}
.field input::placeholder,
.field textarea::placeholder { color: color-mix(in srgb, var(--ink-soft) 62%, var(--cream)); }
#form-services { color: var(--ink-soft); }
.row-2 { display: grid; gap: 0.8rem; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.form-error {
  display: none;
  color: #7a2e2e;
  background: #f3e4e0;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.form-error.show { display: block; }
.success { display: none; text-align: center; padding: 2.5rem 1rem; }
.success.open { display: block; }
.success h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }

.faq details { border-bottom: 1px solid var(--line); padding: 1.05rem 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Grift", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.4rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.35rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--ink-soft); margin: 0.7rem 0 0; max-width: 62ch; }
.faq-foot {
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  max-width: 54ch;
}

.closer {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-media) + 6px);
  min-height: calc(100dvh - 11rem);
  display: grid;
  place-items: end end;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}
.closer video,
.closer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}
.closer-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.12) 0%, rgb(0 0 0 / 0.42) 52%, rgb(0 0 0 / 0.55) 100%);
}
.closer-left { place-items: end start; }
.closer-left .closer-copy { text-align: left; }
.closer-left .closer-veil {
  background: linear-gradient(90deg, rgb(0 0 0 / 0.62) 0%, rgb(0 0 0 / 0.32) 46%, rgb(0 0 0 / 0.12) 100%);
}
.closer img[data-asset="studio-director-chair"] { object-position: 12% 50%; }
.closer img[data-asset="studio-camera-stand"] { object-position: 62% 42%; }
.closer img[data-asset="studio-equipment-floor"] { object-position: 40% 50%; }
.closer-copy { position: relative; z-index: 1; color: var(--paper); max-width: 22ch; text-align: right; }
.closer-copy h2 {
  color: var(--paper);
  background: none;
  -webkit-text-fill-color: var(--paper);
  margin-bottom: 0.55rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 12ch;
}
.closer-copy h2::after { display: none; }
.closer-copy p {
  margin: 0 0 1.2rem;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  max-width: 28ch;
  font-size: 1.02rem;
}
@media (max-width: 859px) {
  .closer { place-items: end start; }
  .closer-veil {
    background: linear-gradient(to top, rgb(0 0 0 / 0.78) 8%, rgb(0 0 0 / 0.28) 48%, rgb(0 0 0 / 0.08) 100%);
  }
  .closer img[data-asset="studio-director-chair"] { object-position: 18% 42%; }
  .closer-copy { text-align: left; max-width: 28ch; }
}

.foot {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
}
.foot-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 620px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 2.4rem; } }
.foot-social {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
}
.foot-social a { text-decoration: underline; text-underline-offset: 0.22em; }
.foot h3 { font-size: 0.95rem; letter-spacing: 0; margin-bottom: 0.7rem; }
.foot p { color: var(--ink-soft); max-width: 42ch; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.foot a { text-decoration: none; color: var(--ink-soft); }
.foot a:hover { color: var(--ink); }
.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.preview-flag { font-size: 0.78rem; color: var(--ink-soft); }

.slot-note {
  display: none;
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
}
body.show-slots .slot-note { display: block; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}
.overlay.open a {
  opacity: 0;
  animation: rise 0.7s var(--ease) forwards;
}
.overlay.open a:nth-child(1) { animation-delay: 0.05s; }
.overlay.open a:nth-child(2) { animation-delay: 0.1s; }
.overlay.open a:nth-child(3) { animation-delay: 0.15s; }
.overlay.open a:nth-child(4) { animation-delay: 0.2s; }
.overlay.open a:nth-child(5) { animation-delay: 0.25s; }
.overlay.open a:nth-child(6) { animation-delay: 0.3s; }
.overlay.open a:nth-child(7) { animation-delay: 0.35s; }
.overlay.open a:nth-child(8) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: no-preference) {
  .hero-cta {
    opacity: 0;
    transform: translateY(12px);
    animation: rise 0.8s var(--ease) 0.22s both;
  }
  .hero-media img,
  .hero-media video { animation: ken 32s var(--ease) infinite alternate; }
  .play-orb { animation: pulse-orb 2.8s var(--ease) infinite; }
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@keyframes pulse-orb {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .overlay.open a, .hero-cta {
    opacity: 1; transform: none; animation: none;
  }
  .work-card .thumb, .lane img, .btn, .btn .mark, .hero-media img, .hero-media video, .hero-chip video, .play-orb, .svc {
    transition: none; animation: none;
  }
  .film-slide.is-arriving .film-hero,
  .film-slide.is-arriving .film-stills img,
  .film-slide.is-arriving .film-caption,
  .film-fx.is-live::after,
  .film-fx.is-live .film-fx-card { animation: none; }
}

dialog.film-lightbox {
  /* Native modal box. Do not set display:none: that pulls the dialog out of
     the top layer and Chrome scrolls the page to the hero to focus it. */
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}
dialog.film-lightbox::backdrop {
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  backdrop-filter: blur(20px);
}
.film-lightbox-frame {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(1080px, calc(100% - (var(--pad) * 2)));
  height: fit-content;
  max-height: calc(100% - (var(--pad) * 2));
  background: var(--paper);
  border-radius: calc(var(--radius-media) + 8px);
  padding: 0.55rem 0.55rem 0.7rem;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--paper);
  box-sizing: border-box;
}
.film-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0.2rem 0.55rem 0.85rem;
}
#film-dialog-title {
  margin: 0;
  font-family: "Grift", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
dialog.film-lightbox video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1c1814;
  border-radius: var(--radius-media);
}
dialog.film-lightbox .close {
  position: static;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}
dialog.film-lightbox .close:hover { background: var(--cream-deep); }
dialog.film-lightbox .close:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) {
  dialog.film-lightbox[open] .film-lightbox-frame {
    animation: film-in 0.5s var(--ease) both;
  }
}
@keyframes film-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
