/* ==========================================================================
   OPULENT CONSULTING GROUP — Design Tokens + Component Styles
   Concept: Authoritative / corporate / refined-luxury.
   Typography: Playfair Display (display) + DM Sans (body)
   Palette: Deep navy foundation, warm gold accent
   ========================================================================== */

:root,
[data-theme='light'] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — warm ivory */
  --color-bg: #faf8f4;
  --color-surface: #ffffff;
  --color-surface-2: #f5f2ec;
  --color-surface-offset: #eee9e0;
  --color-surface-dynamic: #e8e2d5;
  --color-divider: #e2dccd;
  --color-border: #d9d1bd;

  /* Text */
  --color-text: #171a2b;
  --color-text-muted: #5b5f72;
  --color-text-faint: #9a9cab;
  --color-text-inverse: #faf8f4;
  --color-on-navy: #faf8f4;

  /* Primary — Crown & Glory Purple */
  --color-navy: #2e0f4f;
  --color-navy-2: #3d1566;
  --color-primary: #2e0f4f;
  --color-primary-hover: #421c6b;
  --color-primary-active: #1f0937;
  --color-primary-highlight: #e8def0;

  /* Accent — Warm Gold */
  --color-gold: #b7913b;
  --color-gold-hover: #a17d2c;
  --color-gold-active: #8a6a22;
  --color-gold-highlight: #f0e6cd;
  --color-gold-soft: #d9bd7c;

  /* Semantic */
  --color-success: #3f7a4e;
  --color-success-highlight: #d9e8dc;
  --color-warning: #96501c;
  --color-warning-highlight: #ecdccb;
  --color-error: #9c2e3a;
  --color-error-highlight: #ecd6d8;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.15 0.03 265 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.15 0.03 265 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.15 0.03 265 / 0.16);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0a0d18;
  --color-surface: #101528;
  --color-surface-2: #141a30;
  --color-surface-offset: #171e37;
  --color-surface-offset-2: #1b2340;
  --color-surface-dynamic: #212a4a;
  --color-divider: #232c4c;
  --color-border: #2c3657;

  --color-text: #eae7dc;
  --color-text-muted: #a4a8bd;
  --color-text-faint: #6c7190;
  --color-text-inverse: #171a2b;
  --color-on-navy: #faf8f4;

  --color-primary: #d9bd7c;
  --color-primary-hover: #e8d29a;
  --color-primary-active: #b7913b;
  --color-primary-highlight: #2c2a1e;

  --color-gold: #d9bd7c;
  --color-gold-hover: #e8d29a;
  --color-gold-active: #b7913b;
  --color-gold-highlight: #2c2a1e;
  --color-gold-soft: #cfaf6c;

  --color-success: #7cbd8a;
  --color-success-highlight: #1c3122;
  --color-warning: #d68f52;
  --color-warning-highlight: #3a2618;
  --color-error: #d97e88;
  --color-error-highlight: #3a1e22;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow {
  max-width: var(--content-narrow);
}
.container--default {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section--tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

/* ==========================================================================
   Typography
   ========================================================================== */

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-hero);
  letter-spacing: -0.01em;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
}
h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
}
h4,
.h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.55;
}
p {
  max-width: 68ch;
}
.prose p + p {
  margin-top: var(--space-4);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header--hidden {
  transform: translateY(-100%);
}
.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand svg {
  width: 34px;
  height: 34px;
  color: var(--color-gold);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current='page'] {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.header-phone svg {
  color: var(--color-gold-active);
  flex-shrink: 0;
}
.header-phone:hover {
  color: var(--color-primary);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: var(--color-surface-2);
  color: var(--color-text);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
}

.header-actions > .btn {
  display: none;
}

@media (min-width: 1100px) {
  .header-phone {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
  .header-actions > .btn {
    display: inline-flex;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--color-bg);
  z-index: 90;
  padding: var(--space-8) var(--space-6);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text);
  text-decoration: none;
}
.mobile-nav-cta {
  margin-bottom: var(--space-6);
}
@media (min-width: 900px) {
  .mobile-nav {
    display: none;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-primary:hover {
  background: var(--color-gold-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn-ghost-inverse {
  background: transparent;
  border-color: oklch(1 0 0 / 0.28);
  color: var(--color-on-navy);
}
.btn-ghost-inverse:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-soft);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-on-navy);
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 90% at 85% 0%,
      oklch(0.55 0.09 85 / 0.28),
      transparent 60%
    ),
    radial-gradient(80% 60% at 0% 100%, oklch(0.3 0.06 265 / 0.5), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: var(--space-16);
  align-items: center;
}
.hero-copy .eyebrow {
  color: var(--color-gold-soft);
}
.hero-copy h1 {
  margin-block: var(--space-6);
  color: var(--color-on-navy);
  font-size: var(--text-3xl);
  line-height: 1.05;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--color-gold-soft);
}
.hero-copy .lede {
  color: oklch(from var(--color-on-navy) l c h / 0.78);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(1 0 0 / 0.14);
}
.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold-soft);
  display: block;
}
.hero-stat .stat-label {
  font-size: var(--text-xs);
  color: oklch(from var(--color-on-navy) l c h / 0.65);
  margin-top: var(--space-1);
}
.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.1 0.02 265 / 0.55), transparent 45%);
}
.hero-media-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  z-index: 1;
  background: oklch(0.99 0 0 / 0.94);
  color: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-md);
}
.hero-media-badge svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.hero-media-badge strong {
  display: block;
  font-size: var(--text-sm);
}
.hero-media-badge span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ==========================================================================
   Logo strip
   ========================================================================== */

.logo-strip {
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--color-divider);
}
.logo-strip .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: var(--space-6);
  justify-content: center;
}
.logo-strip .eyebrow::before {
  display: none;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8) var(--space-12);
}
.logo-row span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  white-space: nowrap;
}

/* ==========================================================================
   Section headers
   ========================================================================== */

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-12);
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: var(--space-4);
}
.section-head .lede {
  margin-top: var(--space-4);
}

/* ==========================================================================
   Services grid
   ========================================================================== */

.services-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-soft);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-gold-highlight);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  font-size: var(--text-lg);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
}
.service-card li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  max-width: none;
}
.service-card li svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-card .card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-2);
}
.service-card .card-link:hover {
  color: var(--color-gold-hover);
  gap: var(--space-2);
}

/* Category badge on service cards */
.service-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  align-self: flex-start;
}

/* ==========================================================================
   Process / steps
   ========================================================================== */

.steps {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--space-10);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}
.step h4 {
  margin-bottom: var(--space-2);
}
.step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Feature split (image + text)
   ========================================================================== */

.split {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
.split img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.split-reverse .split-media {
  order: 2;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split-reverse .split-media {
    order: 0;
  }
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  max-width: none;
}
.checklist svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Pricing / packages
   ========================================================================== */

.pricing-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  align-items: stretch;
}
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.price-card.featured {
  background: var(--color-navy);
  color: var(--color-on-navy);
  border-color: var(--color-navy);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.featured .price-desc,
.price-card.featured .price-amount .amount-note {
  color: oklch(from var(--color-on-navy) l c h / 0.7);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: var(--space-8);
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}
.price-name {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}
.price-amount .amount-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 400;
}
.price-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-grow: 1;
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  max-width: none;
}
.price-card li svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}
.testimonial-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.stars {
  display: flex;
  gap: var(--space-1);
  color: var(--color-gold);
}
.stars svg {
  width: 16px;
  height: 16px;
}
.testimonial-card blockquote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: var(--color-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
}
.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Stat band
   ========================================================================== */

.stat-band {
  background: var(--color-navy);
  color: var(--color-on-navy);
}
.stat-band .container {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  text-align: center;
}
.stat-band .stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-gold-soft);
  display: block;
}
.stat-band .stat-label {
  font-size: var(--text-sm);
  color: oklch(from var(--color-on-navy) l c h / 0.7);
  margin-top: var(--space-2);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--content-default);
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition-interactive);
}
.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  font-size: var(--text-base);
  min-height: 48px;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-highlight);
}
.field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-12) var(--space-6);
}
.form-success.is-visible {
  display: block;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--color-success);
  margin: 0 auto var(--space-5);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--color-navy);
  color: var(--color-on-navy);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-12), 8vw, var(--space-20));
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 100% at 50% 0%, oklch(0.55 0.09 85 / 0.22), transparent 65%);
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  color: var(--color-on-navy);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band .lede {
  color: oklch(from var(--color-on-navy) l c h / 0.75);
  margin-inline: auto;
  margin-top: var(--space-4);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-navy);
  color: oklch(from var(--color-on-navy) l c h / 0.7);
  padding-block: var(--space-20) var(--space-10);
}
.footer-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
.footer-brand .brand {
  color: var(--color-on-navy);
}
.footer-brand p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  max-width: 32ch;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(from var(--color-on-navy) l c h / 0.9);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: inherit;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--color-gold-soft);
}
.footer-bottom {
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(1 0 0 / 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--text-xs);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.social-row {
  display: flex;
  gap: var(--space-3);
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid oklch(1 0 0 / 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-row svg {
  width: 16px;
  height: 16px;
}
.social-row a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-soft);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
@media (max-width: 699px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  background: var(--color-navy);
  color: var(--color-on-navy);
  padding-block: clamp(var(--space-16), 7vw, var(--space-24));
  text-align: center;
}
.page-hero h1 {
  font-size: var(--text-2xl);
  color: var(--color-on-navy);
  margin-top: var(--space-4);
}
.page-hero .lede {
  margin-inline: auto;
  margin-top: var(--space-4);
  color: oklch(from var(--color-on-navy) l c h / 0.75);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: oklch(from var(--color-on-navy) l c h / 0.55);
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Utility
   ========================================================================== */

.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0 !important;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-gold-highlight);
  color: var(--color-gold-active);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.two-col-cards {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
}

/* ==========================================================================
   Contact form / lead capture
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: var(--shadow-md);
  position: relative;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.field .required {
  color: var(--color-gold);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  width: 100%;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-highlight);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.form-submit-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form-success.is-visible {
  display: block;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-success-highlight);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  margin-bottom: var(--space-2);
}
.form-success p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.info-card .icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-gold-highlight);
  color: var(--color-gold-active);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme='dark'] .info-card .icon-wrap {
  color: var(--color-gold);
}
.info-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.info-card p,
.info-card a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.info-card a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.info-card a:hover {
  color: var(--color-gold-active);
}
[data-theme='dark'] .info-card a:hover {
  color: var(--color-gold);
}

.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
}
.credential-chip svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold-active);
  flex-shrink: 0;
}
[data-theme='dark'] .credential-chip svg {
  color: var(--color-gold);
}

/* ==========================================================================
   Legal / prose pages
   ========================================================================== */
.prose {
  max-width: var(--content-narrow);
  margin-inline: auto;
}
.prose h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.prose ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
  color: var(--color-text-muted);
}
.prose li {
  margin-bottom: var(--space-2);
}
.prose strong {
  color: var(--color-text);
}
.updated-note {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-bottom: var(--space-10);
}
