/* =========================================================
   Thai Massage Siam — Design System
   Fonts: Playfair Display (headings) + Inter (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  /* Core palette — deep jade + temple gold, warm ivory ground */
  --ink: #16302A;
  --ink-soft: #4B6359;
  --ink-faint: #7C9089;
  --bg: #FBF7EE;
  --bg-alt: #F1E7D3;
  --surface: #FFFFFF;
  --line: #E4D9C2;

  --primary: #0F6B54;
  --primary-dark: #0A4B3B;
  --primary-light: #E4F0EB;
  --gold: #C79A3E;
  --gold-light: #F1DDAE;
  --terracotta: #C1592C;
  --cream: #F6F1E4;

  --shadow-sm: 0 6px 16px -8px rgba(15, 45, 35, .25);
  --shadow-md: 0 20px 45px -20px rgba(15, 45, 35, .35);
  --shadow-lg: 0 30px 70px -25px rgba(15, 45, 35, .45);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.22, .68, 0, 1);
  --dur-fast: .2s;
  --dur-med: .45s;
  --dur-slow: .8s;

  --container: 1180px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--primary); }

p { margin: 0 0 1em; }
.lede { color: var(--ink-soft); font-size: 1.05rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .9em;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(160deg, var(--primary-dark), var(--ink) 120%);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .lede { color: #C9D6CC; }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before { background: var(--gold-light); }

.section-head { max-width: 640px; margin: 0 0 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .95em 1.7em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform var(--dur-fast) var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.97); }

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

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

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  border-color: rgba(246,241,228,.4);
  color: var(--cream);
}
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(246,241,228,.08); transform: translateY(-2px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.text-link:hover { border-color: currentColor; gap: .6em; }
.text-link svg { transition: transform var(--dur-fast) var(--ease); }
.text-link:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, .85);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), background var(--dur-med) var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(15,45,35,.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.05rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  padding: .3rem 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right var(--dur-med) var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-actions .btn { padding: .75em 1.4em; font-size: .88rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}
.nav-phone svg { color: var(--primary); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: background var(--dur-fast) var(--ease);
}
.nav-toggle:hover { background: var(--bg-alt); }

.site-header .mobile-nav {
  display: none;
  flex-direction: column;
  gap: .2rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid var(--line);
  margin-top: .2rem;
  padding-top: 1rem;
}
.mobile-nav a {
  padding: .8rem .2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.mobile-nav a[aria-current="page"] { color: var(--primary); }
.mobile-nav .btn { margin-top: .9rem; justify-content: center; }
.site-header .mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin-inline: auto; }
}

.hero-copy h1 { margin-bottom: .5em; }
.hero-copy .lede { max-width: 46ch; font-size: 1.12rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin: 2rem 0 2.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .55em;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-trust svg { color: var(--primary); width: 19px; height: 19px; flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; }

.leaf-drift { animation: leafDrift 9s ease-in-out infinite; }
.leaf-drift:nth-child(2) { animation-duration: 11s; animation-delay: -2s; }
.leaf-drift:nth-child(3) { animation-duration: 7.5s; animation-delay: -4s; }
@keyframes leafDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6px, -14px) rotate(6deg); }
}

.steam path { animation: steamRise 6s ease-in-out infinite; transform-origin: bottom center; }
.steam path:nth-child(2) { animation-delay: -2s; }
.steam path:nth-child(3) { animation-delay: -4s; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(6px) scaleY(.9); }
  30% { opacity: .55; }
  100% { opacity: 0; transform: translateY(-34px) scaleY(1.15); }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-block: 2.6rem;
}
@media (max-width: 760px) { .stats-strip .container { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-figure {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.9rem;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 1.3rem;
  transition: transform var(--dur-med) var(--ease), background var(--dur-med) var(--ease);
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { transform: scale(1.08) rotate(-6deg); background: var(--gold-light); color: var(--terracotta); }
.card h3 { margin-bottom: .5em; }
.card .lede { margin-bottom: 0; font-size: .96rem; }

.card-link {
  display: inline-flex; align-items: center; gap: .4em;
  margin-top: 1.1rem; font-weight: 600; font-size: .9rem; color: var(--primary);
}
.card-link svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Service price cards (Leistungen) ---------- */
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.featured { border-color: var(--gold); background: linear-gradient(180deg, var(--cream), var(--surface) 40%); }
.service-badge {
  position: absolute; top: -13px; right: 1.8rem;
  background: var(--gold); color: var(--primary-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .35em .9em; border-radius: var(--radius-pill);
}
.service-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.service-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.5rem; color: var(--primary);
  white-space: nowrap;
}
.service-price small { font-family: 'Inter', sans-serif; font-weight: 500; font-size: .68rem; color: var(--ink-faint); display: block; text-align: right; }
.service-meta {
  display: flex; gap: 1.2rem; font-size: .85rem; color: var(--ink-soft);
  padding-top: .9rem; border-top: 1px dashed var(--line); margin-top: auto;
}
.service-meta span { display: flex; align-items: center; gap: .4em; }
.service-meta svg { width: 15px; height: 15px; color: var(--gold); }

.category-tabs {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.6rem;
}
.category-tab {
  padding: .6em 1.3em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface);
  transition: all var(--dur-fast) var(--ease);
}
.category-tab:hover { border-color: var(--primary); color: var(--primary); }
.category-tab.is-active { background: var(--primary); border-color: var(--primary); color: var(--cream); }

.service-group { margin-bottom: 3.5rem; }
.service-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.service-group-head h2 { margin: 0; }

/* ---------- Split / band sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse .split-visual { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-visual { order: -1; }
}
.split-visual svg { width: 100%; height: auto; }

.spec-list { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.5rem; }
.spec-list dt { font-weight: 600; color: var(--ink); }
.spec-list dd { margin: 0; color: var(--ink-soft); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; position: relative; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding-top: .5rem;
}
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--gold);
  color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.section-dark .step-num { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-stars { display: flex; gap: .2em; color: var(--gold); }
.quote-stars svg { width: 16px; height: 16px; }
.quote-text { font-size: 1.02rem; color: var(--ink); font-style: italic; margin: 0; }
.quote-person { display: flex; align-items: center; gap: .8rem; margin: 0; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light); color: var(--primary-dark);
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.person-name { font-weight: 600; font-size: .92rem; }
.person-meta { font-size: .8rem; color: var(--ink-faint); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 1.2rem;
  background: var(--primary-light);
}
.team-photo svg { width: 100%; height: 100%; }
.team-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.15rem; margin-bottom: .2em; }
.team-role { color: var(--gold); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .6em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--primary-dark), var(--primary) 130%);
  color: var(--cream);
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); }
.cta-band .lede { color: #D7E4DA; max-width: 52ch; margin-inline: auto; }
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(246, 241, 228, .07);
}
.cta-band::before { width: 320px; height: 320px; top: -160px; right: -80px; }
.cta-band::after { width: 220px; height: 220px; bottom: -120px; left: -60px; }

/* ---------- Divider ---------- */
.ornament-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--gold);
  margin: 0 0 -1rem;
}
.ornament-divider::before, .ornament-divider::after {
  content: ''; height: 1px; width: 60px; background: var(--line);
}

/* ---------- Opening hours + contact page ---------- */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .6rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.is-today td { color: var(--primary); font-weight: 700; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail .icon-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail .icon-badge svg { width: 20px; height: 20px; }
.contact-detail h4 { margin: 0 0 .2em; font-family: 'Inter',sans-serif; font-size: .95rem; }
.contact-detail p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.contact-detail a { color: var(--ink); font-weight: 500; }
.contact-detail a:hover { color: var(--primary); }

.map-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  background: var(--bg-alt);
}
.map-visual svg { width: 100%; height: 100%; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: .85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-field { display: flex; align-items: flex-start; gap: .7em; }
.checkbox-field input { margin-top: .25em; width: 17px; height: 17px; accent-color: var(--primary); flex-shrink: 0; }
.checkbox-field label { font-weight: 400; font-size: .86rem; color: var(--ink-soft); }

.form-status {
  display: none;
  align-items: center;
  gap: .7em;
  padding: 1em 1.3em;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: .92rem;
  margin-top: 1.2rem;
}
.form-status.is-visible { display: flex; }
.form-status svg { flex-shrink: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0;
  background: none; border: none; text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; font-weight: 600; color: var(--ink);
}
.faq-question .icon-plus {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line); position: relative;
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.faq-question .icon-plus::before, .faq-question .icon-plus::after {
  content: ''; position: absolute; background: var(--primary);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-question .icon-plus::before { width: 12px; height: 1.6px; }
.faq-question .icon-plus::after { width: 1.6px; height: 12px; transition: opacity var(--dur-fast) var(--ease); }
.faq-item.is-open .icon-plus { transform: rotate(180deg); border-color: var(--primary); }
.faq-item.is-open .icon-plus::after { opacity: 0; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease);
}
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--ink-soft); margin: 0; max-width: 65ch; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* ---------- Timeline (Über uns) ---------- */
.timeline { position: relative; padding-left: 2.4rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.4rem; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--gold);
}
.timeline-year { font-weight: 700; color: var(--primary); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Values list ---------- */
.value-row { display: flex; gap: 1.3rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: none; }
.value-row .card-icon { margin-bottom: 0; flex-shrink: 0; }

/* ---------- Legal pages ---------- */
.legal-content h2 { margin-top: 2.2rem; }
.legal-content h3 { margin-top: 1.6rem; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1em; }
.legal-content a { color: var(--primary); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #C9D6CC;
  padding-top: clamp(3.5rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem;
  color: var(--cream); margin-bottom: 1rem;
}
.footer-brand svg { width: 38px; height: 38px; }
.site-footer h4 {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.site-footer a, .site-footer p { display: block; margin-bottom: .75rem; font-size: .92rem; color: #C9D6CC; }
.site-footer a:hover { color: var(--cream); }
.social-row { display: flex; gap: .7rem; margin-top: 1.3rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-row svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  padding: 1.6rem 0 2rem;
  font-size: .82rem; color: #8AA096;
}
.footer-bottom a { display: inline; color: #8AA096; }
.footer-bottom a:hover { color: var(--cream); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), background var(--dur-fast) var(--ease);
  z-index: 90;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--primary-dark); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2) { transition-delay: .1s; }
.grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3) { transition-delay: .2s; }
.grid-4 .reveal:nth-child(4) { transition-delay: .3s; }
.steps .reveal:nth-child(2) { transition-delay: .1s; }
.steps .reveal:nth-child(3) { transition-delay: .2s; }
.steps .reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .leaf-drift, .steam path { animation: none !important; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--primary); color: var(--cream);
  padding: .8em 1.4em; border-radius: 0 0 8px 0; z-index: 999; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero .lede { max-width: 60ch; margin-inline: auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: .5em;
  font-size: .85rem; color: var(--ink-faint); margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: var(--primary); }

::selection { background: var(--gold-light); color: var(--ink); }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; }
