/* ============================================================
   Der Hausarzt — Warm-persönlicher Look
   Cream + Sage + Terracotta-Akzent. Cormorant Garamond für
   Headings, Inter für Fließtext. Ziel: Vertrauen, Wärme,
   „kleine Praxis, die Zeit hat".
   ============================================================ */

:root {
  /* Cream-Welt */
  --cream:        #f5efe6;
  --cream-soft:   #faf6ee;
  --cream-deep:   #ebe2d2;
  --surface:      #ffffff;

  /* Sage-Akzent */
  --sage:         #7c9885;
  --sage-deep:    #5a7864;
  --sage-soft:    rgba(124, 152, 133, 0.10);
  --sage-glow:    rgba(124, 152, 133, 0.22);

  /* Sekundär: Terracotta (Tee-Note, sparsam) */
  --terracotta:   #c47a5a;
  --terracotta-deep: #a56145;
  --terracotta-soft: rgba(196, 122, 90, 0.10);

  /* Tinte (warm-anthrazit, kein reines Schwarz) */
  --ink:          #2d2a26;
  --ink-soft:     #45403a;
  --ink-mid:      #5a544c;
  --ink-muted:    #8a8378;
  --line:         #e3dccb;
  --line-soft:    #ede6d6;

  /* Status */
  --danger:       #b85a4a;
  --danger-soft:  rgba(184, 90, 74, 0.08);
  --success:      #5a7864;
  --success-soft: rgba(90, 120, 100, 0.10);

  /* Schatten weich */
  --shadow-sm: 0 1px 2px rgba(45, 42, 38, 0.05);
  --shadow-md: 0 6px 16px rgba(45, 42, 38, 0.06);
  --shadow-lg: 0 12px 28px rgba(45, 42, 38, 0.08);
  --shadow-xl: 0 22px 48px rgba(45, 42, 38, 0.12);

  /* Radius (deutlich runder als steuerberater) */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --container: 1140px;
  --nav-h: 76px;
  --t-fast: 180ms cubic-bezier(.22,.61,.36,1);
  --t-mid:  280ms cubic-bezier(.22,.61,.36,1);

    --demo-banner-bg: #5a7864;
    --demo-banner-fg: #faf6ee;
    --demo-banner-accent: #c47a5a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--sage-deep);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
p.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.65; }

::selection { background: var(--sage); color: var(--cream-soft); }

/* ─── LAYOUT ───────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.section--cream { background: var(--cream); }
.section--paper { background: var(--cream-soft); }
.section--sage  { background: var(--sage); color: var(--cream-soft); }
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--cream-soft); }
.section--sage p { color: rgba(255, 255, 255, 0.85); }

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head--left { margin: 0 0 56px; text-align: left; }

/* ─── EYEBROW ───────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--sage);
}
.section--sage .eyebrow { color: var(--cream-soft); }
.section--sage .eyebrow::before { background: var(--cream-soft); }

/* ─── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.97rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--sage-deep);
  color: var(--cream-soft);
}
.btn--primary:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-muted);
}
.btn--ghost:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}
.btn--light {
  background: var(--cream-soft);
  color: var(--sage-deep);
}
.btn--light:hover {
  background: var(--surface);
}
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ─── NAV ───────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__brand small {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.nav__links a { white-space: nowrap; }
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color var(--t-fast);
  position: relative;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--sage-deep);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 1px;
}
.nav__lang {
  display: inline-flex;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.nav__lang a { padding: 4px 6px; border-radius: var(--r-sm); }
.nav__lang a[aria-current="page"] { color: var(--sage-deep); background: var(--sage-soft); }
.nav__cta {
  display: inline-flex;
}

.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast);
}

/* Mobile drawer */
@media (max-width: 1024px) {
  .nav__cta { display: none; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform var(--t-mid);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__lang { padding-left: 0; border-left: 0; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--line); }
  .nav__burger { display: inline-flex; }
}

/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(80px, 10vw, 128px);
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__text { max-width: 560px; }
.hero__sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 22px 0 32px;
  line-height: 1.65;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 8px 4px;
}
.hero__phone strong { color: var(--ink); font-weight: 700; letter-spacing: 0.01em; }

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--ink-mid);
}
.hero__assurance-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__assurance-item svg {
  width: 18px;
  height: 18px;
  color: var(--sage-deep);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__image {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--cream-deep);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  left: -22px; bottom: 24px;
  background: var(--cream-soft);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero__overlay-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__overlay-icon svg { width: 22px; height: 22px; }
.hero__overlay-text { display: flex; flex-direction: column; }
.hero__overlay-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.hero__overlay-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .hero__overlay { left: 14px; bottom: 14px; }
}

/* ─── VERTRAUENS-BALKEN ─────────────────────────────────────── */

.trustbar {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trustbar__item {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trustbar__icon svg { width: 20px; height: 20px; }
.trustbar__title {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.trustbar__desc {
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-right: 0; }
  .trustbar__item:nth-child(1), .trustbar__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trustbar__item:last-child { border-bottom: 0; }
}

/* ─── SERVICE-GRID ──────────────────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-deep);
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-mid);
}
.service:hover .service__media img { transform: scale(1.04); }

.service__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}
.service__desc {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.service__more {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sage-deep);
  align-self: flex-start;
  transition: gap var(--t-fast);
  display: inline-flex;
  gap: 4px;
}
.service__more:hover { gap: 8px; }

/* Image-Left/Right Service-Sektionen für leistungen.html */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row--reverse .service-row__media { order: 2; }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row--reverse .service-row__media { order: 0; }
}
.service-row__media {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-deep);
}
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__title {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin-bottom: 18px;
}
.service-row__list { padding: 0; margin: 18px 0 0; list-style: none; }
.service-row__list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  border-bottom: 1px dashed var(--line);
}
.service-row__list li:last-child { border-bottom: 0; }
.service-row__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 2px;
  background: var(--sage);
}

/* ─── ABOUT-SPLIT ───────────────────────────────────────────── */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }

.about-split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--cream-deep);
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__quote {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(45, 42, 38, 0.92);
  backdrop-filter: blur(8px);
  color: var(--cream-soft);
  padding: 18px 22px;
  border-left: 3px solid var(--terracotta);
  border-radius: var(--r-sm);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
}
.about-split__quote-cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  margin-top: 10px;
  font-weight: 500;
}

.about-split__features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.about-split__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.about-split__features li:last-child { border-bottom: 0; }
.about-split__features svg {
  width: 22px; height: 22px;
  color: var(--sage-deep);
  flex-shrink: 0;
  margin-top: 1px;
}
.about-split__features strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ─── TEAM ──────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .team-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid--3 { grid-template-columns: 1fr; } }

.team-card {
  text-align: left;
}
.team-card__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.team-card__role {
  font-size: 0.85rem;
  color: var(--sage-deep);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── PRAXIS-GALERIE ────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 16/9;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.gallery-grid img:nth-child(1) { grid-row: 1/3; }
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }
  .gallery-grid img { aspect-ratio: 4/3; }
  .gallery-grid img:nth-child(1) { grid-row: auto; grid-column: 1/3; }
}

/* ─── BOOKING / SLOT-PICKER ─────────────────────────────────── */

.booking {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .booking { grid-template-columns: 1fr; } }

.booking__intro {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.booking__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-md);
}
.booking__demo-note {
  background: var(--terracotta-soft);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin: 22px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.slots-host { margin: 16px 0 28px; max-height: 420px; overflow-y: auto; padding-right: 6px; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin: 8px 0 6px;
}
.slot-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 10px;
  min-height: 58px;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--t-fast);
}
.slot-btn strong { font-size: 1rem; }
.slot-btn .form__hint { font-size: 0.74rem; font-weight: 500; color: var(--ink-muted); }
.slot-btn:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
  background: var(--sage-soft);
}
.slot-btn.is-selected {
  border-color: var(--sage-deep);
  background: var(--sage-deep);
  color: var(--cream-soft);
  box-shadow: 0 6px 16px var(--sage-glow);
}
.slot-btn.is-selected .form__hint { color: rgba(255,255,255,0.78); }
.slot-btn[disabled],
.slot-btn.is-taken {
  cursor: not-allowed;
  opacity: 0.42;
  background: var(--cream);
  text-decoration: line-through;
}

.day-header {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 22px 0 8px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.day-header:first-child { margin-top: 0; }
.day-header small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

/* ─── FORMS ─────────────────────────────────────────────────── */

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form__label--required::after {
  content: " *";
  color: var(--terracotta);
}
.form__input, .form__textarea, .form__select {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.97rem;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}
.form__textarea { resize: vertical; min-height: 110px; }
.form__hint { font-size: 0.83rem; color: var(--ink-muted); }
.form__radio-group {
  display: inline-flex;
  gap: 16px;
  padding-top: 4px;
}
.form__radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  cursor: pointer;
}
.form__radio input { accent-color: var(--sage-deep); }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.form__check input { margin-top: 3px; accent-color: var(--sage-deep); }
.form__check a { color: var(--sage-deep); text-decoration: underline; }
.form__error { display: none; color: var(--danger); font-size: 0.82rem; font-weight: 600; }
.form__field--error .form__error { display: block; }
.form__field--error .form__input,
.form__field--error .form__select { border-color: var(--danger); }

.form__success {
  display: none;
  background: var(--success-soft);
  border-left: 3px solid var(--success);
  padding: 18px 22px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.6;
}
.form__success small { color: var(--ink-mid); font-size: 0.85rem; display: block; margin-top: 8px; }
.form__success.is-visible { display: block; }

.form__error-banner {
  display: none;
  background: var(--danger-soft);
  border-left: 3px solid var(--danger);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 0.94rem;
}
.form__error-banner.is-visible { display: block; }

/* Kontaktformular spezifisch */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  border: 1px solid var(--line);
}
.info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.info-block dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 16px;
  font-size: 0.95rem;
}
.info-block dt { color: var(--ink-muted); font-weight: 500; }
.info-block dd { margin: 0; color: var(--ink); }

.notdienst {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: var(--r-sm);
  background: var(--terracotta-soft);
  border-left: 3px solid var(--terracotta);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.notdienst strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 0.98rem; }

/* ─── FAQ ───────────────────────────────────────────────────── */

.faq { max-width: 780px; margin: 0 auto; }
.faq__item {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq__item.is-open { border-color: var(--sage); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq__q::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: var(--r-pill);
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  display: none;
}
.faq__item.is-open .faq__a { display: block; }

/* ─── CTA-BANNER ────────────────────────────────────────────── */

.cta-banner {
  text-align: center;
  padding: clamp(56px, 8vw, 92px) clamp(24px, 5vw, 64px);
  background: var(--sage);
  color: var(--cream-soft);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--cream-soft); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.86); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn--light { color: var(--sage-deep); background: var(--cream-soft); }
.cta-banner .btn--light:hover { background: var(--surface); transform: translateY(-1px); }

/* ─── KONTAKT-CTA auf Index ─────────────────────────────────── */

.contact-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px);
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .contact-cta { grid-template-columns: 1fr; padding: 32px 28px; } }
.contact-cta__map {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.contact-cta__map img { width: 100%; height: 100%; object-fit: cover; }
.contact-cta__maplink {
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sage-deep);
  box-shadow: var(--shadow-sm);
}

/* ─── TEE-DETAIL (Markenakzent) ─────────────────────────────── */

.tea-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  background: var(--cream-soft);
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .tea-block { grid-template-columns: 1fr; padding: 28px; } }
.tea-block__img {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tea-block__img img { width: 100%; height: 100%; object-fit: cover; }
.tea-block__title {
  font-style: italic;
  color: var(--terracotta-deep);
  margin-bottom: 12px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-soft);
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.62); max-width: 280px; }
.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--cream-soft); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */

.legal { max-width: 760px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) 0; }
.legal h1 { margin-bottom: 32px; }
.legal h2 {
  margin-top: 40px;
  font-size: 1.55rem;
}
.legal h3 { margin-top: 28px; font-size: 1.2rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.97rem; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--sage-deep); text-decoration: underline; }
.legal__note {
  margin-top: 48px;
  padding: 18px 22px;
  background: var(--terracotta-soft);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* 404 */
.error-page {
  text-align: center;
  padding: clamp(80px, 14vw, 160px) 0;
}
.error-page__code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--sage);
  line-height: 1;
  margin: 0 0 12px;
}

/* ─── COOKIE-BANNER ─────────────────────────────────────────── */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 480px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-xl);
  z-index: 60;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.cookie-banner__body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__body a { color: var(--sage-deep); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 18px 20px; }
}

/* ─── REVEAL-ANIMATION ──────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── SUB-HERO (kleinere Page-Header) ───────────────────────── */

.subhero {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 8vw, 110px) 0 clamp(48px, 6vw, 72px);
}
.subhero__inner { max-width: 720px; }
.subhero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.subhero p { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }

/* ─── FOCUS-VISIBILITY ──────────────────────────────────────── */

a:focus-visible, button:focus-visible,
.form__input:focus-visible, .form__select:focus-visible, .form__textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
