/* ==========================================================================
   Dynamic Health — Design Tokens & Global Styles
   Palette: Dark green primary ("Fern") + warm neutral ("Sand") surfaces.
   Typography: Plus Jakarta Sans (display) + Nunito (body).
   ========================================================================== */

/* ---- Type scale (fluid clamp, per skill) ---- */
: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.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  /* ---- 4px spacing system ---- */
  --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;

  /* ---- Radius ---- */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

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

  /* ---- Content widths ---- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* ---- Fonts ---- */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

/* Safety reset: base.css only strips markers on [role="list"]; this project
   uses plain <ul>/<ol> throughout for nav, footer, and check lists. */
ul,
ol {
  list-style: none;
}

/* ==========================================================================
   Color System — Dynamic Health
   Primary: brand green (from logo mark, hue ~147). Secondary: brand blue
   (from logo wordmark/figures, hue ~256). Warm neutral sand surfaces.
   ========================================================================== */
:root,
[data-theme='light'] {
  /* Surfaces — warm neutral sand, not cold white */
  --color-bg: oklch(0.975 0.006 95);
  --color-surface: oklch(0.99 0.004 95);
  --color-surface-2: oklch(1 0 0);
  --color-surface-offset: oklch(0.955 0.009 100);
  --color-surface-offset-2: oklch(0.93 0.012 100);
  --color-surface-dynamic: oklch(0.9 0.014 100);
  --color-divider: oklch(0.89 0.014 100);
  --color-border: oklch(0.83 0.017 100);

  /* Text — warm near-black, not pure gray */
  --color-text: oklch(0.235 0.018 145);
  --color-text-muted: oklch(0.47 0.02 130);
  --color-text-faint: oklch(0.68 0.015 120);
  --color-text-inverse: oklch(0.98 0.006 95);

  /* Primary — brand green, sampled from the Dynamic Health logo mark */
  --color-primary: oklch(0.5 0.145 147);
  --color-primary-hover: oklch(0.42 0.135 147);
  --color-primary-active: oklch(0.34 0.115 147);
  --color-primary-highlight: oklch(0.92 0.05 145);

  /* Secondary accent — brand blue, sampled from the logo wordmark/figures */
  --color-accent: oklch(0.468 0.158 256);
  --color-accent-hover: oklch(0.4 0.145 256);
  --color-accent-highlight: oklch(0.92 0.035 256);

  /* Warning */
  --color-warning: oklch(0.55 0.14 55);
  --color-warning-hover: oklch(0.47 0.13 55);
  --color-warning-active: oklch(0.39 0.11 55);
  --color-warning-highlight: oklch(0.92 0.04 60);

  /* Error */
  --color-error: oklch(0.5 0.16 25);
  --color-error-hover: oklch(0.42 0.15 25);
  --color-error-active: oklch(0.34 0.13 25);
  --color-error-highlight: oklch(0.92 0.045 25);

  /* Success */
  --color-success: oklch(0.5 0.12 147);
  --color-success-hover: oklch(0.42 0.11 147);
  --color-success-active: oklch(0.34 0.1 147);
  --color-success-highlight: oklch(0.92 0.04 147);

  /* Radius / transitions duplicated for override safety */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — tone-matched warm shadow */
  --shadow-sm: 0 1px 2px oklch(0.25 0.03 145 / 0.07);
  --shadow-md: 0 4px 14px oklch(0.25 0.03 145 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.25 0.03 145 / 0.16);
}

/* DARK MODE */
[data-theme='dark'] {
  --color-bg: oklch(0.19 0.012 150);
  --color-surface: oklch(0.225 0.014 150);
  --color-surface-2: oklch(0.25 0.015 150);
  --color-surface-offset: oklch(0.205 0.013 150);
  --color-surface-offset-2: oklch(0.27 0.017 150);
  --color-surface-dynamic: oklch(0.3 0.018 150);
  --color-divider: oklch(0.32 0.018 150);
  --color-border: oklch(0.37 0.02 150);

  --color-text: oklch(0.92 0.008 100);
  --color-text-muted: oklch(0.72 0.015 110);
  --color-text-faint: oklch(0.52 0.015 120);
  --color-text-inverse: oklch(0.22 0.015 150);

  --color-primary: oklch(0.72 0.135 147);
  --color-primary-hover: oklch(0.79 0.13 147);
  --color-primary-active: oklch(0.85 0.11 147);
  --color-primary-highlight: oklch(0.3 0.05 147);

  --color-accent: oklch(0.7 0.135 256);
  --color-accent-hover: oklch(0.77 0.12 256);
  --color-accent-highlight: oklch(0.32 0.06 256);

  --color-warning: oklch(0.72 0.13 60);
  --color-warning-hover: oklch(0.78 0.13 60);
  --color-warning-active: oklch(0.84 0.12 60);
  --color-warning-highlight: oklch(0.34 0.06 60);

  --color-error: oklch(0.68 0.16 25);
  --color-error-hover: oklch(0.75 0.15 25);
  --color-error-active: oklch(0.82 0.13 25);
  --color-error-highlight: oklch(0.32 0.06 25);

  --color-success: oklch(0.7 0.11 147);
  --color-success-hover: oklch(0.77 0.11 147);
  --color-success-active: oklch(0.84 0.1 147);
  --color-success-highlight: oklch(0.3 0.05 147);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.36);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: oklch(0.19 0.012 150);
    --color-surface: oklch(0.225 0.014 150);
    --color-surface-2: oklch(0.25 0.015 150);
    --color-surface-offset: oklch(0.205 0.013 150);
    --color-surface-offset-2: oklch(0.27 0.017 150);
    --color-surface-dynamic: oklch(0.3 0.018 150);
    --color-divider: oklch(0.32 0.018 150);
    --color-border: oklch(0.37 0.02 150);
    --color-text: oklch(0.92 0.008 100);
    --color-text-muted: oklch(0.72 0.015 110);
    --color-text-faint: oklch(0.52 0.015 120);
    --color-text-inverse: oklch(0.22 0.015 150);
    --color-primary: oklch(0.72 0.135 147);
    --color-primary-hover: oklch(0.79 0.13 147);
    --color-primary-active: oklch(0.85 0.11 147);
    --color-primary-highlight: oklch(0.3 0.05 147);
    --color-accent: oklch(0.7 0.135 256);
    --color-accent-hover: oklch(0.77 0.12 256);
    --color-accent-highlight: oklch(0.32 0.06 256);
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.36);
    --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-5);
}
.container--default {
  max-width: var(--content-default);
}
.container--narrow {
  max-width: var(--content-narrow);
}

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

.section-tight {
  padding-block: clamp(var(--space-8), 4vw, var(--space-16));
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
body {
  font-family: var(--font-body);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.h1-hero {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.03;
}

.h1-page {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.08;
}

.h2-section {
  font-size: var(--text-xl);
  font-weight: 750;
  line-height: 1.12;
}

.h3-sub {
  font-size: var(--text-lg);
  font-weight: 700;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.body-copy {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 62ch;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  min-height: 44px;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.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-primary:active {
  background: var(--color-primary-active);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-invert {
  background: transparent;
  color: var(--color-text-inverse);
  border-color: oklch(from var(--color-text-inverse) l c h / 0.4);
}
.btn-outline-invert:hover {
  background: oklch(from var(--color-text-inverse) l c h / 0.12);
  border-color: var(--color-text-inverse);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  min-height: 36px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.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 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);
}
.site-header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand svg {
  color: var(--color-primary);
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-word small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav ul {
  display: flex;
  gap: var(--space-5);
  list-style: none;
}
.header-cta {
  flex-shrink: 0;
}
.main-nav a:not(.btn) {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  position: relative;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.main-nav a[aria-current='page'] {
  color: var(--color-primary);
}
.main-nav 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);
}

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

.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);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-primary);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 210;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: var(--color-surface-offset);
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}

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

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    z-index: 150;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - 68px);
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-6) var(--space-5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    display: block;
    padding: var(--space-4) var(--space-2);
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--color-divider);
  }
  .main-nav .header-cta {
    margin-top: var(--space-6);
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ==========================================================================
   Announcement banner
   ========================================================================== */
.announce-bar {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  letter-spacing: 0.01em;
}
.announce-bar a,
.announce-bar strong {
  color: var(--color-text-inverse);
}
.announce-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32)) clamp(var(--space-12), 8vw, var(--space-24));
  background: linear-gradient(160deg, var(--color-surface-offset) 0%, var(--color-bg) 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}
.hero-copy p.lede {
  max-width: 46ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.hero-launch-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 800;
}
.hero-launch-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: left;
  }
  .hero-visual {
    order: -1;
  }
  .hero-visual img {
    max-width: 320px;
  }
}

/* ==========================================================================
   Cards & feature blocks
   ========================================================================== */
.card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md);
}

.icon-tile {
  width: 46px;
  height: 46px;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.icon-tile svg {
  width: 100%;
  height: 100%;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}
.feature-row.uneven {
  grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 900px) {
  .feature-row.uneven {
    grid-template-columns: 1fr;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-10);
}
.section-head + .section-head {
  margin-top: 0;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1 1 220px;
}
.trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.trust-item span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Hours callout
   ========================================================================== */
.hours-panel {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}
.hours-panel .h2-section,
.hours-panel .lede {
  color: var(--color-text-inverse);
}
.hours-panel .lede {
  opacity: 0.88;
}
.hours-table {
  display: grid;
  gap: var(--space-3);
  min-width: 260px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid oklch(from var(--color-text-inverse) l c h / 0.22);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row strong {
  font-weight: 800;
}
@media (max-width: 760px) {
  .hours-panel {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pull quote / mission block
   ========================================================================== */
.pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 650;
  line-height: 1.3;
  color: var(--color-text);
  border-left: none;
  position: relative;
  padding-left: var(--space-8);
}
.pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: calc(100% - 0.3em);
  background: var(--color-primary);
  border-radius: var(--radius-full);
}
.pull-quote cite {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Two column editorial
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.split.reverse .split-visual {
  order: -1;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .split.reverse .split-visual {
    order: 0;
  }
}
.split-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
}

/* ==========================================================================
   Lists with check icons
   ========================================================================== */
.check-list {
  display: grid;
  gap: var(--space-3);
}
.check-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-text);
}
.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* ==========================================================================
   Service list blocks
   ========================================================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding-block: var(--space-12);
  border-bottom: 1px solid var(--color-divider);
}
.service-block:last-of-type {
  border-bottom: none;
}
@media (max-width: 860px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.price-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(165deg, var(--color-primary-highlight) 0%, var(--color-surface) 65%);
  position: relative;
}
.price-tag {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.price-tag strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
}
.price-tag span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.price-from-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--color-accent-highlight);
  color: var(--color-accent-hover);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 800;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.contact-card svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: var(--space-1);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: var(--space-1);
}
.contact-card a.big-link {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  word-break: break-word;
}
.contact-card a.big-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}
.contact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-stack {
  display: grid;
  gap: var(--space-4);
}

/* Simple contact form (bonus) */
.form-field {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.form-field label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}
.form-field input,
.form-field textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  font-size: var(--text-base);
  color: var(--color-text);
  min-height: 44px;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--color-surface-offset);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}
.cta-band .h2-section {
  max-width: 34ch;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: var(--space-3);
}
.footer-brand svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.footer-col ul {
  display: grid;
  gap: var(--space-2);
  list-style: none;
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

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

/* ==========================================================================
   Utility
   ========================================================================== */
.mt-0 {
  margin-top: 0;
}
.text-center {
  text-align: center;
}
.stack {
  display: grid;
  gap: var(--space-4);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    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);
  }
}
