/* ════════════════════════════════════════════════════════════
   Veblen Group — Own The Market · v2 design language
   Cinematic dark editorial. McLaren orange. Lexend 900 display,
   DM Serif Display italic accents, DM Sans body. Film grain.
   ════════════════════════════════════════════════════════════ */

/* design tokens moved to tokens.css (loaded first) */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;
}
::selection { background: var(--orange); color: var(--ink); }
html { scrollbar-width: thin; scrollbar-color: var(--orange-burn) var(--ink); }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); max-width: 18ch; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em.serif, .serif { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange); letter-spacing: 0; }
.u-orange { color: var(--orange); }
.sub { color: var(--grey); max-width: 44ch; margin-top: 1.5rem; font-size: clamp(1.02rem, 1.25vw, 1.2rem); }
.secnum {
  font-family: var(--display); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 2.25rem; display: flex; align-items: center; gap: 1rem;
}
.secnum::after { display: none; }
.fineprint { color: var(--grey-dim); font-size: 0.82rem; margin-top: 2.5rem; }

/* film grain */
.grain {
  position: fixed; inset: -50%; z-index: 80; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 12% { transform: translate(-3%,2%); }
  25% { transform: translate(2%,-3%); } 37% { transform: translate(-2%,-2%); }
  50% { transform: translate(3%,3%); } 62% { transform: translate(-3%,1%); }
  75% { transform: translate(2%,2%); } 87% { transform: translate(-1%,-3%); }
}

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: 3rem; border: 0; cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.4s;
}
.btn--lg { padding: 1.05rem 2.4rem; font-size: 1.02rem; }
.btn--sm { padding: 0.6rem 1.35rem; font-size: 0.85rem; }
.btn--solid { background: var(--orange); color: var(--ink); box-shadow: 0 0 0 rgba(255,128,0,0); }
.btn--solid:hover { background: var(--orange-up); transform: translateY(-3px); box-shadow: 0 14px 40px -12px rgba(255,128,0,0.55); }
.btn--ghost { border: 1px solid rgba(242,237,230,0.25); color: var(--paper); background: transparent; }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(10,9,8,0.6); }
.btn--inksolid { background: var(--ink); color: var(--paper); }
.btn--inksolid:hover { background: #000; transform: translateY(-3px); }

/* ── nav ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.1rem var(--pad);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav__ctas { justify-self: end; }
.nav.is-scrolled { background: rgba(10,9,8,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-color: var(--line); }
.nav__ctas { display: flex; align-items: center; gap: 0.75rem; }
.nav__ctas .btn { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.logo { font-family: var(--display); font-weight: 900; font-size: 1.55rem; letter-spacing: -0.02em; }
.logo__v { color: var(--orange); }
.nav__links { display: flex; gap: 2.25rem; font-family: var(--display); font-weight: 500; font-size: 0.88rem; color: var(--grey); }
.nav__links a { position: relative; padding: 0.2rem 0; transition: color 0.2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--orange); transition: width 0.3s cubic-bezier(0.22,1,0.36,1); }
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 880px) { .nav__links { display: none; } }

/* ════════ HERO ════════ */
.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad); }
.hero__grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__textdust { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(255,128,0,0.10), transparent 55%),
    radial-gradient(ellipse at center, transparent 45%, rgba(10,9,8,0.85) 100%);
}
.hero__inner {
  position: relative; z-index: 2; padding-top: 4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 100%; perspective: 1000px;
}
.hero__row { justify-content: center; }
.hero__title { transform-style: preserve-3d; will-change: transform; }
.hero__foot { flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; }
.hero__sub { text-align: center; }
.ht--accent > .dotpulse { display: inline-block; animation: dotpulse 2.2s cubic-bezier(0.45,0,0.55,1) infinite; transform-origin: center 70%; }
@keyframes dotpulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.hero__eyebrow {
  font-family: var(--display); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: clamp(1.5rem, 3vh, 3rem);
}
.hero__eyebrow .tick { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
.hero__title { font-size: clamp(4rem, min(15.5vw, 21vh), 14.5rem); font-weight: 900; line-height: 0.86; letter-spacing: -0.045em; text-transform: uppercase; }
.hero__row { display: flex; align-items: baseline; gap: clamp(0.75rem, 2.5vw, 2.5rem); }
.hero__serif { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: lowercase; color: var(--paper); font-size: 0.42em; letter-spacing: 0; transform: translateY(-0.18em); opacity: 0.9; }
.ht--accent { color: var(--orange); }
.ht .ch { display: inline-block; will-change: transform; }
.hc--main .ch, .hc--em .ch { display: inline-block; white-space: pre; }
.hero__foot { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-top: clamp(2rem, 5vh, 4rem); }
.hero__sub { max-width: 34rem; color: var(--grey); font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.hero__sub strong { color: var(--paper); }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hud {
  position: absolute; z-index: 3; left: var(--pad); bottom: 7vh;
  font-family: var(--display); opacity: 0;
}
.hud__label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-dim); transition: color 0.25s; }
.hud__value { font-weight: 200; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.1; color: var(--paper); font-variant-numeric: tabular-nums; transition: color 0.25s; }
.hud__value span { color: var(--orange); font-weight: 300; transition: color 0.25s; }
.hud__bar { width: clamp(160px, 18vw, 260px); height: 2px; background: rgba(242,237,230,0.12); margin-top: 0.6rem; transition: background 0.25s; }
.hud__bar span { display: block; height: 100%; width: 0; background: var(--orange); box-shadow: 0 0 10px rgba(255,128,0,0.7); transition: background 0.25s, box-shadow 0.25s; }
.hud--invert .hud__label { color: rgba(10,9,8,0.65); }
.hud--invert .hud__value { color: var(--ink); }
.hud--invert .hud__value span { color: var(--ink); }
.hud--invert .hud__bar { background: rgba(10,9,8,0.2); }
.hud--invert .hud__bar span { background: var(--ink); box-shadow: none; }

.hero__takeover {
  position: absolute; z-index: 3; right: var(--pad); bottom: 7vh; max-width: 30rem; text-align: right;
  color: var(--grey); font-size: 1.05rem; opacity: 0;
}
.hero__takeover em { font-family: var(--serif); color: var(--orange); font-size: 1.15em; }

.hero__warpline {
  position: absolute; z-index: 4; inset: 0; display: grid; place-items: center; align-content: start;
  text-align: center; pointer-events: none; opacity: 0; padding: 22vh var(--pad) 0;
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2rem, 5.5vw, 5rem); line-height: 1.05; color: var(--ink);
}
.hero__warpline em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.hero__compete {
  position: absolute; z-index: 3; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; pointer-events: none; opacity: 0; padding: 0 var(--pad);
  font-family: var(--display); font-weight: 700; letter-spacing: 0.05em;
  font-size: clamp(0.9rem, 1.4vw, 1.4rem); line-height: 1.2; color: var(--grey);
}
.hero__compete em {
  font-family: var(--display); font-style: normal; font-weight: 900;
  font-size: clamp(3rem, 8vw, 9rem); letter-spacing: -0.045em; line-height: 0.88;
  color: var(--orange); margin-top: 0.4rem;
}

.hero__cue {
  position: absolute; z-index: 3; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--grey-dim);
}
.hero__cue span { width: 1px; height: 44px; background: var(--line); overflow: hidden; display: block; position: relative; }
.hero__cue span::after { content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 16px; background: var(--orange); animation: cue 1.8s cubic-bezier(0.65,0,0.35,1) infinite; }
@keyframes cue { from { transform: translateY(-18px); } to { transform: translateY(48px); } }

/* ════════ TICKER ════════ */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; background: var(--ink); position: relative; z-index: 2; }
.ticker__track { display: flex; width: max-content; animation: tick 90s linear infinite; }
.ticker--rev .ticker__track { animation-direction: reverse; }
.ticker__track span {
  font-family: var(--display); font-weight: 900; font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(242,237,230,0.3);
}
.ticker__track span:nth-child(odd) { color: var(--orange); -webkit-text-stroke: 0; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ════════ sections shared ════════ */
section { padding: var(--gap) var(--pad); position: relative; }

/* ════════ PROBLEM ════════ */
.problem__title { font-size: clamp(2.6rem, 6.5vw, 6rem); text-transform: none; max-width: none; }
.problem__title > span { display: block; }
.problem__title .strike em { font-family: var(--serif); font-weight: 400; color: var(--grey); position: relative; padding: 0 0.1em; }
.problem__title .strike em::after {
  content: ""; position: absolute; left: 0; top: 56%; height: 0.08em; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: left center;
}
.problem__title .strike.is-struck em::after { transition: transform 0.7s cubic-bezier(0.65,0,0.35,1) 0.2s; transform: scaleX(1); }
.problem__cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 7rem); margin-top: clamp(3rem, 6vh, 5rem); align-items: start; }
.problem__lede { font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.7; color: var(--grey); }
.problem__lede em { font-family: var(--serif); color: var(--orange); font-size: 1.1em; }
.problem__list li { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); color: var(--grey); align-items: start; }
.problem__list li:last-child { border-bottom: 1px solid var(--line); }
.problem__list li span { font-size: 1.2rem; line-height: 1.6; filter: grayscale(0.4); }
.problem__list strong { color: var(--paper); display: block; font-family: var(--display); font-weight: 600; }
@media (max-width: 900px) { .problem__cols { grid-template-columns: 1fr; } }

/* ════════ CASE FILMS — video testimonials ════════ */
.films > .secnum { justify-content: center; }
.films > h2,
.films > .sub { text-align: center; margin-left: auto; margin-right: auto; }
.films__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; margin-top: clamp(2.5rem, 5vh, 4rem); }
.film { margin: 0; }
.film--lead { grid-column: span 3; }
.film:not(.film--lead) { grid-column: span 2; }
.film__poster {
  display: grid; place-items: center; position: relative; aspect-ratio: 16 / 9;
  border-radius: 0.7rem; overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 75% 0%, rgba(255, 128, 0, 0.22), transparent 55%),
    linear-gradient(200deg, var(--ink-3), var(--ink-2) 70%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}
.film__poster:hover { transform: translateY(-6px); border-color: var(--orange); }
.film__poster video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film__initials {
  position: absolute; right: 4%; bottom: -6%; font-family: var(--display); font-weight: 900;
  font-size: clamp(5rem, 9vw, 9rem); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(255, 128, 0, 0.4); letter-spacing: -0.04em; user-select: none;
}
.film__play {
  width: clamp(3.2rem, 5vw, 4.5rem); height: clamp(3.2rem, 5vw, 4.5rem); border-radius: 50%;
  display: grid; place-items: center; font-size: 1rem; color: var(--ink);
  background: var(--orange); box-shadow: 0 12px 40px -10px rgba(255, 128, 0, 0.65);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.film__poster:hover .film__play { transform: scale(1.12); }
.film figcaption { padding-top: 0.9rem; }
.film figcaption strong { font-family: var(--display); font-size: 1.05rem; display: block; }
.film figcaption span { color: var(--grey-dim); font-size: 0.88rem; display: block; }
.film figcaption em { color: var(--orange); font-family: var(--serif); font-style: italic; font-size: 1rem; display: block; margin-top: 0.25rem; }
@media (max-width: 960px) { .films__grid { grid-template-columns: 1fr 1fr; } .film, .film--lead { grid-column: span 1; } }
@media (max-width: 600px) { .films__grid { grid-template-columns: 1fr; } }

/* ════════ WEBSITES — browser-frame showcase ════════ */
.sites__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: clamp(2.5rem, 5vh, 4rem); }
.site {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 0.8rem;
  overflow: hidden; background: var(--ink-2);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.45s;
}
.site:hover { transform: translateY(-8px); border-color: rgba(255, 128, 0, 0.5); box-shadow: 0 26px 60px -28px rgba(255, 128, 0, 0.35); }
.site__bar {
  display: flex; align-items: center; gap: 0.4rem; padding: 0.6rem 0.8rem;
  background: var(--ink-3); border-bottom: 1px solid var(--line);
}
.site__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(242, 237, 230, 0.18); }
.site__bar i:first-child { background: rgba(255, 128, 0, 0.6); }
.site__bar b {
  margin-left: 0.5rem; font-family: var(--body); font-weight: 400; font-size: 0.72rem;
  color: var(--grey-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site__shot { display: block; aspect-ratio: 4 / 4.6; overflow: hidden; position: relative; }
.site__shot img {
  width: 100%; height: auto; display: block;
  transition: transform 5.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.site:hover .site__shot img { transform: translateY(calc(-100% + 4.6 / 4 * 100% * 0.87)); }
.site__meta { padding: 0.9rem 1rem 1.1rem; }
.site__meta strong { font-family: var(--display); font-size: 0.98rem; display: block; }
.site__meta span { color: var(--grey-dim); font-size: 0.82rem; }
.site--cta {
  align-items: flex-start; justify-content: space-between; padding: 1.4rem;
  background: linear-gradient(160deg, rgba(255, 128, 0, 0.14), transparent 60%), var(--ink-2);
  border-style: dashed; border-color: rgba(255, 128, 0, 0.45);
}
.site--cta .site__ctatext { font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 0.9; letter-spacing: -0.03em; }
.site--cta .site__ctago { font-family: var(--display); font-weight: 600; color: var(--orange); font-size: 0.95rem; }
@media (max-width: 1100px) { .sites__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sites__grid { grid-template-columns: 1fr; } }

/* ════════ PROOF — horizontal panels ════════ */
.proof { padding: var(--gap) 0 0; background: var(--ink-2); }
.proof__head { padding: 0 var(--pad); }
.cases { overflow: hidden; margin-top: clamp(3rem, 6vh, 5rem); }
.cases__track { display: flex; will-change: transform; }
.casepanel {
  flex: 0 0 100vw; min-height: calc(100vh - 60px); padding: clamp(2rem, 6vh, 5rem) var(--pad);
  display: flex; flex-direction: column; justify-content: center; position: relative;
  border-top: 1px solid var(--line);
  background-size: cover;
  background-position: right center;
}
.casepanel--alt { background: none; }
.casepanel__industry { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 1rem; }
.casepanel__big {
  font-family: var(--display); font-weight: 900; line-height: 0.85; letter-spacing: -0.05em;
  font-size: clamp(7rem, 26vw, 24rem); color: var(--orange);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 80px rgba(255,128,0,0.25);
}
.casepanel__plus, .casepanel__dollar { font-size: 0.45em; vertical-align: 0.6em; letter-spacing: -0.02em; }
.casepanel__what { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--paper); margin-top: 0.5rem; }
.casepanel__what em { color: var(--orange); font-style: italic; }
.casepanel__meta { margin-top: clamp(1.5rem, 4vh, 3rem); max-width: 34rem; color: var(--grey); }
.casepanel__meta strong { color: var(--paper); }
.casepanel__client { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--paper); margin-bottom: 0.4rem; }

/* ── Case Studies Belt ── */
.cs-belt-wrap { padding: 2.5rem 0 0; border-top: 1px solid var(--line); }
.cs-belt-head { padding: 0 var(--pad) 3rem; text-align: center; }
.cs-belt-tag { font-family: var(--display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.cs-belt-title { font-size: clamp(1.6rem, 3.2vw, 2.6rem); color: var(--paper); line-height: 1.2; max-width: none; margin-bottom: 0.75rem; }
.cs-belt-title em { color: var(--orange); font-style: italic; }
.cs-belt-sub { color: var(--grey); font-size: 0.95rem; }
.cs-stage { width: 100%; overflow: hidden; padding: 20px 0 40px; position: relative; }
.cs-stage::before, .cs-stage::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.cs-stage::before { left: 0; background: linear-gradient(to right, var(--ink) 0%, transparent 100%); }
.cs-stage::after { right: 0; background: linear-gradient(to left, var(--ink) 0%, transparent 100%); }
.cs-track { display: flex; width: max-content; animation: csBeltScroll 70s linear infinite; }
@keyframes csBeltScroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }
.cs-belt-card { flex: 0 0 300px; margin-right: 20px; height: 420px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.cs-belt-card:hover { border-color: rgba(255,128,0,0.4); transform: translateY(-4px); animation-play-state: paused; }
.cs-track:hover { animation-play-state: paused; }
.cs-card-browser { display: flex; align-items: center; gap: 5px; background: #161616; border-bottom: 1px solid #2a2a2a; padding: 0 10px; height: 26px; flex-shrink: 0; }
.cs-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cs-dot-r { background: #ff5f57; }
.cs-dot-y { background: #febc2e; }
.cs-dot-g { background: #28c840; }
.cs-url-bar { flex: 1; margin-left: 6px; background: #111; border-radius: 3px; height: 15px; font-size: 9px; color: #4a4a4a; line-height: 15px; padding: 0 7px; font-family: monospace; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; }
.cs-card-screenshot { flex-shrink: 0; overflow: hidden; }
.cs-card-screenshot img { width: 100%; display: block; height: auto; }
.cs-card-info { flex: 1; background: var(--ink-2); border-top: 2px solid var(--orange); padding: 14px 16px 18px; display: flex; flex-direction: column; justify-content: flex-end; }
.cs-card-industry { font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; color: var(--orange); text-transform: uppercase; margin-bottom: 6px; }
.cs-card-stat { font-family: var(--display); font-size: 34px; font-weight: 900; color: var(--orange); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.cs-card-label { font-size: 11px; color: var(--grey); margin-bottom: 14px; line-height: 1.4; }
.cs-card-services { font-size: 11px; color: var(--grey); line-height: 1.55; margin-bottom: 12px; }
.cs-card-client { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.cs-card-client-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.cs-card-client-name { font-family: var(--display); font-size: 11px; font-weight: 700; color: var(--paper); letter-spacing: 0.01em; }

/* ── Google reviews — styled like the real thing ── */
.greviews__head {
  display: flex; align-items: center; gap: 0.8rem; padding: 0 var(--pad) 1.75rem;
  font-family: var(--display);
}
.glogo { width: 30px; height: 30px; }
.greviews__head strong { font-size: 1.5rem; font-weight: 800; }
.greviews__stars { color: #fbbc04; letter-spacing: 0.12em; font-size: 1.05rem; }
.greviews__meta { color: var(--grey-dim); font-family: var(--body); font-size: 0.9rem; }
.greviews { overflow: hidden; padding: 0.6rem 0; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.greviews__track { display: flex; gap: 1.1rem; width: max-content; animation: tick 70s linear infinite; }
.greviews--rev .greviews__track { animation-direction: reverse; animation-duration: 84s; }
.greviews:hover .greviews__track { animation-play-state: paused; }
.gcard {
  width: 330px; flex: 0 0 auto; background: #fff; color: #202124;
  border-radius: 12px; padding: 1.1rem 1.2rem; font-family: var(--body);
  box-shadow: 0 8px 28px -14px rgba(0,0,0,0.6);
}
.gcard__head { display: flex; align-items: center; gap: 0.7rem; }
.gcard__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 0.95rem;
}
.gcard__who { flex: 1; min-width: 0; }
.gcard__name { font-weight: 600; font-size: 0.92rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gcard__when { color: #70757a; font-size: 0.78rem; }
.gcard__g { width: 18px; height: 18px; flex: 0 0 auto; }
.gcard__stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 0.1em; margin: 0.45rem 0 0.35rem; }
.gcard__text {
  color: #3c4043; font-size: 0.86rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.logowall { overflow: hidden; padding-bottom: 2.5rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logowall__track { display: flex; gap: 4.5rem; width: max-content; animation: tick 60s linear infinite; }
.logowall__track span { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--grey-dim); white-space: nowrap; transition: color 0.3s; }
.logowall__track span:hover { color: var(--orange); }

/* ════════ CREATIVE — the corridor (fly THROUGH the work) ════════ */
#corridor-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.static #corridor-particles { display: none; }
.creative { overflow: hidden; }
.creative > .secnum { justify-content: center; }
.creative > h2,
.creative > .sub { text-align: center; margin-left: auto; margin-right: auto; }
.creative__title { text-transform: none; }
/* THE PORTAL — STOP overlays the corridor; the O's hole shows the
   floating work behind it, and scroll flies you through */
.stopper__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 5; pointer-events: none; }
.stopper__word { font-family: var(--display); font-weight: 900; font-size: 270px; letter-spacing: -0.04em; }
.stopper__top, .stopper__bottom {
  position: absolute; left: 0; right: 0; text-align: center; pointer-events: none; z-index: 6;
}
.stopper__top { top: 13%; font-family: var(--display); font-weight: 500; font-size: clamp(0.95rem, 1.6vw, 1.3rem); letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }
.stopper__bottom { bottom: 12%; font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 4vw, 3.4rem); color: var(--paper); }
.stopper__bottom span { color: var(--orange); }

.corridor {
  height: 100vh; position: relative; overflow: hidden; contain: paint;
  perspective: 900px; width: 100vw; margin: clamp(2rem, 5vh, 4rem) 0 0; margin-left: calc(var(--pad) * -1);
  background-image: radial-gradient(rgba(242, 237, 230, 0.07) 1px, transparent 1.3px);
  background-size: 44px 44px;
}
.corridor__cam { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }
.corridor .poster { position: absolute; left: 50%; top: 50%; }
.poster {
  width: clamp(200px, 24vw, 360px); aspect-ratio: 9/16;
  position: relative; overflow: visible; pointer-events: none;
  background: #050403;
  border-radius: 40px;
  border: 1px solid rgba(242,237,230,0.13);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.85), 0 4px 18px rgba(0,0,0,0.5);
}
/* Dynamic Island */
.poster::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 29%; height: 26px;
  border-radius: 999px;
  background: #050403;
  border: 1px solid rgba(242,237,230,0.08);
  z-index: 10; pointer-events: none;
}
.poster__frame {
  position: absolute; inset: 9px;
  border-radius: 31px; overflow: hidden;
  background:
    linear-gradient(20deg, rgba(10,9,8,0.92) 30%, rgba(255,128,0,0.28)),
    repeating-linear-gradient(-45deg, rgba(255,128,0,0.07) 0 2px, transparent 2px 14px),
    var(--ink-3);
  border: none;
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.poster__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.poster__logo {
  position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 65%; height: auto; object-fit: contain;
}
.poster figcaption { position: relative; z-index: 1; font-family: var(--display); font-weight: 800; font-size: 1.15rem; line-height: 1.25; text-transform: uppercase; letter-spacing: -0.01em; }
.poster figcaption span { display: block; font-family: var(--serif); font-style: italic; text-transform: none; font-weight: 400; color: var(--orange); font-size: 0.95rem; letter-spacing: 0; }
.bigquote { margin-top: clamp(3.5rem, 8vh, 6rem); padding: 0 var(--pad); transform: translateZ(0); isolation: isolate; }
.bigquote p { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 5.2rem); line-height: 1.15; letter-spacing: -0.02em; }
.bigquote p em { font-family: var(--serif); color: var(--orange); font-style: italic; }
.bigquote cite { display: block; margin-top: 1.5rem; color: var(--grey-dim); font-style: italic; font-size: 0.9rem; }

/* ════════ VERTICALS ════════ */
.vrows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(3rem, 6vh, 5rem); }
.vrow { background: var(--ink); padding: clamp(2rem, 3.5vw, 3.5rem); position: relative; transition: background 0.4s; }
.vrow:hover { background: var(--ink-3); }
.vrow__num { font-family: var(--serif); font-style: italic; font-size: 3.2rem; color: var(--orange); opacity: 0.85; display: block; line-height: 1; margin-bottom: 1.5rem; }
.vrow h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 1.1rem; }
.vrow p { color: var(--grey); font-size: 0.98rem; }
.vrow__proof { margin-top: 1.6rem; font-family: var(--display); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--orange); }
@media (max-width: 940px) { .vrows { grid-template-columns: 1fr; } }

/* ════════ FORK ════════ */
.fork { background: var(--ink-2); }
.fork__head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.fork__head .secnum { justify-content: center; }
.fork__head .secnum::after { display: none; }
.fork__head h2 { max-width: none; }
.fork__head .sub { max-width: 60ch; }
.fork__split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 76rem; margin: clamp(3rem, 6vh, 5rem) auto 0; }
.forkside {
  display: flex; flex-direction: column; padding: clamp(2.25rem, 4vw, 4rem);
  border-radius: 1rem; position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s;
}
.forkside:hover { transform: translateY(-8px); }
.forkside--p { background: linear-gradient(150deg, #2a1500, #140b02 55%), var(--ink); border: 1px solid rgba(255,128,0,0.35); }
.forkside--p:hover { box-shadow: 0 30px 70px -30px rgba(255,128,0,0.4); }
.forkside--s { background: var(--paper); color: var(--ink); }
.forkside--s:hover { box-shadow: 0 30px 70px -30px rgba(242,237,230,0.25); }
.forkside__tag { font-family: var(--display); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; }
.forkside--s .forkside__tag { color: var(--orange-burn); }
.forkside h3 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 0.98; margin-bottom: 1.25rem; }
.forkside__desc { color: var(--grey); flex: 1; }
.forkside--s .forkside__desc { color: #4a443c; }
.forkside__price { margin-top: 2rem; font-family: var(--display); font-size: 1rem; color: var(--grey); }
.forkside--s .forkside__price { color: #4a443c; }
.forkside__price strong { font-weight: 800; font-size: 1.6rem; color: var(--orange); letter-spacing: -0.02em; }
.forkside--s .forkside__price strong { color: var(--orange-burn); }
.forkside__go { margin-top: 1.5rem; font-family: var(--display); font-weight: 700; color: var(--orange); }
.forkside--s .forkside__go { color: var(--ink); }
@media (max-width: 880px) { .fork__split { grid-template-columns: 1fr; } }

/* ════════ PARTNERSHIP ════════ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: clamp(3rem, 6vh, 5rem); align-items: stretch; }
.tier { display: flex; flex-direction: column; padding: clamp(1.75rem, 2.6vw, 2.6rem); border: 1px solid var(--line); border-radius: 1rem; background: var(--ink-2); }
.tier header { display: flex; flex-direction: column; gap: 0.4rem; }
.tier__name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.tier__price { font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem, 3.6vw, 3.4rem); letter-spacing: -0.03em; line-height: 1; }
.tier__price span { font-size: 0.9rem; font-weight: 400; color: var(--grey-dim); letter-spacing: 0; }
.tier__pitch { color: var(--grey); font-size: 0.95rem; margin: 1.1rem 0 1.4rem; }
.tier ul { flex: 1; margin-bottom: 1.75rem; }
.tier ul li { padding: 0.6rem 0 0.6rem 1.5rem; position: relative; color: var(--grey); font-size: 0.93rem; border-top: 1px solid var(--line); }
.tier ul li::before { content: "→"; position: absolute; left: 0; color: var(--orange); }
.tier .btn { align-self: stretch; }

.tier--hot { background: var(--orange); color: var(--ink); border: 0; transform: scale(1.03); box-shadow: 0 30px 80px -25px rgba(255,128,0,0.45); }
.tier--hot .tier__flag { font-family: var(--display); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); opacity: 0.75; margin-bottom: 1rem; }
.tier--hot .tier__price span, .tier--hot .tier__pitch, .tier--hot ul li { color: rgba(10,9,8,0.75); }
.tier--hot ul li { border-top-color: rgba(10,9,8,0.15); }
.tier--hot ul li::before { color: var(--ink); }
@media (max-width: 1020px) { .tiers { grid-template-columns: 1fr; max-width: 33rem; } .tier--hot { transform: none; } }

.dynasty {
  margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.75rem, 3vw, 2.75rem); border: 1px dashed rgba(255,128,0,0.45); border-radius: 1rem;
}
.dynasty__name { font-family: var(--display); font-weight: 800; font-size: 1.5rem; }
.dynasty__name span { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange); font-size: 1.05rem; margin-left: 0.75rem; }
.dynasty p:last-child { color: var(--grey); max-width: 46rem; margin-top: 0.5rem; }
@media (max-width: 880px) { .dynasty { flex-direction: column; align-items: flex-start; } }

/* ════════ SYSTEMS — light editorial block ════════ */
.systems { background: var(--paper); color: var(--ink); }
.secnum--ink { color: var(--orange-burn); }
.secnum--ink::after { background: var(--orange-burn); }
.systems h2 .serif { color: var(--orange-burn); }
.sub--ink { color: #5a544a; }
.menu { margin-top: clamp(2.5rem, 5vh, 4rem); border-top: 1px solid var(--line-ink); max-width: 66rem; }
.menu li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--line-ink);
  transition: padding-left 0.35s cubic-bezier(0.22,1,0.36,1);
}
.menu li:hover { padding-left: 0.9rem; }
.menu h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); letter-spacing: -0.015em; }
.menu p { color: #5a544a; font-size: 0.95rem; max-width: 38rem; margin-top: 0.25rem; }
.menu__price { font-family: var(--display); font-weight: 900; font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--orange-burn); white-space: nowrap; letter-spacing: -0.02em; }
.systems .btn { margin-top: 2.75rem; }

/* ════════ PROCESS + FAQ ════════ */
.process { padding: var(--gap) var(--pad); text-align: center; }
.process > * { max-width: 64rem; margin-inline: auto; }
.process > .secnum { justify-content: center; }
.process > .sub { margin-inline: auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: clamp(3rem, 5vh, 4rem); }
.steps li { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.steps span { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--orange); display: block; margin-bottom: 0.9rem; }
.steps h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.steps p { color: var(--grey); font-size: 0.93rem; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.faq { margin-top: clamp(3rem, 6vh, 5rem); }
.faq__cols { display: flex; gap: 0.75rem; align-items: flex-start; }
.faq__col { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item { background: rgba(242,237,230,0.04); border: 1px solid rgba(242,237,230,0.08); border-radius: 0.75rem; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.faq__item:hover { transform: translateY(-2px); border-color: rgba(255,128,0,0.35); background: rgba(242,237,230,0.06); box-shadow: 0 12px 34px -16px rgba(255,128,0,0.3); }
.faq__item.is-open { border-color: rgba(255,128,0,0.45); }
.faq__item summary { cursor: pointer; list-style: none; font-family: var(--display); font-weight: 600; font-size: 0.95rem; padding: 1.4rem 4rem 1.4rem 1.5rem; position: relative; color: var(--paper); user-select: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; translate: 0 -50%; width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255,128,0,0.12); border: 1px solid rgba(255,128,0,0.4); color: var(--orange); font-size: 1.2rem; line-height: 2rem; text-align: center; transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease; }
.faq__item summary:hover::after { background: rgba(255,128,0,0.28); transform: scale(1.12); }
.faq__item.is-open summary::after { content: "×"; background: var(--orange); border-color: var(--orange); color: #fff; }
.faq__body { overflow: hidden; height: 0; transition: height 0.36s cubic-bezier(0.4,0,0.2,1); }
.faq__body > p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; padding: 0 1.5rem 1.5rem; opacity: 0; transition: opacity 0.22s ease; }
.faq__item.is-open .faq__body > p { opacity: 1; }
/* trust band that fills the space between the FAQ and the qualifier form */
.faq__assure { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); max-width: 60rem; margin-top: clamp(2.6rem, 5vh, 4rem); padding-top: 2.6rem; border-top: 1px solid var(--line); }
.faq__assure-item { flex: 1 1 14rem; max-width: 18rem; font-size: 0.88rem; line-height: 1.5; color: var(--grey-dim); }
.faq__assure-item b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--orange); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.process h2 em { color: var(--orange); font-style: normal; }
@media (max-width: 700px) { .faq__cols { flex-direction: column; } }

/* ════════ QUALIFIER ════════ */
.qualify { padding: var(--gap) var(--pad); }
.qualify__inner { max-width: 68rem; margin-inline: auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; text-align: left; }
.qualify__pitch .sub { margin: 1.1rem 0 0; max-width: 34ch; }
.qualify h2 { font-size: clamp(2.3rem, 4.2vw, 4rem); max-width: none; }
.qualify__proof { list-style: none; margin: 2.2rem 0 0; display: grid; gap: 0.85rem; }
.qualify__proof li { display: flex; align-items: baseline; gap: 0.55rem; color: var(--grey); font-size: 0.98rem; line-height: 1.4; }
.qualify__stat { color: var(--orange); font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; }
.qualify__steps { list-style: none; counter-reset: qstep; margin: 1.9rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 0.8rem; }
.qualify__steps li { counter-increment: qstep; display: flex; align-items: center; gap: 0.7rem; color: var(--grey-dim); font-size: 0.9rem; }
.qualify__steps li::before { content: counter(qstep); flex: none; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; border: 1px solid rgba(255,128,0,0.4); color: var(--orange); font-family: var(--display); font-weight: 700; font-size: 0.75rem; }
.qform { margin-top: 0; text-align: left; }
@media (max-width: 900px) {
  .qualify__inner { grid-template-columns: 1fr; gap: 2.5rem; max-width: 42rem; text-align: center; }
  .qualify__pitch .sub { margin-inline: auto; }
  .qualify__proof, .qualify__steps { justify-items: center; }
  .qualify__proof li, .qualify__steps li { justify-content: center; }
  .qualify__steps { border-top: none; padding-top: 0; }
}
.qform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.qform label { display: block; font-family: var(--display); font-size: 0.82rem; font-weight: 500; color: var(--grey); letter-spacing: 0.04em; }
.qform .wide { grid-column: 1 / -1; }
.qform input, .qform select {
  width: 100%; margin-top: 0.45rem; padding: 0.95rem 1.1rem;
  background: rgba(242,237,230,0.05); border: 1px solid var(--line); border-radius: 0.6rem;
  color: var(--paper); font-family: var(--body); font-size: 1rem;
  transition: border-color 0.25s, background 0.25s;
}
.qform input:focus, .qform select:focus { outline: none; border-color: var(--orange); background: rgba(255,128,0,0.05); }
.qform select option { background: var(--ink-2); }
.qform__route { min-height: 1.8rem; margin-top: 1.5rem; color: var(--orange); font-family: var(--serif); font-style: italic; font-size: 1.15rem; text-align: center; }
.qform__submit { margin-top: 1.1rem; width: 100%; }
.qform__success { margin-top: 1.5rem; color: var(--orange); font-family: var(--display); font-weight: 500; text-align: center; }
@media (max-width: 640px) { .qform__grid { grid-template-columns: 1fr; } }

/* ════════ SERVICES ACCORDION ════════ */
.services { padding: var(--gap) var(--pad); }
.services > * { max-width: 64rem; margin-inline: auto; }
.services__head { margin-bottom: clamp(3rem, 6vh, 5rem); }
.svc-list { border-top: 1px solid var(--line); }
.svc-item {
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  position: relative; overflow: hidden;
  transition: border-left-color 0.25s, padding-left 0.25s;
}
.svc-item.is-open { border-left-color: var(--orange); padding-left: 0.75rem; }
.svc-row {
  display: flex; align-items: center; gap: 1.5rem;
  width: 100%; background: none; border: 0; color: var(--paper);
  padding: 1.5rem 0; cursor: pointer; text-align: left;
}
.svc-num {
  font-family: var(--display); font-weight: 500; font-size: 0.78rem;
  color: var(--grey-dim); letter-spacing: 0.12em; min-width: 2rem;
  transition: color 0.2s;
}
.svc-item.is-open .svc-num { color: var(--orange); }
.svc-icon {
  width: 2.6rem; height: 2.6rem; border-radius: 0.55rem; flex-shrink: 0;
  background: rgba(255,128,0,0.12); border: 1px solid rgba(255,128,0,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.svc-icon svg { width: 1.15rem; height: 1.15rem; }
.svc-name {
  flex: 1; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.9rem); letter-spacing: -0.02em;
}
.svc-toggle {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(242,237,230,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 300; line-height: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.svc-toggle::before { content: "+"; }
.svc-item.is-open .svc-toggle { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.svc-item.is-open .svc-toggle::before { content: "×"; }
.svc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.22,1,0.36,1); }
.svc-body__inner { overflow: hidden; min-height: 0; }
.svc-item.is-open .svc-body { grid-template-rows: 1fr; }
.svc-body__content { padding: 0.25rem 0 2rem calc(2rem + 1.5rem + 2.6rem + 1.5rem); }
.svc-body__text { color: var(--grey); max-width: 54ch; line-height: 1.7; margin-bottom: 1.5rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.svc-tags span {
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2rem;
  border: 1px solid rgba(255,128,0,0.35); color: var(--orange);
}
.svc-item.is-open::after {
  content: attr(data-index);
  position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-weight: 900;
  font-size: clamp(5rem, 11vw, 9rem); line-height: 1;
  color: rgba(255,128,0,0.06); pointer-events: none; letter-spacing: -0.04em;
}
@media (max-width: 640px) {
  .svc-body__content { padding-left: 0; }
  .svc-name { font-size: 1.1rem; }
  .svc-row { gap: 1rem; }
}

/* ════════ FOOTER ════════ */
.footer { padding: clamp(3rem, 7vh, 5rem) var(--pad) 2.5rem; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer__row { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; }
.footer__brand p:last-child { color: var(--grey-dim); max-width: 22rem; margin-top: 1rem; font-size: 0.95rem; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer__h { font-family: var(--display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 1rem; }
.footer__cols a { display: block; color: var(--grey); padding: 0.3rem 0; font-size: 0.95rem; transition: color 0.2s; }
.footer__cols a:hover { color: var(--orange); }
.footer__nav2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.footer__nav2col > div a { display: block; color: var(--grey); padding: 0.3rem 0; font-size: 0.95rem; transition: color 0.2s; }
.footer__nav2col > div a:hover { color: var(--orange); }
.footer__legal { color: var(--grey-dim); font-size: 0.8rem; padding-top: 2.5rem; }
@media (max-width: 880px) { .footer__row { grid-template-columns: 1fr; } .footer__cols { grid-template-columns: 1fr; } }

/* ════════ static QA mode (?static=1) + no-motion fallback ════════ */
.static .hero { min-height: 720px; }
.static .cases__track { flex-direction: column; }
.static .casepanel { flex: 0 0 auto; width: 100%; min-height: 640px; min-height: revert; }
.static .grain, .static .hero__cue, .static .hero__warpline, .static .hero__compete { display: none; }
.static .hud, .static .hero__takeover { opacity: 1; }
.static .corridor { height: auto; perspective: none; overflow: visible; margin-inline: 0; background-image: none; }
.static .corridor__cam { position: static; transform: none !important; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.static .corridor .poster { position: static; transform: none !important; opacity: 1 !important; visibility: visible !important; }
.static .stopper__svg, .static .stopper__top, .static .stopper__bottom { display: none; }
.static .greviews__track { animation: none; flex-wrap: wrap; width: auto; padding: 0 var(--pad); }

/* ── scroll-perf: drop backdrop-blur where GPUs are weakest ──
   A blur on a *fixed* element re-samples everything behind it every scroll
   frame — the single biggest scroll-jank source on phones/tablets. A solid-ish
   background reads virtually the same and composites for free. Desktop keeps
   the glass (see .nav.is-scrolled / .sticky-cta above). */
@media (hover: none), (max-width: 700px) {
  .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10,9,8,0.94); }
  .sticky-cta { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10,9,8,0.96); }
}

/* ════════ reduced motion ════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .ticker__track, .logowall__track, .grain { animation: none; }
  .hero__cue { display: none; }
}


/* ── testimonial wall (R2 click-to-play) ── */
.film--t { grid-column: span 2 !important; }
.film__poster { display: block; width: 100%; border: 1px solid var(--line); background: var(--ink-2); padding: 0; cursor: pointer; font: inherit; color: inherit; }
.film__poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.film__poster.playing .film__play, .film__poster.playing img { display: none; }
.film figcaption em { display: block; color: var(--orange); font-style: normal; font-size: 0.82rem; margin-top: 0.15rem; }
@media (max-width: 860px) { .film--t { grid-column: span 3 !important; } }


/* ── cinema testimonial stage ── */
.cine { margin-top: clamp(2.5rem, 5vh, 4rem); }
.cine__stage { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; max-width: 1180px; }
.cine__framewrap { position: relative; }
.cine__glow { position: absolute; inset: -18%; background: radial-gradient(closest-side, rgba(255,128,0,0.22), transparent 70%); filter: blur(30px); pointer-events: none; }
.cine__frame {
  position: relative; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden;
  background: var(--ink-2); border: 1px solid rgba(255,128,0,0.35);
  box-shadow: 0 50px 140px -40px rgba(255,128,0,0.35), 0 30px 80px rgba(0,0,0,0.65);
  transform: rotate(-1.2deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cine__frame:hover { transform: rotate(0deg) scale(1.01); }
.cine__frame.playing { transform: rotate(0deg); }
.cine__frame img, .cine__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cine__frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(242,237,230,0.08), inset 0 -80px 90px -60px rgba(0,0,0,0.7); pointer-events: none; }
.cine__frame.playing::after { display: none; }
.cine__play {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; z-index: 2;
  border-radius: 50%; border: 0; cursor: pointer; background: var(--orange); color: var(--ink);
  display: grid; place-items: center; transition: transform 0.25s ease, background 0.25s ease;
}
.cine__play:hover { transform: scale(1.1); background: var(--orange-up); }
.cine__playicon { font-size: 1.5rem; margin-left: 4px; }
.cine__playring { position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255,128,0,0.55); animation: cinepulse 2.2s ease-out infinite; }
@keyframes cinepulse { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.22); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cine__playring { animation: none; } }

.cine__metric { font-family: var(--display); font-weight: 800; font-size: clamp(3.4rem, 7.5vw, 6.2rem); line-height: 0.95; letter-spacing: -0.02em; color: var(--orange); }
.cine__mlabel { font-family: var(--display); font-weight: 500; font-size: clamp(0.95rem, 1.4vw, 1.15rem); letter-spacing: 0.02em; color: var(--paper); margin-top: 0.5rem; }
.cine__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.4; color: var(--grey); margin-top: 1.6rem; max-width: 24ch; }
.cine__who { margin-top: 1.6rem; }
.cine__who strong { font-family: var(--display); font-weight: 700; font-size: 1.02rem; display: block; }
.cine__who span { font-size: 0.84rem; color: var(--grey-dim); }
.cine__veri { margin-top: 1.1rem; font-size: 0.78rem; color: var(--grey-dim); letter-spacing: 0.04em; }
.cine__stars { color: var(--orange); letter-spacing: 0.2em; }
.cine--noquote .cine__metric, .cine--noquote .cine__mlabel { display: none; }
.cine--noquote .cine__quote { margin-top: 0; }

.cine__rail { display: flex; gap: 0.9rem; margin-top: clamp(2rem, 4vh, 3rem); overflow-x: auto; padding: 0.5rem 0.25rem 1rem; scroll-snap-type: x proximity; scrollbar-width: none; }
.cine__rail::-webkit-scrollbar { display: none; }
.cine__thumb {
  flex: 0 0 104px; scroll-snap-align: start; border: 0; background: none; padding: 0; cursor: pointer;
  font-family: var(--display); color: var(--grey-dim); font-size: 0.72rem; letter-spacing: 0.04em; text-align: center;
}
.cine__thumb img {
  width: 104px; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 14px; display: block;
  border: 1px solid var(--line); opacity: 0.55; filter: saturate(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}
.cine__thumb span { display: block; margin-top: 0.5rem; }
.cine__thumb:hover img { opacity: 0.9; transform: translateY(-4px); }
.cine__thumb.is-active img { opacity: 1; filter: none; border-color: var(--orange); box-shadow: 0 12px 40px -12px rgba(255,128,0,0.45); }
.cine__thumb.is-active { color: var(--paper); }

@media (max-width: 900px) {
  .cine__stage { grid-template-columns: 1fr; gap: 2rem; }
  .cine__framewrap { max-width: 300px; margin: 0 auto; width: 100%; }
  .cine__quote { max-width: none; }
}


/* ── testimonial triptych wall ── */
.ctwall { margin-top: clamp(2.5rem, 5vh, 4.5rem); }
.ctwall__trio { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: clamp(1.2rem, 2.6vw, 2.4rem); align-items: end; }
.ct { margin: 0; position: relative; }
.ct__glow { position: absolute; inset: -12% -12% 18%; background: radial-gradient(closest-side, rgba(255,128,0,0.16), transparent 70%); filter: blur(28px); pointer-events: none; }
.ct__frame {
  position: relative; aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden;
  background: var(--ink-2); border: 1px solid rgba(242,237,230,0.1);
  box-shadow: 0 36px 90px -30px rgba(0,0,0,0.8);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.ct__frame img, .ct__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ct__frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(242,237,230,0.07), inset 0 -70px 80px -55px rgba(0,0,0,0.65); pointer-events: none; }
.ct__frame.playing::after { display: none; }
.ct--big .ct__frame { border-color: rgba(255,128,0,0.3); }
.ct--l .ct__frame { transform: rotate(-1.4deg); }
.ct--r .ct__frame { transform: rotate(1.4deg); }
.ct--c { z-index: 2; }
.ct--c .ct__frame { box-shadow: 0 50px 130px -35px rgba(255,128,0,0.3), 0 36px 90px -30px rgba(0,0,0,0.8); }
.ct--c .ct__glow { inset: -16% -16% 14%; background: radial-gradient(closest-side, rgba(255,128,0,0.24), transparent 70%); }
.ct:hover .ct__frame { transform: rotate(0deg) translateY(-6px); border-color: var(--orange); }
.ct__play {
  position: absolute; inset: 0; margin: auto; width: 70px; height: 70px; z-index: 2;
  border-radius: 50%; border: 0; cursor: pointer; background: var(--orange); color: var(--ink);
  display: grid; place-items: center; transition: transform 0.25s ease, background 0.25s ease;
}
.ct--sm .ct__play { width: 54px; height: 54px; }
.ct__play:hover { transform: scale(1.12); background: var(--orange-up); }
.ct__icon { font-size: 1.25rem; margin-left: 3px; }
.ct__ring { position: absolute; inset: -9px; border-radius: 50%; border: 1px solid rgba(255,128,0,0.4); animation: cinepulse 2.8s ease-out infinite; }
.ct figcaption { padding: 1.1rem 0.4rem 0; }
.ct__metric { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1; letter-spacing: -0.02em; color: var(--orange); }
.ct__mlabel { font-family: var(--display); font-weight: 500; font-size: 0.86rem; color: var(--paper); margin-top: 0.35rem; }
.ct__quote { font-family: var(--serif); font-style: italic; font-size: 0.98rem; line-height: 1.45; color: var(--grey); margin-top: 0.7rem; }
.ct__who { margin-top: 0.7rem; font-size: 0.78rem; }
.ct__who strong { font-family: var(--display); font-weight: 700; color: var(--paper); display: block; font-size: 0.88rem; }
.ct__who span { color: var(--grey-dim); }
.ctwall__quartet { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); margin-top: clamp(2rem, 4.5vh, 3.5rem); }
.ctwall__veri { margin-top: clamp(1.8rem, 3.5vh, 2.6rem); text-align: center; font-size: 0.8rem; color: var(--grey-dim); letter-spacing: 0.05em; }
.ctwall__veri span { color: var(--orange); letter-spacing: 0.2em; margin-right: 0.4rem; }
@media (max-width: 980px) {
  .ctwall__trio { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 2.2rem; }
  .ct--l .ct__frame, .ct--r .ct__frame { transform: none; }
  .ctwall__quartet { grid-template-columns: 1fr 1fr; max-width: 440px; margin: 2.4rem auto 0; gap: 1.4rem 1.2rem; }
  .dossier__about, .dossier__quote { line-height: 1.6; }
}

/* built-by-veblen mini brief on testimonial cards */
.ct__tag { display: block; font-style: normal; color: var(--orange); font-size: 0.72rem; margin-top: 0.2rem; }
.ct__built { display: flex; gap: 0.7rem; align-items: center; margin-top: 0.8rem; padding: 0.6rem; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: var(--grey); transition: border-color 0.25s ease, transform 0.25s ease; }
.ct__built:hover { border-color: var(--orange); transform: translateY(-2px); }
.ct__built img { width: 52px; height: 78px; object-fit: cover; object-position: top; border-radius: 7px; border: 1px solid var(--line); }
.ct__built span { font-size: 0.7rem; line-height: 1.35; letter-spacing: 0.02em; }
.ct__built b { display: block; font-family: var(--display); font-weight: 700; color: var(--paper); font-size: 0.74rem; margin-bottom: 0.15rem; }


/* ── case dossiers (fortune-500 panels) ── */
.ctwall__dossiers { display: grid; gap: 2.5rem; }
.dossier {
  display: grid; grid-template-columns: clamp(200px, 20vw, 260px) 1.25fr minmax(260px, 360px);
  gap: clamp(1.4rem, 2.8vw, 2.6rem); align-items: stretch;
  border: 1px solid var(--line); border-radius: 22px; background: var(--ink-2);
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
  transition: border-color 0.3s ease;
}
.dossier:hover { border-color: rgba(255, 128, 0, 0.4); }
.dossier__video .ct__frame { border-color: rgba(255, 128, 0, 0.3); }
.dossier__body { display: flex; flex-direction: column; min-width: 0; text-align: left; }
.dossier__client { font-family: var(--display); font-weight: 800; font-size: 1rem; letter-spacing: 0.16em; color: var(--paper); }
.dossier__client span { display: block; font-weight: 400; letter-spacing: 0.04em; font-size: 0.74rem; color: var(--grey-dim); margin-top: 0.3rem; text-transform: none; }
.dossier__metric { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 4.8vw, 4.2rem); line-height: 1; letter-spacing: -0.02em; color: var(--orange); margin-top: 1.2rem; }
.dossier__metric em { font-style: normal; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1.5; color: var(--paper); display: block; margin-top: 0.55rem; }
.dossier__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.45; color: var(--grey); margin-top: 1.1rem; max-width: 36ch; }
.dossier__who { font-size: 0.78rem; color: var(--grey-dim); margin-top: 0.45rem; }
.dossier__about { font-size: 0.88rem; line-height: 1.65; color: var(--grey); margin-top: 1rem; max-width: 44ch; }
.dossier__did { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.dossier__did b { font-family: var(--display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-dim); }
.dossier__chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.6rem; }
.dossier__chips span { font-family: var(--display); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.03em; color: var(--paper); border: 1px solid rgba(255, 128, 0, 0.35); border-radius: 999px; padding: 0.3rem 0.75rem; }
.dossier__more { margin-top: auto; padding-top: 1.2rem; font-family: var(--display); font-weight: 600; font-size: 0.84rem; color: var(--orange); text-decoration: none; }
.dossier__more:hover { text-decoration: underline; }
.dossier__site { display: flex; flex-direction: column; border: 1px solid rgba(255,128,0,0.18); border-radius: 14px; overflow: hidden; text-decoration: none; background: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,0.45); transition: border-color 0.25s ease, transform 0.25s ease; }
.dossier__site:hover { border-color: var(--orange); transform: translateY(-3px); }
.dossier__site .siteshot__bar { display: flex; align-items: center; gap: 0.35rem; padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--line); background: var(--ink-2); }
.dossier__site .siteshot__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--grey-dim); opacity: 0.5; }
.dossier__site .siteshot__bar b { margin-left: 0.5rem; font-family: var(--display); font-weight: 500; font-size: 0.72rem; color: var(--grey-dim); letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dossier__site > img { width: 100%; flex: 1; height: 320px; object-fit: cover; object-position: top; display: block; min-height: 0; }
.dossier__sitecap { padding: 0.8rem 1rem; font-size: 0.76rem; color: var(--grey-dim); border-top: 1px solid var(--line); }
@media (max-width: 1080px) {
  .dossier { grid-template-columns: clamp(180px, 26vw, 240px) 1fr; }
  .dossier__site { grid-column: 1 / -1; max-height: 360px; }
  .dossier__site > img { max-height: 250px; }
}
@media (max-width: 640px) {
  .dossier { grid-template-columns: 1fr; }
  .dossier__video { max-width: 240px; }
}


/* ── phone-frame testimonial grid (research-backed v5) ── */
.phgrid { margin-top: clamp(2.5rem, 5vh, 4rem); }
.ph-belt-stage { width: 100%; overflow: hidden; position: relative; padding-bottom: 2.5rem; }
.ph-belt-stage::before,
.ph-belt-stage::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.ph-belt-stage::before { left: 0; background: linear-gradient(to right, var(--ink) 0%, transparent 100%); }
.ph-belt-stage::after { right: 0; background: linear-gradient(to left, var(--ink) 0%, transparent 100%); }
.ph-belt-track { display: flex; gap: 28px; width: max-content; animation: phBeltScroll 70s linear infinite; align-items: flex-start; }
@keyframes phBeltScroll { from { transform: translateX(0); } to { transform: translateX(-3276px); } }
.ph-belt-track .pcard { flex: 0 0 440px; }
.ph-belt-track .ph__shell { max-width: 440px; }
.ph-belt-track figcaption { max-width: 440px; }
.ph-belt-track:has(.ph:hover) { animation-play-state: paused; }
.pcard { margin: 0; text-align: left; }
.ph__shell { position: relative; max-width: 250px; }
.pcard--sm .ph__shell { max-width: 190px; }
.ph {
  position: relative; display: block; width: 100%; padding: 9px; cursor: pointer;
  background: #050403;
  border: 1px solid rgba(242,237,230,0.13); border-radius: 40px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.85), 0 4px 18px rgba(0,0,0,0.5);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}
.pcard--sm .ph { border-radius: 32px; padding: 7px; }
.ph:hover { transform: translateY(-6px); border-color: rgba(255,128,0,0.5); box-shadow: 0 38px 80px -25px rgba(255,128,0,0.18), 0 30px 70px -25px rgba(0,0,0,0.85); }
.ph__screen { position: relative; display: block; aspect-ratio: 9 / 16; border-radius: 31px; overflow: hidden; background: var(--ink-2); }
.pcard--sm .ph__screen { border-radius: 25px; }
.ph__screen img, .ph__screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph__island { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 126px; height: 34px; border-radius: 999px; background: #050403; border: 1px solid rgba(242,237,230,0.08); z-index: 3; }
.pcard--sm .ph__island { width: 50px; height: 14px; top: 14px; }
.ph__sound {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  font-family: var(--display); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--paper); background: rgba(5,4,3,0.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(242,237,230,0.14); border-radius: 999px; padding: 0.32rem 0.7rem;
  white-space: nowrap; opacity: 0; transition: opacity 0.3s ease; z-index: 3;
}
.ph.previewing .ph__sound { opacity: 1; }
.ph.fullplay .ph__sound { display: none; }
.pcard figcaption { padding: 1.2rem 0.2rem 0; max-width: 250px; }
.pcard--sm figcaption { max-width: 190px; }
.pcard__metric { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 3.6vw, 3.2rem); line-height: 1; letter-spacing: -0.02em; color: var(--orange); }
.pcard__mlabel { font-family: var(--display); font-weight: 500; font-size: 0.88rem; line-height: 1.45; color: var(--paper); margin-top: 0.45rem; }
.pcard__quote { font-family: var(--serif); font-style: italic; font-size: 0.98rem; line-height: 1.5; color: var(--grey); margin-top: 0.8rem; }
.pcard__who { margin-top: 0.8rem; font-size: 0.76rem; }
.pcard__who strong { font-family: var(--display); font-weight: 700; color: var(--paper); display: block; font-size: 0.86rem; }
.pcard__who span { color: var(--grey-dim); }
.pcard__tag { display: block; font-style: normal; color: var(--orange); font-size: 0.7rem; margin-top: 0.2rem; }
.pcard__link { display: inline-block; margin-top: 0.5rem; font-family: var(--display); font-weight: 600; font-size: 0.72rem; color: var(--orange); text-decoration: none; }
.pcard__link:hover { text-decoration: underline; }
.phgrid__veri { margin-top: clamp(2.2rem, 4vh, 3.2rem); font-size: 0.8rem; color: var(--grey-dim); letter-spacing: 0.04em; text-align: center; }
.phgrid__veri span { color: var(--orange); letter-spacing: 0.2em; margin-right: 0.4rem; }
.phgrid__veri a { color: var(--orange); text-decoration: none; }
.phgrid__veri a:hover { text-decoration: underline; }

/* ════════ GOOGLE REVIEWS CAROUSEL ════════ */
.gr-section { padding: clamp(4rem, 8vh, 7rem) 0; overflow: hidden; background: var(--ink-2); }
.gr-section__head { text-align: center; padding: 0 var(--pad); margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.gr-section__head .secnum { justify-content: center; margin-bottom: 0.75rem; }
.gr-section__head .secnum::after { display: none; }
.gr-section__head h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-align: center; max-width: none; margin-left: auto; margin-right: auto; }
.gr-rows { display: flex; flex-direction: column; gap: 20px; }
.gr-track-wrapper { position: relative; overflow: hidden; }
.gr-track-wrapper::before,
.gr-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2; pointer-events: none;
}
.gr-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--ink-2) 0%, transparent 100%); }
.gr-track-wrapper::after  { right: 0; background: linear-gradient(270deg, var(--ink-2) 0%, transparent 100%); }
.gr-track { display: flex; gap: 20px; width: max-content; animation: grScroll 160s linear infinite; }
.gr-track--reverse { animation: grScrollReverse 160s linear infinite; }
@keyframes grScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes grScrollReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.gr-card {
  background: #ffffff; border-radius: 12px; padding: 20px 22px;
  width: 520px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px;
}
.gr-card-header { display: flex; align-items: center; gap: 10px; }
.gr-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; font-family: var(--display);
}
.gr-avatar--blue   { background: #4285F4; }
.gr-avatar--green  { background: #34A853; }
.gr-avatar--red    { background: #EA4335; }
.gr-avatar--orange { background: #FF8000; }
.gr-avatar--gray   { background: #9e9e9e; }
.gr-avatar--teal   { background: #00897B; }
.gr-avatar--purple { background: #7B1FA2; }
.gr-meta { flex: 1; min-width: 0; }
.gr-name { font-size: 13px; font-weight: 700; color: #202124; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--display); }
.gr-time { font-size: 11px; color: #70757a; }
.gr-g-logo { margin-left: auto; flex-shrink: 0; }
.gr-stars { color: #fbbc05; font-size: 13px; letter-spacing: 1px; }
.gr-text { font-size: 13px; line-height: 1.6; color: #3c4043; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.gr-more {
  align-self: flex-start; background: none; border: 0; padding: 0; margin-top: -4px;
  font-family: inherit; font-size: 12px; font-weight: 600; color: #1a73e8; cursor: pointer;
  display: none;
}
.gr-more:hover { text-decoration: underline; }
.gr-card--clamped .gr-more { display: inline-block; }
.gr-card.is-expanded .gr-text { display: block; -webkit-line-clamp: unset; overflow: visible; }

/* ════════ STICKY CTA BAR ════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  height: 72px;
  background: rgba(10,9,8,0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(242,237,230,0.08);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.sticky-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
  padding: 0.7rem 1.8rem; border-radius: 999px;
  white-space: nowrap; transition: opacity 0.18s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
  cursor: pointer; border: 1px solid transparent;
}
.sticky-cta__btn--call {
  background: var(--orange); color: var(--ink);
  box-shadow: 0 0 20px rgba(255,128,0,0.3);
}
.sticky-cta__btn--call:hover { opacity: 0.88; box-shadow: 0 0 36px rgba(255,128,0,0.55); }
.sticky-cta__btn--book {
  background: transparent; color: var(--paper);
  border-color: rgba(242,237,230,0.2);
}
.sticky-cta__btn--book:hover { border-color: rgba(255,128,0,0.5); color: var(--orange); }
@media (max-width: 480px) {
  .sticky-cta { padding: 0 16px; gap: 8px; }
  .sticky-cta__btn { flex: 1; justify-content: center; padding: 0.7rem 1rem; }
}
/* mobile menu open → its own Call/Book CTA + socials take over; hide the fixed
   sticky bar so the two booking buttons don't stack (and it stops burying the
   menu's social links, since sticky-cta sits above the overlay at z-index 9999) */
body.pnav-open .sticky-cta { display: none; }

/* ── Founder / The Gap ────────────────────────────────── */
.founder {
  padding: clamp(5rem, 10vh, 9rem) var(--pad);
  background: var(--ink);
}
.founder__editorial {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}
/* Portrait column */
.founder__portrait {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink-2);
}
.founder__portrait-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.founder__portrait-mark {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.founder__portrait-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,9,8,0.82) 100%);
}
.founder__credit {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.founder__credit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.founder__credit-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.founder__credit-role {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.01em;
  margin-top: 1px;
}
/* Copy column */
.founder__copy > .secnum {
  margin-bottom: 1.25rem;
}
.founder__headline {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 1.75rem;
  max-width: none;
}
.founder__headline em {
  font-style: italic;
  color: var(--orange);
}
.founder__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 1rem;
}
.founder__body:last-of-type {
  margin-bottom: 2.5rem;
}
.founder__body strong {
  color: var(--paper);
  font-weight: 600;
}
/* Comparison cards */
.founder__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fc-card {
  border-radius: 14px;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}
.fc-card--bad {
  background: rgba(255,80,80,0.04);
  border-color: rgba(255,80,80,0.12);
}
.fc-card--good {
  background: rgba(255,128,0,0.05);
  border-color: rgba(255,128,0,0.18);
}
.fc-top {
  height: 2px;
  border-radius: 999px;
  margin: -20px -20px 0;
  border-radius: 14px 14px 0 0;
}
.fc-top--bad { background: rgba(255,80,80,0.25); }
.fc-top--good { background: rgba(255,128,0,0.4); }
.fc-header {}
.fc-label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-block;
}
.fc-label--bad {
  background: rgba(255,80,80,0.1);
  color: rgba(255,100,100,0.85);
}
.fc-label--good {
  background: rgba(255,128,0,0.12);
  color: var(--orange);
}
.fc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--grey);
}
.fc-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}
/* Responsive */
@media (max-width: 860px) {
  .founder__editorial { grid-template-columns: 1fr; }
  .founder__portrait { aspect-ratio: 4/3; max-height: 420px; }
}
@media (max-width: 560px) {
  .founder__comparison { grid-template-columns: 1fr; }
  .founder__portrait { aspect-ratio: 3/2; }
}

/* ── HOW IT WORKS TIMELINE ── */
.howitworks { padding: var(--gap) var(--pad); }
.hiw__head { max-width: 54rem; margin-inline: auto; margin-bottom: clamp(3.5rem, 7vh, 6rem); text-align: center; }
.howitworks h2 em { color: var(--orange); font-style: normal; }
.howitworks .secnum { justify-content: center; }
.howitworks .hiw__head .sub { margin-inline: auto; }
.hiw__timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.hiw__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(255,128,0,0.5) 6%, rgba(255,128,0,0.22) 94%, transparent);
  pointer-events: none;
}
.hiw__step {
  display: grid;
  grid-template-columns: 1fr 5.5rem 1fr;
  gap: 0 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hiw__step:last-child { margin-bottom: 0; }
.hiw__step--left .hiw__node  { grid-column: 2; grid-row: 1; }
.hiw__step--left .hiw__card  { grid-column: 1; grid-row: 1; }
.hiw__step--right .hiw__node { grid-column: 2; grid-row: 1; }
.hiw__step--right .hiw__card { grid-column: 3; grid-row: 1; }
.hiw__node {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,128,0,0.35);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(242,237,230,0.5);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  flex-shrink: 0;
}
.hiw__card {
  background: rgba(242,237,230,0.04);
  border: 1px solid rgba(242,237,230,0.07);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
}
.hiw__card--media { padding: 0; overflow: hidden; }
.hiw__card-img { width: 100%; height: 200px; object-fit: cover; display: block; border-radius: 1rem 1rem 0 0; }
.hiw__card-body { padding: 1.5rem 2rem 1.75rem; }
.hiw__card--media .hiw__label { margin-bottom: 0.5rem; }
.hiw__card--media h3 { margin-bottom: 0.65rem; }
.hiw__label {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.hiw__card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--orange);
}
.hiw__card p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.92rem;
  max-width: 38ch;
}
@media (max-width: 700px) {
  .hiw__timeline::before { display: none; }
  .hiw__step { grid-template-columns: 3rem 1fr; gap: 0 1rem; }
  .hiw__step--left .hiw__node,
  .hiw__step--right .hiw__node  { grid-column: 1; grid-row: 1; width: 2.8rem; height: 2.8rem; font-size: 0.75rem; }
  .hiw__step--left .hiw__card,
  .hiw__step--right .hiw__card  { grid-column: 2; grid-row: 1; }
  .hiw__node { margin: 0; }
}

/* ── qualify form consent line (privacy) ── */
.qform__consent { margin-top: 1.2rem; font-size: 0.72rem; line-height: 1.55; color: var(--grey-dim); text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto; }
.qform__consent a { color: var(--grey); text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.qform__error { margin-top: 1.2rem; color: #e05c5c; font-size: 0.85rem; text-align: center; }
.qform__error a { color: inherit; text-decoration: underline; }
.svc-link { display: inline-block; margin-top: 0.9rem; color: var(--orange); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.svc-link:hover { text-decoration: underline; }
