/* ============================================================
   EBIZON DIGITAL — PRESTIGE AGENCY REDESIGN
   minimalist-skill with agency-portfolio extensions
   Brand palette: amber (#F7BB17) + ink navy (#0F172A) + off-white (#FAFAF9)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #FAFAF9;
  --bg-card: #FFFFFF;
  --bg-tint: #F3F4F2;
  --bg-deep: #0F172A;
  --bg-deep-soft: #1E293B;
  --text-primary: #0F172A;
  --text-muted: #475569;
  --text-subtle: #64748B;
  --text-on-dark: #E2E8F0;
  --text-on-dark-muted: #94A3B8;
  --accent: #F7BB17;
  --accent-hover: #E0A50F;
  --accent-subtle: rgba(247, 187, 23, 0.10);
  --accent-on-dark: #FFD74A;
  --hairline: rgba(15, 23, 42, 0.08);
  --hairline-strong: rgba(15, 23, 42, 0.16);
  --hairline-on-dark: rgba(226, 232, 240, 0.12);
  --hairline-on-dark-strong: rgba(226, 232, 240, 0.24);

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 72px;
  --container-gutter: clamp(24px, 4vw, 56px);
  --container-max: 1320px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-subtle: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 2px 4px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-elevated: 0 12px 32px rgba(15, 23, 42, 0.10), 0 24px 64px rgba(15, 23, 42, 0.08);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--hairline); margin: 0; }

/* ---------- TYPOGRAPHY ---------- */
.display, h1.display, .hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 5rem); font-family: var(--font-display); font-weight: 400; letter-spacing: -0.018em; line-height: 0.98; margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; margin: 0 0 var(--space-md); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.625rem); font-family: var(--font-body); font-weight: 600; letter-spacing: -0.012em; line-height: 1.2; margin: 0 0 var(--space-sm); }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 var(--space-xs); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.6;
}
.lede { font-size: clamp(1.0625rem, 1.4vw, 1.25rem); line-height: 1.55; color: var(--text-muted); max-width: 62ch; margin: 0; }

em, .italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-gutter);
}
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 88px); }
.section--dark {
  background: var(--bg-deep);
  color: var(--text-on-dark);
}
.section--dark .eyebrow, .section--dark .lede, .section--dark p { color: var(--text-on-dark-muted); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--tint { background: var(--bg-tint); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 249, 0.88);
  border-bottom-color: var(--hairline);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
}
/* CRITICAL: drop backdrop-filter when mobile menu is open — fixes the containing-block trap */
.nav.open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--bg);
}
.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-lg);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 2px;
  line-height: 1;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-logo .dot { color: var(--accent); font-family: var(--font-body); font-weight: 700; font-size: 1rem; transform: translateY(-6px); }
.nav-logo em { font-style: italic; color: var(--text-primary); }
/* Lead modal brand lockup */
.lead-modal__brand {
  display: inline-flex; align-items: center;
  margin-bottom: 18px;
  opacity: 0.88;
}
.lead-modal__brand img { height: 22px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: clamp(16px, 2vw, 32px);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent-hover); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--accent);
}
.nav-cta {
  padding: 10px 18px;
  background: var(--text-primary);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--bg-deep-soft); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; }

/* Mobile menu — hidden on desktop by default (prevents duplicate nav bug) */
.nav-mobile { display: none; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-mobile {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    bottom: 0;
    background: var(--bg);
    padding: var(--space-lg) var(--container-gutter) var(--space-xl);
    z-index: 200;
    overflow-y: auto;
    gap: var(--space-sm);
  }
  .nav.open .nav-mobile a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid var(--hairline);
    color: var(--text-primary);
  }
  .nav.open .nav-mobile a.active { color: var(--accent-hover); }
  .nav.open .nav-mobile .nav-mobile-cta {
    margin-top: var(--space-md);
    align-self: flex-start;
    padding: 14px 26px;
    background: var(--text-primary);
    color: var(--bg);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 0;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; stroke-width: 2; }
.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(247, 187, 23, 0.28);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(247, 187, 23, 0.36); }
.btn-secondary {
  background: var(--text-primary);
  color: var(--bg);
}
.btn-secondary:hover { background: var(--bg-deep-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--text-primary); }
.section--dark .btn-ghost { color: var(--text-on-dark); border-color: var(--hairline-on-dark-strong); }
.section--dark .btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--text-on-dark); }
.section--dark .btn-primary { color: var(--bg-deep); }

.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(64px, 10vw, 120px));
  padding-bottom: clamp(72px, 10vw, 140px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 15%, rgba(247, 187, 23, 0.08), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(15, 23, 42, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--text-primary);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute; left: 0; right: 8%; bottom: 0.08em;
  height: 0.14em;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.7;
}
.hero-lede {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 54ch;
  margin: clamp(20px, 3vw, 32px) 0 clamp(28px, 3.5vw, 40px);
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-ctas .meta {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-side {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 18px;
}
.hero-side-label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-subtle); font-weight: 600;
}
.hero-side-title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.15; margin: 0; }
.partner-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 0; padding: 0; list-style: none; }
.partner-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-top: 1px solid var(--hairline);
}
.partner-list li:first-child, .partner-list li:nth-child(2) { border-top: 0; padding-top: 0; }
.partner-list strong { color: var(--text-primary); font-weight: 600; font-size: 0.8125rem; letter-spacing: -0.003em; }
.partner-list .tier {
  display: inline-block; font-size: 0.6875rem; padding: 2px 6px;
  background: var(--accent-subtle); color: var(--accent-hover);
  border-radius: 4px; font-weight: 600; letter-spacing: 0.02em;
}

/* ---------- PARTNER-LOGO CARD (hero sidebar) ---------- */
.partner-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner-logos li {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 10px;
  padding: 16px 14px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  min-height: 96px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.partner-logos li:hover { border-color: var(--hairline-strong); transform: translateY(-1px); }
.partner-logos .plogo {
  height: 28px;
  display: flex; align-items: center;
}
.partner-logos .plogo img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.partner-logos .ptier {
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-hover); font-weight: 700;
}
.partner-logos .ptier-label {
  color: var(--text-muted); font-weight: 500; margin-right: 6px;
}

/* ---------- PARTNER-LOGO STRIP (inline on interior pages) ---------- */
.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px);
  align-items: stretch;
  margin-top: clamp(24px, 4vw, 40px);
}
.partner-strip-item {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(18px, 2.5vw, 28px);
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  min-height: 120px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-strip-item:hover { border-color: var(--hairline-strong); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.partner-strip-item .plogo { height: 34px; display: flex; align-items: center; }
.partner-strip-item .plogo img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.partner-strip-item .ptier {
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-hover); font-weight: 700;
}
.partner-strip-item .pline {
  font-size: 0.8125rem; color: var(--text-muted); line-height: 1.45; margin: 0;
}
@media (max-width: 900px) { .partner-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .partner-strip { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { order: 2; }
}

/* ---------- STAT BAND ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--hairline);
  background: var(--bg);
}
.stat-band .stat {
  padding: clamp(28px, 4vw, 48px) clamp(18px, 2.5vw, 32px);
  border-left: 1px solid var(--hairline);
}
.stat-band .stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.stat-num em { color: var(--accent); font-style: italic; }
.stat-label {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 900px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-band .stat:nth-child(3) { border-top: 1px solid var(--hairline); }
  .stat-band .stat:nth-child(3), .stat-band .stat:nth-child(1) { border-left: 0; }
}

/* ---------- PARTNER MARQUEE ---------- */
.marquee-band {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: clamp(32px, 5vw, 56px);
  overflow: hidden;
  border-block: 1px solid var(--hairline-on-dark);
}
.marquee-eyebrow {
  text-align: center;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-on-dark-muted); font-weight: 500;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.marquee {
  display: flex; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-row { display: flex; gap: clamp(48px, 6vw, 88px); animation: marquee-scroll 42s linear infinite; flex-shrink: 0; padding-right: clamp(48px, 6vw, 88px); }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  color: var(--text-on-dark);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.marquee-item .pill {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: var(--radius-pill);
  line-height: 1.3;
}
.marquee-item .dot { color: var(--accent-on-dark); font-family: var(--font-body); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head-title { max-width: 18ch; }
.section-head-lede { color: var(--text-muted); max-width: 50ch; font-size: 1.0625rem; line-height: 1.6; }
.section--dark .section-head-lede { color: var(--text-on-dark-muted); }
@media (max-width: 768px) { .section-head { grid-template-columns: 1fr; align-items: start; } }

/* ---------- SERVICE CARD GRID ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--bg-card);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: background 0.3s ease;
  opacity: 1 !important;
}
.svc-card:hover { background: var(--bg-tint); }
.svc-ic {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  color: var(--accent-hover);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-ic svg { width: 22px; height: 22px; stroke-width: 1.75; }
.svc-card h3 { font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.svc-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.svc-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.svc-link:hover { color: var(--accent-hover); }
.svc-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- PILLARS ---------- */
.pillar-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.pillar {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--hairline-strong); }
.pillar-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--accent-hover);
}
.pillar h3 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; letter-spacing: -0.012em; line-height: 1.05; }
.pillar p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.pillar .svc-link { border-top: 0; padding-top: 0; margin-top: auto; }
@media (max-width: 900px) { .pillar-row { grid-template-columns: 1fr; } }

/* ---------- BENTO (CASE STUDIES) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: clamp(12px, 1.5vw, 20px);
}
.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.bento-tag {
  display: inline-flex; align-items: center;
  align-self: flex-start;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill); color: var(--text-muted); font-weight: 600;
}
.bento-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.08; margin: 0; }
.bento-outcome { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; margin: 0; }
.bento-metric {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem); line-height: 0.95;
  margin: auto 0 0; color: var(--text-primary);
  letter-spacing: -0.02em;
}
.bento-metric em { color: var(--accent); font-style: italic; }

.bento-card.is-wide { grid-column: span 4; }
.bento-card.is-normal { grid-column: span 3; }
.bento-card.is-narrow { grid-column: span 2; }
.bento-card.is-tall { grid-row: span 2; }

.bento-card.is-dark { background: var(--bg-deep); color: var(--text-on-dark); border-color: var(--hairline-on-dark); }
.bento-card.is-dark .bento-tag { color: var(--text-on-dark-muted); border-color: var(--hairline-on-dark-strong); }
.bento-card.is-dark .bento-outcome { color: var(--text-on-dark-muted); }
.bento-card.is-dark .bento-metric { color: var(--text-on-dark); }
.bento-card.is-dark .bento-metric em { color: var(--accent-on-dark); }

.bento-card.is-accent { background: var(--accent); color: var(--bg-deep); border-color: transparent; }
.bento-card.is-accent .bento-tag { border-color: rgba(15, 23, 42, 0.28); color: rgba(15, 23, 42, 0.7); }
.bento-card.is-accent .bento-outcome { color: rgba(15, 23, 42, 0.8); }
.bento-card.is-accent .bento-metric { color: var(--bg-deep); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.is-wide, .bento-card.is-normal, .bento-card.is-narrow { grid-column: span 2; }
  .bento-card.is-tall { grid-row: auto; }
}

/* ---------- TESTIMONIALS ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.quote {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 20px;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.quote blockquote::before {
  content: '“'; color: var(--accent); font-size: 2.5em;
  line-height: 0; vertical-align: -0.35em; margin-right: 0.08em;
}
.quote-person { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-deep); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.quote-who { display: flex; flex-direction: column; gap: 2px; }
.quote-who strong { font-size: 0.9375rem; font-weight: 600; }
.quote-who span { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 820px) { .quotes-grid { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: clamp(56px, 7vw, 96px) clamp(32px, 3vw, 40px);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand {
  display: flex; flex-direction: column; gap: 20px; max-width: 36ch;
}
.footer-brand .nav-logo { color: var(--text-on-dark); font-size: 2rem; }
.footer-brand .nav-logo em { color: var(--text-on-dark); }
.footer-tagline { color: var(--text-on-dark-muted); font-size: 0.9375rem; line-height: 1.55; margin: 0; }
.footer-col h5 { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-on-dark-muted); font-weight: 600; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-on-dark); font-size: 0.9375rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-on-dark); }
.footer-col p { font-size: 0.9375rem; color: var(--text-on-dark-muted); margin: 0 0 8px; line-height: 1.55; }
.footer-col strong { color: var(--text-on-dark); font-weight: 600; }

.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  padding-block: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--hairline-on-dark);
  border-bottom: 1px solid var(--hairline-on-dark);
}
.office { display: flex; flex-direction: column; gap: 6px; }
.office-flag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-on-dark); font-weight: 600;
}
.office-name { font-family: var(--font-display); font-size: 1.125rem; }
.office-address { font-size: 0.875rem; color: var(--text-on-dark-muted); line-height: 1.5; margin: 0; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-offices { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; } }

.footer-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding-top: clamp(24px, 3vw, 32px);
  flex-wrap: wrap;
}
.footer-meta small { color: var(--text-on-dark-muted); font-size: 0.8125rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--hairline-on-dark-strong);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }

.powered-by {
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 16px 0 0;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
}
.powered-by a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.powered-by a:hover { opacity: 1; color: var(--accent-on-dark); }

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  min-height: 360px;
  display: flex; align-items: center;
}
.page-header h1 { max-width: 20ch; }
.page-header .lede { margin-top: clamp(20px, 3vw, 32px); }
.page-crumb {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-subtle); font-weight: 500;
  margin-bottom: var(--space-md);
  display: inline-flex; align-items: center; gap: 10px;
}
.page-crumb::before { content: ''; width: 24px; height: 1px; background: currentColor; }

@media (max-width: 768px) {
  .page-header { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 40px; min-height: 280px; }
}
@media (max-width: 480px) {
  .page-header { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 32px; min-height: 240px; }
}

/* ---------- CAPABILITY LIST ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cap {
  background: var(--bg-card);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
}
.cap-num {
  font-family: var(--font-display); font-style: italic;
  color: var(--accent-hover); font-size: 0.875rem;
}
.cap h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.375rem; letter-spacing: -0.012em; line-height: 1.15; margin: 0; }
.cap p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cap-grid { grid-template-columns: 1fr; } }

/* ---------- STACK CHIPS ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-lg); }
.chip-stat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
}
.chip-stat .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.section--dark .chip-stat { background: rgba(255,255,255,0.04); border-color: var(--hairline-on-dark-strong); color: var(--text-on-dark); }

/* ---------- TEAM GRID ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.person {
  display: flex; flex-direction: column; gap: 12px;
}
.person-photo {
  aspect-ratio: 4/5;
  background: var(--bg-tint);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--hairline);
}
.person-photo::before {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  color: var(--text-subtle);
  letter-spacing: -0.02em;
}
.person-photo img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.person h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 0; }
.person span { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-subtle), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-band-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: end; }
.cta-band h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; max-width: 16ch; color: var(--text-on-dark); }
.cta-band h2 em { color: var(--accent-on-dark); font-style: italic; }
.cta-band .lede { color: var(--text-on-dark-muted); max-width: 48ch; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band-meta { font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-muted); font-weight: 500; }
@media (max-width: 820px) { .cta-band-inner { grid-template-columns: 1fr; } }

/* ---------- INSIGHTS (BLOG) ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.insight {
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insight:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.insight-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-hover); font-weight: 600; }
.insight h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 400; letter-spacing: -0.012em; line-height: 1.2; margin: 0; }
.insight p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; margin: 0; }
.insight-meta { display: flex; justify-content: space-between; font-size: 0.8125rem; color: var(--text-subtle); border-top: 1px solid var(--hairline); padding-top: 14px; margin-top: auto; }
@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .insights-grid { grid-template-columns: 1fr; } }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.contact-intro-card {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 24px;
}
.contact-intro-card h2 { color: var(--text-on-dark); font-size: clamp(2rem, 3.5vw, 2.75rem); }
.contact-intro-card .lede { color: var(--text-on-dark-muted); }
.contact-fact { display: flex; align-items: center; gap: 14px; padding-block: 14px; border-top: 1px solid var(--hairline-on-dark); }
.contact-fact:first-of-type { border-top: 0; padding-top: 0; }
.contact-fact .ic {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: rgba(255, 215, 74, 0.12); color: var(--accent-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-fact .ic svg { width: 18px; height: 18px; stroke-width: 1.75; }
.contact-fact strong { font-weight: 600; color: var(--text-on-dark); font-size: 0.9375rem; display: block; }
.contact-fact span { font-size: 0.875rem; color: var(--text-on-dark-muted); }
.contact-offices { display: flex; flex-direction: column; gap: 16px; }
.contact-office-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 8px;
}
.contact-office-card .flag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-hover); font-weight: 600;
}
.contact-office-card h4 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 400; letter-spacing: -0.012em; margin: 0; }
.contact-office-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- LEAD MODAL ---------- */
.lead-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-md);
}
.lead-modal.open { display: flex; }
.lead-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease-out;
}
.lead-modal__card {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: clamp(28px, 4vw, 44px);
  animation: modalRise 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.lead-modal__close:hover { background: var(--bg-tint); color: var(--text-primary); }
.lead-modal__close svg { width: 20px; height: 20px; }

.lead-modal__eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-hover); font-weight: 600; margin-bottom: 10px; }
.lead-modal__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; letter-spacing: -0.012em; margin: 0 0 10px; max-width: 20ch; }
.lead-modal__title em { color: var(--accent-hover); font-style: italic; }
.lead-modal__sub { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; margin: 0 0 24px; }

.lead-modal__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lead-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-modal__row .lead-modal__field { margin-bottom: 16px; }
.lead-modal__field label { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-subtle); font-weight: 600; }
.lead-modal__field input,
.lead-modal__field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-modal__field input:focus,
.lead-modal__field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.lead-modal__field.has-error input, .lead-modal__field.has-error select { border-color: #DC2626; background: rgba(220, 38, 38, 0.04); }

.lead-modal__submit {
  width: 100%;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-top: 8px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 14px rgba(247, 187, 23, 0.28);
}
.lead-modal__submit:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(247, 187, 23, 0.36); }
.lead-modal__submit svg { width: 18px; height: 18px; stroke-width: 2; }

.lead-modal__footnote { font-size: 0.75rem; color: var(--text-subtle); margin: 14px 0 0; text-align: center; line-height: 1.5; }
@media (max-width: 520px) { .lead-modal__row { grid-template-columns: 1fr; } }

/* ---------- BOOKING PAGE ---------- */
.booking-wrap { padding-top: calc(var(--nav-h) + clamp(24px, 4vw, 48px)); padding-bottom: clamp(64px, 8vw, 120px); }
.booking-progress {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border: 1px solid var(--hairline);
  border-radius: var(--radius-pill); background: var(--bg-card);
  font-size: 0.8125rem; width: max-content; margin-bottom: 24px;
}
.booking-progress .step { color: var(--text-subtle); font-weight: 500; }
.booking-progress .step.active { color: var(--text-primary); font-weight: 600; }
.booking-progress .step.active::before { content: '●'; margin-right: 6px; color: var(--accent); }
.booking-progress .sep { width: 24px; height: 1px; background: var(--hairline-strong); }

.booking-head h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); margin-bottom: var(--space-md); max-width: 22ch; }
.booking-head h1 em { color: var(--accent-hover); font-style: italic; }
.booking-head .lede { max-width: 60ch; margin: 0 0 var(--space-lg); }
.booking-greet { color: var(--accent-hover); font-style: italic; font-family: var(--font-display); font-size: 1.5rem; }

.booking-calendars { margin-top: var(--space-lg); }
.booking-calendar { display: none; }
.booking-calendar.active { display: block; }
.calendar-placeholder {
  min-height: 700px;
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(-45deg, var(--accent-subtle), var(--accent-subtle) 10px, var(--bg-card) 10px, var(--bg-card) 24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(24px, 4vw, 48px);
  gap: 10px;
}
.calendar-placeholder p { margin: 0; color: var(--text-primary); font-size: 0.9375rem; max-width: 40ch; }
.calendar-placeholder strong { font-size: 1.125rem; display: block; margin-bottom: 6px; }
.calendar-placeholder .todo-pill {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; background: var(--accent); color: var(--text-primary);
  border-radius: var(--radius-pill); font-weight: 700; margin-bottom: 8px;
}

.program-switcher {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--hairline);
}
.program-switcher-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.chip:hover { border-color: var(--text-primary); }
.chip.active { background: var(--text-primary); color: var(--bg); border-color: var(--text-primary); }

.trust-grid {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px);
}
.trust-card {
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--bg-card); border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 10px;
}
.trust-card .ic {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--accent-subtle); color: var(--accent-hover);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-card .ic svg { width: 20px; height: 20px; stroke-width: 1.75; }
.trust-card h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin: 0; }
.trust-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; margin: 0; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }

/* Simplified booking nav/footer */
.nav--slim .nav-links, .nav--slim .nav-cta, .nav--slim .nav-toggle { display: none !important; }
.footer--slim {
  background: var(--bg-tint);
  color: var(--text-muted);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--hairline);
}
.footer--slim .footer-grid, .footer--slim .footer-offices { display: none; }
.footer--slim .footer-meta { padding-top: 0; }
.footer--slim .powered-by { color: var(--text-muted); }

/* ---------- ANIM REVEALS ---------- */
[data-reveal], [data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in, [data-reveal-stagger].in > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.06s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.30s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.36s; }
[data-reveal-stagger].in > *:nth-child(7) { transition-delay: 0.42s; }
[data-reveal-stagger].in > *:nth-child(8) { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-row { animation: none !important; }
}

/* ---------- NOISE ---------- */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.025;
  pointer-events: none; z-index: 999; mix-blend-mode: multiply;
}

/* ---------- SECTION DIVIDER ---------- */
.divider-rule { display: flex; align-items: center; gap: 14px; margin: clamp(32px, 4vw, 48px) 0; }
.divider-rule::before { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.divider-rule::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.divider-rule span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-subtle); }

/* ---------- UTILITY ---------- */
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.text-center { text-align: center; }
.max-prose { max-width: 60ch; }
