/* ==========================================================================
   The Curious Kind Collective — Design System (v4)
   Palette pushed to match the actual saturation of the client's succulent
   photo — vivid plum-to-lilac echeveria, deep burgundy sempervivum, forest-
   to-bright green rosette, a berry accent bridging the two. Bolder and more
   contrasted than v3's dusty pass; the "Ready to begin" CTA banner (deep
   burgundy, white text) is the reference point for how rich this should feel.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Dancing+Script:wght@600;700&family=Lora:ital,wght@0,500;0,600;0,700;1,400&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color — Purple / Lilac / Plum (echeveria: logo, links, primary interactive) */
  --purple-900: #3F1442;
  --purple-800: #5A1F63;
  --purple-700: #7A2E8C;
  --purple-500: #A855BE;
  --purple-300: #D9A3E8;
  --purple-100: #F4E4F7;

  /* Color — Burgundy (sempervivum: CTA banner, deep anchor moments) */
  --navy-900: #4A1220;
  --navy-700: #7D2438;
  --navy-500: #A8425A;
  --navy-300: #DDA3B2;
  --navy-100: #F7E4E8;

  /* Color — Green, light to dark (rosette leaves: secondary, CTA button, footer) */
  --green-800: #1F3D20;
  --green-600: #3C6B2F;
  --green-400: #6FA83D;
  --green-200: #B8DB94;
  --green-100: #EBF5DE;
  --green-cta: #9FBF82;

  /* Color — Berry (bridges purple and burgundy: sparing accent) */
  --terracotta-700: #8C2D5C;
  --terracotta-500: #B84A80;
  --terracotta-300: #E0A8C4;
  --terracotta-100: #F8E4EE;

  /* Neutrals */
  --cream-50: #F8F2E8;
  --cream-100: #F0E6D6;
  --ink-900: #2B221D;
  --ink-600: #6B5D52;
  --white: #FFFFFF;
  --border: #E6D9CE;

  /* Semantic tokens */
  --color-bg: var(--cream-50);
  --color-bg-alt: var(--cream-100);
  --color-surface: var(--white);
  --color-text: var(--ink-900);
  --color-text-muted: var(--ink-600);
  --color-primary: var(--purple-700);
  --color-primary-hover: var(--purple-900);
  --color-secondary: var(--green-600);
  --color-accent: var(--green-cta);
  --color-accent-hover: var(--green-800);
  --color-border: var(--border);
  --color-focus-ring: var(--purple-700);

  /* Typography */
  --font-script: 'Dancing Script', cursive;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.875rem;
  --text-5xl: 3.5rem;
  --text-script-lg: 3.25rem;

  /* Spacing (8px rhythm) */
  --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;
  --space-10: 8rem;

  --container-max: 1160px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-blob: 62% 38% 55% 45% / 45% 55% 45% 55%;

  --shadow-sm: 0 1px 2px rgba(74, 18, 32, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 18, 32, 0.10);
  --shadow-lg: 0 16px 40px rgba(74, 18, 32, 0.14);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  font-weight: 600;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

p { margin: 0 0 var(--space-4); max-width: 65ch; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover { color: var(--color-primary-hover); }

ul, ol { padding-left: 1.25em; }
li { margin-bottom: var(--space-2); }

button { font-family: inherit; }

/* Focus visibility — never remove */
:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-4); color: var(--white); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-7); }
}

.section {
  padding-block: var(--space-9);
  position: relative;
  overflow: clip;
}

.section--alt { background: var(--color-bg-alt); }
.section--surface { background: var(--color-surface); }

.section-heading {
  max-width: 46rem;
  margin-bottom: var(--space-7);
}

.section-heading--center { margin-inline: auto; text-align: center; }

/* ==========================================================================
   Media frame — a contained, rounded video/image panel used in a two-column
   layout (e.g. media left, copy right). Deliberately a normal in-flow grid
   item rather than an absolutely-positioned background, so it can't collapse
   or overflow if a stylesheet update lags behind a cached page.
   ========================================================================== */

.media-frame {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--color-bg-alt);
}

.media-frame__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .media-frame {
    aspect-ratio: auto;
    height: 100%;
    min-height: 420px;
  }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--navy-700);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.text-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

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

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Organic decorative shapes (aria-hidden, purely decorative)
   ========================================================================== */

.blob {
  position: absolute;
  border-radius: var(--radius-blob);
  filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite;
  transform-origin: center;
}
.blob--purple { background: var(--purple-100); }
.blob--navy { background: var(--navy-100); }
.blob--green { background: var(--green-100); }
.blob--terracotta { background: var(--terracotta-100); }

/* Breathing motion — deliberately larger swing so the movement reads clearly,
   still paced like a slow resting breath (~4.5s in, 4.5s out) rather than a pulse. */
@keyframes breathe {
  0%, 100% {
    border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
    transform: scale(1) translate(0, 0);
  }
  50% {
    border-radius: 40% 60% 68% 32% / 62% 38% 64% 36%;
    transform: scale(1.16) translate(-16px, 22px);
  }
}

.hero > .container,
.page-hero > .container,
.section > .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Wave dividers — replace hard section-to-section edges with a soft curve.
   Lives inside the EARLIER section (bottom:0, contained by its overflow:clip),
   filled with the colour of the section that follows, so the two backgrounds
   appear to meet along a wave rather than a straight line.
   ========================================================================== */

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 64px;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }

.wave-divider--bg svg path { fill: var(--color-bg); }
.wave-divider--alt svg path { fill: var(--color-bg-alt); }
.wave-divider--surface svg path { fill: var(--color-surface); }
.wave-divider--navy svg path { fill: var(--navy-900); }
.wave-divider--purple-tint svg path { fill: var(--purple-100); }

@media (min-width: 768px) {
  .wave-divider { height: 84px; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
  padding-block: var(--space-3);
}

.logo {
  position: relative;
  display: inline-block;
  font-family: var(--font-script);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--purple-700);
  text-decoration: none;
  line-height: 1.15;
  white-space: nowrap;
}
.logo:hover { color: var(--purple-900); }
.logo-mark { flex-shrink: 0; }

@media (max-width: 520px) {
  .logo { font-size: 1.35rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] {
  color: var(--purple-700);
  border-bottom-color: var(--terracotta-500);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--white);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: var(--space-4) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.mobile-menu a {
  display: block;
  padding: var(--space-3) var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a[aria-current="page"] { color: var(--purple-700); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-accent);
  color: var(--ink-900);
}
.btn--primary:hover { background: var(--color-accent-hover); color: var(--white); }

.btn--secondary {
  background: transparent;
  border-color: var(--purple-700);
  color: var(--purple-700);
}
.btn--secondary:hover { background: var(--purple-100); color: var(--purple-900); }

.btn--ghost {
  background: var(--white);
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn--ghost:hover { border-color: var(--purple-300); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.hero {
  padding-block: var(--space-8) var(--space-9);
  position: relative;
  overflow: clip;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.hero h1 { margin-bottom: var(--space-5); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.page-hero {
  padding-block: var(--space-8) var(--space-7);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: clip;
}
.page-hero .eyebrow { display: block; }
.page-hero h1 { margin-bottom: var(--space-3); }
.page-hero .text-lead { max-width: 50rem; }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  height: 100%;
}

/* Abstract flowing shape accents — replace literal pictogram icons with soft
   organic gradient blobs in rotating brand hues. Purely decorative. */
.shape-icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-4);
  border-radius: 58% 42% 63% 37% / 41% 55% 45% 59%;
  animation: breathe-subtle 9s ease-in-out infinite;
}

/* Smaller-scale echo of .blob's breathing — same rhythm, gentler swing so
   card-sized shapes don't jitter the way full background blobs now do. */
@keyframes breathe-subtle {
  0%, 100% {
    border-radius: 58% 42% 63% 37% / 41% 55% 45% 59%;
    transform: scale(1);
  }
  50% {
    border-radius: 44% 56% 68% 32% / 56% 44% 66% 34%;
    transform: scale(1.09);
  }
}

.shape-icon--purple { background: linear-gradient(135deg, var(--purple-300), var(--purple-500)); }
.shape-icon--navy { background: linear-gradient(135deg, var(--navy-300), var(--navy-500)); }
.shape-icon--green { background: linear-gradient(135deg, var(--green-200), var(--green-400)); }
.shape-icon--terracotta { background: linear-gradient(135deg, var(--terracotta-300), var(--terracotta-500)); }

.shape-icon--sm {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.shape-icon--lg {
  width: 88px;
  height: 88px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--color-text-muted); margin-bottom: var(--space-3); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.card-link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Trust / rebate strip
   ========================================================================== */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: var(--space-3) var(--space-5);
  font-weight: 500;
  font-size: var(--text-sm);
}
.trust-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green-600);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: clip;
}
.cta-banner > *:not(.blob) { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner .text-lead { color: var(--navy-300); margin-inline: auto; }
.cta-banner .hero-actions { justify-content: center; }
.cta-banner .btn--secondary { border-color: var(--navy-300); color: var(--white); }
.cta-banner .btn--secondary:hover { background: rgba(255,255,255,0.08); }

/* ==========================================================================
   Placeholder blocks (photos / headshots not yet supplied)
   ========================================================================== */

.placeholder-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--purple-100), var(--green-100));
  border: 1px dashed var(--purple-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--purple-700);
  text-align: center;
  padding: var(--space-5);
}
.placeholder-photo svg { width: 48px; height: 48px; }
.placeholder-photo span { font-size: var(--text-sm); font-weight: 500; max-width: 16ch; }

.placeholder-photo--wide {
  aspect-ratio: 16 / 9;
}

.fill-in {
  background: var(--terracotta-100);
  color: var(--terracotta-700);
  font-style: italic;
  padding: 0.05em 0.5em;
  border-radius: 4px;
  font-size: 0.95em;
}

.todo-note {
  border: 1px dashed var(--terracotta-500);
  background: var(--terracotta-100);
  color: var(--terracotta-700);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
}

/* ==========================================================================
   Inquiry form
   ========================================================================== */

.inquiry-form {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .inquiry-form__row { grid-template-columns: 1fr 1fr; }
}

.inquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.inquiry-form__field label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.inquiry-form__hint {
  font-weight: 400;
  color: var(--color-text-muted);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--color-text);
  min-height: 44px;
}
.inquiry-form textarea { min-height: 120px; resize: vertical; }
.inquiry-form select { appearance: auto; }

.inquiry-form input:focus-visible,
.inquiry-form select:focus-visible,
.inquiry-form textarea:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 1px;
  border-color: var(--color-focus-ring);
}

.inquiry-form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.inquiry-form__fieldset legend {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 0;
  margin-bottom: var(--space-1);
}
.inquiry-form__fieldset .inquiry-form__row { margin: 0; }

.inquiry-form__radios {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.inquiry-form__radio {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 400;
  font-size: var(--text-base);
  min-height: 44px;
  cursor: pointer;
}
.inquiry-form__radio input[type="radio"] {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  accent-color: var(--purple-700);
  flex-shrink: 0;
  cursor: pointer;
}

.inquiry-form__status {
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
}
.inquiry-form__status[data-state="success"] {
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-200);
}
.inquiry-form__status[data-state="error"] {
  background: var(--terracotta-100);
  color: var(--terracotta-700);
  border: 1px solid var(--terracotta-300);
}
.inquiry-form__status[data-state="loading"] {
  background: var(--purple-100);
  color: var(--purple-900);
  border: 1px solid var(--purple-300);
}

.inquiry-form .btn { align-self: flex-start; }
.inquiry-form .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.inquiry-safety-note {
  background: var(--terracotta-100);
  border-color: var(--terracotta-300);
}
.inquiry-safety-note h4 { color: var(--terracotta-700); }

/* ==========================================================================
   Values / pillars
   ========================================================================== */

.pillar {
  text-align: left;
}
.pillar .eyebrow { font-size: var(--text-xl); margin-bottom: var(--space-1); }

/* ==========================================================================
   About page — bio, statement banner, plus-lists, expandable modalities
   ========================================================================== */

.placeholder-photo--blob {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-blob);
}

.photo-frame {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-blob);
  overflow: hidden;
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-intro {
  font-family: 'Caveat', cursive;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--purple-900);
}

.bio-body { display: flex; flex-direction: column; gap: var(--space-4); }
.bio-body p { color: var(--color-text-muted); }

.statement {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  font-weight: 600;
  text-align: center;
  max-width: 22ch;
  margin-inline: auto;
  color: var(--purple-900);
  line-height: 1.25;
}

.plus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.plus-list li {
  position: relative;
  padding-left: var(--space-6);
}
.plus-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -0.05em;
  font-size: 1.15em;
  font-weight: 700;
  color: var(--purple-700);
}

.plus-list--center {
  align-items: center;
}
.plus-list--center li {
  padding-left: 0;
  text-align: center;
}
.plus-list--center li::before {
  position: static;
  display: inline-block;
  top: auto;
  margin-right: var(--space-2);
}

.chip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.chip-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-heading);
  font-weight: 600;
}

.quals-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.modality-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.modality {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.modality summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-weight: 600;
  list-style: none;
}
.modality summary::-webkit-details-marker { display: none; }
.modality summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: var(--text-xl);
  line-height: 1;
  color: var(--purple-700);
}
.modality[open] summary::after { content: "\2212"; }
.modality[open] summary { margin-bottom: var(--space-3); }
.modality p { margin: 0; color: var(--color-text-muted); }

/* ==========================================================================
   Tables (fees)
   ========================================================================== */

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fee-table th, .fee-table td {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
}
.fee-table th {
  font-family: var(--font-heading);
  color: var(--purple-900);
  background: var(--purple-100);
  font-weight: 600;
}
.fee-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; }

/* ==========================================================================
   Info list (contact / hours)
   ========================================================================== */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.info-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin: 0;
}
.info-list h4 { margin-bottom: var(--space-1); }
.info-list p { color: var(--color-text-muted); margin: 0; }

/* ==========================================================================
   Map
   ========================================================================== */

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  width: 100%;
  aspect-ratio: 16 / 10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

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

.site-footer {
  background: var(--purple-100);
  color: var(--purple-900);
  padding-block: var(--space-8) var(--space-6);
}
.site-footer a { color: var(--purple-900); }
.site-footer a:hover { color: var(--purple-800); }
.site-footer .logo { color: var(--purple-900); }
.site-footer .logo:hover { color: var(--purple-800); }

.footer-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-grid h4 {
  color: var(--purple-900);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-grid ul a { text-decoration: none; font-size: var(--text-sm); }
.footer-grid ul a:hover { text-decoration: underline; }

.footer-tagline { color: var(--purple-800); max-width: 32ch; margin-top: var(--space-3); }

.footer-acknowledgement {
  border-top: 1px solid rgba(63, 20, 66, 0.2);
  padding-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--purple-800);
  max-width: 70ch;
}

.footer-bottom {
  border-top: 1px solid rgba(63, 20, 66, 0.2);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--purple-800);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
}

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

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: var(--space-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

@media (max-width: 639px) {
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ==========================================================================
   Scroll reveal (subtle, respects prefers-reduced-motion via JS + media query)
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 550ms ease, transform 550ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
