/* =========================================================
   Praxis für Ergotherapie und Physiotherapie – Weimar
   Stylesheet · Design "Warm & Organisch" (Entwurf B)

   Gestaltungscode:
   · Bogenformen statt Kacheln
   · warme Sand-, Creme- und Tontöne, Rot als Akzent
   · feines Papierkorn über der gesamten Seite
   · Fraunces als Anzeigenschrift, Handschrift als Akzent
   · dunkle Tonblöcke als Kontrast zu hellen Abschnitten
   ========================================================= */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Annie Use Your Telescope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/annie-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */
:root {
  /* Warme Grundtöne */
  --cream: #f6f0e6;
  --cream-2: #ece3d4;
  --surface: #ffffff;
  --clay: #2a2320;
  --clay-2: #3a312c;

  /* Akzente */
  --red: #a4201d;
  --red-dark: #8c1a17;
  --red-soft: #f6e6e2;
  --sand: #c9b391;
  --sand-deep: #7d6a45; /* barrierefreie Textvariante des Sandtons */

  /* Text */
  --ink: #241f1c;
  --ink-2: #4a423b;
  --muted: #6f6459;
  --on-clay: #f6f0e6;
  --on-clay-dim: #c3b8ac;

  --line: #ded3c0;
  --line-soft: #ece3d4;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 26px;
  --radius-block: clamp(28px, 5vw, 60px);
  --arch: 50% 50% var(--radius) var(--radius) / 34% 34% 3% 3%;

  --shadow-sm: 0 2px 6px rgba(42, 35, 32, 0.05);
  --shadow: 0 18px 40px -28px rgba(42, 35, 32, 0.45);
  --shadow-lg: 0 30px 60px -40px rgba(42, 35, 32, 0.5);

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-hand: 'Annie Use Your Telescope', 'Segoe Script', cursive;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Feines Papierkorn – nimmt dem Flächendesign die Sterilität */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

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

img {
  height: auto;
}

a {
  color: var(--red);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

::selection {
  background: var(--sand);
  color: var(--clay);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--clay);
  color: var(--cream);
  padding: 0.85rem 1.4rem;
  border-radius: 0 0 999px 999px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Mikro-Typografie ---------- */
.eyebrow,
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-deep);
}

.eyebrow svg,
.section__label svg {
  width: 15px;
  height: 15px;
  stroke: var(--red);
}

/* ---------- Buttons: Pillenform ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
  box-shadow: 0 10px 22px -12px rgba(164, 32, 29, 0.85);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.62rem 1.1rem;
  font-size: 0.875rem;
}

.btn:active {
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 240, 230, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.22s ease, background-color 0.22s ease;
}

.site-header.is-stuck {
  background: rgba(246, 240, 230, 0.95);
  box-shadow: 0 1px 0 var(--line-soft), 0 14px 30px -26px rgba(42, 35, 32, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
}

.brand__text {
  display: grid;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}

.brand__sub {
  font-size: 0.775rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.18s ease;
}

/* Unterstrich wächst von links – ruhiger als ein Hintergrundwechsel */
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: calc(100% - 0.75rem);
  bottom: 0.15rem;
  height: 1.5px;
  background: var(--red);
  transition: right 0.28s ease;
}

.nav a:not(.btn):hover {
  color: var(--ink);
}

.nav a:not(.btn):hover::after {
  right: 0.75rem;
}

.nav a[aria-current='page'] {
  color: var(--red);
}

.nav a[aria-current='page']::after {
  right: 0.75rem;
  background: var(--sand);
}

.header-cta {
  display: inline-flex;
}

/* Der Telefon-Button in der Navigation ist nur im Mobilmenü sichtbar */
.nav > .btn {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    padding: 0.85rem 0.9rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }

  .nav a:not(.btn)::after {
    left: 0.9rem;
    bottom: 0.4rem;
  }

  .nav a:not(.btn):hover::after {
    right: 0.9rem;
  }

  .nav > .btn {
    display: inline-flex;
    margin-top: 0.8rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(3rem, 7vw, 6rem);
}

/* weicher Lichtkreis im Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  top: -14vw;
  right: 0;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--cream-2), transparent 68%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0.8rem 0 0.9rem;
}

.hero__motto {
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  color: var(--red);
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta svg {
  width: 17px;
  height: 17px;
  stroke: var(--sand-deep);
  flex: none;
}

/* Der Bogen – Formcode der gesamten Seite */
.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 179, 145, 0.55);
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  left: -1.5rem;
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 19rem;
  padding: 1rem 1.3rem;
  background: var(--clay);
  color: var(--on-clay);
  border-radius: 999px 999px 999px 8px;
  box-shadow: 0 22px 40px -22px rgba(42, 35, 32, 0.7);
}

.hero__card svg {
  width: 22px;
  height: 22px;
  stroke: var(--sand);
  flex: none;
}

.hero__card div {
  display: grid;
  line-height: 1.35;
}

.hero__card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.hero__card span {
  font-size: 0.8rem;
  color: var(--on-clay-dim);
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .hero__frame img {
    aspect-ratio: 5 / 4;
  }

  .hero__card {
    left: auto;
    right: 0.75rem;
    bottom: 1rem;
  }
}

/* ---------- Werte-Zeile (facts) ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-block: 1px solid var(--line-soft);
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fact__icon {
  display: grid;
  place-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--red);
  flex: none;
}

.fact__icon svg {
  width: 21px;
  height: 21px;
}

.fact h3 {
  font-size: 1.16rem;
  margin: 0.1rem 0 0.3rem;
}

.fact p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .facts {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ---------- Abschnitte ---------- */
.section {
  padding-block: clamp(3.25rem, 7vw, 6rem);
}

/* Dunkler Tonblock als Kontrast – mit großzügig gerundeten Kanten */
.section--tint {
  background: var(--clay);
  color: var(--on-clay);
  border-radius: var(--radius-block);
  margin-block: clamp(1.5rem, 4vw, 3.5rem);
}

.section--tint h1,
.section--tint h2,
.section--tint h3,
.section--tint h4 {
  color: var(--on-clay);
}

.section--tint p {
  color: var(--on-clay-dim);
}

.section--tint .section__label,
.section--tint .eyebrow {
  color: var(--sand);
}

.section__head {
  max-width: 54ch;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section__head h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  margin: 0.55rem 0 0.7rem;
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

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

/* Kontrast im dunklen Tonblock sicherstellen */
.section--tint .section__head p,
.section--tint .hours__note,
.section--tint .footer-hours__note {
  color: var(--on-clay-dim);
}

/* ---------- Leistungen / Stellen ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.service {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}

.service__icon {
  display: grid;
  place-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 1.1rem;
}

.service__icon svg {
  width: 26px;
  height: 26px;
}

.service h2,
.service h3 {
  margin: 0;
}

.service > h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.service__intro {
  margin: 0.5rem 0 1.8rem;
  color: var(--muted);
}

.service__group {
  margin-top: 1.8rem;
}

.service__group h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 0.8rem;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.list-check li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
  transform: translateY(-2px);
}

.list-check--plain li::before {
  background: var(--sand);
}

.service__note {
  margin: 1.8rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--muted);
}

.service__note strong {
  color: var(--ink);
}

/* Leistungskarten innerhalb des dunklen Blocks */
.section--tint .service {
  background: var(--clay-2);
  border-color: rgba(201, 179, 145, 0.18);
  box-shadow: none;
}

.section--tint .service__icon {
  background: rgba(201, 179, 145, 0.14);
  color: var(--sand);
}

.section--tint .service__intro {
  color: var(--on-clay-dim);
}

.section--tint .service__group h3 {
  color: var(--sand);
}

.section--tint .list-check li {
  border-bottom-color: rgba(246, 240, 230, 0.09);
  color: var(--on-clay);
}

.section--tint .list-check li::before {
  background: #c95f4a;
}

.section--tint .list-check--plain li::before {
  background: rgba(201, 179, 145, 0.5);
}

.section--tint .service__note {
  background: rgba(201, 179, 145, 0.1);
  color: var(--on-clay-dim);
}

.section--tint .service__note strong {
  color: var(--on-clay);
}

/* Allgemeiner Hinweis unter beiden Leistungskarten */
.services__note {
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  max-width: 44rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.services__note strong {
  color: var(--ink);
}

.section--tint .services__note {
  background: rgba(201, 179, 145, 0.1);
  color: var(--on-clay-dim);
}

.section--tint .services__note strong {
  color: var(--on-clay);
}

/* Werte-Zeile innerhalb des dunklen Blocks */
.section--tint .facts {
  border-block-color: rgba(201, 179, 145, 0.2);
}

.section--tint .fact__icon {
  background: rgba(201, 179, 145, 0.14);
  color: var(--sand);
}

.section--tint .fact p {
  color: var(--on-clay-dim);
}

/* ---------- Zitat: Sandband mit durchscheinendem Bild ---------- */
.quote {
  position: relative;
  margin: 0;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--sand);
  color: var(--clay);
  overflow: hidden;
  text-align: center;
}

.quote__bg {
  position: absolute;
  inset: 0;
}

.quote__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: multiply;
}

.quote blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.quote figcaption {
  position: relative;
  margin-top: 1.3rem;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: #5f4f34;
}

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-lg);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-list > li > svg {
  width: 44px;
  height: 44px;
  padding: 0.7rem;
  border-radius: 50%;
  background: var(--cream-2);
  stroke: var(--red);
  flex: none;
}

.contact-list__hint {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 0.2rem;
}

.value {
  font-size: 1.02rem;
  font-style: normal;
  color: var(--ink);
  line-height: 1.55;
}

a.value {
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(164, 32, 29, 0.3);
  transition: border-color 0.18s ease;
}

a.value:hover {
  border-bottom-color: var(--red);
}

.hours {
  display: grid;
  margin: 0.3rem 0 0;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.28rem 0;
  border-bottom: 1px dashed var(--line-soft);
  font-variant-numeric: tabular-nums;
}

.hours__row dt {
  color: var(--ink);
}

.hours__row dd {
  margin: 0;
  color: var(--muted);
}

.hours__note {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ---------- Karte (Zwei-Klick-Lösung) ---------- */
.map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  border: 1px dashed var(--sand);
  aspect-ratio: 1 / 1;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__consent {
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.map__consent svg {
  width: 34px;
  height: 34px;
  stroke: var(--sand-deep);
}

.map__consent p {
  margin: 0;
  max-width: 30ch;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--clay);
  color: var(--on-clay);
  border-radius: var(--radius-block);
  padding: clamp(2.2rem, 5vw, 4rem);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--on-clay);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.cta-band p {
  margin: 0;
  max-width: 46ch;
  color: var(--on-clay-dim);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-band .btn--primary {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--clay);
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: var(--sand);
  border-color: var(--sand);
}

.cta-band .btn--ghost {
  border-color: rgba(246, 240, 230, 0.5);
  color: var(--on-clay);
}

.cta-band .btn--ghost:hover {
  background: var(--cream);
  color: var(--clay);
}

/* ---------- Seitenkopf der Unterseiten ---------- */
.page-header {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  background: var(--cream-2);
  border-radius: 0 0 var(--radius-block) var(--radius-block);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(201, 179, 145, 0.35), transparent 65%);
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin: 0.6rem 0 0.7rem;
}

.page-header p {
  position: relative;
  margin: 0;
  max-width: 58ch;
  color: var(--ink-2);
}

.breadcrumb {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--sand-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  border-bottom-color: var(--sand-deep);
}

/* ---------- Fließtext (Impressum, Datenschutz) ---------- */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 2.6rem 0 0.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}

.prose > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  font-size: 1.1rem;
  margin: 1.8rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--ink-2);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0 0;
  box-shadow: var(--shadow-sm);
}

.callout p:first-child {
  margin-top: 0;
}

.callout p:last-child {
  margin-bottom: 0;
}

.caps {
  background: var(--red-soft);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.caps p:first-child {
  margin-top: 0;
}

.caps p:last-child {
  margin-bottom: 0;
}

/* ---------- Inhaltsverzeichnis ---------- */
.layout-aside {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.toc {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.toc h2 {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin: 0 0 0.9rem;
}

.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.toc a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.toc a:hover {
  color: var(--red);
  border-bottom-color: var(--line-soft);
}

@media (max-width: 900px) {
  .layout-aside {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

/* ---------- Anfahrt ---------- */
.route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .route {
    grid-template-columns: 1fr;
  }
}

.arrival {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.arrival article {
  background: var(--clay-2);
  border: 1px solid rgba(201, 179, 145, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.arrival h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.16rem;
  margin: 0 0 0.6rem;
}

.arrival h3 svg {
  width: 22px;
  height: 22px;
  stroke: var(--sand);
  flex: none;
}

.arrival p {
  margin: 0;
  font-size: 0.97rem;
}

@media (max-width: 820px) {
  .arrival {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-2);
  padding-block: clamp(2.75rem, 5vw, 4rem);
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.8rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
}

.footer-motto {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--red);
  margin: 0.4rem 0 0;
}

.site-footer h2 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin: 0 0 0.9rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-list a,
.site-footer address {
  color: var(--muted);
  font-style: normal;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--red);
}

.footer-hours {
  display: grid;
  margin: 0;
}

.footer-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.2rem 0;
  font-variant-numeric: tabular-nums;
}

.footer-hours__row dd {
  margin: 0;
}

.footer-hours__note {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--sand);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--sand-deep);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--red);
}

/* ---------- Reveal beim Scrollen ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Druck ---------- */
@media print {
  body::after,
  .site-header,
  .nav-toggle,
  .map,
  .cta-band,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section--tint,
  .quote,
  .arrival article {
    background: #fff !important;
    color: #000 !important;
  }
}
