/* =========================================================================
   Hotel am Neckar — styles.css
   Design-Direction: „Ruhige Moderne am Fluss"
   1. Fonts
   2. Tokens
   3. Reset & Basis
   4. Layout-Helfer
   5. Typografie
   6. Buttons, Links, Icons
   7. Header / Navigation / Mobile-Menü
   8. Hero
   9. Stats
  10. Zimmer
  11. Wellen-Divider
  12. Frühstück
  13. Umgebung (horizontal)
  14. Gut zu wissen
  15. Warum wir (dark)
  16. Showcase
  17. Kontakt (Formular + Karte)
  18. Footer
  19. Motion-Startzustände & reduced motion
   ========================================================================= */

/* ---------------------------------------------------------------- 1. Fonts */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------- 2. Tokens */

:root {
  /* Farben */
  --ink: #22282C;
  --ink-soft: #3A4247;
  --ink-muted: #5C666C;
  --paper: #F7F5F1;
  --stone: #ECE8E1;
  --white: #FFFFFF;
  --blue: #2F6E91;
  --blue-deep: #275C7A;      /* Blau für kleinen Text (AA auf Off-White) */
  --blue-dark: #1F4C66;      /* Hover */
  --blue-light: #A8C8DB;
  --blue-tint: #EAF1F6;

  --line: rgba(34, 40, 44, .12);
  --line-strong: rgba(34, 40, 44, .2);
  --line-light: rgba(255, 255, 255, .16);

  /* Schatten */
  --shadow: 0 8px 30px rgba(34, 40, 44, .08);
  --shadow-lg: 0 18px 46px rgba(34, 40, 44, .13);
  --shadow-sm: 0 2px 10px rgba(34, 40, 44, .06);

  /* Radien */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Maße */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 72px;
  --section-y: clamp(72px, 9vw, 132px);

  /* Typo */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
}

/* ------------------------------------------------------- 3. Reset & Basis */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: clamp(1rem, .97rem + .16vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 400;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.015em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

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

[hidden] { display: none !important; }
img { height: auto; }

a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--blue-dark); }

button { font: inherit; color: inherit; }

address { font-style: normal; }

table { border-collapse: collapse; width: 100%; }

::selection { background: var(--blue-light); color: var(--ink); }

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

.section--why :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible { outline-color: var(--blue-light); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 200;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: .9375rem;
  text-decoration: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: transform .2s var(--ease-out);
}
.skip-link:focus-visible {
  transform: translate(-50%, 0);
  color: var(--white);
}

/* -------------------------------------------------------- 4. Layout-Helfer */

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

.section { padding-block: var(--section-y); }

.section--rooms { background: var(--paper); }
.section--breakfast { background: var(--stone); }
.section--places { background: var(--paper); padding-bottom: clamp(56px, 7vw, 96px); }
.section--know { background: var(--stone); }
.section--contact { background: var(--paper); }

/* --------------------------------------------------------- 5. Typografie */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.4;
}
.eyebrow__dash {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
  flex: none;
}
.eyebrow--light { color: var(--blue-light); }

.section-title {
  font-size: clamp(1.95rem, 1.1rem + 3.1vw, 3.2rem);
  font-variation-settings: "opsz" 144;
  margin-bottom: .55em;
}

.section-lead {
  max-width: 62ch;
  font-size: clamp(1.03rem, 1rem + .3vw, 1.1875rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }

@media (max-width: 639px) {
  .section-title br,
  .hero__lead br { display: none; }
}
.section-head--center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-lead { margin-inline: auto; }

.note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: var(--ink-muted);
}
.note .icon { flex: none; color: var(--blue); margin-top: 2px; }

/* ------------------------------------------------ 6. Buttons, Links, Icons */

.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 28px; height: 28px; }

.btn {
  --btn-bg: var(--blue);
  --btn-fg: var(--white);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s var(--ease-soft), color .25s var(--ease-soft),
              transform .25s var(--ease-out), box-shadow .25s var(--ease-soft),
              border-color .25s var(--ease-soft);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: 0 6px 18px rgba(47, 110, 145, .25); }
.btn--primary:hover {
  --btn-bg: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(47, 110, 145, .32);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-border: var(--line-strong);
}
.btn--ghost:hover {
  --btn-bg: var(--white);
  --btn-fg: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn--on-dark {
  --btn-fg: var(--white);
  --btn-border: rgba(255, 255, 255, .5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .08);
}
.btn--on-dark:hover {
  background: rgba(255, 255, 255, .95);
  --btn-fg: var(--ink);
  --btn-border: transparent;
}

.btn--sm { padding: 11px 20px; min-height: 42px; font-size: .875rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(39, 92, 122, .35);
  padding-bottom: 3px;
  transition: color .2s var(--ease-soft), border-color .2s var(--ease-soft);
}
.link-arrow .icon { transition: transform .3s var(--ease-out); }
.link-arrow:hover { color: var(--blue-dark); border-color: var(--blue-dark); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ------------------------------------- 7. Header / Navigation / Mobile-Menü */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--white);
  transition: transform .4s var(--ease-out), background-color .35s var(--ease-soft),
              box-shadow .35s var(--ease-soft), color .35s var(--ease-soft);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 245, 241, .88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .35s var(--ease-soft);
}
.site-header.is-solid { color: var(--ink); }
.site-header.is-solid::after { opacity: 1; }
.site-header.is-hidden { transform: translate3d(0, -102%, 0); }

.site-header__inner {
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Wortmarke (kein PNG — das Logo-PNG hat dunklen Hintergrund) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex: none;
}
.brand__frame {
  position: relative;
  display: block;
  padding: 7px 10px 9px 11px;
  border-left: 1px solid currentColor;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.brand__frame::before,
.brand__frame::after {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  background: currentColor;
}
.brand__frame::before { top: 0; }
.brand__frame::after { bottom: 0; }

.brand__row {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 24;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand__row--1 { font-size: .9375rem; letter-spacing: .34em; }
.brand__row--2 { font-size: .8125rem; letter-spacing: .215em; margin-top: 5px; }

.brand__wave {
  position: absolute;
  left: 11px;
  right: 8px;
  bottom: 3px;
  width: auto;
  height: 7px;
  color: var(--blue-light);
  opacity: .95;
}
.site-header.is-solid .brand__wave { color: var(--blue); }

.brand__garni {
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .72;
  align-self: flex-end;
  padding-bottom: 4px;
}

.nav { display: none; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
}
.nav__list a {
  position: relative;
  display: block;
  padding: 6px 2px;
  color: inherit;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s var(--ease-soft), opacity .2s var(--ease-soft);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__list a:hover { color: inherit; }
.nav__list a:hover::after { transform: scaleX(1); }
.nav__sep {
  width: 1px;
  height: 18px;
  background: currentColor;
  opacity: .28;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.site-header .btn--primary { box-shadow: none; }

.burger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: none;
  border: 0;
  border-radius: var(--r-pill);
  color: inherit;
  cursor: pointer;
}
.burger__box {
  position: relative;
  width: 20px;
  height: 12px;
  display: block;
}
.burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .2s linear;
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { bottom: 0; }
.burger__label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { transform: translateY(-5.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  transition: opacity .3s var(--ease-soft), transform .35s var(--ease-out);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; transform: none; }

.mobile-menu__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu__list { border-top: 1px solid var(--line); }
.mobile-menu__list li { border-bottom: 1px solid var(--line); }
.mobile-menu__list a {
  display: block;
  padding: 18px 2px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 48;
  text-decoration: none;
}
.mobile-menu__list a:hover { color: var(--blue-deep); }
.mobile-menu__cta { align-self: flex-start; }
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .9375rem;
}

body.menu-open { overflow: hidden; }
body.menu-open .site-header { color: var(--ink); }
body.menu-open .site-header::after { opacity: 1; }

@media (max-width: 899px) {
  .brand__garni { display: none; }
}

@media (max-width: 639px) {
  .burger__label { display: none; }
  .burger { padding: 10px; }
  .site-header .btn--sm { padding: 10px 16px; font-size: .8125rem; }
}

@media (max-width: 479px) {
  .brand__row--1 { font-size: .8125rem; letter-spacing: .26em; }
  .brand__row--2 { font-size: .6875rem; letter-spacing: .17em; }
  .brand__frame { padding: 6px 8px 8px 9px; }
  .site-header__inner { gap: 10px; }
}

@media (min-width: 1080px) {
  .nav { display: block; }
  .burger { display: none; }
}

/* ------------------------------------------------------------------ 8. Hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: clamp(72px, 9vh, 120px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
@media (min-height: 900px) and (min-width: 900px) {
  .hero { min-height: 860px; }
}

.hero__media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 40, 44, .70) 0%, rgba(34, 40, 44, .42) 20%,
                    rgba(34, 40, 44, .66) 46%, rgba(34, 40, 44, .90) 100%),
    linear-gradient(90deg, rgba(34, 40, 44, .66) 0%, rgba(34, 40, 44, .40) 45%,
                    rgba(34, 40, 44, .06) 80%);
}

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .92);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.stars { display: inline-flex; gap: 3px; }
.star { width: 15px; height: 15px; fill: var(--blue-light); stroke: none; }

.hero__title {
  max-width: 16ch;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(2.5rem, 1.1rem + 6.2vw, 5rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  line-height: 1.03;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  margin-bottom: -.06em;
}
.hero__title .line__inner { display: block; }

.hero__lead {
  max-width: 52ch;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .93);
  font-size: clamp(1.03rem, 1rem + .35vw, 1.1875rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(72px, 9vh, 120px);
  display: none;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-rl;
}
.hero__scroll:hover { color: var(--white); }
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .1), rgba(255, 255, 255, .8));
}
@media (min-width: 900px) { .hero__scroll { display: flex; } }

/* ----------------------------------------------------------------- 9. Stats */

.stats {
  position: relative;
  background: var(--white);
  padding-block: clamp(44px, 5.5vw, 76px);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 44px);
}
@media (min-width: 900px) {
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat { position: relative; }
@media (min-width: 900px) {
  .stat + .stat { padding-left: clamp(28px, 3vw, 44px); }
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 1px;
    background: var(--line);
  }
}

.stat__value {
  display: flex;
  align-items: baseline;
  gap: .18em;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.4rem + 3vw, 3.5rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat__unit {
  font-size: .42em;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--blue-deep);
}
.stat__label {
  margin: 0;
  color: var(--ink-muted);
  font-size: .9375rem;
  line-height: 1.5;
  max-width: 22ch;
}

/* ---------------------------------------------------------------- 10. Zimmer */

.rooms {
  display: grid;
  gap: clamp(24px, 3vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .rooms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.room {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-soft);
}
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.room__media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}
.room__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.room:hover .room__media img { transform: scale(1.04); }

.room__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .94);
  color: var(--blue-deep);
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}

.room__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 2.4vw, 30px);
  flex: 1;
}
.room__title {
  font-size: clamp(1.375rem, 1.1rem + .7vw, 1.625rem);
  font-variation-settings: "opsz" 72;
}

.room__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room__facts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.3;
}
.room__facts .icon { width: 15px; height: 15px; }

.room__text {
  margin: 0;
  font-size: .9375rem;
  color: var(--ink-muted);
}

.features {
  display: grid;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink-soft);
}
.features .icon { width: 19px; height: 19px; color: var(--blue); }

.room .link-arrow { align-self: flex-start; }

.detail-strip {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: 1fr;
  margin-top: clamp(32px, 4vw, 52px);
}
@media (min-width: 640px) {
  .detail-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.detail__caption {
  margin: 12px 0 0;
  font-size: .875rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------- 11. Wellen-Divider */

.wave-divider {
  background: var(--paper);
  color: var(--blue-light);
  padding-block: clamp(8px, 2vw, 24px);
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: clamp(38px, 5vw, 60px);
}
.wave-divider__second { opacity: .5; }

/* ------------------------------------------------------------ 12. Frühstück */

.breakfast {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .breakfast { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); }
}

.breakfast__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 640px;
}
.breakfast__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.16);
}

.hours { margin-top: 26px; }
.hours th,
.hours td {
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.hours tr:first-child th,
.hours tr:first-child td { border-top: 1px solid var(--line); }
.hours th {
  font-weight: 500;
  color: var(--ink);
  font-size: .9375rem;
  padding-right: 20px;
}
.hours td {
  color: var(--blue-deep);
  font-weight: 600;
  font-size: .9375rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.hours--full td { text-align: right; }
@media (max-width: 559px) {
  .hours th,
  .hours td { display: block; text-align: left; }
  .hours th { padding: 14px 0 0; border-bottom: 0; }
  .hours td { padding: 2px 0 14px; }
  .hours tr:first-child th { border-top: 1px solid var(--line); }
  .hours tr:first-child td { border-top: 0; }
}

/* --------------------------------------------- 13. Umgebung (horizontal) */

.hscroll { position: relative; }
.hscroll__viewport { width: 100%; }

.hscroll__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Fallback ohne Motion (reduced motion oder kein JS): ruhiges Raster */
@media (min-width: 640px) {
  .hscroll__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .hscroll__track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.place {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.place__media { background: var(--stone); overflow: hidden; }
.place__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.place__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 32px);
  flex: 1;
}
.place__kicker {
  margin: 0;
  color: var(--blue-deep);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.place__title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  font-variation-settings: "opsz" 96;
}
.place__text {
  margin: 0;
  font-size: .9375rem;
  color: var(--ink-muted);
}

.hscroll__progress,
.hscroll__hint,
.hscroll__spacer { display: none; }

/* Showpiece: horizontal gepinnt — nur wenn Motion aktiv ist */
@media (min-width: 900px) {
  .has-motion .hscroll {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    overflow: hidden;
  }
  .has-motion .hscroll__viewport { overflow: hidden; }
  .has-motion .hscroll__track {
    display: flex;
    max-width: none;
    margin-inline: 0;
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    padding-right: 0;
    gap: clamp(22px, 2.2vw, 34px);
    will-change: transform;
  }
  .has-motion .hscroll__spacer {
    display: block;
    flex: 0 0 calc(max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) - clamp(22px, 2.2vw, 34px));
    height: 1px;
  }
  .has-motion .place {
    flex: 0 0 clamp(330px, 29vw, 420px);
  }
  .has-motion .place__media { flex: none; }

  .has-motion .hscroll__progress {
    display: block;
    height: 2px;
    background: var(--line);
    margin-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    border-radius: 2px;
  }
  .has-motion .hscroll__progress span {
    display: block;
    height: 100%;
    background: var(--blue);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
  }
  .has-motion .hscroll__hint {
    display: block;
    position: absolute;
    right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    bottom: clamp(24px, 4vh, 48px);
    margin: 0;
    font-size: .6875rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
}

/* Hinweiszeile Neckarradweg / Jakobsweg */
.trail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 700px) {
  .trail { grid-template-columns: minmax(0, 260px) minmax(0, 1fr); }
}
.trail__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-md);
}
@media (min-width: 700px) {
  .trail__media img { aspect-ratio: 4 / 3; }
}
.trail__body .icon { color: var(--blue); margin-bottom: 12px; }
.trail__title {
  font-size: clamp(1.25rem, 1.05rem + .7vw, 1.5rem);
  font-variation-settings: "opsz" 72;
  margin-bottom: 10px;
}
.trail__body p { font-size: .9375rem; color: var(--ink-muted); }

/* -------------------------------------------------------- 14. Gut zu wissen */

.know {
  display: grid;
  gap: clamp(32px, 4vw, 64px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .know { grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); }
}

.know__col--times {
  padding: clamp(24px, 2.6vw, 34px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.know__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-variation-settings: "opsz" 48;
  margin-bottom: 4px;
}
.know__heading .icon { color: var(--blue); }

.rules { display: grid; gap: 22px; }
.rule {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.rule:last-child { border-bottom: 0; padding-bottom: 0; }
.rule > .icon { color: var(--blue); margin-top: 3px; }
.rule__title {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.rule p { font-size: .9375rem; color: var(--ink-muted); }

/* -------------------------------------------------- 15. Warum wir (dunkel) */

.section--why {
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  position: relative;
  overflow: hidden;
}
.section--why h2,
.section--why h3 { color: var(--white); }
.section--why .section-lead { color: rgba(255, 255, 255, .78); }

.why {
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .why { grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); }
}
.why__head .btn { margin-top: 30px; }

.why__list {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.why__item { padding-top: 22px; border-top: 1px solid var(--line-light); }
.why__item .icon { color: var(--blue-light); margin-bottom: 14px; }
.why__item h3 {
  font-size: 1.1875rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 8px;
}
.why__item p { font-size: .9375rem; color: rgba(255, 255, 255, .72); }

/* -------------------------------------------------------------- 16. Showcase */

.showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(300px, 46vh, 520px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(36px, 5vw, 60px);
  color: var(--white);
}
.showcase__media { position: absolute; inset: -8% 0; z-index: -2; }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(34, 40, 44, .3) 0%, rgba(34, 40, 44, .14) 28%,
                              rgba(34, 40, 44, .62) 62%, rgba(34, 40, 44, .92) 100%);
}
.showcase__caption {
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-variation-settings: "opsz" 96;
  color: var(--white);
  text-shadow: 0 1px 24px rgba(0, 0, 0, .35);
  max-width: 22ch;
}

/* ---------------------------------------------------------------- 17. Kontakt */

.contact {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .contact { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
}

.form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.field__optional {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: .8125rem;
  margin-left: 4px;
}
.req { color: var(--blue-deep); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: inherit;
  font-size: .9375rem;
  line-height: 1.5;
  transition: border-color .2s var(--ease-soft), box-shadow .2s var(--ease-soft), background-color .2s var(--ease-soft);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder,
.field textarea::placeholder { color: #6B7378; }
.field input:hover,
.field textarea:hover { border-color: var(--ink-muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 110, 145, .18);
}
.field input:focus-visible,
.field textarea:focus-visible { outline: none; }

.field__error {
  margin: 0;
  min-height: 0;
  color: #9B2C2C;
  font-size: .8125rem;
  line-height: 1.45;
}
.field.is-invalid input,
.field.is-invalid textarea { border-color: #9B2C2C; }
.field.is-invalid input:focus,
.field.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(155, 44, 44, .16); }

.field--check { gap: 10px; }
.checkbox {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: .875rem;
  font-weight: 400 !important;
  color: var(--ink-soft) !important;
  line-height: 1.6;
  cursor: pointer;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  width: 22px;
  height: 22px;
  margin: 0;
}
.checkbox__box {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--white);
  transition: background-color .2s var(--ease-soft), border-color .2s var(--ease-soft);
  margin-top: 2px;
}
.checkbox__box .icon { width: 15px; height: 15px; stroke-width: 2.4; opacity: 0; transition: opacity .15s linear; }
.checkbox input:checked + .checkbox__box { background: var(--blue); border-color: var(--blue); }
.checkbox input:checked + .checkbox__box .icon { opacity: 1; }
.checkbox input:focus-visible + .checkbox__box { outline: 2px solid var(--blue); outline-offset: 3px; }
.checkbox__text a { white-space: nowrap; }
.field--check.is-invalid .checkbox__box { border-color: #9B2C2C; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note { margin: 0; font-size: .8125rem; color: var(--ink-muted); }

.form__status {
  margin: 0;
  padding: 0;
  font-size: .9375rem;
  line-height: 1.6;
}
.form__status:not(:empty) {
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--blue-tint);
  color: var(--blue-deep);
  border: 1px solid rgba(47, 110, 145, .28);
}
.form__status.is-error:not(:empty) {
  background: #FBEDED;
  color: #9B2C2C;
  border-color: rgba(155, 44, 44, .3);
}

.contact__aside { display: grid; gap: 28px; }
.contact__list { display: grid; gap: 20px; }
.contact__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.contact__list .icon { color: var(--blue); margin-top: 3px; }
.contact__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3px;
}
.contact__list a {
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(39, 92, 122, .3);
}
.contact__list a:hover { border-color: var(--blue-dark); }
.contact__list p,
.contact__list address { font-size: .9375rem; color: var(--ink-soft); }

.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(168, 200, 219, .16) 0 12px, transparent 12px 24px),
    var(--blue-tint);
  min-height: 300px;
}
.map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  min-height: 300px;
  justify-content: center;
}
.map__placeholder .icon { color: var(--blue); }
.map__address {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
  line-height: 1.4;
}
.map__note { margin: 0; font-size: .8125rem; color: var(--ink-muted); max-width: 44ch; }
.map__frame { line-height: 0; }
.map__frame[hidden] { display: none; }
.map__frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ------------------------------------------------------------------ 18. Footer */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .74);
  padding-block: clamp(52px, 6vw, 84px) 32px;
  font-size: .9375rem;
}
.footer__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .footer__grid { grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr)); }
}

.footer__mark {
  display: block;
  width: 230px;
  max-width: 100%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  background: #454545;
}
.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.footer__claim {
  margin: 18px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, .66);
}

.footer__heading {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-footer address { color: rgba(255, 255, 255, .74); line-height: 1.8; }

.footer__links { display: grid; gap: 9px; }
.site-footer a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-soft), border-color .2s var(--ease-soft);
}
.site-footer a:hover {
  color: var(--white);
  border-color: var(--blue-light);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .58);
}
.footer__bottom p { margin: 0; }

/* ------------------------------- 19. Motion-Startzustände & reduced motion */

.has-motion [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}
.has-motion .hero__title .line__inner { transform: translate3d(0, 105%, 0); }
.has-motion [data-hero-fade] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}
.has-motion [data-wave] path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal],
  [data-hero-fade] { opacity: 1 !important; transform: none !important; }
  .hero__title .line__inner { transform: none !important; }
  [data-wave] path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .room:hover { transform: none; }
  .room:hover .room__media img { transform: none; }
  .btn:hover { transform: none; }
  .breakfast__media img,
  .showcase__media img { transform: none; }
}

/* Druck */
@media print {
  .site-header, .mobile-menu, .hero__scroll, .map, .hscroll__progress, .hscroll__hint { display: none !important; }
  body { background: #fff; color: #000; }
  .hscroll__track { display: grid !important; }
}

/* =========================================================================
   === Subpages ===
   Rein additive Ergänzung für a-bis-z.html, info.html, impressum.html,
   datenschutz.html und danke.html. Oberhalb dieses Blocks wurde nichts
   geändert.
   ========================================================================= */

/* --- Header: auf Unterseiten von Anfang an solide (kein Hero darunter) --- */
body.subpage .site-header { color: var(--ink); }
body.subpage .site-header::after { opacity: 1; }
body.subpage .brand__wave { color: var(--blue); }

.nav__list a[aria-current="page"] { color: var(--blue-deep); }
.nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-menu__list a[aria-current="page"] { color: var(--blue-deep); }

/* --- Seiten-Hero (schmal) --- */
.page-hero {
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  padding-top: calc(var(--header-h) + clamp(36px, 5vw, 68px));
  padding-bottom: clamp(36px, 5vw, 68px);
}
.page-hero__inner { max-width: 780px; }

.page-hero__title {
  font-size: clamp(1.95rem, 1.15rem + 3vw, 3.1rem);
  font-variation-settings: "opsz" 144;
  margin-bottom: .5em;
  text-wrap: balance;
}
.page-hero__lead {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(1.03rem, 1rem + .3vw, 1.1875rem);
  line-height: 1.75;
  color: var(--ink-soft);
}
.page-hero__wave {
  width: 108px;
  height: 13px;
  margin-top: 26px;
  color: var(--blue-light);
}

/* --- Brotkrumen --- */
.crumbs { margin: 0 0 18px; font-size: .8125rem; color: var(--ink-muted); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: var(--line-strong); }
.crumbs a { text-decoration: none; border-bottom: 1px solid rgba(39, 92, 122, .3); }
.crumbs [aria-current="page"] { color: var(--ink-soft); }

/* --- Unterseiten-Sektion --- */
.section--sub { background: var(--paper); }
.section--sub-stone { background: var(--stone); }

/* --- Gäste-ABC --- */
.abc {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .abc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.abc__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.abc__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: var(--r-pill);
  background: var(--blue-tint);
  color: var(--blue);
}
.abc__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 7px;
}
.abc__text {
  margin: 0;
  font-size: .9375rem;
  color: var(--ink-muted);
}
.abc__text + .abc__text { margin-top: .7em; }

.abc__sublist { display: grid; gap: 9px; margin-top: 12px; }
.abc__sublist li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  font-size: .9375rem;
  color: var(--ink-muted);
}
.abc__sublist li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: .68em;
  border-radius: 50%;
  background: var(--blue-light);
}
.abc__sublist strong { color: var(--ink); font-weight: 600; }

.abc__code {
  display: inline-block;
  padding: 2px 9px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .875rem;
  letter-spacing: .02em;
}

/* --- Karten für „Aktuelles“ --- */
.cards-narrow {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  max-width: 760px;
  margin-inline: auto;
}

.info-card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.info-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.info-card__head .icon { color: var(--blue); }
.info-card__title {
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  font-variation-settings: "opsz" 72;
}
.info-card__text { margin: 0; font-size: .9375rem; color: var(--ink-muted); }
.info-card .hours { margin-top: 20px; }
.info-card__sign {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48;
  font-size: 1.0625rem;
  color: var(--ink);
}

.info-card--notice {
  background: var(--blue-tint);
  border-color: rgba(47, 110, 145, .22);
  border-left: 4px solid var(--blue);
}
.info-card--notice .info-card__text { color: var(--ink-soft); }
.info-card__date {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 13px;
  background: var(--white);
  color: var(--blue-deep);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* --- Rechtsseiten (Impressum / Datenschutz) --- */
.legal { background: var(--paper); padding-block: var(--section-y); }
.legal__inner { max-width: 720px; margin-inline: auto; }

.legal__block + .legal__block {
  margin-top: clamp(32px, 4vw, 46px);
  padding-top: clamp(26px, 3vw, 36px);
  border-top: 1px solid var(--line);
}
.legal__block h2 {
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem);
  font-variation-settings: "opsz" 72;
  margin-bottom: 14px;
}
.legal__block h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 26px 0 8px;
}
.legal__block h3:first-of-type { margin-top: 18px; }
.legal__block p { color: var(--ink-soft); }
.legal__block address { color: var(--ink-soft); line-height: 1.8; }

.legal__label {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .01em;
}
.legal__group + .legal__group { margin-top: 22px; }

.legal__list {
  list-style: disc;
  padding-left: 1.25em;
  margin: 0 0 1em;
  color: var(--ink-soft);
}
.legal__list li { margin-bottom: .35em; }
.legal__list li::marker { color: var(--blue-light); }

.legal__meta {
  display: grid;
  gap: 6px;
  margin: 0 0 1em;
  font-size: .9375rem;
  color: var(--ink-soft);
}
.legal__meta div { display: flex; flex-wrap: wrap; gap: 4px 10px; }
.legal__meta dt { font-weight: 600; color: var(--ink); }
.legal__meta dd { margin: 0; }

.legal__note {
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .8125rem;
  color: var(--ink-muted);
}
.legal__pending { color: var(--ink-muted); font-style: italic; }

/* --- Dankeseite --- */
.thanks {
  display: grid;
  place-items: center;
  min-height: 68vh;
  background: var(--stone);
  padding-top: calc(var(--header-h) + clamp(44px, 7vw, 88px));
  padding-bottom: clamp(56px, 8vw, 100px);
}
.thanks__card {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.thanks__mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: var(--r-pill);
  background: var(--blue-tint);
  color: var(--blue);
}
.thanks__mark .icon { width: 36px; height: 36px; stroke-width: 1.8; }
.thanks__title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-variation-settings: "opsz" 144;
  margin-bottom: .45em;
}
.thanks__text { margin: 0 auto; max-width: 44ch; color: var(--ink-soft); }
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.thanks__phone {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .9375rem;
  color: var(--ink-muted);
}
.thanks__phone a { font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(39, 92, 122, .3); }

.note--narrow { max-width: 760px; margin-inline: auto; }

/* === QS-Fixes (Web Interface Guidelines Audit) === */
:root { color-scheme: light; }
[id] { scroll-margin-top: 96px; }
.btn, .nav a, .burger, .mobile-menu a { touch-action: manipulation; }
.mobile-menu { overscroll-behavior: contain; }
