/* ═══════════════════════════════════════════════════════════
   PRESTIGE MEDIA — Design System
   Dark · Atmospheric · Conversion-first
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg-deep: #050505;
  --bg-elevated: #0c0c0c;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-soft: #1a1a1a;

  --text-primary: #f5f2eb;
  --text-secondary: #a8a39a;
  --text-muted: #6b6660;
  --text-inverse: #0a0a0a;

  --accent: #c9a86c;
  --accent-soft: #d4bc8a;
  --accent-dim: rgba(201, 168, 108, 0.14);
  --accent-glow: rgba(201, 168, 108, 0.28);

  --line: rgba(245, 242, 235, 0.08);
  --line-strong: rgba(245, 242, 235, 0.14);
  --line-gold: rgba(201, 168, 108, 0.35);

  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 80px;
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── Reset & Base ─────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: var(--text-inverse);
}

/* ─── Typography ───────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.display-xl {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  letter-spacing: -0.045em;
}

.display-lg {
  font-size: clamp(2.6rem, 6.5vw, 5.25rem);
  letter-spacing: -0.04em;
}

.display-md {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.035em;
}

.display-sm {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 38rem;
}

.body-lg {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.muted {
  color: var(--text-muted);
}

.gold {
  color: var(--accent);
}

.gradient-text {
  background: linear-gradient(135deg, #f5f2eb 0%, #c9a86c 55%, #a8894f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Layout ───────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
}

.section-tight {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-label {
  margin-bottom: 1.5rem;
}

/* ─── Buttons ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  transition: transform 0.35s var(--ease-out), background 0.3s ease,
    border-color 0.3s ease, box-shadow 0.35s ease, color 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.35s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-inverse);
  box-shadow: 0 0 0 0 transparent, 0 8px 32px rgba(201, 168, 108, 0.18);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(201, 168, 108, 0.32),
    0 14px 40px rgba(201, 168, 108, 0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 168, 108, 0.05);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 242, 235, 0.18);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.8rem;
}

/* ─── Header / Nav ─────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, border-color 0.4s ease,
    backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
  flex-shrink: 0;
  min-width: 0;
}

/* Default mark sizing — clean PNG only, no plate / box */
.logo-mark {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
}

/* Nav logo — full Prestige wordmark PNG, no plate / box / background */
.site-header .logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

.site-header .logo-mark {
  width: auto;
  height: 36px;
  min-width: 0;
  min-height: 0;
  max-height: 36px;
  max-width: min(200px, 48vw);
  background: transparent !important;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: left center;
  /* White logo artwork: knock out any solid black plate if present */
  mix-blend-mode: lighten;
  filter: none;
}

@media (min-width: 1024px) {
  .site-header .logo-mark {
    height: 42px;
    max-height: 42px;
    max-width: 240px;
  }
}

/* Nav: mark only — hide text wordmark */
.site-header .logo-text {
  display: none !important;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.logo:hover .logo-text {
  color: var(--accent-soft);
}

.logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-top: 0.1rem;
}

/* Footer — logo image only (no duplicate wordmark text, no box) */
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-mark {
  display: block;
  width: auto;
  height: 72px;
  min-width: 0;
  min-height: 0;
  max-height: 72px;
  max-width: 280px;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  box-shadow: none !important;
  mix-blend-mode: lighten;
}

.footer-brand .logo-text {
  display: none !important;
}

@media (min-width: 768px) {
  .footer-brand .logo-mark {
    height: 88px;
    max-height: 88px;
    max-width: 320px;
    width: auto;
    min-width: 0;
    min-height: 0;
    border-radius: 0 !important;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0.55rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, padding-left 0.3s var(--ease-out);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text-primary);
  padding-left: 0.75rem;
}

.mobile-menu-footer {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* ─── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.55) 0%,
      rgba(5, 5, 5, 0.35) 35%,
      rgba(5, 5, 5, 0.92) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 70% 20%,
      rgba(201, 168, 108, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(201, 168, 108, 0.06) 0%,
      transparent 50%
    );
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-copy h1 {
  margin-bottom: 1.5rem;
}

.hero-copy .lead {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-positioning {
  max-width: 36rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

.hero-positioning strong {
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 400;
}

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 10vw, 6.5rem));
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 108, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 52rem;
}

.page-hero h1 {
  margin: 1rem 0 1.25rem;
}

/* ─── Path cards ───────────────────────────────────────── */

.path-section {
  position: relative;
  margin-top: -2rem;
  z-index: 5;
}

.path-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .path-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(
    160deg,
    rgba(20, 20, 20, 0.95) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.45s var(--ease-out),
    box-shadow 0.45s ease;
  min-height: 280px;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 100% 0%,
    var(--accent-dim) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.path-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 108, 0.12);
}

.path-card:hover::before {
  opacity: 1;
}

.path-card-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  position: relative;
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  position: relative;
}

.path-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
  position: relative;
  max-width: 28rem;
}

.path-card .path-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

.path-card .path-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.35s var(--ease-out);
}

.path-card:hover .path-link svg {
  transform: translateX(4px);
}

/* ─── Split sections ───────────────────────────────────── */

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split-reverse .split-visual {
    order: -1;
  }
}

.split-visual {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

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

/* Show full product UI (Pillar Two kiosk) — zoomed out, edge to edge */
.split-visual.split-visual-full {
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
}

.split-visual.split-visual-full img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
}

.split-visual.split-visual-full .split-visual-frame {
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(5, 5, 5, 0.55) 100%
  );
}

.split-visual-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      transparent 40%,
      rgba(5, 5, 5, 0.75) 100%
    ),
    radial-gradient(
      ellipse at 30% 20%,
      rgba(201, 168, 108, 0.15),
      transparent 50%
    );
  pointer-events: none;
}

.split-visual-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.split-content h2 {
  margin-bottom: 1.15rem;
}

.split-content .body-lg {
  margin-bottom: 1.5rem;
}

/* ─── Bento ────────────────────────────────────────────── */

.bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
  }

  .bento-lg {
    grid-column: span 7;
  }

  .bento-sm {
    grid-column: span 5;
  }

  .bento-md {
    grid-column: span 6;
  }

  .bento-full {
    grid-column: span 12;
  }

  .bento-third {
    grid-column: span 4;
  }
}

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}

.bento-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bento-card.accent-surface {
  background: linear-gradient(
      145deg,
      rgba(201, 168, 108, 0.12) 0%,
      rgba(17, 17, 17, 1) 55%
    ),
    var(--bg-card);
}

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--line-gold);
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.bento-icon svg {
  width: 20px;
  height: 20px;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Marquee ──────────────────────────────────────────── */

.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
  overflow: hidden;
  padding-block: 1.15rem;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

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

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee-item::after {
  content: "◆";
  font-size: 0.45rem;
  color: var(--accent);
  opacity: 0.7;
}

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

/* ─── Include list ─────────────────────────────────────── */

.include-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.include-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.include-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.include-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.include-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Client cards ─────────────────────────────────────── */

.client-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: clamp(1.5rem, 3vw, 1.85rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}

.client-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.client-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.client-initials {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--line-gold);
}

.client-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.client-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.client-card .client-person {
  font-size: 0.88rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.client-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

/* ─── Spotlight ────────────────────────────────────────── */

.spotlight {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--line-gold);
  background: radial-gradient(
      ellipse 70% 80% at 0% 50%,
      rgba(201, 168, 108, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #141210 0%, #0c0c0c 50%, #111 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .spotlight-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--line-gold);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.spotlight h2 {
  margin-bottom: 1rem;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Video frame ──────────────────────────────────────── */

.video-frame {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  isolation: isolate;
}

.video-frame video,
.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-frame video {
  object-fit: contain;
  background: #000;
}

.video-frame iframe {
  z-index: 1;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: radial-gradient(
      ellipse at center,
      rgba(201, 168, 108, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #151515, #0a0a0a);
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 60px var(--accent-glow);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

/* ─── Quote ────────────────────────────────────────────── */

.quote-block {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}

.quote-block::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  background: radial-gradient(
    circle,
    rgba(201, 168, 108, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.quote-block blockquote {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── CTA banner ───────────────────────────────────────── */

.cta-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  background: radial-gradient(
      ellipse 80% 100% at 50% 100%,
      rgba(201, 168, 108, 0.14) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}

.cta-banner h2 {
  margin: 0.75rem auto 1rem;
  max-width: 18ch;
}

.cta-banner .lead {
  margin: 0 auto 2rem;
  text-align: center;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ─── Contact form ─────────────────────────────────────── */

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--line-gold);
}

.contact-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.contact-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23a8a39a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field select option {
  background: #151515;
  color: var(--text-primary);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ─── Footer ───────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 2rem;
  background: var(--bg-elevated);
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}

/* footer logo spacing handled above */

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 28rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Utility ──────────────────────────────────────────── */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.limited-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--line-gold);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.limited-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(201, 168, 108, 0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(201, 168, 108, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

.rule-gold {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1.5rem 0;
}

.cap-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cap-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--line-gold);
  margin-left: 0.6rem;
  padding-left: 1.75rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1.75rem - 5px);
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg-deep);
}

.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 1003;
  pointer-events: none;
}

/* Featured video testimonial (Dr. John, etc.) */
.featured-testimonial {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line-gold);
  border-radius: 1.35rem;
  background:
    radial-gradient(
      ellipse 70% 80% at 0% 50%,
      rgba(201, 168, 108, 0.08) 0%,
      transparent 55%
    ),
    var(--bg-card);
}

@media (min-width: 900px) {
  .featured-testimonial {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
    gap: 2rem;
    padding: 1.75rem;
  }
}

.featured-testimonial .video-frame {
  margin: 0;
  border-radius: 1rem;
  width: 100%;
  min-width: 0;
  /* Always paint immediately — never hide behind reveal opacity */
  opacity: 1 !important;
  transform: none !important;
}

.featured-testimonial .video-frame iframe,
.featured-testimonial .video-frame video {
  pointer-events: auto;
  z-index: 1;
}

/* YouTube facade — thumbnail always visible, loads iframe on click */
.yt-facade {
  cursor: pointer;
}

.yt-facade-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  display: block;
}

.yt-facade-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-facade-btn .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 168, 108, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s var(--ease-out), background 0.25s ease;
}

.yt-facade-btn .yt-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #0a0a0a;
}

.yt-facade-btn:hover .yt-play,
.yt-facade-btn:focus-visible .yt-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--accent-soft);
}

.yt-facade.is-playing .yt-facade-btn {
  display: none;
}

.featured-testimonial-meta {
  padding: 0.25rem 0.5rem 0.5rem;
  min-width: 0;
}

.featured-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.featured-testimonial-meta .t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.featured-testimonial-meta .t-role {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonial-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: clamp(1.5rem, 3vw, 1.85rem);
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.testimonial-card .t-name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.testimonial-card .t-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

  .marquee {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .limited-pill .dot {
    animation: none;
  }
}
