:root {
  --paper: #f3f2f0;
  --paper-deep: #e8e5e1;
  --ink: #111217;
  --muted: #6f7278;
  --line: rgba(17, 18, 23, 0.14);
  --wine: #571417;
  --wine-deep: #2b080b;
  --soft-white: #f7f5f2;
  --section-pad: clamp(88px, 10vw, 156px);
  --page-x: clamp(18px, 4vw, 64px);
  --content: 1376px;
  --radius: 16px;
  --shadow-paper: 0 24px 70px rgba(74, 60, 55, 0.12);
  --shadow-wine: 0 30px 80px rgba(43, 8, 11, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --stack-scale: 0.94;
  --font-display: "Nunito", "Mulish", sans-serif;
  --font-text: "Mulish", sans-serif;
  --text-lead: clamp(19px, 1.15vw, 21px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-text);
  font-size: clamp(17px, 0.25vw + 16px, 18px);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

strong,
b {
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

:focus-visible {
  outline: 2px solid #e65a61;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--soft-white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.desktop-nav {
  position: fixed;
  z-index: 100;
  top: 30px;
  left: max(32px, calc(50% - 520px));
  width: min(1040px, calc(100% - 64px));
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(38, 18, 20, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 42px rgba(43, 8, 11, 0.22);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  transform: none;
  transition: transform 280ms var(--ease), opacity 180ms ease, visibility 180ms ease, background-color 220ms ease;
}

.desktop-nav > .button--nav { margin-left:0; }

.nav-compact-menu { display: none; }

.nav-menu-toggle {
  order: 5;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: inherit;
  background: rgba(17,18,23,.38);
  cursor: pointer;
}

.nav-socials--header { order:4; gap: 6px; }
.nav-socials--header a { width: 38px; height: 38px; display:grid; place-items:center; border-radius:50%; color:inherit; background:rgba(255,255,255,.1); }
.nav-socials--header svg { width:19px; height:19px; }

.desktop-nav.is-compact {
  right: 24px;
  left: auto;
  width: 58px;
  height: 58px;
  padding: 6px;
  justify-content: center;
  transform: none;
}

.desktop-nav.is-compact .nav-menu-toggle { order: initial; }

.desktop-nav.is-compact > .brand,
.desktop-nav.is-compact > .nav-links,
.desktop-nav.is-compact > .button--nav,
.desktop-nav.is-compact > .nav-socials--header { display: none; }

.desktop-menu-control { display:contents; }
.desktop-menu-control .nav-menu-toggle { color:var(--soft-white); background:rgba(17,18,23,.72); backdrop-filter:blur(18px); }

.nav-menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform 220ms var(--ease); }
.desktop-menu-control.is-menu-open .nav-menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.desktop-menu-control.is-menu-open .nav-menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.desktop-menu-control .nav-compact-menu {
  position: absolute;
  top: 70px;
  right: 0;
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  display: grid;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(247,245,242,.94);
  box-shadow: 0 20px 50px rgba(30,18,18,.18);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms var(--ease);
}

.desktop-menu-control.is-menu-open .nav-compact-menu { opacity: 1; visibility: visible; transform: none; }
.nav-compact-menu a,
.nav-compact-menu button { padding: 13px 14px; border: 0; border-radius: 14px; color: inherit; background: transparent; text-align: left; font: inherit; cursor: pointer; }
.nav-compact-menu a:hover { background: rgba(107,22,27,.08); }
.nav-compact-menu button { margin-top: 6px; color: var(--soft-white); background: var(--ink); text-align: center; font-weight: 500; }
.nav-compact-menu__contacts { margin-top: 8px; padding: 14px 0 8px; border-top: 1px solid var(--line); }
.nav-compact-menu__contacts .nav-socials { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.nav-socials { display: flex; gap: 8px; }
.nav-compact-menu .nav-socials a { width: auto; height: 46px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 12px; border-radius: 14px; color: white; background: var(--wine); }
.nav-compact-menu .nav-socials span { font-size: 14px; line-height: 1; }
.nav-socials svg { width: 22px; height: 22px; fill: currentColor; }

.desktop-nav.is-light {
  color: var(--ink);
  background: rgba(247, 245, 242, 0.82);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 #fff, 0 18px 42px rgba(74, 60, 55, 0.14);
}

.no-backdrop-filter .desktop-nav {
  background: #f7f5f2;
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(118px, 10vw, 156px);
  aspect-ratio: 240 / 44;
  flex: none;
  background-color: currentColor;
  -webkit-mask: url("assets/brand/logo-horizontal-burgundy.svg") center / contain no-repeat;
  mask: url("assets/brand/logo-horizontal-burgundy.svg") center / contain no-repeat;
}

.desktop-nav .brand-logo,
.mobile-brand-row .brand-logo,
.hero-wordmark .brand-logo {
  color: #fff;
}

.desktop-nav.is-light .brand-logo,
.mobile-brand-row.is-light .brand-logo,
.no-backdrop-filter .desktop-nav .brand-logo,
footer .brand-logo {
  color: #5B1519;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  color: inherit;
  font-size: 13px;
  white-space: nowrap;
  transition: transform 220ms var(--ease);
}

.nav-links a[aria-current="true"] {
  color: var(--ink);
  background: var(--soft-white);
}

.desktop-nav.is-light .nav-links a[aria-current="true"] {
  color: var(--soft-white);
  background: var(--wine);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 240ms var(--ease);
}

.button--nav {
  justify-self: end;
  min-height: 46px;
  padding-inline: 22px;
  color: var(--ink);
  background: var(--soft-white);
  box-shadow: 0 10px 26px rgba(20, 8, 9, 0.16);
}

.desktop-nav.is-light .button--nav {
  color: var(--soft-white);
  background: var(--ink);
}

.button--light {
  color: var(--ink);
  background: var(--soft-white);
  box-shadow: 0 12px 30px rgba(25, 7, 9, 0.18);
}

.button--ghost {
  color: var(--soft-white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button--dark {
  color: var(--soft-white);
  background: var(--ink);
}

.mobile-brand-row,
.mobile-dock {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 24px);
  margin: 12px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--soft-white);
  background: var(--wine-deep);
  box-shadow: var(--shadow-wine);
  isolation: isolate;
}

.cursor-mist {
  position: fixed;
  z-index: 48;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.96;
  filter: blur(4px) saturate(108%);
  mix-blend-mode: normal;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(30, 4, 7, 0.82) 0%, rgba(43, 8, 11, 0.63) 36%, rgba(43, 8, 11, 0.08) 70%),
    linear-gradient(180deg, rgba(15, 3, 4, 0.18), rgba(20, 4, 6, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(930px, calc(100% - 48px));
  min-height: calc(100dvh - 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 24px 68px clamp(32px, 7vw, 118px);
}

[data-hero-enter] {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-enter 900ms var(--ease) forwards;
}

[data-hero-enter]:nth-child(2) {
  animation-delay: 100ms;
}

[data-hero-enter]:nth-child(3) {
  animation-delay: 190ms;
}

[data-hero-enter]:nth-child(4) {
  animation-delay: 280ms;
}

[data-hero-enter]:nth-child(5) {
  animation-delay: 370ms;
}

.hero-wordmark {
  margin: 0 0 34px;
}

.hero-wordmark .brand-logo {
  width: clamp(148px, 18vw, 244px);
}

.hero-title {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-descriptor {
  max-width: 620px;
  margin: 0 0 16px;
  color: rgba(247, 245, 242, 0.78);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.hero-copy {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(247, 245, 242, 0.76);
  font-size: var(--text-lead);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 32px;
  margin: 0;
  color: rgba(247, 245, 242, 0.56);
  font-size: 10px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.035) translate3d(-0.35%, -0.2%, 0); }
}

.section {
  width: min(var(--content), 100%);
  margin-inline: auto;
  padding: var(--section-pad) var(--page-x);
}

.works[hidden],
.production-scroll[hidden] {
  display: none !important;
}

.section-heading {
  margin-bottom: clamp(44px, 7vw, 92px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 48px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-family: var(--font-display);
}

.section-heading > p,
.section-heading--split > p,
.section-heading--split > div + p {
  max-width: 410px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.5;
}

.section-index {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(74, 60, 55, 0.08);
  transition: transform 260ms var(--ease);
}

.work-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper-deep);
}

.work-media img,
.work-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease);
}

.work-media--plan img {
  object-fit: contain;
}

.work-caption {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  font-size: 18px;
}

.work-caption span {
  color: var(--muted);
  font-size: 12px;
}

.work-caption strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.work-card--fifth {
  grid-column: 1;
}

.work-card--wide {
  grid-column: 2 / span 2;
}

.work-card--wide .work-media {
  aspect-ratio: 2 / 1;
}

.video-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--soft-white);
  background: rgba(17, 18, 23, 0.38);
  font-size: 9px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}

.work-card--text {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--soft-white);
  background: var(--wine);
}

.work-metric {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.work-metric span {
  color: rgba(247, 245, 242, 0.4);
  font-weight: 400;
}

.work-card--text > p:not(.work-metric) {
  margin: 24px 0;
  color: rgba(247, 245, 242, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

.work-card--text a,
.persona-copy a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 500;
}

.audience {
  padding-top: calc(var(--section-pad) * 0.8);
}

.persona-shell {
  overflow: hidden;
  border-radius: 20px;
  background: #e9e6e2;
  box-shadow: var(--shadow-paper);
}

.persona-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 6px;
  border-bottom: 1px solid var(--line);
}

.persona-tabs button {
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: transform 220ms var(--ease);
}

.persona-tabs button[aria-selected="true"] {
  color: var(--soft-white);
  background: var(--wine);
  box-shadow: 0 12px 30px rgba(87, 20, 23, 0.18);
}

.persona-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
  min-height: 620px;
}

.persona-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.persona-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 440ms var(--ease), transform 520ms var(--ease);
}

.persona-media img.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.persona-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 5vw, 72px);
  color: var(--soft-white);
  background: var(--wine);
}

.persona-number {
  margin: 0 auto auto 0;
  color: rgba(247, 245, 242, 0.46);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.persona-copy h3 {
  max-width: 440px;
  margin: 0 0 24px;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.persona-copy > p:not(.persona-number) {
  max-width: 420px;
  margin: 0 0 38px;
  color: rgba(247, 245, 242, 0.68);
}

.production-scroll {
  position: relative;
  height: 460vh;
  color: var(--soft-white);
  background: var(--wine-deep);
}

.production-stage {
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  padding: clamp(36px, 5vw, 76px) var(--page-x);
  overflow: hidden;
}

.production-media {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #1d1112;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.production-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 190ms ease-out;
  will-change: opacity;
}

.production-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.production-media figcaption {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(247, 245, 242, 0.7);
  background: rgba(17, 18, 23, 0.48);
  font-size: 10px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}

.production-copy .section-index {
  color: rgba(247, 245, 242, 0.48);
}

.production-copy h2 {
  margin: 0 0 clamp(38px, 6vh, 72px);
  font-size: clamp(46px, 5.7vw, 78px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.production-copy h2,
.business-value__title h2 {
  font-family: var(--font-display);
}

.production-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.production-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.production-list button {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: rgba(247, 245, 242, 0.44);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.production-list button[aria-expanded="true"] {
  color: var(--soft-white);
}

.production-list button span {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.production-list button strong {
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 700;
}

.production-list button i {
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  transition: transform 320ms var(--ease);
}

.production-list button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.production-list {
  position: relative;
  padding-bottom: 88px;
}

.production-list [data-production-panel] {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity 140ms ease-out;
}

.production-list [data-production-panel][data-active="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.production-panel-inner {
  min-height: 64px;
}

.production-list [data-production-panel] p {
  max-width: 470px;
  margin: 0 0 24px 44px;
  overflow: hidden;
  color: rgba(247, 245, 242, 0.62);
  font-size: 14px;
}

.production-inline-media {
  display: none;
}

.production-observers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.production-observers span {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}

.production-observers span:nth-child(1) { top: 100vh; }
.production-observers span:nth-child(2) { top: 200vh; }
.production-observers span:nth-child(3) { top: 300vh; }
.production-observers span:nth-child(4) { top: 400vh; }

.use-cases {
  padding-bottom: calc(var(--section-pad) * 1.2);
}

.project-stack {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-inline: auto;
}

.project-card {
  position: relative;
  top: auto;
  height: clamp(250px, 29svh, 310px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 23, 0.1);
  border-radius: 20px;
  background: #e7e3df;
  box-shadow: var(--shadow-paper);
  transform: none;
  opacity: 1;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.project-card:last-child {
  margin-bottom: 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.3vw, 34px);
}

.project-card > div span {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.project-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  padding-top: calc(var(--section-pad) * 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 14px;
}

.gallery-case {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.gallery-case--primary {
  grid-row: 1 / 3;
}

.gallery-case video,
.gallery-mount {
  width: 100%;
  height: calc(100% - 72px);
  min-height: 0;
  display: block;
  object-fit: cover;
  background: var(--ink);
}

.gallery-mount {
  position: relative;
  overflow: hidden;
}

.gallery-mount img,
.gallery-mount video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-mount > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--soft-white);
  background: rgba(17, 18, 23, 0.64);
  font-size: 9px;
  letter-spacing: 0.09em;
  backdrop-filter: blur(10px);
}

.gallery-caption {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
}

.gallery-caption span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.gallery-caption strong {
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.video-tour {
  max-width: 920px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-paper);
}

.video-tour__canvas {
  position: relative;
  height: clamp(240px, 32svh, 340px);
  overflow: hidden;
  background: var(--paper-deep);
}

.video-tour__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-tour__preview img,
.video-tour__preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 240ms var(--ease), opacity 180ms var(--ease);
}

.video-tour__topline {
  position: absolute;
  z-index: 2;
  inset: 18px 18px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.video-tour__topline span,
.video-tour__play {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--soft-white);
  background: rgba(17, 18, 23, 0.48);
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
}

.video-tour__play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  min-height: 48px;
  padding-inline: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-tour__play i {
  font-size: 9px;
  font-style: normal;
}

.video-tour__footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.video-tour__copy {
  display: grid;
  gap: 6px;
}

.video-tour__copy span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.video-tour__copy strong {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.video-tour__controls {
  display: flex;
  gap: 8px;
}

.video-tour__controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft-white);
  background: var(--ink);
  cursor: pointer;
}

.video-tour__controls button:disabled {
  color: var(--muted);
  background: transparent;
  cursor: default;
  opacity: 0.55;
}

.video-tour__rail {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.video-tour__rail > button {
  min-width: 210px;
  display: grid;
  grid-template-columns: 76px auto;
  grid-template-rows: 1fr 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}

.video-tour__rail > button[aria-selected="true"] {
  border-color: var(--wine);
}

.video-tour__rail img {
  width: 76px;
  height: 52px;
  grid-row: 1 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.video-tour__rail span {
  align-self: end;
  color: var(--muted);
  font-size: 9px;
}

.video-tour__rail strong {
  align-self: start;
  font-size: 12px;
}

.video-tour__soon {
  margin-left: auto;
  padding-right: 12px;
  color: var(--muted);
  font-size: 11px;
}

.video-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--soft-white);
  background: var(--ink);
  box-shadow: 0 40px 100px rgba(17, 18, 23, 0.42);
  opacity: 1;
  transform: scale(1);
  transition: opacity 220ms cubic-bezier(0.23, 1, 0.32, 1), transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.video-dialog[open] {
  display: grid;
}

.video-dialog::backdrop {
  background: rgba(17, 18, 23, 0.78);
  backdrop-filter: blur(12px);
}

.video-dialog__shell {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.video-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 2px 0 8px;
}

.video-dialog__head span {
  color: rgba(247, 245, 242, 0.5);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.video-dialog__head h2 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.video-dialog__head button {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(247, 245, 242, 0.22);
  border-radius: 50%;
  color: var(--soft-white);
  background: rgba(247, 245, 242, 0.08);
  font: inherit;
  font-size: 24px;
  cursor: pointer;
  transition: transform 140ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease;
}

.video-dialog video {
  width: 100%;
  max-height: calc(100dvh - 124px);
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #000;
  object-fit: contain;
}

@starting-style {
  .video-dialog[open] {
    opacity: 0;
    transform: scale(0.97);
  }
}

.business-value__outcomes span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.business-value {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(390px, 0.6fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.business-value__title {
  position: sticky;
  top: 130px;
}

.business-value__title h2 {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 94px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.business-value__title h2 span {
  color: var(--wine);
}

.conversion-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: clamp(34px, 5vw, 64px);
}

.conversion-path article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.conversion-path article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--soft-white);
  background: var(--wine);
  font-size: 12px;
  transform: translateY(-50%);
}

.conversion-path img,
.conversion-channels {
  width: 100%;
  height: 128px;
  object-fit: cover;
  background: var(--paper-deep);
}

.conversion-path article:first-child img {
  object-fit: contain;
}

.conversion-path article > div:last-child {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
}

.conversion-path span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.conversion-path strong {
  font-size: 12px;
  line-height: 1.2;
}

.conversion-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--wine);
}

.conversion-channels i {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.business-value__outcomes {
  border-top: 1px solid var(--line);
}

.business-value__outcomes article {
  min-height: 230px;
  display: grid;
  align-content: end;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.business-value__outcomes h3 {
  margin: 52px 0 12px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.business-value__outcomes p {
  margin: 0;
  color: var(--muted);
}

.partners {
  padding-top: 0;
}

.partners-panel {
  position: relative;
  min-height: min(780px, 82vh);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(32px, 6vw, 84px);
  overflow: hidden;
  border-radius: 20px;
  color: var(--soft-white);
  background: var(--wine);
  box-shadow: var(--shadow-wine);
}

.partners-panel::after {
  content: "10";
  position: absolute;
  top: -0.2em;
  right: -0.04em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(260px, 42vw, 650px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.partners-number,
.partners-panel h2,
.partners-panel > p:not(.section-index) {
  position: relative;
  z-index: 1;
}

.partners-number {
  margin: 0;
  font-size: clamp(116px, 20vw, 290px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.04em;
}

.partners-panel h2 {
  max-width: 880px;
  margin: 36px 0 18px;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.partners-panel > p:not(.section-index):not(.partners-number) {
  max-width: 600px;
  color: rgba(247, 245, 242, 0.66);
}

.partners-panel .button {
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.pricing {
  padding-top: calc(var(--section-pad) * 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(240px, auto));
  gap: 14px;
}

.price-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.price-card:nth-child(1) { grid-column: 3; grid-row: 1; }
.price-card--feature { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.price-card:nth-child(3) { grid-column: 4; grid-row: 1; }
.price-card:nth-child(4) { grid-column: 3 / span 2; grid-row: 2; }

.price-card--feature {
  color: var(--soft-white);
  background: var(--wine);
  box-shadow: var(--shadow-wine);
}

.price-range,
.price-unit {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.price-card--feature .price-range,
.price-card--feature .price-unit,
.price-card--feature > p:not(.price-value) {
  color: rgba(247, 245, 242, 0.62);
}

.price-value {
  margin: 26px 0 2px;
  font-size: clamp(38px, 4.7vw, 70px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.price-card--feature .price-value {
  font-size: clamp(58px, 7vw, 100px);
}

.price-card:not(.price-card--feature) .price-value {
  font-size: clamp(36px, 3.7vw, 54px);
  white-space: nowrap;
}

.price-card > p:not(.price-range, .price-value, .price-unit) {
  max-width: 450px;
  margin: 34px 0;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-badge {
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid rgba(247, 245, 242, 0.3);
  border-radius: 999px;
  color: rgba(247, 245, 242, 0.7);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.pricing-comparison .section-heading {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.pricing-comparison .pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

.pricing-comparison .price-card,
.pricing-comparison .price-card:nth-child(1),
.pricing-comparison .price-card--feature,
.pricing-comparison .price-card:nth-child(3),
.pricing-comparison .price-card:nth-child(4) {
  min-height: 330px;
  grid-column: auto;
  grid-row: auto;
}

.pricing-comparison .price-card--feature .price-value {
  font-size: clamp(42px, 4vw, 62px);
}

.all-packages {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.all-packages > p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.7vw, 30px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.all-packages ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-packages li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.35;
}

.all-packages li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wine);
  font-weight: 500;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.marquee-track {
  width: max-content;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-inline: 30px;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  animation: marquee-slide 28s linear infinite;
}

.marquee-track i {
  color: var(--wine);
  font-size: 18px;
  font-style: normal;
}

@keyframes marquee-slide {
  to { transform: translateX(-50%); }
}

@media (min-width: 1180px) and (min-height: 760px) {
  [data-stage="major"] {
    min-height: 90svh;
    display: grid;
    align-content: center;
    padding-top: clamp(54px, 6svh, 72px);
    padding-bottom: clamp(54px, 6svh, 72px);
  }

  [data-stage="major"] .section-heading {
    margin-bottom: clamp(28px, 4svh, 46px);
  }

  [data-stage="major"] .section-heading h2,
  [data-stage="major"] .contact h2 {
    font-size: clamp(48px, 4.5vw, 68px);
  }

  .works .work-media {
    height: clamp(150px, 18svh, 205px);
    aspect-ratio: auto;
  }

  .works .work-card--wide .work-media {
    height: clamp(150px, 18svh, 205px);
    aspect-ratio: auto;
  }

  .gallery-grid {
    height: clamp(430px, 52svh, 560px);
  }

  .video-tour__canvas {
    min-height: 0;
    height: clamp(360px, 44svh, 480px);
  }

  .persona-stage,
  .persona-media {
    min-height: clamp(420px, 50svh, 540px);
  }

  .business-value {
    grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr);
    align-items: center;
  }

  .business-value__title {
    position: relative;
    top: auto;
  }

  .business-value__title h2 {
    font-size: clamp(50px, 5.2vw, 76px);
  }

  .business-value__outcomes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .business-value__outcomes article {
    min-height: clamp(205px, 27svh, 260px);
    padding: 24px;
    border-right: 1px solid var(--line);
  }

  .business-value__outcomes h3 {
    margin-top: 30px;
  }

  .partners-panel {
    min-height: clamp(520px, 68svh, 680px);
  }

  .pricing-grid {
    grid-template-rows: repeat(2, minmax(205px, 24svh));
  }

  .contact {
    margin: 10px;
    padding-top: clamp(50px, 6svh, 72px);
    padding-bottom: 32px;
  }

  .contact-links {
    margin-top: clamp(28px, 4svh, 42px);
  }

  .contact-links a {
    min-height: clamp(68px, 8svh, 82px);
  }

  .contact-proof {
    margin-top: clamp(28px, 4svh, 42px);
  }

  .contact-proof div {
    min-height: clamp(92px, 11svh, 112px);
  }
}

@media (max-width: 1179px), (max-height: 759px) {
  [data-stage="major"] {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .video-tour__canvas {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .video-tour__footer {
    align-items: flex-end;
  }

  .video-tour__soon {
    display: none;
  }

  .video-tour__rail {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .video-tour__rail > button {
    scroll-snap-align: start;
  }

  .pricing-comparison .pricing-grid {
    grid-template-columns: 1fr;
  }

  .all-packages {
    grid-template-columns: 1fr;
  }

  .all-packages ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact {
  margin: 12px;
  padding: clamp(72px, 9vw, 140px) var(--page-x) 46px;
  border-radius: 20px;
  color: var(--soft-white);
  background: var(--wine-deep);
  box-shadow: var(--shadow-wine);
}

.contact-intro,
.contact-links,
.contact-proof {
  width: min(1250px, 100%);
  margin-inline: auto;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 40px;
}

.contact-intro .section-index {
  grid-column: 1 / -1;
  color: rgba(247, 245, 242, 0.44);
}

.contact-intro > p:not(.section-index) {
  max-width: 390px;
  margin: 0 0 10px;
  color: rgba(247, 245, 242, 0.62);
  font-size: var(--text-lead);
  line-height: 1.5;
}

.contact-links {
  margin-top: clamp(64px, 8vw, 110px);
  border-top: 1px solid rgba(247, 245, 242, 0.18);
}

.contact-links a {
  min-height: 106px;
  display: grid;
  grid-template-columns: 1fr auto 42px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(247, 245, 242, 0.18);
  transition: transform 240ms var(--ease);
}

.contact-links a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.46;
}

.contact-links a span {
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-links a small {
  color: rgba(247, 245, 242, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.contact-links a i {
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 84px;
  background: rgba(247, 245, 242, 0.16);
}

.contact-proof div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--wine-deep);
}

.contact-proof strong {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-proof span {
  color: rgba(247, 245, 242, 0.58);
  font-size: 13px;
}

footer {
  width: min(var(--content), 100%);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr) minmax(280px, 0.7fr) auto;
  align-items: end;
  gap: 40px;
  margin-inline: auto;
  padding: 44px var(--page-x) 52px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-legal {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}

.footer-legal a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(17, 18, 23, 0.2);
  text-underline-offset: 3px;
}

.lead-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(880px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(247, 245, 242, 0.96);
  box-shadow: 0 36px 120px rgba(20, 8, 9, 0.34);
  backdrop-filter: blur(28px) saturate(120%);
}

.lead-dialog::backdrop {
  background: rgba(17, 18, 23, 0.64);
  backdrop-filter: blur(8px);
}

.lead-form {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
}

.lead-form__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.lead-form__head h2 {
  max-width: 600px;
  margin: 8px 0 0;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead-form__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-form__intro,
.lead-form__status,
.lead-form__error {
  margin: 0;
}

.lead-form__intro {
  max-width: 610px;
  color: var(--muted);
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #494b50;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lead-form__wide {
  grid-column: 1 / -1;
}

.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(17, 18, 23, 0.16);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
}

.lead-form [aria-invalid="true"] {
  border-color: #a21f27;
  box-shadow: 0 0 0 3px rgba(162, 31, 39, 0.12);
}

.lead-form__consents {
  display: grid;
  gap: 12px;
}

.lead-form__consents label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
}

.lead-form__consents input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--wine);
}

.lead-form__consents a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form__error {
  color: #8e171e;
  font-size: 12px;
  font-weight: 500;
}

.lead-form__status {
  color: var(--wine);
  font-size: 13px;
  font-weight: 500;
}

.lead-form__submit {
  justify-self: start;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    color: var(--ink);
    background: var(--soft-white);
    transform: translateY(-1px);
  }

  .desktop-nav.is-light .nav-links a:hover {
    color: var(--soft-white);
    background: var(--wine);
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .video-tour__preview:hover img {
    transform: scale(1.012);
    opacity: 0.94;
  }

  .video-dialog__head button:hover {
    background: rgba(247, 245, 242, 0.16);
  }

  .work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(74, 60, 55, 0.15);
  }

  .work-card:hover .work-media img,
  .work-card:hover .work-media video {
    transform: scale(1.025);
  }

  .persona-tabs button:hover {
    color: var(--ink);
  }

  .contact-links a:not([aria-disabled="true"]):hover {
    transform: translateX(10px);
    background: rgba(247, 245, 242, 0.06);
  }

  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-nav.is-compact {
    display: none;
  }

  .mobile-brand-row {
    position: fixed;
    z-index: 100;
    top: 16px;
    right: 16px;
    left: 16px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 8px 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--soft-white);
    background: rgba(43, 8, 11, 0.52);
    box-shadow: 0 14px 38px rgba(43, 8, 11, 0.18);
    backdrop-filter: blur(18px) saturate(130%);
    pointer-events: auto;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
  }

  .mobile-brand-row.is-light {
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    background: rgba(247, 245, 242, 0.9);
  }

  .mobile-brand-row a,
  .mobile-brand-row button {
    pointer-events: auto;
  }

  .mobile-nav-actions { display:flex; align-items:center; gap:5px; }
  .mobile-nav-actions > a,
  .mobile-menu-toggle { width:44px; height:44px; min-width:44px; flex:0 0 44px; display:grid; place-items:center; padding:0; border:1px solid rgba(255,255,255,.22); border-radius:50%; color:inherit; background:rgba(17,18,23,.28); }
  .mobile-nav-actions svg { width:18px; height:18px; fill:currentColor; }
  .mobile-menu-toggle { place-content:center; gap:5px; cursor:pointer; }
  .mobile-menu-toggle span { width:16px; height:2px; border-radius:2px; background:currentColor; transition:transform 200ms var(--ease); }
  .mobile-brand-row.is-menu-open .mobile-menu-toggle span:first-child { transform:translateY(3.5px) rotate(45deg); }
  .mobile-brand-row.is-menu-open .mobile-menu-toggle span:last-child { transform:translateY(-3.5px) rotate(-45deg); }
  .mobile-navigation { position:absolute; top:calc(100% + 10px); right:0; left:0; display:grid; padding:12px; border:1px solid rgba(255,255,255,.9); border-radius:24px; color:var(--ink); background:rgba(247,245,242,.96); box-shadow:0 20px 50px rgba(30,18,18,.18); opacity:0; visibility:hidden; transform:translateY(-8px); transition:opacity 180ms ease,visibility 180ms ease,transform 220ms var(--ease); }
  .mobile-brand-row.is-menu-open .mobile-navigation { opacity:1; visibility:visible; transform:none; }
  .mobile-navigation a,.mobile-navigation button { min-height:46px; padding:12px 14px; border:0; border-radius:14px; color:inherit; background:transparent; text-align:left; font:inherit; }
  .mobile-navigation button { margin-top:6px; color:white; background:var(--ink); text-align:center; }
  .mobile-brand-row.is-light .mobile-nav-actions > a,
  .mobile-brand-row.is-light .mobile-menu-toggle { border-color:var(--line); background:rgba(17,18,23,.06); }
}

@media (max-width: 1100px) {
  .desktop-nav {
    width: calc(100% - 44px);
  }

  .production-stage {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 36px;
  }

  .project-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }
}

@media (max-width: 860px) {
  :root {
    --page-x: 16px;
    --section-pad: 86px;
  }

  html {
    scroll-padding-top: 76px;
  }

  body { padding-bottom: 0; }

  .desktop-nav {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    z-index: 110;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    min-height: 64px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(247, 245, 242, 0.88);
    box-shadow: 0 20px 50px rgba(74, 60, 55, 0.2);
    backdrop-filter: blur(20px) saturate(130%);
  }

  .mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 13px;
    font-size: 9px;
  }

  .mobile-dock a[aria-current="true"] {
    color: var(--soft-white);
    background: var(--wine);
  }

  .mobile-dock span {
    font-size: 15px;
    line-height: 1;
  }

  .hero {
    min-height: calc(100dvh - 20px);
    margin: 10px;
    border-radius: 16px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(30, 4, 7, 0.9), rgba(43, 8, 11, 0.42)), linear-gradient(0deg, rgba(20, 4, 6, 0.38), transparent 60%);
  }

  .hero-content {
    width: 100%;
    min-height: calc(100dvh - 20px);
    justify-content: flex-end;
    padding: 110px 24px 70px;
  }

  .hero-wordmark {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero-title {
    max-width: 340px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.97;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-note {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-card {
    width: 100%;
    grid-column: 1 !important;
  }

  .work-card--wide {
    order: -10;
  }

  .work-card--text {
    min-height: 340px;
  }

  .persona-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .persona-tabs::-webkit-scrollbar {
    display: none;
  }

  .persona-tabs button {
    min-width: 150px;
    scroll-snap-align: start;
  }

  .persona-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .persona-media {
    min-height: 58vw;
  }

  .persona-copy {
    min-height: 420px;
    padding: 34px 26px;
  }

  .production-scroll {
    height: auto;
    padding: 80px 16px;
  }

  .production-stage {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding: 0;
    overflow: visible;
  }

  .production-copy {
    width: 100%;
  }

  .production-media {
    display: none;
  }

  .production-copy h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .production-observers {
    display: none;
  }

  .production-list [data-production-panel] p {
    margin-left: 0;
  }

  .production-list [data-production-panel],
  .production-list [data-production-panel][hidden] {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js .production-list [data-production-panel][hidden] {
    display: none;
  }

  .production-list {
    padding-bottom: 0;
  }

  .production-inline-media {
    width: 100%;
    height: auto;
    display: block;
    margin: 4px 0 20px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
  }

  .project-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .project-card img {
    aspect-ratio: 4 / 3;
  }

  .project-card > div {
    min-height: 300px;
    padding: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-case,
  .gallery-case--primary {
    grid-row: auto;
  }

  .gallery-case video,
  .gallery-mount {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .business-value {
    grid-template-columns: 1fr;
  }

  .business-value__title {
    position: relative;
    top: auto;
  }

  .partners-panel {
    min-height: 660px;
    padding: 32px 22px;
  }

  .partners-number {
    font-size: 34vw;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .price-card,
  .price-card:nth-child(1),
  .price-card--feature,
  .price-card:nth-child(3),
  .price-card:nth-child(4) {
    width: 100%;
    min-height: 330px;
    grid-column: 1;
    grid-row: auto;
  }

  .price-card--feature {
    min-height: 470px;
  }

  .contact {
    margin: 8px;
    padding: 72px 20px 36px;
    border-radius: 16px;
  }

  .contact-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-links a {
    min-height: 88px;
    grid-template-columns: 1fr auto;
  }

  .contact-links a small {
    display: none;
  }

  .contact-links a span {
    font-size: 34px;
  }

  .contact-proof {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .contact-proof div {
    min-height: 120px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 48px;
  }

  .lead-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 96px);
    margin-bottom: 82px;
    border-radius: 18px;
  }

  .lead-form {
    gap: 20px;
    padding: 22px 18px 28px;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-form__wide {
    grid-column: 1;
  }

  .lead-form__submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media,
  [data-hero-enter],
  .marquee-track {
    animation: none;
  }

  .cursor-mist {
    display: none;
  }

  [data-hero-enter] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .marquee-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 28px;
    transform: none;
  }

  .marquee-track [aria-hidden="true"] {
    display: none;
  }

  .production-scroll {
    height: auto;
    padding-block: 80px;
  }

  .production-stage,
  .project-card {
    position: relative;
    top: auto;
  }

  .project-card {
    height: auto;
  }

  .production-observers {
    display: none;
  }

  .production-media {
    display: none;
  }

  .production-list [data-production-panel],
  .production-list [data-production-panel][hidden] {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .production-list {
    padding-bottom: 0;
  }

  .production-inline-media {
    display: block;
    height: auto;
    margin: 4px 0 20px;
    border-radius: 12px;
  }

  .project-card {
    margin-bottom: 24px;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* Product-truth and interaction hardening */
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: clamp(300px, 38vh, 440px);
}

.video-tour {
  width: min(92vw, 1500px);
  max-width: none;
}

.video-tour__canvas {
  height: auto;
  aspect-ratio: 16 / 9;
}

.video-tour__preview video {
  object-fit: cover;
}

.persona-tabs button[aria-selected="true"] {
  color: #fff;
  background: #68181d;
}

.persona-copy .button,
.persona-copy a,
.persona-copy button {
  color: #fff;
  background: #101116;
  border-color: #101116;
}

.persona-copy button {
  min-height: 48px;
  align-self: flex-start;
  padding: 0 22px;
  border: 1px solid #101116;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.use-rail {
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.pricing-comparison {
  grid-template-columns: minmax(320px, .65fr) minmax(680px, 1.35fr);
  gap: clamp(64px, 6vw, 104px);
}

.pricing-comparison .all-packages {
  width: 100%;
  min-height: 116px;
  margin-top: 24px;
}

.lead-upload__dropzone {
  min-height: 136px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px dashed rgba(20, 18, 18, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .5);
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.lead-upload__dropzone span,
.lead-upload__dropzone small {
  color: var(--muted);
}

.lead-upload__dropzone.is-dragging {
  border-color: var(--wine);
  background: rgba(104, 24, 29, .08);
  transform: scale(.995);
}

.lead-upload__dropzone[aria-invalid="true"] {
  border-color: #a6252c;
}

.lead-upload__list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.lead-upload__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
}

.lead-upload__list span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.lead-upload__list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-upload__list small { color: var(--muted); }
.lead-upload__list button { border: 0; color: var(--wine); background: transparent; cursor: pointer; }
.lead-upload__error { margin: 8px 0 0; color: #a6252c; }

@media (min-width: 1200px) and (min-height: 820px) {
  .pricing-comparison__intro { position: static; }
}

@media (min-width: 1200px) and (max-height: 819px) {
  .video-tour { width: min(84vw, 1156px); }
  .pricing-comparison__intro { position: static; }
}

@media (max-width: 1199px) {
  .pricing-comparison { grid-template-columns: 1fr; }
  .pricing-comparison__intro { position: static; }
}

@media (max-width: 860px) {
  .service-grid { display: flex; }
  .service-card { min-height: 300px; }
  .video-tour { width: 100%; }
  .video-tour__footer { padding-inline: 16px; }
  .video-tour__rail { overflow-x: auto; }
  .all-packages { grid-template-columns: 1fr; }
  .all-packages ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1180px) and (min-height: 760px) {
  .contact {
    margin: 10px;
    padding-top: clamp(50px, 6svh, 72px);
    padding-bottom: 32px;
  }

  .contact-links {
    margin-top: clamp(28px, 4svh, 42px);
  }

  .contact-links a {
    min-height: clamp(68px, 8svh, 82px);
  }

  .contact-proof {
    margin-top: clamp(28px, 4svh, 42px);
  }

  .contact-proof div {
    min-height: clamp(92px, 11svh, 112px);
  }
}

.button:active,
.persona-tabs button:active,
.production-list button:active,
.lead-dialog__close:active,
.video-dialog__head button:active {
  transform: scale(0.97);
}

/* Loro reference rebuild */
.ambient-haze {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: .72;
  transition: opacity .6s ease;
}

.ambient-haze.is-paused { opacity: 0; }

.ambient-haze i {
  position: absolute;
  width: clamp(180px, 22vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 24, 32, .1), rgba(206, 137, 116, .055) 42%, transparent 74%);
  filter: blur(38px);
  translate: var(--haze-x, 0px) var(--haze-y, 0px);
  transform: translate3d(-28px, -18px, 0) scale(.96);
  animation: ambient-haze-drift 19s ease-in-out infinite alternate;
  transition: translate 1.8s cubic-bezier(.22, 1, .36, 1), opacity 1.2s ease;
}

.ambient-haze i:nth-child(1) { left: 8%; top: 13%; animation-duration: 17s; }
.ambient-haze i:nth-child(2) { left: 32%; top: 64%; animation-duration: 23s; animation-delay: -8s; }
.ambient-haze i:nth-child(3) { left: 62%; top: 18%; animation-duration: 21s; animation-delay: -13s; }
.ambient-haze i:nth-child(4) { left: 86%; top: 48%; animation-duration: 26s; animation-delay: -5s; }
.ambient-haze i:nth-child(5) { left: 18%; top: 88%; animation-duration: 22s; animation-delay: -16s; }
.ambient-haze i:nth-child(6) { left: 74%; top: 88%; animation-duration: 25s; animation-delay: -10s; }
.ambient-haze i:nth-child(7) { left: 48%; top: 42%; animation-duration: 20s; animation-delay: -3s; }

@keyframes ambient-haze-drift {
  0% { transform: translate3d(-28px, -18px, 0) scale(.96); }
  38% { transform: translate3d(36px, 22px, 0) scale(1.08); }
  72% { transform: translate3d(-12px, 54px, 0) scale(1.02); }
  100% { transform: translate3d(48px, -34px, 0) scale(1.12); }
}

main,
footer {
  position: relative;
  z-index: 2;
}

.desktop-nav,
.mobile-brand-row,
.mobile-dock {
  z-index: 100;
}

.service-overview,
.business-value,
.pricing-comparison { max-width: 1600px; margin-inline: auto; }

.service-overview { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(640px, 1.28fr); gap: clamp(30px, 5vw, 90px); align-items: center; }
.service-overview__intro h2 { max-width: 17ch; margin: 16px 0 22px; font-family: var(--font-display); font-size: clamp(50px, 4.6vw, 76px); font-weight: 700; line-height: .94; letter-spacing: -.035em; text-wrap: balance; }
.business-value__copy h2 { max-width: 15ch; margin: 16px 0 22px; font-family: var(--font-display); font-size: clamp(46px, 3.2vw, 62px); font-weight: 700; line-height: .96; letter-spacing: -.035em; text-wrap: balance; }
.pricing-comparison__intro h2 { margin: 16px 0 22px; font-family: var(--font-display); font-size: clamp(54px, 4.8vw, 88px); font-weight: 700; line-height: .92; letter-spacing: -.035em; }
.service-overview__intro > p:last-child,
.business-value__copy > p,
.pricing-comparison__intro > p:last-child { max-width: 34rem; color: var(--muted); font-size: clamp(17px, 1.25vw, 22px); line-height: 1.5; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-card { position: relative; min-height: clamp(250px, 30vh, 360px); padding: 26px; border: 0; border-radius: 22px; overflow: hidden; color: #0d0d0f; background: #eee8e3; text-align: left; cursor: pointer; transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(29, 14, 12, .16); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.74)); }
.service-card--image { color: white; }
.service-card--wine { color: white; background: #68171c; }
.service-card--sand { background: #d8b491; }
.service-card--dark { color: white; background: #121318; }
.service-card span, .service-card strong, .service-card i { position: relative; z-index: 1; }
.service-card span { display: block; opacity: .65; font-size: 13px; letter-spacing: .12em; }
.service-card strong { position: absolute; left: 26px; right: 58px; bottom: 26px; font-family: var(--font-display); font-size: clamp(27px, 2vw, 38px); font-weight: 700; line-height: 1.05; letter-spacing: -.04em; }
.service-card i { position: absolute; right: 24px; bottom: 24px; display: grid; width: 38px; aspect-ratio: 1; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }

.service-dialog[hidden] { display: none; }
.service-dialog { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.service-dialog__backdrop { position: absolute; inset: 0; background: rgba(15, 12, 12, .68); backdrop-filter: blur(18px); }
.service-dialog__panel { position: relative; width: min(1040px, 100%); max-height: min(820px, calc(100dvh - 48px)); display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: 26px; background: #f8f6f3; box-shadow: 0 40px 110px rgba(0,0,0,.4); }
.service-dialog__media { min-height: 650px; background: #eeeae6; }
.service-dialog__media img,
.service-dialog__media video { width: 100%; height: 100%; }
.service-dialog__media [hidden] { display: none; }
.service-dialog__media img { object-fit: contain; background: #eeeae6; }
.service-dialog__media video { object-fit: cover; }
.service-dialog__content { position: relative; overflow: auto; padding: 54px 54px 38px; }
.service-dialog__content h2 { margin: 18px 0; font-family: var(--font-display); font-size: clamp(42px, 4vw, 68px); font-weight: 700; line-height: .98; letter-spacing: -.04em; }
.service-dialog__content h3 { margin-top: 36px; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
.service-dialog__content ul { display: grid; gap: 12px; margin: 18px 0 44px; padding: 0; list-style: none; }
.service-dialog__content li::before { content: "✓"; margin-right: 10px; color: var(--wine); }
.service-dialog__close { position: absolute; top: 20px; right: 20px; width: 44px; aspect-ratio: 1; border: 0; border-radius: 50%; font-size: 26px; cursor: pointer; }
.service-dialog__footer { display: flex; gap: 16px; align-items: center; justify-content: space-between; }

.editorial-pause { position: relative; width: calc(100% - 20px); min-height: 100svh; margin: 10px auto; overflow: hidden; border-radius: 24px; color: white; background: #111; }
.editorial-pause > img { position: absolute; inset: -5%; width: 110%; height: 110%; object-fit: cover; transform: translate3d(0, var(--editorial-y, 0), 0) scale(var(--editorial-scale, 1.04)); will-change: transform; }
.editorial-pause__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,9,.78), rgba(6,7,9,.08) 65%); }
.editorial-pause__copy { position: absolute; left: clamp(32px, 8vw, 150px); bottom: clamp(44px, 10vh, 110px); max-width: 830px; }
.editorial-pause__copy--right { left: auto; right: clamp(32px, 8vw, 150px); text-align: right; }
.editorial-pause__copy span { font-size: 13px; letter-spacing: .16em; }
.editorial-pause__copy h2 { margin: 20px 0 0; font-family: var(--font-display); font-size: clamp(50px, 6.2vw, 96px); font-weight: 700; line-height: .92; letter-spacing: -.035em; }

.use-cases { padding-block: clamp(50px, 6vh, 68px); }
.use-cases .section-heading { margin-bottom: 28px; }
.use-cases .section-heading h2 { max-width: 15ch; font-size: clamp(48px, 4.2vw, 72px); line-height: .96; letter-spacing: -.035em; text-wrap: balance; }
.use-rail-shell { position: relative; max-width: 1540px; margin-inline: auto; }
.use-rail { display: flex; gap: 16px; overflow-x: auto; padding: 10px max(5vw, calc((100vw - 1540px)/2)) 36px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; touch-action: pan-x pan-y pinch-zoom; }
.use-rail:active { cursor: grabbing; }
.use-slide { flex: 0 0 min(640px, 42vw); scroll-snap-align: center; overflow: hidden; border: 1px solid rgba(20,18,18,.12); border-radius: 22px; background: #f4f1ee; opacity: .58; transform: scale(.94); transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.use-slide[data-active="true"] { opacity: 1; transform: scale(1); }
.use-slide img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.use-slide div { min-height: 126px; padding: 20px 24px; }
.use-slide span { color: var(--muted); }
.use-slide h3 { margin: 12px 0 6px; font-family: var(--font-display); font-size: clamp(28px, 2.3vw, 40px); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; }
.use-slide p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.5; }
.use-rail-controls { display: flex; justify-content: flex-end; gap: 10px; padding-right: 5vw; }
.use-rail-controls button { width: 54px; aspect-ratio: 1; border: 1px solid rgba(20,18,18,.14); border-radius: 50%; background: white; cursor: pointer; }

.business-value { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; overflow: hidden; background: #0d0d10; color: white; border-radius: 28px; }
.business-value__copy { padding-left: clamp(28px, 6vw, 96px); }
.business-value__copy h2 span { color: #d9a28e; }
.business-value__copy > p { color: rgba(255,255,255,.62); }
.business-value__copy .button { margin-top: 28px; background: white; color: #111; }

.pricing-comparison { display: grid; grid-template-columns: minmax(380px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 6vw, 96px); align-items: start; }
.pricing-comparison__intro { position: static; }
.pricing-accordion { display: grid; gap: 10px; }
.pricing-tier-row { overflow: hidden; border: 1px solid rgba(20,18,18,.14); border-radius: 20px; background: rgba(255,255,255,.56); }
.pricing-tier-row > button { width: 100%; min-height: 92px; padding-inline: 20px; display: grid; grid-template-columns: 1fr auto 32px; gap: 18px; align-items: center; border: 0; background: transparent; text-align: left; cursor: pointer; }
.pricing-tier-row > button span { color: var(--muted); font-size: 13px; }
.pricing-tier-row > button strong { font-family: var(--font-display); font-size: clamp(28px, 2.3vw, 40px); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
.pricing-tier-row > button em { font-style: normal; font-size: 20px; }
.pricing-tier-row > button i { font-style: normal; font-size: 24px; }
.pricing-tier-row [data-tier-panel] { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; padding: 8px 44px 30px 82px; color: white; background: var(--wine); }
.pricing-tier-row [data-tier-panel] p { margin: 0 0 14px; }
.pricing-tier-row [data-tier-panel] ul { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; padding: 0; list-style: none; font-size: 14px; color: rgba(255,255,255,.72); }
.pricing-tier-row [data-tier-panel] li::before { content: "✓"; margin-right: 7px; }
.pricing-tier-row [data-tier-panel][hidden] { display: none; }
.pricing-tier-row.is-active > button { color: white; background: var(--wine); }
.pricing-comparison .all-packages { grid-column: 1 / -1; }

@media (min-width: 1180px) and (min-height: 760px) {
  .service-overview,
  .business-value,
  .pricing-comparison { min-height: 90svh; align-content: center; }

}

@media (max-width: 1179px), (max-height: 759px) {
  .service-overview,
  .business-value,
  .pricing-comparison { min-height: auto; }
}

@media (max-width: 860px) {
  .service-overview,
  .business-value,
  .pricing-comparison { display: block; }
  .service-overview__intro,
  .business-value__copy,
  .pricing-comparison__intro { padding: 0; margin-bottom: 34px; }
  .service-grid { display: flex; gap: 10px; overflow-x: auto; padding: 4px 16px 18px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .service-card { flex: 0 0 82vw; min-height: 250px; scroll-snap-align: start; }
  .service-dialog { padding: 10px; }
  .service-dialog__panel { display: block; max-height: calc(100dvh - 20px); overflow: auto; }
  .service-dialog__media { min-height: 220px; }
  .service-dialog__content { overflow: visible; padding: 32px 22px; }
  .service-dialog__footer { align-items: stretch; flex-direction: column; }
  .editorial-pause { min-height: 85svh; border-radius: 16px; }
  .editorial-pause__copy--right { left: 26px; right: 26px; text-align: left; }
  .use-cases { padding-block: 32px; }
  .use-cases .section-heading { margin-bottom: 18px; }
  .use-slide { flex-basis: 82vw; }
  .use-slide div { min-height: 116px; }
  .business-value { padding: 54px 22px 0; }
  .business-value__copy h2 { font-size: clamp(42px, 11vw, 58px); }
  .pricing-comparison__intro { position: static; }
  .pricing-tier-row > button { grid-template-columns: 1fr 24px; }
  .pricing-tier-row > button em { grid-column: 1; font-size: 16px; }
  .pricing-tier-row [data-tier-panel] { grid-template-columns: 1fr; padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-haze { display: none; }
  .ambient-haze i { animation: none !important; }
  .editorial-pause > img { transform: none !important; }
}

.scene-facade { object-position: 50% 50%; }
.scene-lobby { object-position: 50% 48%; }
.scene-apartment { object-position: 52% 50%; }
.scene-terrace { object-position: 50% 45%; }

@media (max-width: 860px) {
  .scene-facade { object-position: 58% 50%; }
  .scene-lobby { object-position: 50% 50%; }
  .scene-apartment { object-position: 58% 50%; }
  .scene-terrace { object-position: 65% 50%; }
}

/* Cinematic studio console */
.studio-console {
  width: min(1120px, calc(100% - 36px));
  max-width: 1120px;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(104px, 12vh, 150px) 0 clamp(56px, 8vh, 96px);
}

.studio-console__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.studio-console__title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 4.6vw, 76px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.studio-console__title span { color: #a66f62; }
.studio-console__intro > p { max-width: 36rem; margin: 0; color: var(--muted); font-size: clamp(16px, 1.2vw, 20px); }

.studio-console__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(230px, 31vh));
  gap: 12px;
}

.studio-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: white;
  background: #161416;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.studio-tile--source { grid-column: 1 / 8; grid-row: 1 / 3; }
.studio-tile--brand { grid-column: 8 / 13; grid-row: 1; }
.studio-tile--speed { grid-column: 8 / 10; grid-row: 2; }
.studio-tile--quality { grid-column: 10 / 13; grid-row: 2; }

.studio-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.studio-tile--source > img { object-fit: contain; padding: 8%; background: #eeeae4; }
.studio-tile__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 5, 7, .04) 30%, rgba(5, 5, 7, .84) 100%); }
.studio-tile--source .studio-tile__shade {
  background: linear-gradient(
    180deg,
    transparent 24%,
    rgba(15, 13, 14, .52) 38%,
    rgba(15, 13, 14, .84) 60%,
    rgba(15, 13, 14, .96) 100%
  );
}
.studio-tile__copy { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: grid; gap: 7px; }
.studio-tile__copy small { font-size: 11px; letter-spacing: .14em; opacity: .66; }
.studio-tile__copy strong { max-width: 18ch; font-family: var(--font-display); font-size: clamp(22px, 2vw, 38px); font-weight: 700; line-height: 1; letter-spacing: -.035em; }
.studio-tile__copy em { max-width: 35ch; overflow: hidden; color: rgba(255,255,255,.68); font-size: 13px; font-style: normal; line-height: 1.35; }
.studio-tile--speed .studio-tile__copy { right: 16px; bottom: 16px; left: 16px; }
.studio-tile--speed .studio-tile__copy strong { font-size: clamp(18px, 1.45vw, 25px); }
.studio-tile--speed .studio-tile__copy em { display: none; }
.studio-tile__open { position: absolute; z-index: 3; top: 18px; right: 18px; display: grid; width: 40px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(15,15,17,.2); backdrop-filter: blur(12px); transition: background 220ms ease, color 220ms ease, transform 400ms var(--ease); }
.studio-tile:hover > img { transform: scale(1.055); filter: saturate(1.06); }
.studio-tile:hover .studio-tile__open { color: #111; background: white; transform: rotate(45deg); }

.studio-dialog {
  width: min(1080px, calc(100% - 32px));
  max-width: none;
  max-height: min(780px, calc(100dvh - 32px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: var(--soft-white);
  box-shadow: 0 36px 110px rgba(24, 13, 14, .44);
  opacity: 0;
  transform: scale(.97);
  transition: opacity 160ms ease, transform 160ms var(--ease);
}

.studio-dialog[data-state="opening"] { opacity: 0; transform: scale(.97); }
.studio-dialog[data-state="open"] { opacity: 1; transform: scale(1); transition-duration: 260ms; }
.studio-dialog[data-state="closing"] { opacity: 0; transform: scale(.985); }
.studio-dialog::backdrop { background: rgba(20, 17, 18, .64); backdrop-filter: blur(18px); }
.studio-dialog__shell { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; min-height: min(720px, calc(100dvh - 32px)); }
.studio-dialog__media { min-height: 0; overflow: hidden; background: #e8e3de; }
.studio-dialog__media img { width: 100%; height: 100%; object-fit: cover; }
.studio-dialog__content { display: flex; flex-direction: column; padding: clamp(42px, 5vw, 72px); }
.studio-dialog__content h2 { max-width: 12ch; margin: 24px 0 20px; font-family: var(--font-display); font-size: clamp(44px, 4.2vw, 68px); font-weight: 700; line-height: .94; letter-spacing: -.04em; }
.studio-dialog__content > p:not(.section-index) { max-width: 32rem; margin: 0; color: var(--muted); font-size: 18px; }
.studio-dialog__content ul { display: grid; gap: 0; margin: 40px 0 34px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.studio-dialog__content li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.studio-dialog__content li::before { content: "✓"; margin-right: 12px; color: var(--wine); }
.studio-dialog__content .button { width: 100%; margin-top: auto; }
.studio-dialog__close { position: absolute; z-index: 4; top: 18px; right: 18px; display: grid; width: 46px; aspect-ratio: 1; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); font-size: 25px; cursor: pointer; transition: transform 300ms var(--ease), background 200ms ease; }
.studio-dialog__close:hover { background: white; transform: rotate(90deg); }

.business-value {
  position: relative;
  display: block;
  width: calc(100% - 20px);
  max-width: none;
  min-height: 92svh;
  margin: 10px auto;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background: #111;
}

.business-value__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%; }
.business-value__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,10,.83) 0%, rgba(8,8,10,.45) 42%, rgba(8,8,10,.04) 78%); }
.business-value__copy { position: absolute; z-index: 2; left: clamp(32px, 8vw, 150px); bottom: clamp(44px, 10vh, 110px); width: min(720px, calc(100% - 64px)); padding: 0; }
.business-value__copy h2 { max-width: 13ch; margin: 0; font-size: clamp(50px, 6.2vw, 112px); font-weight: 700; line-height: .92; letter-spacing: -.04em; }
.business-value__copy > p { max-width: 42rem; margin: 26px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.25vw, 22px); }
.business-value__copy .button { margin-top: 30px; }

@media (min-width: 768px) and (max-width: 1199px) {
  .studio-console { width: min(100% - 36px, 920px); min-height: auto; padding-block: 108px 64px; }
  .studio-console__intro { display: block; }
  .studio-console__intro > p { margin-top: 22px; }
  .studio-console__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(280px, 34svh));
  }
  .studio-tile--source,
  .studio-tile--brand,
  .studio-tile--speed,
  .studio-tile--quality { grid-column: auto; grid-row: auto; }
  .studio-tile--speed .studio-tile__copy strong { font-size: clamp(24px, 3.4vw, 36px); }
  .studio-tile--speed .studio-tile__copy em { display: block; }
}

@media (max-width: 767px) {
  .studio-console { width: min(100% - 24px, 680px); min-height: auto; padding-block: 96px 54px; }
  .studio-console__intro { display: block; }
  .studio-console__title { font-size: clamp(42px, 11vw, 62px); }
  .studio-console__intro > p { margin-top: 22px; }
  .studio-console__grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 10px; }
  .studio-tile,
  .studio-tile--source,
  .studio-tile--brand,
  .studio-tile--speed,
  .studio-tile--quality { grid-column: auto; grid-row: auto; }
  .studio-tile--source { min-height: 52svh; }
  .studio-tile:not(.studio-tile--source) { min-height: 38svh; }
  .studio-tile__copy strong,
  .studio-tile--speed .studio-tile__copy strong { font-size: clamp(28px, 8vw, 42px); }
  .studio-tile--speed .studio-tile__copy em { display: block; }
  .studio-dialog { width: calc(100vw - 16px); height: min(92svh, 820px); max-height: none; margin: auto; margin-bottom: 8px; border-radius: 20px; }
  .studio-dialog__shell { display: grid; height: 100%; min-height: 0; grid-template-columns: 1fr; grid-template-rows: 34svh minmax(0, 1fr); overflow: hidden; }
  .studio-dialog__media { height: 34svh; }
  .studio-dialog__content { min-height: 0; padding: 34px 22px 26px; overflow-y: auto; overscroll-behavior: contain; }
  .studio-dialog__content h2 { font-size: clamp(40px, 11vw, 56px); }
  .studio-dialog__content ul { margin-block: 28px; }
  .business-value { min-height: 76svh; border-radius: 18px; }
  .business-value__media { object-position: 68% 50%; }
  .business-value__shade { background: linear-gradient(0deg, rgba(8,8,10,.86), rgba(8,8,10,.05) 72%); }
  .business-value__copy { left: 24px; bottom: 30px; width: calc(100% - 48px); }
  .business-value__copy h2 { font-size: clamp(42px, 11vw, 62px); }
  .business-value__copy > p { font-size: 17px; }
}

@media (max-width: 980px) {
  .desktop-menu-control { display:none; }
  .mobile-brand-row > .brand { min-width: 44px; min-height: 44px; }
  .hero .hero-wordmark { display: none !important; }
  .mobile-brand-row button,
  .service-card span,
  .section-index,
  .work-caption span,
  .case-card small,
  .video-badge,
  .pricing-comparison small,
  .studio-console small,
  .contact small,
  .lead-form label,
  .lead-form__status,
  .lead-form__error,
  footer p,
  .footer-legal { font-size:max(14px,1em); }
  .button,
  .editorial-pause__copy > span,
  .case-card__hero > span,
  .case-card__thumbs span,
  .studio-tile__copy em,
  .contact-proof span { font-size:14px; }
}

@media (max-width: 767px) {
  .case-card__hero > span { display: none; }
}

.service-overview__intro h2,
.business-value__copy h2,
.pricing-comparison__intro h2,
.service-dialog__content h2,
.studio-dialog__content h2,
.contact h2 {
  font-weight: 700;
}

.service-dialog__content > p,
.service-dialog__content li,
.studio-dialog__content > p,
.studio-dialog__content li,
.pricing-tier-row [data-tier-panel] p,
.pricing-tier-row [data-tier-panel] li {
  font-size: 18px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .studio-tile > img,
  .studio-tile__open,
  .studio-dialog,
  .studio-dialog__close { transition: none !important; }
}

/* Final cascade: keep hardened layouts above later editorial variants. */
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card { min-height: clamp(430px, 46vh, 520px); }
.service-card:nth-child(3) { grid-column: 1 / -1; }
.video-tour {
  width: min(92vw, 1500px);
  max-width: 1500px;
  border-radius: 28px;
}
.video-tour__canvas {
  height: auto;
  aspect-ratio: 16 / 9;
}
.video-tour__preview video { object-fit: cover; }
.video-tour__footer { min-height: 92px; padding-inline: clamp(20px, 4vw, 64px); }
.video-tour__rail { padding-inline: clamp(10px, 4vw, 64px); }
.use-rail { touch-action: pan-y; overscroll-behavior-x: contain; }
.pricing-comparison { grid-template-rows: max-content max-content; grid-template-columns: minmax(320px, .65fr) minmax(680px, 1.35fr); gap: clamp(64px, 6vw, 104px); }
.pricing-comparison .all-packages { width: 100%; min-height: 116px; margin-top: 24px; }

@media (min-width: 1200px) and (min-height: 820px) {
  .pricing-comparison__intro { position: static; }
}

@media (min-width: 1200px) and (max-height: 819px) {
  .video-tour { width: min(84vw, 1156px); max-width: 1156px; }
  .video-tour__canvas { height: auto; aspect-ratio: 16 / 9; }
  .pricing-comparison__intro { position: static; }
}

@media (max-width: 1199px) {
  .pricing-comparison { display: block; }
  .pricing-comparison__intro { position: static; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .service-overview { display: block; }
  .service-overview__intro { margin-bottom: 34px; }
  .service-grid { display: flex; }
  .service-card { flex: 0 0 clamp(340px, 46vw, 48vw); min-height: clamp(430px, 50svh, 520px); }
  .video-tour { width: min(92vw, 1156px); }
  .all-packages ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .service-grid { display: flex; }
  .service-card { flex: 0 0 min(82vw, 360px); min-height: 430px; }
  .video-tour { width: 100%; }
  .video-tour__canvas { height: auto; aspect-ratio: 16 / 9; }
  .all-packages ul { grid-template-columns: 1fr; }
}

.use-rail.is-dragging { cursor: grabbing; user-select: none; }
.use-rail.is-dragging * { pointer-events: none; }
.use-slide img { user-select: none; -webkit-user-drag: none; }
.use-rail-controls button:disabled { opacity: .32; cursor: default; }
.service-dialog__format-note { margin-top: 20px; color: var(--muted); font-size: 14px; line-height: 1.5; }
/* Case library, comparison and FAQ */
.cases { overflow: hidden; }
.case-rail { width: 100%; padding: 0; overflow: visible; }
.case-rail__track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; width: 100%; }
.case-card { min-width: 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #f9f7f4; box-shadow: 0 18px 44px rgba(29,20,17,.09); }
.case-card img,.case-card video { user-select:none; -webkit-user-drag:none; }
.case-card__hero { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #171315; }
.case-card__preview-background,.case-card__preview { position:absolute; inset:0; width:100%; height:100%; display:block; user-select:none; -webkit-user-drag:none; }
.case-card__preview-background { object-fit:cover; }
.case-card__preview { z-index:1; object-fit:contain; background:transparent; }
.case-card__open { position:absolute; inset:0; z-index:2; width:100%; padding:0; border:0; cursor:zoom-in; background:transparent; }
.case-card__watch { position:absolute; right:22px; bottom:20px; padding:11px 16px; border-radius:999px; background:rgba(250,248,245,.9); color:#151317; font-size:14px; backdrop-filter:blur(14px); }
.case-card__open>.case-card__play { display:none; }
.case-card__preview-toggle { position:absolute; left:18px; bottom:18px; z-index:3; width:44px; height:44px; display:grid; place-items:center; padding:0; border:1px solid rgba(255,255,255,.72); border-radius:50%; color:#fff; background:rgba(17,15,17,.58); box-shadow:0 8px 24px rgba(0,0,0,.2); backdrop-filter:blur(12px); cursor:pointer; }
.case-card__preview-toggle span { transform:translateX(1px); }
@media (min-width:761px) { .case-card__preview-background { filter:blur(18px) brightness(.76); transform:scale(1.08); } }
.case-card__head { display:flex; align-items:baseline; gap:12px; padding:16px 18px 10px; }
.case-card__head small { display: none; }
.case-card__head h3 { margin:0; font-size:clamp(20px,1.55vw,30px); }
.case-card__thumbs { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:0 16px 16px; }
.case-card__thumbs button { position:relative; height:76px; padding:0; border:0; border-radius:14px; overflow:hidden; cursor:zoom-in; background:#e9e5e0; }
.case-card__thumbs img { width:100%; height:100%; object-fit:cover; display:block; }
.case-card__thumb--plan { background:#f2efeb !important; }
.case-card__thumb--plan img { box-sizing:border-box; object-fit:contain; padding:8px; }
.case-card__thumbs span { position:absolute; left:9px; bottom:8px; padding:5px 8px; border-radius:999px; background:rgba(255,255,255,.88); font-size:11px; }
.compare-section { min-height: auto; display:grid; align-content:center; }
.compare-curtain { position:relative; width:min(1320px,100%); height:min(70vh,760px); margin:32px auto 0; overflow:hidden; border:1px solid rgba(112,101,94,.16); border-radius:34px; background:#f3efe9; box-shadow:0 28px 70px rgba(29,20,17,.12); isolation:isolate; }
.compare-curtain>img,.compare-curtain__before img { width:100%; height:100%; object-fit:contain; display:block; mix-blend-mode:multiply; }
.compare-curtain__before { position:absolute; inset:0; clip-path:inset(0 calc(100% - var(--compare)) 0 0); background:#f3efe9; }
.compare-curtain__line { position:absolute; top:0; bottom:0; left:var(--compare); width:1px; background:rgba(38,31,28,.22); transform:translateX(-.5px); pointer-events:none; }
.compare-curtain__line span { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:58px; height:58px; display:grid; place-items:center; border-radius:50%; background:#fff; color:#151317; font-size:22px; box-shadow:0 12px 30px rgba(0,0,0,.16); }
.compare-curtain input { position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:ew-resize; }
.compare-curtain:has(input:focus-visible) { outline:2px solid rgba(107,22,27,.5); outline-offset:4px; }
.plan-flip { max-width: 980px; margin: 24px auto 0; }
.plan-flip__controls { display: flex; justify-content: center; gap: 6px; width: max-content; margin: 0 auto 18px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.78); }
.plan-flip__controls button { min-height: 44px; padding: 0 20px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font: inherit; }
.plan-flip__controls button[aria-pressed="true"] { color: white; background: var(--wine); }
.plan-flip__scene { height: min(58vh, 590px); perspective: 1500px; }
.plan-flip__card { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 520ms cubic-bezier(.77,0,.175,1); }
.plan-flip__card.is-flipped { transform: rotateY(180deg); }
.plan-flip__face { position: absolute; inset: 0; display: grid; place-items: center; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #f4f0eb; box-shadow: 0 28px 70px rgba(29,20,17,.12); backface-visibility: hidden; }
.plan-flip__face--back { transform: rotateY(180deg); }
.plan-flip__face img { width: 100%; height: 100%; padding: clamp(24px, 5vw, 64px); object-fit: contain; }
.plan-flip__face figcaption { position: absolute; left: 18px; bottom: 16px; padding: 8px 12px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.88); font-size: 13px; }
.faq { min-height:100svh; display:grid; align-content:center; }
.faq__list { border-top:1px solid var(--line); }
.faq details { border-bottom:1px solid var(--line); }
.faq summary { list-style:none; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:25px 4px; font-size:clamp(22px,2.2vw,38px); cursor:pointer; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary span { font-size:30px; font-weight: 300; transition:transform .25s ease; }
.faq details[open] summary span { transform:rotate(45deg); }
.faq details p { max-width:820px; margin:0 0 28px; color:var(--muted); font-size:19px; line-height:1.55; }
.media-dialog__stage { display:grid; place-items:center; min-height:50vh; background:#0d0d0f; }
.media-dialog__stage video,.media-dialog__stage img { max-width:100%; max-height:78vh; width:100%; object-fit:contain; }
.media-dialog__stage [hidden] { display: none; }
@media (max-width: 767px) {
  .video-dialog[data-media-kind="image"] .media-dialog__stage {
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .video-dialog[data-media-kind="image"] .media-dialog__stage img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 132px);
  }
}
@media(max-width:760px){.case-rail__track{grid-template-columns:1fr;gap:14px}.case-card__hero{height:auto;aspect-ratio:16 / 9}.case-card__preview{display:none}.case-card__preview-toggle{display:none}.case-card__open>.case-card__play{position:absolute;inset:50% auto auto 50%;right:auto;bottom:auto;width:56px;height:56px;display:grid;place-items:center;padding:0;border:1px solid rgba(255,255,255,.9);border-radius:50%;color:var(--wine);background:rgba(250,248,245,.92);box-shadow:0 10px 28px rgba(27,15,15,.2);backdrop-filter:blur(12px);transform:translate(-50%,-50%)}.case-card__play svg{width:24px;height:24px;fill:currentColor}.case-card__head{align-items:flex-start;min-height:0;padding:14px 12px 10px}.case-card__head h3{font-size:20px;line-height:1.1}.case-card__thumbs{display:grid;gap:8px;padding:0 10px 12px}.case-card__thumbs button{height:64px;border-radius:12px}.compare-curtain{width:calc(100% + 16px);height:min(76vh,680px);margin-left:-8px;border-radius:28px}.section-heading--split{gap:20px}}

@media (min-width: 1200px) {
  .work-media { height: clamp(180px, 22vh, 240px); aspect-ratio: auto; }
  .work-card--wide .work-media { height: clamp(180px, 22vh, 240px); }
  .work-card--text { min-height: 0; }
  .production-stage { padding-block: clamp(24px, 3vh, 42px); }
  .production-copy h2 { margin-bottom: clamp(18px, 2.5vh, 32px); font-size: clamp(46px, 4.6vw, 70px); }
  .production-list button { min-height: 56px; }
}

/* Mobile adaptation: compact narrative, thumb-safe controls, safe areas. */
@media (max-width: 767px) {
  :root {
    --page-x: 16px;
    --section-pad: 56px;
  }

  html {
    scroll-padding-top: calc(76px + env(safe-area-inset-top));
  }

  body {
    padding-bottom: 0;
    font-size: 17px;
    line-height: 1.5;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-brand-row {
    top: max(12px, env(safe-area-inset-top));
  }

  .mobile-brand-row a,
  .mobile-brand-row button,
  .mobile-dock a {
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-brand-row > button:last-child {
    padding: 10px 14px;
    font-size: clamp(11px, 3.25vw, 14px);
  }

  .mobile-dock {
    bottom: max(10px, env(safe-area-inset-bottom));
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .mobile-dock a {
    pointer-events: auto;
    font-size: 14px;
  }

  .mobile-dock.is-suppressed {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    border-radius: 0 0 24px 24px;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: flex-end;
    padding: calc(78px + env(safe-area-inset-top)) 16px calc(98px + env(safe-area-inset-bottom));
  }

  .hero-wordmark {
    display: none;
  }

  .hero-descriptor {
    max-width: 34ch;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(42px, 12vw, 52px);
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 48px;
    font-size: 14px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.98;
  }

  .studio-console__title {
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 0.98;
  }

  [data-mobile-rail] {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
  }

  [data-mobile-rail]:focus-visible {
    outline: 2px solid var(--wine);
    outline-offset: 4px;
  }

  [data-mobile-rail]::-webkit-scrollbar {
    display: none;
  }

  .service-grid,
  .work-grid,
  .studio-console__grid {
    display: flex;
    gap: 12px;
    margin-inline: calc(-1 * var(--page-x));
    padding: 4px var(--page-x) 18px;
  }

  .service-grid > *,
  .work-grid > * {
    flex: 0 0 86vw;
    scroll-snap-align: start;
  }

  .studio-console__grid > * {
    flex: 0 0 82vw;
    min-height: 390px;
    scroll-snap-align: start;
  }

  .service-card {
    min-height: 520px;
  }

  .works {
    padding-bottom: 72px;
  }

  .work-card,
  .work-card--wide,
  .work-card--text {
    width: auto;
    min-height: 0;
  }

  .work-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .work-card--text {
    min-height: 420px;
  }

  .case-card {
    width: 100%;
  }

  .production-scroll {
    height: auto;
    padding: 60px 16px;
  }

  .production-stage {
    position: static;
    min-height: 0;
    gap: 32px;
  }

  .production-media,
  .production-observers {
    display: none;
  }

  .production-list [data-production-panel],
  .production-list [data-production-panel][hidden] {
    position: static;
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js .production-list [data-production-panel][hidden] {
    display: none;
  }

  .production-inline-media {
    max-height: 170px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .lead-dialog {
    width: calc(100% - 16px);
    max-height: min(92svh, 760px);
    margin: auto auto max(8px, env(safe-area-inset-bottom));
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .lead-form button {
    min-height: 48px;
    font-size: 16px;
  }

  .lead-form__close {
    min-width: 44px;
    min-height: 44px;
  }

  .lead-noscript {
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .mobile-brand-row button,
  .service-card span,
  .section-index,
  .work-caption span,
  .case-card small,
  .video-badge,
  .pricing-comparison small,
  .studio-console small,
  .contact small,
  .lead-form label,
  .lead-form__status,
  .lead-form__error,
  .production-list p,
  .production-list strong,
  .production-list button,
  .production-list button span,
  .editorial-pause__copy span,
  .pricing-accordion small,
  .pricing-accordion span,
  .all-packages small,
  [data-business-outcome] small,
  [data-business-outcome] span,
  .contact-proof p,
  .contact-proof span,
  .studio-console em,
  footer p,
  .footer-legal {
    font-size: max(14px, 1em);
  }

  .footer-legal {
    gap: 8px;
  }

  .case-card__hero > span,
  .case-card__thumbs span,
  .plan-flip__face figcaption,
  .pricing-tier-row [data-tier-panel] li,
  .pricing-tier-row > button em,
  .pricing-tier-row > button i,
  .pricing-tier-row > button span,
  .price-card li,
  .all-packages li,
  .price-badge,
  .button,
  .contact-row,
  .studio-dialog__content li {
    font-size: 16px;
  }

  footer {
    gap: 20px;
    padding-block: 32px 24px;
  }
}

@media (max-width: 767px) and (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    column-gap: 24px;
    padding: calc(76px + env(safe-area-inset-top)) 16px calc(76px + env(safe-area-inset-bottom));
  }

  .hero-title {
    grid-row: 1 / span 3;
    align-self: center;
    font-size: clamp(38px, 6.4vw, 48px);
  }

  .hero-descriptor {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 0 8px;
    font-size: 14px;
  }

  .hero-copy {
    align-self: end;
    margin-top: 0;
  }

  .hero-actions {
    align-self: start;
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
  }
}

@media (min-width: 768px) and (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    column-gap: 34px;
    padding: 86px 34px 28px;
  }

  .hero-wordmark {
    position: absolute;
    top: 22px;
    left: 34px;
    display: block;
    width: 150px;
    margin: 0;
  }

  .hero-title {
    grid-row: 1 / span 3;
    align-self: center;
    font-size: clamp(40px, 5.4vw, 48px);
  }

  .hero-descriptor {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 0 8px;
    font-size: 14px;
  }

  .hero-copy {
    align-self: end;
    margin-top: 0;
  }

  .hero-actions {
    align-self: start;
    margin-top: 14px;
  }
}

@media (min-width: 981px) {
  .mobile-brand-row,
  .mobile-dock {
    display: none;
  }

  .desktop-nav,
  .desktop-nav.is-compact {
    display: flex;
  }
}

@media (max-width: 980px) {
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }

  .hero-note { font-size: 14px; }

  .mobile-dock {
    position: fixed;
    z-index: 110;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 66px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(247, 245, 242, 0.88);
    box-shadow: 0 20px 50px rgba(74, 60, 55, 0.2);
    backdrop-filter: blur(20px) saturate(130%);
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    gap: 3px;
    border-radius: 13px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    pointer-events: auto;
  }

  .mobile-dock a[aria-current="true"] {
    color: var(--soft-white);
    background: var(--wine);
  }

  .mobile-dock svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-dock span {
    font-size: inherit;
    line-height: inherit;
  }

  .mobile-dock.is-suppressed {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-dock.is-suppressed a { pointer-events: none; }

  .hero-actions .button,
  .editorial-pause__copy > span,
  .case-card__hero > span,
  .case-card__thumbs button span,
  .studio-tile__copy em,
  .business-value .button,
  .partners .button,
  .pricing-comparison .button,
  .contact .button,
  .contact-proof span { font-size:14px; }
}
