/* =========================================================
   Psychotherapie Reichenhauser — Design System
   Mobile-first. Breakpoints: 768px tablet, 1024px desktop.
   ========================================================= */

:root {
  --color-1:  #123634;
  --color-2:  #286462;
  --color-3:  #578480;
  --color-4:  #ffffff;
  --color-5:  #1fd3b9;
  --color-6:  #c7d4d3;
  --color-7:  #e3f6eb;
  --color-8:  #223a3f;
  --color-9:  #41f5fb;

  --font-heading: 'Yrsa', Georgia, serif;
  --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 6px rgba(18, 54, 52, 0.06);
  --shadow-md: 0 6px 18px rgba(18, 54, 52, 0.08);
  --shadow-lg: 0 16px 40px rgba(18, 54, 52, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --content-max: 1200px;
  --narrow-max: 800px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-1);
  background: var(--color-4);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: var(--color-2); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--color-5); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-1);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
p  { margin: 0 0 1em; max-width: 65ch; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.35em; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--tight { padding: 48px 0; }
.section--mint { background: var(--color-7); }
.section--dark { background: var(--color-1); color: var(--color-4); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-4); }
.section--teal { background: var(--color-3); color: var(--color-4); }
.section--teal h1, .section--teal h2, .section--teal h3, .section--teal h4 { color: var(--color-4); }
.section--teal .text-eyebrow { color: rgba(255, 255, 255, 0.85); }
.section--teal strong { color: var(--color-4); font-weight: 700; }

.grid-2 { display: grid; gap: 32px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } }

.grid-3 { display: grid; gap: 24px; }
@media (min-width: 600px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; gap: 24px; }
@media (min-width: 600px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.text-center { text-align: center; }
.text-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-3);
  margin-bottom: 0.75em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.75em 1.75em;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  background: var(--color-2);
  color: var(--color-4);
}
.btn--primary:hover {
  background: var(--color-5);
  color: var(--color-1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--color-1);
  border: 1.5px solid var(--color-6);
}
.btn--ghost:hover {
  border-color: var(--color-2);
  background: var(--color-7);
  color: var(--color-1);
}
.btn--light {
  background: var(--color-4);
  color: var(--color-1);
}
.btn--light:hover {
  background: var(--color-5);
  color: var(--color-1);
  transform: translateY(-2px);
}
.btn--lg { min-height: 56px; padding: 0.9em 2.25em; font-size: 1.05rem; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(199, 212, 211, 0.4);
  transition: transform 0.35s var(--ease), background 0.25s var(--ease);
  padding-top: env(safe-area-inset-top);
}
.site-header--hidden { transform: translateY(-100%); }
.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .site-header__inner { padding: 16px 48px; } }
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--color-1);
}
.brand__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-1);
}
.brand__sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-3);
  letter-spacing: 0.02em;
}
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-desktop a {
    color: var(--color-1);
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
    transition: all 0.25s var(--ease);
  }
  .nav-desktop a:hover { background: var(--color-7); color: var(--color-2); }
  .nav-desktop a.is-active { color: var(--color-2); }
  .nav-desktop .btn { margin-left: 12px; }
  .nav-desktop a.nav-cta {
    background: var(--color-2);
    color: var(--color-4);
    margin-left: 8px;
  }
  .nav-desktop a.nav-cta:hover {
    background: var(--color-5);
    color: var(--color-1);
  }
}

/* Mobile CTA button (visible in header next to burger on mobile) */
.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  margin-left: auto;
  background: var(--color-2);
  color: var(--color-4);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  line-height: 1;
  min-height: 38px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta-mobile:hover,
.nav-cta-mobile:focus-visible { background: var(--color-5); color: var(--color-1); }
@media (min-width: 1024px) { .nav-cta-mobile { display: none; } }
body.menu-open .nav-cta-mobile { visibility: hidden; }

/* Mobile nav toggle */
.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-1);
  position: relative;
  z-index: 101;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle__bar { position: relative; }
.nav-toggle__bar::before { position: absolute; top: -7px; left: 0; }
.nav-toggle__bar::after  { position: absolute; top: 7px;  left: 0; }
body.menu-open .nav-toggle__bar { background: transparent; }
body.menu-open .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle__bar::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile fullscreen menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-1);
  color: var(--color-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: calc(72px + env(safe-area-inset-top)) 24px env(safe-area-inset-bottom);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
}
/* When menu is open: header stays transparent above overlay so burger-X remains visible */
body.menu-open .site-header {
  z-index: 200;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.menu-open .nav-toggle { color: var(--color-4); }
body.menu-open .brand { visibility: hidden; }
body.menu-open .nav-mobile {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-4);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-mobile__close {
  position: absolute;
  top: calc(16px + env(safe-area-inset-top));
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--color-4);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-mobile__close:hover,
.nav-mobile__close:focus-visible {
  color: var(--color-5);
  background: rgba(255,255,255,0.08);
}
.nav-mobile a:hover,
.nav-mobile a:focus-visible { color: var(--color-5); background: rgba(255,255,255,0.05); }
.nav-mobile a.nav-cta {
  background: var(--color-5);
  color: var(--color-1);
  margin-top: 12px;
  padding: 14px 32px;
}
.nav-mobile a.nav-cta:hover,
.nav-mobile a.nav-cta:focus-visible {
  background: var(--color-9);
  color: var(--color-1);
}
.nav-mobile .btn { margin-top: 16px; }
@media (min-width: 1024px) { .nav-toggle, .nav-mobile { display: none; } }

/* Space for fixed header */
main { padding-top: 72px; }
@media (min-width: 768px) { main { padding-top: 80px; } }

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--color-4);
  overflow: hidden;
  isolation: isolate;
  padding: 80px 0;
}
@media (min-width: 768px) { .hero { min-height: 85vh; padding: 120px 0; } }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(18, 54, 52, 0.35) 0%,
    rgba(18, 54, 52, 0.55) 100%
  );
}
.hero--compact { min-height: 50vh; }
@media (min-width: 768px) { .hero--compact { min-height: 55vh; } }
.hero__inner { max-width: 800px; }
.hero__eyebrow {
  color: var(--color-7);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1em;
  display: block;
}
.hero h1 { color: var(--color-4); margin-bottom: 0.5em; }
.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 2em;
}

/* Section heading */
.section__head { margin-bottom: 48px; }
.section__head p { color: var(--color-3); }
.section__head--centered { text-align: center; margin-left: auto; margin-right: auto; max-width: 760px; }
.section__head--centered p { margin-left: auto; margin-right: auto; }

/* Bullet list stylized */
.bullet-list { list-style: none; padding: 0; margin: 0 0 1.5em; }
.bullet-list li {
  position: relative;
  padding: 0.4em 0 0.4em 32px;
  font-size: 1.02rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.85em;
  width: 16px;
  height: 2px;
  background: var(--color-5);
}

/* Cards */
.card {
  background: var(--color-4);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  height: 100%;
  border: 1px solid rgba(199, 212, 211, 0.3);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__eyebrow {
  color: var(--color-3);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.card__title { font-size: 1.25rem; margin-bottom: 12px; }
.card__body p:last-child { margin-bottom: 0; }

/* Figure / image block */
.figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-7);
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.figure--tall img { aspect-ratio: 3 / 4; }
.figure--wide img { aspect-ratio: 16 / 9; }

/* Pull quote */
.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--color-1);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 24px 16px;
}
.pull-quote::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-5);
  margin: 0 auto 24px;
}

/* Quote highlight (pull-quote on colored section) */
.quote-highlight {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-4);
  border-radius: 24px;
  padding: 56px 40px;
  box-shadow: 0 20px 60px rgba(18, 54, 52, 0.08);
  border: 1px solid rgba(31, 211, 185, 0.25);
}
@media (max-width: 767px) {
  .quote-highlight { padding: 40px 24px; }
}

/* Section divider (whitespace between sections) */
.section-divider {
  height: 80px;
}
@media (min-width: 768px) {
  .section-divider { height: 120px; }
}

/* Slider */
.slider {
  position: relative;
  overflow: visible;
  padding: 0 56px;
}
.slider__viewport {
  overflow: hidden;
  border-radius: 16px;
}
.slider__track {
  display: flex;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
.slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-7);
  overflow: hidden;
  border-radius: 16px;
}
.slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 58, 63, 0.35);
  border-radius: 16px;
  pointer-events: none;
}
.slider__slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(18,54,52,0.1), rgba(18,54,52,0.55));
  color: var(--color-4);
}
.slider__slide-content h3 {
  color: var(--color-4);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slider__dot {
  width: 12px;
  height: 12px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.slider__dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-6);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.slider__dot[aria-current="true"]::before {
  background: var(--color-2);
  transform: scale(1.3);
}
.section--dark .slider__dot::before { background: rgba(255,255,255,0.4); }
.section--dark .slider__dot[aria-current="true"]::before { background: var(--color-4); }
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  color: var(--color-4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  line-height: 1;
  transition: opacity 0.25s var(--ease);
  opacity: 0.85;
  z-index: 2;
}
.slider__arrow:hover { opacity: 1; }
.slider__arrow--prev { left: 0; }
.slider__arrow--next { right: 0; }
@media (max-width: 600px) { .slider__arrow { width: 32px; font-size: 2rem; } }

/* Process steps */
.steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step {
  background: var(--color-4);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  border: 1px solid rgba(199, 212, 211, 0.5);
  counter-increment: step;
  transition: all 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-7);
  color: var(--color-2);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.step__title { font-size: 1.1rem; margin-bottom: 8px; }
.step__body { color: var(--color-3); font-size: 0.95rem; margin: 0; }
.step__eyebrow {
  font-size: 0.78rem;
  color: var(--color-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 6px;
}

/* CTA band */
.cta-band {
  position: relative;
  color: var(--color-4);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18,54,52,0.55), rgba(18,54,52,0.75));
}
.cta-band h2 { color: var(--color-4); max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 2em; }

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq details {
  background: var(--color-4);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 212, 211, 0.4);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-1);
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-2);
  border-bottom: 2px solid var(--color-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}
.faq__body {
  padding: 0 24px 24px;
  color: var(--color-3);
}
.faq__body p { margin: 0; color: inherit; }

/* Info box */
.info-box {
  background: var(--color-7);
  border-left: 4px solid var(--color-5);
  padding: 28px 28px;
  border-radius: var(--radius-md);
}
.info-box h3 { margin-top: 0; }
.info-box p:last-child { margin-bottom: 0; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 48px; } }

.contact-info {
  background: var(--color-7);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(199, 212, 211, 0.6);
}
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-4);
  color: var(--color-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info__label {
  font-weight: 600;
  color: var(--color-1);
  margin-bottom: 4px;
}
.contact-info__value { color: var(--color-3); font-size: 0.98rem; }
.contact-info__value a { color: var(--color-2); }

/* Form */
.form { display: grid; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-1);
}
.form__input,
.form__textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  min-height: 48px;
  border: 1.5px solid var(--color-6);
  border-radius: var(--radius-sm);
  background: var(--color-4);
  color: var(--color-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-2);
  box-shadow: 0 0 0 3px rgba(40,100,98,0.15);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-3);
  cursor: pointer;
}
.form__checkbox input {
  margin-top: 3px;
  accent-color: var(--color-2);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.form__message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form__message.is-visible { display: block; }
.form__message--success { background: var(--color-7); color: var(--color-1); border-left: 3px solid var(--color-5); }
.form__message--error   { background: #fdeceb; color: #7a2018; border-left: 3px solid #d64545; }

/* Location cards */
.locations { display: grid; gap: 24px; }
@media (min-width: 768px) { .locations { grid-template-columns: 1fr 1fr; } }

/* Footer */
.site-footer {
  background: var(--color-3);
  color: var(--color-4);
  padding: 64px 0 24px;
  margin-top: 0;
}
.site-footer a { color: var(--color-4); }
.site-footer a:hover { color: var(--color-7); }
.site-footer__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 {
  color: var(--color-4);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer__logo {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  margin-bottom: 16px;
  object-fit: cover;
  background: var(--color-4);
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.site-footer__brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.site-footer__brand-sub { font-size: 0.92rem; opacity: 0.85; margin-bottom: 12px; }
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: 10px; font-size: 0.95rem; opacity: 0.92; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* Map */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-md);
  filter: grayscale(15%);
}

/* Utilities */
.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 20px; }
.stack-lg > * + * { margin-top: 32px; }
.flow p { max-width: 65ch; }

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

.portrait {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 420px;
  margin: 0 auto;
}
.portrait img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.portrait--framed {
  border: 10px solid var(--color-3);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  background: var(--color-4);
  padding: 0;
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}
.portrait--framed img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.bullet-list--check li { padding-left: 34px; }
.bullet-list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--color-2);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

/* Timeline (vertical steps with connecting line) */
.timeline-layout {
  display: grid;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .timeline-layout { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.timeline-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-7);
  min-height: 320px;
  position: relative;
}
.timeline-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .timeline-media {
    min-height: 0;
    height: 100%;
  }
  .timeline-media img {
    position: absolute;
    inset: 0;
  }
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline__item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 44px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: -8px;
  width: 1px;
  background: var(--color-3);
  opacity: 0.55;
}
.timeline__item:last-child::before { display: none; }
.timeline__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-3);
}
.timeline__eyebrow {
  display: block;
  color: var(--color-3);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-weight: 500;
}
.timeline__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  color: var(--color-1);
  margin: 0 0 12px;
  line-height: 1.2;
}
.timeline__body {
  color: var(--color-3);
  margin: 0;
  max-width: 540px;
}

/* Panel card (white card on colored section) */
.panel-card {
  background: var(--color-4);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  color: var(--color-1);
}
.panel-card h2 {
  color: var(--color-1);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 820px;
}
@media (min-width: 768px) {
  .panel-card { padding: 72px 64px; border-radius: 28px; }
}

/* Pill cards (check-list on colored sections) */
.pill-cards {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .pill-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pill-cards--stack { grid-template-columns: 1fr !important; gap: 20px; }
.panel-card .pill-card { background: var(--color-7); }
.pill-card {
  background: rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-1);
  min-height: 84px;
}
.pill-card__check {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-1);
  color: var(--color-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.pill-card__text {
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-1);
}

/* Overlap: wide media with dark card overlapping on desktop */
.overlap {
  position: relative;
  margin-top: 48px;
}
.overlap__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-7);
}
.overlap__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.overlap__card {
  background: var(--color-3);
  color: var(--color-4);
  padding: 40px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: -48px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
}
.overlap__card h3 {
  color: var(--color-4);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.overlap__card p { color: var(--color-4); }
.overlap__card .bullet-list--check li { color: var(--color-4); }
.overlap__card .bullet-list--check li::before { color: var(--color-5); }
.overlap__card .btn--light { margin-top: 8px; }
@media (min-width: 1024px) {
  .overlap { min-height: 580px; display: block; }
  .overlap__media {
    width: 62%;
    height: 560px;
  }
  .overlap__media img { height: 100%; aspect-ratio: auto; }
  .overlap__card {
    position: absolute;
    right: 0;
    top: 60px;
    width: 52%;
    margin: 0;
    padding: 56px 56px 48px;
  }
}

/* Themes panel: mint background with circle-check bullets */
.themes-panel {
  background: var(--color-7);
  border-radius: 20px;
  padding: 40px 24px;
  position: relative;
}
.themes-panel h2 {
  margin-bottom: 16px;
}
.themes-panel__intro {
  color: var(--color-1);
  margin-bottom: 32px;
  max-width: 640px;
}
.themes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.themes-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--color-1);
  line-height: 1.35;
}
.themes-list__check {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-1);
  color: var(--color-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.themes-panel__outro {
  color: var(--color-3);
  margin: 0;
}
@media (min-width: 768px) {
  .themes-panel { padding: 56px 48px; }
  .themes-list { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}
@media (min-width: 1024px) {
  .themes-panel { padding: 72px 64px; }
  .themes-list { grid-template-columns: repeat(3, 1fr); column-gap: 48px; }
}

/* Service block (alternating 2-col with image) */
.service-block { display: grid; gap: 32px; align-items: center; margin-bottom: 72px; }
.service-block:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .service-block { grid-template-columns: 1fr 1fr; gap: 56px; }
  .service-block--flip .service-block__media { order: 2; }
}
.service-block h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

/* Service columns (2-col text with thin dividers) */
.service-columns {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .service-columns { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.service-columns__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-item + .service-item {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.service-item h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 16px;
}
.service-item__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16 / 10;
  background: var(--color-7);
}
.service-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Phone sticky (contact page mobile) */
.sticky-phone {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-2);
  color: var(--color-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.sticky-phone:hover { background: var(--color-5); color: var(--color-1); transform: scale(1.05); }
@media (min-width: 1024px) { .sticky-phone { display: none; } }

/* Ensure anchor scroll accounts for fixed header */
section[id], h2[id], h3[id] { scroll-margin-top: 96px; }
