/* =========================================================
   Shiatsu-Essenziell — Design Tokens
   ========================================================= */
:root {
  /* Color */
  --color-bg: #F6F1E9;
  --color-bg-alt: #EFE3D0;
  --color-surface: #FFFFFF;
  --color-surface-2: #FBF8F3;
  --color-text: #2E2A24;
  --color-text-muted: #6B6154;
  --color-accent: #A85940;
  --color-accent-hover: #8C4832;
  --color-accent-soft: #EBD9C8;
  --color-accent-soft-2: #E3CDB5;
  --color-border: #E2D3BE;
  --color-dark: #241E18;
  --color-dark-2: #322A22;
  --color-cream-on-dark: #F1E8DA;

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8125rem;
  --fs-h1: clamp(2.5rem, 1.9rem + 2.6vw, 4.25rem);
  --fs-h2: clamp(2rem, 1.6rem + 1.7vw, 3rem);
  --fs-h3: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
  --fs-h4: clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --fs-lead: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);

  --lh-tight: 1.15;
  --lh-heading: 1.25;
  --lh-body: 1.65;

  /* Spacing */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --section-pad: clamp(4rem, 3rem + 4vw, 8rem);

  /* Layout */
  --container-w: 1200px;
  --container-narrow: 760px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --arch: clamp(120px, 22vw, 320px) clamp(120px, 22vw, 320px) var(--radius-md) var(--radius-md);

  /* Motion — signature easing: a slow, considered arrival (not a stock curve) */
  --ease-signature: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(46, 42, 36, 0.06);
  --shadow-md: 0 12px 32px rgba(46, 42, 36, 0.10);
  --shadow-lg: 0 24px 64px rgba(46, 42, 36, 0.16);

  --header-h: 84px;
}

/* =========================================================
   Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  font-weight: 500;
  color: var(--color-text);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); font-weight: 460; letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); font-weight: 460; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); font-weight: 500; }
h4 { font-size: var(--fs-h4); font-weight: 600; font-family: var(--font-body); }

p { max-width: 65ch; }
p.no-measure { max-width: none; }

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

ul, ol { list-style: none; padding: 0; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

input, textarea, select {
  font: inherit;
  color: inherit;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
}

svg { display: block; }

:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -60px;
  z-index: 1000;
  background: var(--color-dark);
  color: var(--color-cream-on-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-sm); }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow { max-width: var(--container-narrow); }

/* Keep anchor-jump targets (skip link, #termin, etc.) clear of the fixed header */
#main, section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.section { padding-block: var(--section-pad); position: relative; }

.section-alt {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  background:
    radial-gradient(ellipse 900px 500px at 8% -10%, rgba(168, 89, 64, 0.09), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 110%, rgba(168, 89, 64, 0.07), transparent 55%),
    linear-gradient(180deg, var(--color-bg-alt), color-mix(in srgb, var(--color-bg-alt) 92%, var(--color-bg)));
}
.section-alt > .container { position: relative; z-index: 1; }
.section-alt::after {
  content: "";
  position: absolute;
  top: 4%;
  right: -140px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(168, 89, 64, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section-alt::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(168, 89, 64, 0.09);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 500px at 90% 0%, rgba(168, 89, 64, 0.14), transparent 60%),
    linear-gradient(180deg, var(--color-dark), var(--color-dark-2));
  color: var(--color-cream-on-dark);
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-cream-on-dark); }
.section-dark p { color: rgba(241, 232, 218, 0.78); }

/* Faint film-grain texture, site-wide — barely visible, adds tactile depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.025; } }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--color-accent);
}
.section-dark .eyebrow { color: var(--color-accent-soft-2); }
.section-dark .eyebrow::before { background: var(--color-accent-soft-2); }

.lead {
  font-size: var(--fs-lead);
  color: var(--color-text-muted);
  line-height: 1.55;
}

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

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

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 52px;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: transform var(--dur-base) var(--ease-signature),
              background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
}
.section-dark .btn-outline { color: var(--color-cream-on-dark); }
.section-dark .btn-outline:hover { background: var(--color-cream-on-dark); color: var(--color-dark); }
.consent-banner .btn-outline { color: var(--color-cream-on-dark); }
.consent-banner .btn-outline:hover { background: var(--color-cream-on-dark); color: var(--color-dark); }

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  min-height: auto;
  padding: 0.4rem 0;
}
.btn-ghost::after {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-block { width: 100%; }
.btn-sm { min-height: 44px; padding: 0.65rem 1.35rem; font-size: 0.875rem; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              height var(--dur-base) var(--ease-out);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header.is-solid {
  background: rgba(246, 241, 233, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}
.brand img { height: 34px; width: auto; }

.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
}
.nav-desktop a {
  font-size: clamp(0.85rem, 0.7rem + 0.4vw, 0.9375rem);
  font-weight: 500;
  position: relative;
  padding-block: 4px;
  white-space: nowrap;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transition: right var(--dur-base) var(--ease-out);
}
.nav-desktop a:hover::after { right: 0; }
.nav-desktop a.is-active { color: var(--color-accent); }
.nav-desktop a.is-active::after { right: 0; background: var(--color-accent); }
.nav-mobile a.is-active { color: var(--color-accent); }

.nav-actions { display: flex; align-items: center; gap: var(--space-md); }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  width: 22px;
  height: 1.75px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-in-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header-h));
  background: var(--color-bg);
  padding: var(--space-lg) clamp(1.25rem, 6vw, 3rem);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base);
  z-index: 90;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: clamp(0.75rem, 3vh, 1.5rem); }
.nav-mobile a { font-family: var(--font-display); font-size: clamp(1.125rem, 4.5vw, 1.5rem); font-weight: 500; }
.nav-mobile .nav-actions { margin-top: clamp(1.5rem, 5vh, 2.5rem); flex-direction: column; align-items: stretch; gap: var(--space-sm); }

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-copy .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-bottom: var(--space-lg);
}
.hero-copy h1 { margin-bottom: var(--space-md); }
.hero-copy .lead { margin-bottom: var(--space-xl); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }

.hero-media { position: relative; }
.hero-media .arch-frame {
  /* Matches the source photo's own ratio (1500x1463) so nothing gets cropped by object-fit: cover */
  aspect-ratio: 1500 / 1463;
  border-radius: var(--arch);
}
.hero-media .float-card {
  position: absolute;
  left: -6%;
  bottom: 8%;
  background: var(--color-surface);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  box-shadow: var(--shadow-sm);
  max-width: 210px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-media .float-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.hero-media .float-card span:not(.float-card-dot) {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* Mobile: headline and image read as one connected unit — image sits right
   under the H1, badge card overlaps it, supporting copy and CTAs follow */
@media (max-width: 959px) {
  .hero-copy { display: contents; }
  .hero-copy .badge-row { order: 1; }
  .hero-copy h1 { order: 2; margin-bottom: 0; }
  .hero-media { order: 3; margin-block: var(--space-lg); }
  .hero-copy .lead { order: 4; margin-top: var(--space-lg); }
  .hero-copy .hero-actions { order: 5; }

  .hero-media .float-card {
    left: var(--space-md);
    right: auto;
    bottom: var(--space-md);
  }
}

.arch-frame {
  overflow: hidden;
  position: relative;
  background: var(--color-accent-soft);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }

.rounded-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  background: var(--color-accent-soft);
}
.rounded-frame img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-lg);
}
.trust-strip ul {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 720px) {
  .trust-strip ul { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-weight: 500;
}
.trust-strip li svg { color: var(--color-accent); }

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .about-grid.reverse { grid-template-columns: 1.15fr 0.85fr; }
  .about-grid.reverse .about-media { order: 2; }
}

.about-media { position: relative; }
.about-media .arch-frame { aspect-ratio: 3 / 4; max-width: 420px; margin-inline: auto; }
.about-media .accent-dot {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  z-index: -1;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-style: italic;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-md);
  margin-block: var(--space-lg);
  line-height: 1.5;
}

.mini-timeline { margin-top: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-md); }
.mini-timeline li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.mini-timeline li:last-child { border-bottom: none; padding-bottom: 0; }
.mini-timeline .year { font-family: var(--font-display); color: var(--color-accent); font-size: 1.05rem; }
.mini-timeline p { font-size: var(--fs-small); color: var(--color-text-muted); max-width: 52ch; }
.mini-timeline strong { display: block; color: var(--color-text); font-weight: 600; margin-bottom: 2px; }

.course-list-heading {
  margin-top: var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.course-list { margin-top: var(--space-sm); display: flex; flex-direction: column; }
.course-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.course-list li:last-child { border-bottom: none; }
.course-list .course-date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  padding-top: 2px;
}
.course-list li > span:last-child { display: flex; flex-direction: column; gap: 1px; }
.course-list .course-title { font-weight: 600; font-size: 0.9375rem; color: var(--color-text); }
.course-list .course-meta { font-size: 0.8125rem; color: var(--color-text-muted); }

.cert-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.cert-badge {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(46, 42, 36, 0.12));
  transition: transform var(--dur-base) var(--ease-signature), filter var(--dur-base) var(--ease-out);
}
.cert-badges a:hover .cert-badge {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 14px rgba(46, 42, 36, 0.18));
}

/* =========================================================
   Principles (Mein Shiatsu)
   ========================================================= */
.principle-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .principle-grid { grid-template-columns: repeat(4, 1fr); } }

.principle-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-signature), box-shadow var(--dur-base) var(--ease-out);
}
.principle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.principle-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}
.principle-card h4 { margin-bottom: var(--space-2xs); }
.principle-card p { font-size: var(--fs-small); color: var(--color-text-muted); }

.approach-steps {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .approach-steps { grid-template-columns: repeat(3, 1fr); } }
.approach-steps li { position: relative; padding-top: var(--space-lg); }
.approach-steps .step-index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent-soft-2);
  position: absolute;
  top: -0.6rem; left: 0;
  line-height: 1;
}
.approach-steps h4 { margin-bottom: var(--space-2xs); }
.approach-steps p { font-size: var(--fs-small); color: var(--color-text-muted); }

/* =========================================================
   Praxisatmosphäre gallery
   ========================================================= */
.atmosphere-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .atmosphere-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .atmosphere-grid .rounded-frame:first-child { grid-row: 1 / 3; aspect-ratio: 4/5; }
  .atmosphere-grid .rounded-frame { aspect-ratio: 16/10; }
}

/* =========================================================
   Benefits (Wirkung)
   ========================================================= */
.benefit-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.benefit-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.benefit-card h3 { font-size: var(--fs-h4); margin-bottom: var(--space-sm); }
.benefit-card ul { display: flex; flex-direction: column; gap: var(--space-2xs); }
.benefit-card li {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-2xs);
  align-items: flex-start;
}
.benefit-card li svg { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }

.source-note {
  margin-top: var(--space-xl);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-style: italic;
}
.source-note a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.source-note a:hover { color: var(--color-accent-hover); }

/* =========================================================
   Services / Pricing
   ========================================================= */
.service-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-signature), box-shadow var(--dur-base) var(--ease-out);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card.featured { background: var(--color-dark); color: var(--color-cream-on-dark); }
.service-card.featured h3, .service-card.featured .price { color: var(--color-cream-on-dark); }
.service-card.featured .meta, .service-card.featured p { color: rgba(241, 232, 218, 0.72); }
.service-card.featured .btn-outline { color: var(--color-cream-on-dark); }
.service-card.featured .btn-outline:hover { background: var(--color-cream-on-dark); color: var(--color-dark); }

.service-card .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}
.service-card.featured .tag { background: rgba(241, 232, 218, 0.14); color: var(--color-cream-on-dark); }

.service-card h3 { margin-bottom: var(--space-2xs); }
.service-card .meta {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.service-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}
.service-card .price sup { font-size: 1rem; font-family: var(--font-body); color: var(--color-text-muted); }
.service-card p { font-size: 0.9375rem; margin-bottom: var(--space-lg); }
.service-card ul.checklist { margin-bottom: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-2xs); }
.service-card .checklist li { display: flex; gap: var(--space-2xs); font-size: var(--fs-small); align-items: flex-start; }
.service-card .checklist svg { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.service-card.featured .checklist svg { color: var(--color-accent-soft-2); }
.service-card .btn { margin-top: auto; }

.voucher-preview {
  display: block;
  width: 190px;
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(46, 42, 36, 0.18));
  transform: rotate(-3deg);
  margin-bottom: var(--space-lg);
  transition: transform var(--dur-base) var(--ease-signature);
}
.service-card:hover .voucher-preview { transform: rotate(-1deg) scale(1.03); }

.voucher-banner {
  margin-top: var(--space-lg);
  background: var(--color-accent-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: space-between;
}
.voucher-banner .text h3 { margin-bottom: var(--space-2xs); }
.voucher-banner .text p { color: var(--color-text-muted); margin: 0; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-signature), box-shadow var(--dur-base) var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark { color: var(--color-accent-soft-2); margin-bottom: var(--space-sm); }
.testimonial-card p.quote { font-size: 1.0625rem; color: var(--color-text); margin-bottom: var(--space-md); }
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: var(--space-md); color: var(--color-accent); }
.testimonial-card footer { font-size: var(--fs-small); color: var(--color-text-muted); font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: var(--container-narrow); margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-md); }
.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-weight: 600;
  font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  max-width: 68ch;
}
.faq-item[open] .faq-body { animation: faqIn var(--dur-base) var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   Locations
   ========================================================= */
.location-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }

.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.location-card .loc-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--color-accent-soft); }
.location-card .loc-media img, .location-card .loc-media iframe {
  width: 100%; height: 100%; object-fit: cover; border: 0; display: block;
}
.location-card .loc-body { padding: var(--space-lg); }
.location-card h3 { margin-bottom: var(--space-2xs); }
.location-card .addr { color: var(--color-text-muted); margin-bottom: var(--space-md); font-size: 0.9375rem; }
.location-card dl { display: flex; flex-direction: column; gap: var(--space-sm); }
.location-card .row { display: flex; gap: var(--space-sm); align-items: flex-start; }
.location-card dt { flex-shrink: 0; color: var(--color-accent); margin-top: 2px; }
.location-card dd { font-size: var(--fs-small); color: var(--color-text-muted); }

/* =========================================================
   Booking
   ========================================================= */
.booking-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .booking-panel { grid-template-columns: 1fr 1.3fr; } }

.booking-side {
  background: var(--color-dark);
  color: var(--color-cream-on-dark);
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  min-width: 0;
}
.booking-side h3 { color: var(--color-cream-on-dark); }
.booking-side p { color: rgba(241,232,218,0.75); font-size: 0.9375rem; }
.booking-side .contact-line {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(241,232,218,0.16);
  overflow-wrap: anywhere;
}
.booking-side .contact-line svg { color: var(--color-accent-soft-2); flex-shrink: 0; }
.booking-side .contact-line.contact-line-addr { align-items: flex-start; }
.booking-side .contact-line.contact-line-addr svg { margin-top: 2px; }
.booking-side .addr-list { display: flex; flex-direction: column; gap: 4px; }
.booking-side .addr-list span { padding-left: var(--space-sm); position: relative; }
.booking-side .addr-list span::before { content: "–"; position: absolute; left: 0; color: var(--color-accent-soft-2); }

.booking-embed {
  padding: var(--space-xl);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.calendly-inline-widget { flex: 1; min-height: 630px; border-radius: var(--radius-md); overflow: hidden; }

/* =========================================================
   Consent: banner + gated embed placeholders
   ========================================================= */
.consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 200;
  background: var(--color-dark);
  color: var(--color-cream-on-dark);
  padding: var(--space-lg) clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.18);
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-signature);
}
.consent-banner.is-visible { transform: translateY(0); }
.consent-banner .inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  justify-content: space-between;
}
.consent-banner p { font-size: 0.9375rem; color: rgba(241,232,218,0.85); max-width: 62ch; margin: 0; }
.consent-banner p a { color: var(--color-cream-on-dark); text-decoration: underline; }
.consent-banner .consent-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; flex-shrink: 0; }

.embed-consent-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  height: 100%;
  min-height: 260px;
  padding: var(--space-2xl) var(--space-lg);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-md);
}
.embed-consent-gate svg { color: var(--color-accent); }
.embed-consent-gate p { color: var(--color-text-muted); font-size: 0.9375rem; max-width: 40ch; }

.trust-mini {
  margin-top: var(--space-xl);
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}
.trust-mini .stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: var(--space-xs); font-size: 0.9375rem; }
.trust-mini p { color: var(--color-text-muted); font-size: 0.9375rem; font-style: italic; }
.trust-mini p span { display: block; margin-top: var(--space-2xs); font-style: normal; font-weight: 600; color: var(--color-text); font-size: var(--fs-small); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { padding-block: var(--space-3xl) var(--space-xl); }
.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(241,232,218,0.14);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand img { height: 32px; margin-bottom: var(--space-md); filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { color: rgba(241,232,218,0.65); font-size: 0.9375rem; max-width: 34ch; }
.footer-col h4 { color: var(--color-cream-on-dark); margin-bottom: var(--space-md); font-size: 0.9375rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col a { color: rgba(241,232,218,0.72); font-size: 0.9375rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--color-cream-on-dark); }

.footer-legal {
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
  align-items: flex-start;
}
.footer-legal .copyright { font-size: 0.8125rem; color: rgba(241,232,218,0.55); }
.legal-details { max-width: 640px; }
.legal-details summary {
  cursor: pointer;
  font-size: 0.8125rem;
  color: rgba(241,232,218,0.72);
  text-decoration: underline;
  list-style: none;
  margin-bottom: var(--space-2xs);
}
.legal-details summary::-webkit-details-marker { display: none; }
.legal-details .legal-body { font-size: 0.8125rem; color: rgba(241,232,218,0.6); line-height: 1.6; }

.back-to-top {
  position: fixed;
  right: var(--space-lg);
  bottom: var(--space-lg);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base);
  z-index: 80;
}
.back-to-top.is-visible {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s;
}
.back-to-top:hover { background: var(--color-accent-hover); }

/* =========================================================
   Page banner (subpages without a hero image)
   ========================================================= */
.page-banner {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.page-banner .eyebrow { justify-content: center; }
.page-banner .eyebrow::before { display: none; }
.page-banner h1 { font-size: var(--fs-h2); max-width: 32ch; margin-inline: auto; }
.page-banner .lead { max-width: 56ch; margin-inline: auto; margin-top: var(--space-md); }

/* Section acting as the top of the page when there is no page-banner */
.first-section { padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem)); }
.section-head h1 { font-size: var(--fs-h2); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--color-dark);
  color: var(--color-cream-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { color: var(--color-cream-on-dark); font-size: var(--fs-h3); margin-bottom: var(--space-2xs); }
.cta-band p { color: rgba(241,232,218,0.75); margin: 0; }
.cta-band .cta-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* =========================================================
   Reveal animation base state (progressive enhancement)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}
.no-js [data-reveal],
.no-anim [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Word-reveal headings (progressive enhancement via JS)
   ========================================================= */
.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.word-wrap .word { display: inline-block; will-change: transform; }
.no-js .word-wrap .word, .no-anim .word-wrap .word { transform: none !important; }

/* =========================================================
   Spotlight cards — cursor-tracking glow, desktop hover only
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  .spotlight {
    position: relative;
    isolation: isolate;
  }
  .spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 224, 194, 0.5), transparent 68%);
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-out);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: soft-light;
  }
  .spotlight:hover::before { opacity: 1; }
  .spotlight.featured::before,
  .service-card.featured.spotlight::before {
    background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 68%);
    mix-blend-mode: normal;
  }
  .spotlight > * { position: relative; z-index: 1; }
}

/* =========================================================
   Magnetic buttons — desktop hover only
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  .btn { will-change: transform; }
}
