/* =========================================================================
   Hotel Neckarmühle — styles.css
   Palette aus dem Haus: Sandstein, Garten-/Neckargrün, warmes Lampenlicht.
   Mobile First.
   ========================================================================= */

:root {
  /* Sandstein-Neutrals */
  --sand-50:  #faf6ec;
  --sand-100: #f2ecdd;
  --sand-200: #e7dec9;
  --sand-300: #d8ccb0;
  --paper:    #fffdf8;

  /* Tinten */
  --ink:      #221e18;
  --ink-soft: #5b5346;
  --ink-mute: #857a68;

  /* Garten-/Neckargrün (Markenfarbe) */
  --green-900: #1b3326;
  --green-800: #224030;
  --green-700: #2c543f;
  --green-600: #386850;
  --green-400: #7aa389;

  /* Akzente: warmes Lampenlicht & Fachwerk-Holz */
  --gold:      #9a6b22;
  --gold-soft: #c79a4f;
  --clay:      #b0552f;

  --on-dark:   #f4efe3;

  /* Maße */
  --container: 1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(34,30,24,.06), 0 4px 14px rgba(34,30,24,.05);
  --shadow-md: 0 8px 24px rgba(34,30,24,.09), 0 2px 6px rgba(34,30,24,.06);
  --shadow-lg: 0 24px 60px rgba(27,51,38,.18);
  --ring: 0 0 0 3px rgba(56,104,80,.35);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 72px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--green-800); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--green-900); }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: var(--gold-soft); }

.section__title { font-size: clamp(1.8rem, 4.5vw, 2.9rem); }
.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section__intro { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  padding: .8rem 1.5rem; font-weight: 600; font-size: .98rem;
  text-decoration: none; min-height: 48px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--green-800); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; min-height: 54px; }
.btn--block { width: 100%; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--sand-50) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--sand-200);
  box-shadow: 0 6px 24px rgba(34,30,24,.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--green-800); }
.brand__mark { width: 34px; height: 34px; color: var(--green-700); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--green-900); letter-spacing: -.01em; }
.brand__sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-top: .25rem; }

.nav__list { list-style: none; display: flex; gap: .35rem; padding: 0; }
.nav__list a {
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: .98rem;
  padding: .55rem .85rem; border-radius: 999px; position: relative;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__list a:hover { color: var(--green-800); background: var(--sand-100); }

.header__actions { display: flex; align-items: center; gap: .6rem; }
.nav__cta { display: none; }

.burger {
  display: none; width: 48px; height: 48px; border: 1px solid var(--sand-200);
  background: var(--paper); border-radius: 12px; padding: 0; position: relative;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--green-900);
  border-radius: 2px; transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 30px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(27,51,38,.45); z-index: 90;
  opacity: 0; transition: opacity .3s var(--ease);
}
.nav-scrim.is-open { opacity: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,28,21,.55) 0%, rgba(15,28,21,.35) 35%, rgba(13,24,18,.82) 100%);
}
.hero__glow {
  position: absolute; inset: 0; mix-blend-mode: screen; opacity: .7;
  background: radial-gradient(60% 45% at 50% 38%, rgba(220,170,90,.35), transparent 70%);
}
.hero__inner {
  position: relative; z-index: 1;
  padding-top: clamp(3.5rem, 12vh, 7rem);
  padding-bottom: clamp(7rem, 16vh, 10rem);
  max-width: 50rem;
}
.hero__title {
  color: #fff; font-size: clamp(2.4rem, 8.5vw, 4.6rem); font-weight: 600; line-height: 1.04;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__lead {
  margin-top: 1.4rem; font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.92); max-width: 38rem; text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__facts {
  position: relative; z-index: 1; list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__facts li {
  padding: 1.1rem clamp(1.1rem, 4vw, 2.5rem); display: flex; flex-direction: column; gap: .15rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero__facts li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.hero__facts strong { font-family: var(--font-display); font-size: 1.2rem; color: #fff; font-weight: 600; }
.hero__facts span { font-size: .85rem; color: rgba(255,255,255,.75); }

/* ---------- Trust strip ---------- */
.trust { background: var(--green-900); color: var(--on-dark); }
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .6rem 1.4rem; padding-block: 1.1rem;
}
.trust__item { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; color: rgba(244,239,227,.92); }
.trust__item .ico { color: var(--gold-soft); }
.trust__sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.section--tint { background: var(--sand-100); }
.section--dark { background: var(--green-900); color: var(--on-dark); }
.section--dark .section__title { color: #fff; }

/* ---------- Cards (Leistungen) ---------- */
.cards { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.card {
  background: var(--paper); border: 1px solid var(--sand-200); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-300); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 14px; background: var(--sand-100); color: var(--green-700); margin-bottom: 1.1rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card__title { font-size: 1.28rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Zimmer ---------- */
.rooms { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.room {
  background: var(--paper); border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room__media { aspect-ratio: 16 / 10; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.room:hover .room__media img { transform: scale(1.05); }
.room__body { padding: 1.4rem 1.5rem 1.6rem; position: relative; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.room__tag {
  position: absolute; top: -.9rem; right: 1.2rem; background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.room__name { font-size: 1.3rem; }
.room__desc { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.room__price {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--green-800);
  margin-top: .35rem; font-variant-numeric: tabular-nums;
}
.room__from { font-size: .82rem; color: var(--ink-mute); font-family: var(--font-body); font-weight: 500; }
.room__unit { font-size: .85rem; color: var(--ink-mute); font-family: var(--font-body); font-weight: 400; }
.room__price--soft { font-size: 1.15rem; color: var(--ink-soft); }

.notice {
  margin-top: 2rem; background: var(--paper); border: 1px solid var(--sand-200);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  display: grid; gap: .8rem 2rem; box-shadow: var(--shadow-sm);
}
.notice__item { font-size: .98rem; color: var(--ink-soft); }
.notice__item strong { color: var(--green-800); font-weight: 600; }
.notice__fine { font-size: .82rem; color: var(--ink-mute); border-top: 1px dashed var(--sand-300); padding-top: .9rem; }

/* ---------- Über uns ---------- */
.about { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 360px; }
.about__media img { width: 100%; }
.about__badge {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(6px);
  border-radius: 14px; padding: .7rem 1rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.about__badge strong { font-family: var(--font-display); color: var(--green-900); font-size: 1.05rem; }
.about__badge span { font-size: .8rem; color: var(--ink-mute); }
.about__text > p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.04rem; }
.about__text em { color: var(--green-700); font-style: italic; }
.about__sub { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 1.2rem; color: var(--green-800); }

/* Chronik / Timeline (Signature) */
.timeline { list-style: none; padding: 0; position: relative; margin-left: .4rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--sand-300), var(--clay), var(--green-600)); }
.timeline__item { position: relative; padding: 0 0 1.3rem 2.1rem; }
.timeline__item::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--clay); box-shadow: 0 0 0 4px var(--sand-50);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__year { font-family: var(--font-display); font-weight: 600; color: var(--green-800); font-size: 1.15rem; display: block; }
.timeline__item p { color: var(--ink-soft); font-size: .96rem; margin-top: .15rem; }

/* ---------- Warum wir ---------- */
.reasons { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.reason { border-top: 2px solid rgba(255,255,255,.16); padding-top: 1.2rem; }
.reason__no { font-family: var(--font-display); font-size: 1rem; color: var(--gold-soft); letter-spacing: .08em; }
.reason h3 { color: #fff; font-size: 1.25rem; margin: .5rem 0 .45rem; }
.reason p { color: rgba(244,239,227,.78); font-size: .96rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem .9rem .7rem; color: #fff;
  font-size: .85rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(13,24,18,.75));
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Lage ---------- */
.location { display: grid; gap: clamp(1.8rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
.distances { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: .2rem; }
.distances li {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .3rem 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--sand-200);
}
.distances span { color: var(--ink-soft); }
.distances strong { color: var(--green-800); font-weight: 600; }
.location__map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--sand-200); aspect-ratio: 4 / 3; background: var(--sand-200);
}
.mapfig { width: 100%; height: 100%; }
.mappin { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); width: 44px; filter: drop-shadow(0 6px 8px rgba(0,0,0,.3)); animation: pin-drop .6s var(--ease) both; }
.mappin svg { width: 100%; }
@keyframes pin-drop { from { transform: translate(-50%, -160%); opacity: 0; } to { transform: translate(-50%, -100%); opacity: 1; } }
.location__map-label {
  position: absolute; left: 1rem; bottom: 1rem; background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(4px); padding: .5rem .8rem; border-radius: 10px; font-size: .82rem;
  font-weight: 500; color: var(--green-900); box-shadow: var(--shadow-sm);
}

/* ---------- Kontakt ---------- */
.contact { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
.contact__list { list-style: none; padding: 0; margin-top: 1.8rem; display: grid; gap: 1rem; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__list .ico { color: var(--green-600); width: 1.4rem; height: 1.4rem; margin-top: .15rem; flex: none; }
.contact__list span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); }
.contact__list a, .contact__plain { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 1.02rem; }
.contact__list a:hover { color: var(--green-700); text-decoration: underline; }

.contact__form {
  background: var(--paper); border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.05rem; display: flex; flex-direction: column; }
.field-row { display: grid; gap: 1.05rem; grid-template-columns: 1fr; }
.field label { font-size: .9rem; font-weight: 600; color: var(--green-900); margin-bottom: .4rem; }
.req { color: var(--clay); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--sand-50);
  border: 1.5px solid var(--sand-200); border-radius: 12px; padding: .8rem .9rem; min-height: 48px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); background: #fff; box-shadow: var(--ring);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--clay); }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); margin: .4rem 0 1.3rem; cursor: pointer; }
.consent input { width: 22px; height: 22px; margin-top: .1rem; flex: none; accent-color: var(--green-700); cursor: pointer; }
.consent a { color: var(--green-700); font-weight: 600; }
.consent:has(input[aria-invalid="true"]) { color: var(--clay); }

.form__status { margin-top: 1rem; font-size: .95rem; font-weight: 500; min-height: 1.2em; }
.form__status.is-error { color: var(--clay); }
.form__status.is-ok { color: var(--green-700); }
.form__note { margin-top: 1rem; font-size: .8rem; color: var(--ink-mute); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(244,239,227,.82); }
.footer__grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: clamp(2.5rem, 6vw, 4rem);
}
.footer__brand p { margin-top: .7rem; font-size: .95rem; max-width: 24rem; color: rgba(244,239,227,.65); }
.brand__name--footer { color: #fff; font-size: 1.5rem; }
.footer__nav h3, .footer__contact h3 {
  font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: .9rem; font-weight: 600;
}
.footer__nav ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer__nav a { text-decoration: none; color: rgba(244,239,227,.82); font-size: .96rem; transition: color .18s var(--ease); }
.footer__nav a:hover { color: #fff; }
.footer__contact address { font-style: normal; font-size: .96rem; line-height: 1.9; color: rgba(244,239,227,.82); }
.footer__contact a { color: rgba(244,239,227,.82); text-decoration: none; }
.footer__contact a:hover { color: #fff; text-decoration: underline; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner {
  display: flex; flex-direction: column; gap: .6rem; align-items: center; text-align: center;
  padding-block: 1.4rem;
}
.footer__copy { font-size: .85rem; color: rgba(244,239,227,.6); }
.footer__powered { font-size: .9rem; color: rgba(244,239,227,.7); }
.wowobot { color: #22b8e0; font-weight: 600; text-decoration: none; }
.wowobot:hover { text-decoration: underline; }

/* ---------- Rechtliche Seiten / 404 ---------- */
.subpage-header { border-bottom: 1px solid var(--sand-200); background: var(--sand-50); }
.legal { padding-block: clamp(2.5rem, 7vw, 4.5rem); }
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .8rem; color: var(--green-800); }
.legal p, .legal address, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.legal address { font-style: normal; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--green-700); }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; color: var(--green-700); text-decoration: none; font-weight: 500; }
.legal__back:hover { text-decoration: underline; }
.placeholder {
  background: #fbf3df; border: 1px solid var(--gold-soft); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.2rem 0; color: #6b4e16; font-size: .95rem;
}
.placeholder strong { color: #5a4012; }
.legal__meta { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--sand-200); font-size: .85rem; color: var(--ink-mute); }
.errorpage { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 3rem 1.2rem; }
.errorpage h1 { font-size: clamp(3rem, 12vw, 6rem); color: var(--green-800); }
.errorpage p { color: var(--ink-soft); margin: .5rem 0 1.6rem; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .mappin { animation: none; transform: translate(-50%, -100%); }
  .room:hover .room__media img, .gallery__item:hover img { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* =========================================================================
   Responsive — ab hier nach oben skalieren
   ========================================================================= */
@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .notice { grid-template-columns: repeat(2, auto); align-items: center; }
  .notice__fine { grid-column: 1 / -1; }
  .hero__facts { grid-template-columns: repeat(4, 1fr); }
  .hero__facts li:nth-child(odd) { border-right: none; }
  .hero__facts li:not(:last-child) { border-right: 1px solid rgba(255,255,255,.12); }
}

@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 320px 1fr; }
  .location { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr 1.1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1040px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-auto-rows: 230px; }
}

/* ---------- Mobile-Navigation (Burger) ---------- */
@media (max-width: 880px) {
  .header__cta { display: none; }
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--sand-50); z-index: 95; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .32s var(--ease);
    padding: calc(var(--header-h) + 1.4rem) 1.6rem 2rem; overflow-y: auto;
    border-left: 1px solid var(--sand-200);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: .25rem; }
  .nav__list a { display: block; padding: .95rem 1rem; font-size: 1.08rem; border-radius: 12px; }
  .nav__list a:hover { background: var(--sand-100); }
  .nav__cta { display: flex; width: 100%; margin-top: 1.4rem; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 881px) {
  .nav-scrim { display: none; }
}
