/* =====================================================
   FORGEFIT COACHING — Custom Fitness Palette
   Warm charcoal + electric orange accent
   ===================================================== */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #f8f7f4;
  --color-surface: #faf9f7;
  --color-surface-2: #fcfcfa;
  --color-surface-offset: #eeece7;
  --color-surface-offset-2: #e6e3dd;
  --color-surface-dynamic: #dedad3;
  --color-divider: #d6d3cc;
  --color-border: #ccc9c1;

  /* Text */
  --color-text: #1a1714;
  --color-text-muted: #6b6862;
  --color-text-faint: #b0ada6;
  --color-text-inverse: #f9f8f4;

  /* Primary Accent — Forge Orange */
  --color-primary: #d4580a;
  --color-primary-hover: #b84a08;
  --color-primary-active: #9a3c06;
  --color-primary-highlight: #fce8d8;

  /* Dark section background */
  --color-dark-bg: #141210;
  --color-dark-surface: #1e1c18;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(20, 18, 10, 0.07);
  --shadow-md: 0 4px 16px rgba(20, 18, 10, 0.09);
  --shadow-lg: 0 12px 40px rgba(20, 18, 10, 0.13);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1200px;

  /* 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);

  /* Spacing */
  --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;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #141210;
  --color-surface: #1a1815;
  --color-surface-2: #1e1c18;
  --color-surface-offset: #201e1a;
  --color-surface-offset-2: #262320;
  --color-surface-dynamic: #302d29;
  --color-divider: #272420;
  --color-border: #3a3732;
  --color-text: #ccc9c3;
  --color-text-muted: #7a7770;
  --color-text-faint: #5a5752;
  --color-text-inverse: #1a1815;
  --color-primary: #f07030;
  --color-primary-hover: #e85a18;
  --color-primary-active: #cc4610;
  --color-primary-highlight: #3d2518;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #141210;
    --color-surface: #1a1815;
    --color-surface-2: #1e1c18;
    --color-surface-offset: #201e1a;
    --color-surface-offset-2: #262320;
    --color-surface-dynamic: #302d29;
    --color-divider: #272420;
    --color-border: #3a3732;
    --color-text: #ccc9c3;
    --color-text-muted: #7a7770;
    --color-text-faint: #5a5752;
    --color-text-inverse: #1a1815;
    --color-primary: #f07030;
    --color-primary-hover: #e85a18;
    --color-primary-active: #cc4610;
    --color-primary-highlight: #3d2518;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.45);
  }
}

/* =====================================================
   BASE RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.2s ease, color 0.2s ease;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in oklch, var(--color-primary) 20%, transparent); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive), opacity var(--transition-interactive);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}
.container--narrow { max-width: var(--content-narrow); }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.section--alt { background: var(--color-surface-offset); }
.section--dark {
  background: var(--color-dark-bg);
  color: #fff;
}
[data-theme='dark'] .section--dark {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65em 1.4em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }
.btn-primary:active { background: var(--color-primary-active); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
  padding: 0.4em;
}
.btn-ghost:hover { color: var(--color-text); background: var(--color-surface-offset); border-radius: var(--radius-md); }
.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover { background: var(--color-primary-highlight); border-color: var(--color-primary-highlight); }
.btn-lg { padding: 0.8em 1.8em; font-size: var(--text-base); }
.btn-full { width: 100%; }

/* =====================================================
   TYPOGRAPHY UTILITIES
   ===================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
h1,h2,h3 { font-family: var(--font-display); }
h1 { font-size: var(--text-3xl); font-weight: 900; line-height: 1.05; }
h2 { font-size: var(--text-2xl); font-weight: 700; line-height: 1.1; }
h3 { font-size: var(--text-lg); font-weight: 700; }
em { font-style: italic; color: var(--color-primary); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-sub {
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  font-size: var(--text-base);
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.logo-img--footer {
  height: 64px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.nav-links a:hover { color: var(--color-text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.25s ease; }
.nav-mobile { display: none; flex-direction: column; padding: var(--space-4) clamp(var(--space-6), 5vw, var(--space-16)); background: var(--color-surface); border-top: 1px solid var(--color-divider); gap: var(--space-4); }
.nav-mobile a { font-size: var(--text-base); font-weight: 500; color: var(--color-text-muted); }
.nav-mobile a:hover { color: var(--color-text); }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, color-mix(in oklch, var(--color-primary) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-title {
  font-size: clamp(2.8rem, 2rem + 4vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-block: var(--space-4) var(--space-6);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: var(--space-8);
}
.hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-10); }
/* Hero logo badge — prominent centered display above CTAs */
.hero-logo-badge {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-6);
}
.hero-logo-badge img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(212, 88, 10, 0.25));
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 900; color: var(--color-text); line-height: 1; }
.stat span { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--color-border); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-image-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-placeholder svg { width: 100%; height: auto; }
.hero-badge {
  position: absolute;
  bottom: var(--space-6);
  left: -var(--space-8);
  left: -32px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  border-block: 1px solid var(--color-divider);
  padding-block: var(--space-6);
  background: var(--color-surface);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.trust-label { font-size: var(--text-xs); color: var(--color-text-faint); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.trust-logos { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }
.trust-logo { font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); }
.trust-divider { color: var(--color-text-faint); }

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  scale: 1.02;
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured li { color: rgba(255,255,255,0.95); }
.service-card--featured .service-icon { background: rgba(255,255,255,0.15); color: #fff; }
.service-card--featured .service-features li { color: rgba(255,255,255,0.85); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-tag {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
  flex: 1;
}
.service-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.service-card--featured .service-features li::before { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { scale: 1; }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.about-visual { position: relative; }
.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-frame svg { width: 100%; height: auto; }
.about-credential-card {
  position: absolute;
  bottom: -var(--space-6);
  bottom: -24px;
  right: -var(--space-6);
  right: -24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.about-credential-card strong { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 900; }
.about-credential-card span { font-size: var(--text-xs); opacity: 0.85; }
.about-content { display: flex; flex-direction: column; gap: var(--space-6); }
.about-content h2 { line-height: 1.1; }
.about-content p { color: var(--color-text-muted); line-height: 1.7; }
.about-credentials { display: flex; flex-direction: column; gap: var(--space-3); }
.credential { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); font-weight: 500; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-credential-card { position: static; margin-top: var(--space-4); align-self: flex-start; }
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: start;
}
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.step-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
}
.step h3 { font-size: var(--text-base); font-weight: 700; }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--color-text-faint);
  padding-top: var(--space-8);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { transform: rotate(90deg); }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
[data-theme='dark'] .testimonial-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}
.testimonial-stars { color: var(--color-primary); font-size: var(--text-base); letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  flex: 1;
}
[data-theme='dark'] .testimonial-card blockquote { color: var(--color-text-muted); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-4); }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: var(--text-sm); color: rgba(255,255,255,0.9); }
[data-theme='dark'] .testimonial-author strong { color: var(--color-text); }
.testimonial-author span { font-size: var(--text-xs); color: rgba(255,255,255,0.45); }
[data-theme='dark'] .testimonial-author span { color: var(--color-text-faint); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
}
.pricing-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  scale: 1.03;
}
.pricing-card--featured .pricing-desc,
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-card--featured h3 { color: #fff; }
.pricing-tag {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.pricing-header { display: flex; flex-direction: column; gap: var(--space-2); }
.pricing-header h3 { font-size: var(--text-base); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
}
.pricing-card--featured .pricing-amount { color: #fff; }
.price-currency { font-size: var(--text-xl); vertical-align: top; padding-top: 4px; }
.price-period { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); font-family: var(--font-body); }
.pricing-card--featured .price-period { color: rgba(255,255,255,0.65); }
.pricing-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { scale: 1; }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-interactive);
}
.faq-item:hover { border-color: var(--color-primary); }
.faq-item[open] { border-color: var(--color-primary); }
.faq-item summary {
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-size: var(--text-base);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: none;
}

/* =====================================================
   BOOKING FORM
   ===================================================== */
.booking-section { background: var(--color-bg); }
.booking-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.booking-card h2 { text-align: center; }
.booking-card > p {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-inline: auto;
  margin-top: calc(-1 * var(--space-2));
}
.booking-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7em var(--space-4);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
  outline: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-primary) 15%, transparent);
}
.form-field textarea { resize: vertical; line-height: 1.5; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: var(--space-10); cursor: pointer; }
.form-disclaimer { text-align: center; font-size: var(--text-xs); color: var(--color-text-faint); }

.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-8);
}
.booking-success h3 { font-size: var(--text-xl); }
.booking-success p { color: var(--color-text-muted); max-width: 360px; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,0.6);
  padding-block: var(--space-12) var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
[data-theme='dark'] .footer {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border-top-color: var(--color-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-6);
}
[data-theme='dark'] .footer-inner { border-bottom-color: var(--color-divider); }
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-brand .logo-text { color: #fff; }
[data-theme='dark'] .footer-brand .logo-text { color: var(--color-text); }
.footer-brand p { font-size: var(--text-sm); line-height: 1.6; max-width: 280px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-interactive);
}
.footer-links a:hover { color: #fff; }
[data-theme='dark'] .footer-links a { color: var(--color-text-muted); }
[data-theme='dark'] .footer-links a:hover { color: var(--color-text); }
.footer-social { display: flex; gap: var(--space-3); flex-direction: column; }
.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-interactive);
}
.social-link:hover { color: var(--color-primary); }
[data-theme='dark'] .social-link { color: var(--color-text-faint); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: var(--space-4);
}
[data-theme='dark'] .footer-bottom { color: var(--color-text-faint); }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color var(--transition-interactive); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
[data-theme='dark'] .footer-legal a { color: var(--color-text-faint); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.legal-body p {
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 72ch;
}
.legal-body ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: var(--space-6);
}
.legal-body li {
  color: var(--color-text-muted);
  line-height: 1.65;
}
.legal-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { opacity: 0.8; }

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  max-width: 700px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  padding: var(--space-6);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner.hidden {
  display: none;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
}
.cookie-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.cookie-text p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 480px;
}
.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-banner { left: var(--space-4); right: var(--space-4); bottom: var(--space-4); }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
