/* style.css — design tokens + component styles for Casino Night Party Rentals */

:root,
[data-theme='light'] {
  /* Surfaces — warm off-white with a hint of felt-green undertone */
  --color-bg: #f6f5f1;
  --color-surface: #ffffff;
  --color-surface-2: #fbfaf6;
  --color-surface-offset: #edebe3;
  --color-surface-offset-2: #e4e1d6;
  --color-surface-dynamic: #dcd8ca;
  --color-divider: #ded9cc;
  --color-border: #d1cbb9;

  --color-text: #191712;
  --color-text-muted: #5c584c;
  --color-text-faint: #948e7c;
  --color-text-inverse: #f8f6ee;

  /* Primary Accent — Emerald */
  --color-primary: #0f6b46;
  --color-primary-hover: #0b4f34;
  --color-primary-active: #083c27;
  --color-primary-highlight: #cfe3d7;

  /* Secondary Accent — Gold (chip/trim color, sparing use) */
  --color-gold: #a8791f;
  --color-gold-hover: #8c6318;
  --color-gold-active: #6f4e13;
  --color-gold-highlight: #ecdfba;

  --color-warning: #96501c;
  --color-warning-hover: #713a14;
  --color-warning-highlight: #e6d2bd;

  --color-error: #9c2c3e;
  --color-error-hover: #7a2231;
  --color-error-highlight: #e6cdd1;

  --color-success: #2f7a45;
  --color-success-highlight: #cfe3d3;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --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.02 150 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.15 0.02 150 / 0.12);
  --shadow-lg: 0 16px 40px oklch(0.15 0.02 150 / 0.18);

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

  --font-display: 'Cabinet Grotesk', 'General Sans', 'Segoe UI', sans-serif;
  --font-body: 'General Sans', 'Segoe UI', sans-serif;
}

/* DARK MODE (default look for this brand — deep charcoal casino-night) */
[data-theme='dark'] {
  --color-bg: #0e0e0c;
  --color-surface: #161613;
  --color-surface-2: #1b1b17;
  --color-surface-offset: #1f1f1a;
  --color-surface-offset-2: #26261f;
  --color-surface-dynamic: #302f27;
  --color-divider: #2b2b24;
  --color-border: #35352c;

  --color-text: #ece9df;
  --color-text-muted: #a6a191;
  --color-text-faint: #706b5b;
  --color-text-inverse: #14140f;

  --color-primary: #2fa571;
  --color-primary-hover: #4bc78d;
  --color-primary-active: #227d55;
  --color-primary-highlight: #1c3327;

  --color-gold: #d4af5a;
  --color-gold-hover: #e6c579;
  --color-gold-active: #b8933f;
  --color-gold-highlight: #35301f;

  --color-warning: #d98a4e;
  --color-warning-hover: #e6a06b;
  --color-warning-highlight: #3a2a1c;

  --color-error: #d9697d;
  --color-error-hover: #e68a9b;
  --color-error-highlight: #3a2229;

  --color-success: #58b57a;
  --color-success-highlight: #1c3324;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 24px 56px oklch(0 0 0 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e0e0c;
    --color-surface: #161613;
    --color-surface-2: #1b1b17;
    --color-surface-offset: #1f1f1a;
    --color-surface-offset-2: #26261f;
    --color-surface-dynamic: #302f27;
    --color-divider: #2b2b24;
    --color-border: #35352c;
    --color-text: #ece9df;
    --color-text-muted: #a6a191;
    --color-text-faint: #706b5b;
    --color-text-inverse: #14140f;
    --color-primary: #2fa571;
    --color-primary-hover: #4bc78d;
    --color-primary-active: #227d55;
    --color-primary-highlight: #1c3327;
    --color-gold: #d4af5a;
    --color-gold-hover: #e6c579;
    --color-gold-active: #b8933f;
    --color-gold-highlight: #35301f;
    --color-warning: #d98a4e;
    --color-warning-highlight: #3a2a1c;
    --color-error: #d9697d;
    --color-error-highlight: #3a2229;
    --color-success: #58b57a;
    --color-success-highlight: #1c3324;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
    --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
    --shadow-lg: 0 24px 56px oklch(0 0 0 / 0.55);
  }
}

/* ===== Type Scale ===== */
:root {
  --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.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 0.8rem + 6vw, 6.5rem);

  --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;
}

/* ===== Base Layout ===== */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

main {
  overflow-x: clip;
}

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

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.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: 20px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
}

h1 {
  font-size: var(--text-hero);
  font-weight: 600;
}
.page-title {
  font-size: var(--text-2xl);
  font-weight: 600;
}
h2.section-title {
  font-size: var(--text-xl);
  font-weight: 600;
}
h3 {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
}
.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 62ch;
}

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

/* ===== Header / Nav ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.brand-name span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding-block: var(--space-2);
  position: relative;
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--color-text);
}
.nav-links a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}
.nav-toggle:hover {
  background: var(--color-surface-offset);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-faint);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-text-faint);
  background: var(--color-surface-offset);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-text-inverse);
}
.btn-gold:hover {
  background: var(--color-gold-hover);
}
.btn-block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-block: clamp(var(--space-20), 14vw, var(--space-32)) clamp(var(--space-16), 10vw, var(--space-24));
  overflow: hidden;
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
[data-theme='light'] .hero-bg img,
:root:not([data-theme]) .hero-bg img {
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(from var(--color-bg) l c h / 0.1) 0%, var(--color-bg) 96%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero h1 {
  margin-block: var(--space-5) var(--space-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
}
.hero-meta-item span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Suit motif divider ===== */
.suit-row {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  color: var(--color-text-faint);
}
.suit-row svg {
  width: 18px;
  height: 18px;
}
.suit-row svg:nth-child(1) { color: var(--color-primary); }
.suit-row svg:nth-child(3) { color: var(--color-primary); }
.suit-row svg:nth-child(2) { color: var(--color-gold); }
.suit-row svg:nth-child(4) { color: var(--color-gold); }

/* ===== Section header pattern ===== */
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-12);
}
.section-head .section-title {
  margin-top: var(--space-3);
}

/* ===== Cards ===== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.card-grid {
  display: grid;
  gap: var(--space-6);
}

/* Feature/asymmetric layout: one large + smaller */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}
.feature-split.reverse {
  direction: rtl;
}
.feature-split.reverse > * {
  direction: ltr;
}

.image-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
  position: relative;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Overview / offering list ===== */
.offer-list {
  display: flex;
  flex-direction: column;
}
.offer-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.offer-row:last-child {
  border-bottom: 1px solid var(--color-divider);
}
.offer-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
}
.offer-row h3 {
  margin-bottom: var(--space-2);
}

/* ===== Add-on cards ===== */
.addon-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}
.addon-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.addon-card .badge {
  align-self: flex-start;
}
.badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}
.badge-gold {
  background: var(--color-gold-highlight);
  color: var(--color-gold);
}

/* ===== Event type cards ===== */
.event-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.event-card {
  position: relative;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.event-card .suit-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

/* ===== Pricing ===== */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.price-card .badge {
  flex-shrink: 0;
}
.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-block: var(--space-4) var(--space-1);
}
.price-amount sup {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.price-unit {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-6);
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.price-features svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-8);
}
.launch-note svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ===== Disclaimer / compliance callout ===== */
.disclaimer {
  border: 1px solid oklch(from var(--color-gold) l c h / 0.4);
  background: var(--color-gold-highlight);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-5);
}
.disclaimer svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer h3 {
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.disclaimer p {
  color: var(--color-text);
  opacity: 0.85;
}
.disclaimer p + p {
  margin-top: var(--space-3);
}
.disclaimer strong {
  color: var(--color-text);
}

/* ===== Steps (How it works) ===== */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.step:last-child {
  border-bottom: 1px solid var(--color-divider);
}
.step-number {
  counter-increment: step;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-primary);
}
.step-number::before {
  content: counter(step, decimal-leading-zero);
}

/* ===== FAQ Accordion ===== */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--color-divider);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--color-divider);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-faint);
  flex-shrink: 0;
  transition: transform var(--transition-interactive);
}
.faq-item[data-open='true'] .faq-question svg {
  transform: rotate(45deg);
  color: var(--color-primary);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[data-open='true'] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer p {
  padding-bottom: var(--space-6);
  max-width: 68ch;
}

/* ===== Testimonials placeholder ===== */
.testimonial-placeholder {
  text-align: left;
  padding: var(--space-12);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
}
.testimonial-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

/* ===== Form ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-field .optional {
  font-weight: 400;
  color: var(--color-text-faint);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
  min-height: 48px;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.18);
}
.form-note {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-6);
}
.form-note svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-16) var(--space-6);
}
.form-success.visible {
  display: block;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.cta-band h2 {
  color: var(--color-text-inverse);
  font-size: var(--text-xl);
}
.cta-band p {
  color: oklch(from var(--color-text-inverse) l c h / 0.82);
}
.cta-band .btn-primary {
  background: var(--color-text-inverse);
  color: var(--color-primary-active);
}
.cta-band .btn-primary:hover {
  background: oklch(from var(--color-text-inverse) l c h / 0.9);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-10);
  background: var(--color-surface-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-brand .brand {
  margin-bottom: var(--space-4);
}
.footer-brand p {
  max-width: 40ch;
  font-size: var(--text-sm);
}
.footer-col h4 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a,
.footer-col span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-col a:hover {
  color: var(--color-text);
}
.footer-disclaimer {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.footer-disclaimer svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-disclaimer p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 90ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  z-index: 100;
  font-size: var(--text-sm);
  font-weight: 600;
}
.skip-link:focus {
  top: var(--space-4);
}

/* ===== Utility ===== */
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .feature-split {
    grid-template-columns: 1fr;
  }
  .feature-split .image-panel {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta-desktop,
  .header .theme-toggle-desktop-gap {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-inner {
    gap: var(--space-3);
  }
  .nav {
    gap: var(--space-2);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band .btn {
    width: 100%;
  }
  .disclaimer {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-5);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav-cta {
  margin-top: var(--space-8);
}
