/* ============================================================
   Ekholt Fysioterapi — Design System
   Source: Claude Design "Ekholt Fysioterapi Design System"
   (design/p/f3790fe5). Tokens verbatim; React components
   translated into plain CSS classes for the PHP site.
   ============================================================ */

/* ============================================================
   Color tokens
   Grounded in the original site palette:
     --bg-clr-1: rgba(0,85,128,0.9)  -> teal primary  #005580
     --bg-clr-2: #f7fbfd             -> light surface
     header overlay rgba(31,61,124)  -> indigo         #1f3d7c
     footer link  #00b7ff            -> cyan accent
     text-shadow  rgba(0,61,45)      -> deep green      #003d2d
   ============================================================ */

:root {
  /* --- Brand teal (primary) --- */
  --teal-950: #00212f;
  --teal-900: #003347;
  --teal-800: #004466;
  --teal-700: #005580; /* brand primary */
  --teal-600: #086b93;
  --teal-500: #0a7ea4;
  --teal-400: #3ba0c0;
  --teal-300: #7cc2d9;
  --teal-200: #b9deeb;
  --teal-100: #dcf0f6;
  --teal-50:  #eef8fb;

  /* --- Cyan (accent / links) --- */
  --cyan-500: #009fe0;
  --cyan-400: #00b7ff;
  --cyan-300: #5cccff;
  --cyan-100: #d6f2ff;

  /* --- Indigo (deep header / focus) --- */
  --indigo-700: #16305f;
  --indigo-600: #1f3d7c;
  --indigo-500: #2f52a0;

  /* --- Green (grounding / wellness) --- */
  --green-800: #003d2d;
  --green-600: #0f6b52;
  --green-400: #3fa588;
  --green-100: #dcefe8;

  /* --- Neutrals (cool slate) --- */
  --ink-900: #0c1a20;
  --ink-800: #16282f;
  --ink-700: #2b3d44;
  --slate-600: #4a5c63;
  --slate-500: #667a81;
  --slate-400: #8a9ba1;
  --slate-300: #b9c6cb;
  --slate-200: #d9e2e5;
  --slate-100: #eaf0f2;
  --surface-tint: #f7fbfd;
  --paper: #ffffff;
  --black: #000000;

  /* --- Semantic status --- */
  --danger: #d1373a;
  --danger-bg: #fdeaea;
  --warning: #c47a12;
  --success: var(--green-600);
  --info: var(--teal-600);

  /* --- Semantic aliases --- */
  --color-primary: var(--teal-800);
  --color-primary-hover: var(--teal-900);
  --color-primary-press: var(--teal-950);
  --color-cta: var(--ink-900);          /* near-black — the "signature" action */
  --color-accent: var(--cyan-400);      /* hairline details only, never fills */
  --color-accent-strong: var(--cyan-500);

  --text-strong: var(--ink-900);
  --text-body: var(--ink-800);
  --text-muted: var(--slate-500);
  --text-on-dark: #eef8fb;
  --text-on-dark-muted: #a9c7d3;
  --text-link: var(--teal-700);
  --text-link-hover: var(--teal-500);

  --surface-page: var(--surface-tint);
  --surface-card: var(--paper);
  --surface-card-tint: var(--teal-50);
  --surface-inverse: var(--teal-950);
  --surface-hero: var(--indigo-600);

  --border-subtle: var(--slate-200);
  --border-default: var(--slate-300);
  --border-strong: var(--slate-400);

  --focus-ring: var(--teal-500);

  /* --- Typography --- */
  --font-sans: 'Fira Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif-display: 'Newsreader', 'Georgia', 'Times New Roman', serif;
  --font-mono: 'Fira Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.375rem;  /* 22px */
  --text-xl:   1.75rem;   /* 28px */
  --text-2xl:  2.25rem;   /* 36px */
  --text-3xl:  3rem;      /* 48px */
  --text-4xl:  4rem;      /* 64px — hero */

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-caps: 0.12em;

  /* Semantic type roles — serif display headings, Fira Sans body */
  --font-display: var(--font-serif-display);
  --font-body: var(--font-sans);
  --fw-heading: 500;
  --fw-body: var(--fw-regular);
  --leading-body: var(--leading-normal);

  /* --- Spacing scale (4px base) --- */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* --- Radii --- */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* --- Shadows — barely-there, cool-tinted --- */
  --shadow-xs: 0 1px 2px rgba(0, 51, 71, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 51, 71, 0.06);
  --shadow-md: 0 6px 16px -8px rgba(0, 51, 71, 0.12);
  --shadow-lg: 0 14px 32px -14px rgba(0, 51, 71, 0.18);
  --shadow-focus: 0 0 0 3px rgba(0, 85, 128, 0.28);

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 820px;
  --gutter: var(--space-5);

  /* --- Motion --- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-base: 260ms;
  --dur-slow: 500ms;
}

/* ============================================================
   Base element defaults
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--text-body);
  background-color: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  color: var(--text-strong);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-4) 0;
  text-wrap: balance;
}

h1 { font-size: var(--text-2xl); letter-spacing: 0; }
h2 { font-size: var(--text-xl); letter-spacing: 0; }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }

p { margin: 0 0 var(--space-4) 0; text-wrap: pretty; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--text-link-hover); }

small { font-size: var(--text-sm); }

img { max-width: 100%; }

::selection { background: var(--teal-100); color: var(--teal-900); }

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-xs);
}

/* Lucide inline SVG icons */
.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
  flex: 0 0 auto;
}

/* ============================================================
   Layout helpers
   ============================================================ */

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { margin-top: var(--space-7); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.stack { display: flex; flex-direction: column; gap: 16px; }

.section-head { margin-bottom: 24px; max-width: 60ch; }
.section-head h1,
.section-head h2 { margin: 10px 0 0; }
.section-head .sub { margin: 10px 0 0; color: var(--text-muted); font-size: var(--text-md); }

/* ============================================================
   NavBar
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--text-strong);
  white-space: nowrap;
}
.navbar .brand em {
  font-style: italic;
  color: var(--teal-700);
}
.navbar .brand:hover { color: var(--text-strong); }

.navbar nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.navbar nav a {
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
}
.navbar nav a:hover { color: var(--teal-700); }
.navbar nav a.active {
  font-weight: 500;
  color: var(--teal-900);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--teal-500);
}
.navbar .nav-cta { margin-left: 8px; }

/* ============================================================
   Hero — flat deep teal-ink surface, hairline cyan rule,
   serif display headline, optional media panel
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--teal-900) 0%, var(--teal-950) 100%);
  color: var(--text-on-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-7);
}
.hero.split { padding: var(--space-8); }

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero.split .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
  max-width: none;
  margin: 0;
  text-align: left;
}

.hero .eyebrow { color: var(--teal-300); margin-bottom: var(--space-4); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  color: #fff;
  margin: 0;
}
.hero.split h1 { font-size: var(--text-3xl); }

.hero .subtitle {
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--text-on-dark-muted);
  margin: var(--space-4) auto 0;
  max-width: 54ch;
}
.hero.split .subtitle { margin-left: 0; margin-right: 0; }

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  justify-content: center;
}
.hero.split .actions { justify-content: flex-start; }

.hero .media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ============================================================
   Button — quietly-rounded rectangle; solid deep teal default.
   `accent` is the near-black signature CTA. No shadows, no pills.
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
  box-shadow: none;
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
.btn:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); color: #fff; }
.btn:active { background: var(--color-primary-press); border-color: var(--color-primary-press); }

.btn-sm { padding: 8px 16px; font-size: var(--text-sm); gap: 6px; }
.btn-lg { padding: 16px 32px; font-size: var(--text-md); gap: 10px; }
.btn-full { display: flex; width: 100%; }

.btn-secondary {
  background: var(--paper);
  color: var(--color-primary);
  border: 1px solid var(--border-default);
}
.btn-secondary:hover { background: var(--slate-100); color: var(--color-primary); border-color: var(--border-default); }

.btn-accent {
  background: var(--color-cta);
  color: #fff;
  border: 1px solid var(--color-cta);
}
.btn-accent:hover { background: var(--ink-700); border-color: var(--ink-700); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid transparent;
}
.btn-ghost:hover { background: transparent; color: var(--color-primary-hover); border-color: transparent; }

.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost-on-dark:hover { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   Card — light panel, generous padding, cool teal-tinted shadow
   ============================================================ */

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.card > :last-child { margin-bottom: 0; }
.card h3 { margin-top: 0; }

.card-pad-sm { padding: var(--space-4); }
.card-pad-md { padding: var(--space-5); }

.card-tint {
  background: var(--surface-card-tint);
  border: 1px solid var(--teal-100);
  box-shadow: none;
}
.card-outline {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  box-shadow: none;
}
.card-inverse {
  background: var(--surface-inverse);
  border: 1px solid var(--teal-800);
  box-shadow: var(--shadow-md);
  color: var(--text-on-dark);
}
.card-inverse h2, .card-inverse h3 { color: #fff; }
.card-inverse p { color: var(--text-on-dark-muted); }

/* Feature card icon chip */
.icon-chip {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.icon-chip .icon { width: 22px; height: 22px; }

/* ============================================================
   Eyebrow — small uppercase kicker with hairline dash
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow-green { color: var(--green-600); }
.eyebrow-muted { color: var(--text-muted); }
.eyebrow-on-dark { color: var(--teal-300); }

/* ============================================================
   Badge — quiet outlined caps label
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--teal-800);
  border: 1px solid var(--slate-300);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  line-height: 1.5;
  white-space: nowrap;
}
.badge-green { color: var(--green-600); }
.badge-danger { color: var(--danger); border-color: #e8c5c5; }
.badge-neutral { color: var(--slate-500); }

/* ============================================================
   InfoList — check-marked, well-spaced list
   ============================================================ */

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.info-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.info-list li > .icon {
  flex: 0 0 auto;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  color: var(--teal-600);
}
.info-list.tone-green li > .icon { color: var(--green-600); }
.info-list li > span { color: var(--text-body); line-height: var(--leading-normal); }

/* ============================================================
   PriceRow — label + amount + optional note
   ============================================================ */

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--border-subtle);
}
.price-row .label { display: flex; flex-direction: column; }
.price-row .label > span { font-weight: var(--fw-regular); color: var(--text-strong); }
.price-row .note { font-size: var(--text-xs); color: var(--text-muted); }
.price-row .amount {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  color: var(--text-strong);
  white-space: nowrap;
}
.price-row.emphasis .label > span { font-weight: var(--fw-semibold); }
.price-row.emphasis .amount { font-size: var(--text-lg); color: var(--teal-700); }

/* ============================================================
   Callout — quiet bordered notice; tone carried by icon + title
   ============================================================ */

.callout {
  display: flex;
  gap: var(--space-3);
  background: var(--surface-tint);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.callout > .icon-slot {
  color: var(--teal-700);
  flex: 0 0 auto;
  margin-top: 2px;
}
.callout > .icon-slot .icon { width: 20px; height: 20px; }
.callout .callout-title {
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  margin-bottom: 4px;
}
.callout .callout-body {
  color: var(--text-body);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}
.callout .callout-body > :last-child { margin-bottom: 0; }

.callout-success > .icon-slot { color: var(--green-600); }
.callout-warning { background: #fdfaf3; border-color: #eadfc4; }
.callout-warning > .icon-slot { color: var(--warning); }
.callout-danger { background: #fdf6f6; border-color: #eed3d3; }
.callout-danger > .icon-slot { color: var(--danger); }

/* ============================================================
   TherapistCard — circular portrait, grayscale -> color on hover
   ============================================================ */

.therapist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.therapist-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.therapist-card img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: var(--radius-circle);
  filter: grayscale(100%);
  transition: filter var(--dur-slow) var(--ease-standard);
}
.therapist-card:hover img { filter: grayscale(0%); }

/* Initials monogram when no photo exists (never fabricate a photo) */
.therapist-card .monogram {
  width: 168px;
  height: 168px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--slate-300), var(--slate-400));
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 3rem;
  letter-spacing: 0.02em;
  transition: background var(--dur-slow) var(--ease-standard);
}
.therapist-card:hover .monogram {
  background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
}

/* Smaller portrait variant for bio page headers */
.bio-head {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.bio-head .therapist-portrait,
.bio-head .monogram {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-circle);
  flex: 0 0 auto;
}
.bio-head .monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}

.therapist-card .role {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 4px;
}
.therapist-card .name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-heading);
  color: var(--text-strong);
  line-height: var(--leading-snug);
}
.therapist-card .specialties {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-snug);
}
.therapist-card .more {
  margin-top: 2px;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-link);
}

/* ============================================================
   Forms — Input / Textarea
   ============================================================ */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-strong);
}
.field input,
.field textarea {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--paper);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}
.field textarea {
  line-height: var(--leading-normal);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-focus);
}
.field .hint { font-size: var(--text-xs); color: var(--text-muted); }
.field.has-error input,
.field.has-error textarea { border-color: var(--danger); }
.field .error { font-size: var(--text-xs); color: var(--danger); }

.form-stack { display: flex; flex-direction: column; gap: 16px; }

/* ============================================================
   Site footer — dark inverse surface
   ============================================================ */

.site-footer {
  background: var(--surface-inverse);
  color: var(--text-on-dark);
  padding: 48px 28px 32px;
  margin-top: 48px;
}
.site-footer .cols {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.site-footer .brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
.site-footer .brand em {
  font-style: italic;
  color: var(--teal-300);
}
.site-footer .col-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--teal-300);
  margin-bottom: 12px;
}
.site-footer p {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
  margin: 0;
}
.site-footer nav a {
  color: var(--text-on-dark);
  font-size: var(--text-sm);
  display: inline-block;
  padding: 3px 0;
}
.site-footer nav a:hover { color: var(--cyan-300); }
.site-footer .legal {
  max-width: 1120px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--teal-800);
  font-size: var(--text-xs);
  color: var(--text-on-dark-muted);
}

/* ============================================================
   Split panels — CTA banner and media cards
   ============================================================ */

.split-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}
.split-cta .cta-action { justify-self: end; }

.media-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}
.media-split img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.media-split img.natural { height: auto; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .hero.split .hero-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero { padding: var(--space-7) var(--space-5); }
  .hero h1, .hero.split h1 { font-size: var(--text-2xl); }
  .grid-3 { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 24px; }
  .split-cta { grid-template-columns: 1fr; }
  .split-cta .cta-action { justify-self: start; }
  .media-split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .navbar { padding: 10px 16px; flex-wrap: wrap; }
  .navbar nav { gap: 0; }
  .navbar nav a { padding: 8px 10px; }
  .navbar .nav-cta { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .hero .actions .btn { width: 100%; }
}
