/* =========================================================
   Haus Martha, Hotel Garni, Meckenbeuren-Reute (Demo)
   Familiaer gefuehrte Fruehstueckspension nahe Bahnhof Kehlen,
   wenige Minuten zu Messe und Flughafen Friedrichshafen.
   Ruhig, vertrauenswuerdig, "refined hospitality" am Bodensee.
   Leitfarbe: Markenblau (1:1 vom Logo, #0d59ab). Marineblau fuer
   Tiefe und Kontrast. Warmer Sand/Greige als Sekundaerton.
   Fonts lokal (DSGVO): Newsreader (Display/Serif), Epilogue
   (Body/UI). Keine Fotos: Typografie, Verlaeufe, feine Linien,
   selbst gezeichnete inline-SVG. Wiedererkennung: Wortmarke
   "Haus Martha" mit Seewellen-Emblem in Markenblau.
   ========================================================= */

/* ---------- Fonts (lokal gehostet, DSGVO) ---------- */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/newsreader-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: "Newsreader";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/newsreader-italic-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: "Epilogue";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/epilogue-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;
}

/* ---------- Palette + Tokens ---------- */
:root {
  /* Markenblau (Anker, 1:1 vom Logo) + Abstufungen */
  --blau:       #0d59ab;   /* Marken-Akzent, identisch zum Logo */
  --blau-tief:  #0a4a8f;   /* Hover/Tiefe */
  --marine:     #143a5c;   /* dunkles Marineblau, Header/Text/Footer */
  --marine-900: #0e2c46;   /* tiefster Grund (Footer, dunkle Karten) */
  --marine-800: #102f4b;
  --blau-hell:  #9cc4ef;   /* helles Blau auf dunklem Grund */
  --blau-tint:  rgba(13, 89, 171, 0.07);
  --blau-tint-2: rgba(13, 89, 171, 0.13);

  /* Warmer Sekundaerton (Sand/Greige, Landhaus-Waerme) */
  --sand:       #c9b89a;   /* warmer Greige, sparsam */
  --sand-tief:  #ab9874;
  --sand-tint:  rgba(201, 184, 154, 0.18);
  --sand-line:  rgba(171, 152, 116, 0.45);

  /* Grundflaechen, Cremeweiss / kuehles Naturweiss */
  --creme:      #fbfaf6;   /* warmes Cremeweiss, Grundflaeche */
  --kuehl:      #f7f9fc;   /* kuehles Naturweiss, zweite Flaeche */
  --surface:    #ffffff;   /* helle Karte */

  --text:       #2c2c2c;   /* dunkler Fliesstext */
  --muted:      #5e6670;   /* gedaempfter Text */
  --hairline:   rgba(20, 58, 92, 0.16);
  --hairline-2: rgba(20, 58, 92, 0.08);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 60px -28px rgba(14, 44, 70, 0.40);
  --shadow-card: 0 1px 2px rgba(14, 44, 70, 0.05), 0 18px 44px -32px rgba(14, 44, 70, 0.5);

  --font-display: "Newsreader", "Times New Roman", Georgia, serif;
  --font-body: "Epilogue", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.01em;
  margin: 0;
  hyphens: manual;
  color: var(--marine);
}
p { margin: 0; }
::selection { background: var(--blau); color: #fff; }

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

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--marine-900);
  color: #d8e4f0;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.4;
}
.demo-bar strong { color: #fff; font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand .emblem { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.34rem;
  color: var(--blau);
  letter-spacing: 0.005em;
}
.brand-word em { font-style: italic; font-weight: 500; }
.brand-sub {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.28rem;
  font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 0.45rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--marine);
  border-radius: 9px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--blau); background: var(--blau-tint); }
.nav-links > li > a.active { color: var(--blau); }
.nav-links > li > a.active::after {
  content: ""; display: block; height: 2px; width: 18px; margin: 3px auto 0;
  background: var(--blau); border-radius: 2px;
}
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 0.4rem;
  background: var(--blau); color: #fff !important;
  padding: 0.55rem 1rem !important; border-radius: 999px !important;
  font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blau-tief) !important; transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--hairline);
  background: var(--surface); border-radius: 11px; position: relative; flex: none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--marine); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 5px); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(14, 44, 70, 0.42);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 55;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.96rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap; cursor: pointer; line-height: 1.1;
}
.btn .pin { display: inline-flex; }
.btn-primary { background: var(--blau); color: #fff; box-shadow: 0 12px 26px -14px rgba(13, 89, 171, 0.8); }
.btn-primary:hover { background: var(--blau-tief); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(13, 89, 171, 0.85); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-ghost { background: var(--surface); color: var(--blau); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--blau); background: var(--blau-tint); transform: translateY(-1px); }
.btn-on-dark { background: #fff; color: var(--marine); }
.btn-on-dark:hover { background: var(--blau-hell); transform: translateY(-2px); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.6rem, 8vw, 6.5rem) 0; }
.surface-band { background: var(--kuehl); }
.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 0.9rem; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blau);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--sand-tief);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--blau-hell); }
.eyebrow.on-dark::before { background: rgba(156, 196, 239, 0.6); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(13, 89, 171, 0.55), transparent 60%),
    radial-gradient(90% 80% at 0% 110%, rgba(20, 58, 92, 0.85), transparent 70%),
    linear-gradient(160deg, var(--marine) 0%, var(--marine-900) 100%);
  color: #eef4fb;
  padding: clamp(3.2rem, 7vw, 5.8rem) 0 clamp(3.6rem, 8vw, 6rem);
}
.hero::before {
  /* feine Seewellen-Textur, dezent */
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.022) 0 2px, transparent 2px 26px);
}
.hero::after {
  /* warme Sand-Lichtkante unten */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--sand) 30%, var(--sand-tief) 50%, var(--sand) 70%, transparent);
  opacity: 0.7;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 {
  color: #fff; font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 500;
  line-height: 1.04; margin-bottom: 1.3rem; letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--blau-hell); font-style: italic; font-weight: 400; }
.hero-lead { color: #c9d8ea; font-size: 1.13rem; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-phone-note {
  display: flex; align-items: center; gap: 0.55rem; margin-top: 1.4rem;
  color: #9fb6d0; font-size: 0.88rem;
}
.hero-phone-note svg { width: 18px; height: 18px; flex: none; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2.6rem; }
.hero-meta .item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-meta .k { font-family: var(--font-display); font-size: 1.05rem; color: #fff; font-weight: 600; }
.hero-meta .l { font-size: 0.82rem; color: #9fb6d0; }

/* Hero-Karte (Wortmarke + Emblem statt Foto) */
.hero-card {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(156, 196, 239, 0.28);
  padding: clamp(1.8rem, 3vw, 2.6rem); text-align: center;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,0.6);
  overflow: hidden;
}
.hero-card .crest { width: 100%; max-width: 280px; margin: 0 auto 0.4rem; }
.card-wordmark { display: flex; flex-direction: column; align-items: center; line-height: 1; margin: 0.6rem 0 0.4rem; }
.card-wordmark .cw1 {
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--sand); font-weight: 700; margin-bottom: 0.55rem;
}
.card-wordmark .cw2 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 2.7rem); color: #fff;
}
.hero-card .cap { color: #b9cce0; font-size: 0.92rem; margin-top: 0.7rem; }
.hero-card .cap b { color: #fff; font-weight: 600; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-in 0.9s var(--ease) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 26%;
    animation-delay: var(--d, 0s);
  }
}
.no-vt .reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--d, 0s); }
.no-vt .reveal.is-in { opacity: 1; transform: none; }
@keyframes reveal-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Bento / Stärken ---------- */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; margin-top: 2.8rem;
}
.tile {
  grid-column: span 4; background: var(--surface); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline-2);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(14,44,70,0.06), 0 28px 50px -30px rgba(14,44,70,0.6); }
.tile.span-7 { grid-column: span 7; }
.tile.span-5 { grid-column: span 5; }
.tile.span-4 { grid-column: span 4; }
.tile h3 { font-size: 1.32rem; }
.tile p { color: var(--muted); font-size: 0.98rem; }
.tile .ic {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center; color: var(--blau);
  background: var(--blau-tint); margin-bottom: 0.3rem;
}
.tile.feature {
  grid-row: span 2; justify-content: space-between;
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(13,89,171,0.10), transparent 55%),
    var(--surface);
  border-color: var(--blau-tint-2);
}
.tile.feature > div { display: flex; flex-direction: column; gap: 0.6rem; }
.tile.feature .ic { background: var(--blau); color: #fff; }
.tile.feature h3 { font-size: 1.7rem; }
.tile.sand {
  background: linear-gradient(160deg, var(--sand-tint), rgba(201,184,154,0.06)), var(--surface);
  border-color: var(--sand-line);
}
.tile.sand .ic { background: rgba(171,152,116,0.18); color: var(--sand-tief); }
.tile.marine {
  background: linear-gradient(160deg, var(--marine), var(--marine-900));
  color: #dce7f2; border: none;
}
.tile.marine h3 { color: #fff; }
.tile.marine p { color: #aec3d8; }
.tile.marine .ic { background: rgba(255,255,255,0.12); color: var(--blau-hell); }
.tile .more {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem;
  font-weight: 600; color: var(--blau); font-size: 0.94rem;
}
.tile .more svg { width: 18px; height: 18px; transition: transform 0.2s; }
.tile .more:hover svg { transform: translateX(4px); }

/* ---------- Split-Sektion ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip > .panel-dark, .split.flip > .photo-ph { order: -1; }
.lede { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }
.feature-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--text); }
.feature-list .chk {
  width: 26px; height: 26px; flex: none; border-radius: 7px; background: var(--blau-tint);
  display: inline-flex; align-items: center; justify-content: center; color: var(--blau); margin-top: 1px;
}
.feature-list .chk svg { width: 16px; height: 16px; }

.panel-dark {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(13,89,171,0.5), transparent 60%),
    linear-gradient(160deg, var(--marine), var(--marine-900));
  color: #dce7f2; border-radius: var(--radius-lg); padding: clamp(1.9rem, 4vw, 2.8rem);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.panel-dark::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px;
  border: 1px solid rgba(156,196,239,0.18); border-radius: 50%;
}
.panel-dark .ptag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blau-hell); margin-bottom: 0.7rem;
}
.panel-dark h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.8rem; }
.panel-dark p { color: #aec3d8; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.4rem; }
.pill {
  font-size: 0.82rem; padding: 0.35rem 0.85rem; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(156,196,239,0.22); color: #cfdcec;
}

/* Platzhalter-Flaeche statt Foto (klar gestaltet) */
.photo-ph {
  position: relative; border-radius: var(--radius-lg); min-height: 340px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(13,89,171,0.14), transparent 55%),
    linear-gradient(160deg, var(--kuehl), #eaf0f7);
  border: 1px solid var(--hairline-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; gap: 0.5rem; overflow: hidden;
}
.photo-ph.tall { min-height: 420px; }
.photo-ph::before {
  content: ""; position: absolute; inset: 14px; border: 1px dashed var(--sand-line); border-radius: 18px;
}
.photo-ph .frame-ic {
  width: 54px; height: 54px; border-radius: 14px; background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center; color: var(--blau);
  box-shadow: var(--shadow-card); position: relative; z-index: 1; margin-bottom: 0.4rem;
}
.photo-ph .ph-label { font-family: var(--font-display); font-size: 1.3rem; color: var(--marine); font-weight: 600; position: relative; z-index: 1; }
.photo-ph .ph-sub { font-size: 0.86rem; color: var(--muted); position: relative; z-index: 1; }

/* ---------- Menü/Karten-Grid (Teaser) ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.menu-card {
  position: relative; background: var(--surface); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; box-shadow: var(--shadow-card); border: 1px solid var(--hairline-2);
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(14,44,70,0.06), 0 28px 50px -30px rgba(14,44,70,0.55); }
.menu-card .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--blau-tint); color: var(--blau); display: inline-flex; align-items: center; justify-content: center; }
.menu-card .num {
  position: absolute; top: 1.2rem; right: 1.5rem; font-family: var(--font-display);
  font-size: 2.4rem; color: var(--blau-tint-2); font-weight: 600; line-height: 1;
}
.menu-card h3 { font-size: 1.4rem; margin: 1rem 0 0.5rem; }
.menu-card p { color: var(--muted); font-size: 0.97rem; }
.map-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--blau); font-size: 0.94rem; }
.map-link svg { transition: transform 0.2s; }
.map-link:hover svg { transform: translateX(4px); }

/* ---------- Chips ---------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.chip {
  font-size: 0.85rem; font-weight: 500; padding: 0.42rem 0.95rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--hairline); color: var(--marine);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(13,89,171,0.55), transparent 55%),
    linear-gradient(150deg, var(--marine), var(--marine-900));
  color: #fff; padding: clamp(2.2rem, 5vw, 3.4rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.8rem; box-shadow: var(--shadow-soft);
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  border-radius: 50%; border: 1px solid rgba(156,196,239,0.2);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.cta-band p { color: #b9cce0; margin-top: 0.6rem; max-width: 44ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; position: relative; z-index: 1; }

/* ---------- Kontakt-Formular ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.phone-cta-box {
  margin-top: 1.8rem; padding: 1.4rem 1.6rem; border-radius: var(--radius);
  background: var(--blau-tint); border: 1px solid var(--blau-tint-2);
}
.phone-cta-box .lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blau); }
.phone-cta-box .num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--marine); margin: 0.3rem 0; }
.phone-cta-box .num:hover { color: var(--blau); }
.phone-cta-box p { font-size: 0.88rem; color: var(--muted); }

.form-card {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(13,89,171,0.06), transparent 55%),
    var(--surface);
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem); box-shadow: var(--shadow-card);
}
.form-card h3 { font-size: 1.5rem; }
.form-card .hint { font-size: 0.85rem; color: var(--muted); margin: 0.4rem 0 1.3rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--marine); margin-bottom: 0.35rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.96rem; color: var(--text);
  padding: 0.75rem 0.95rem; border: 1.5px solid var(--hairline); border-radius: 11px;
  background: var(--kuehl); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blau); background: #fff;
  box-shadow: 0 0 0 4px var(--blau-tint);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-card .btn-on-dark { background: var(--blau); color: #fff; }
.form-card .btn-on-dark:hover { background: var(--blau-tief); }
.form-card .btn .pin svg path { stroke: #fff; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; line-height: 1.5; }

/* Kompakter Kontaktblock (Footer-naher Bereich auf Unterseiten) */
.mini-contact {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2rem; align-items: center;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(13,89,171,0.5), transparent 55%),
    linear-gradient(150deg, var(--marine), var(--marine-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.mini-contact h3 { color: #fff; font-size: 1.5rem; }
.mini-contact p { color: #b9cce0; margin-top: 0.4rem; max-width: 46ch; }
.mini-contact .mc-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 90% -20%, rgba(13,89,171,0.5), transparent 55%),
    linear-gradient(160deg, var(--marine), var(--marine-900));
  color: #fff; padding: clamp(2.6rem, 6vw, 4.2rem) 0 clamp(2.4rem, 5vw, 3.6rem);
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--sand) 40%, var(--sand) 60%, transparent); opacity: 0.6;
}
.page-hero .wrap { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.84rem; color: #9fb6d0; margin-bottom: 0.7rem; }
.breadcrumb a { color: var(--blau-hell); }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 500; }
.page-hero .page-intro { color: #c4d4e7; margin-top: 0.9rem; max-width: 56ch; font-size: 1.06rem; }

/* ---------- Zimmer-Liste ---------- */
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.room-card {
  background: var(--surface); border: 1px solid var(--hairline-2); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.room-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--blau), var(--sand)); opacity: 0.8;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(14,44,70,0.06), 0 28px 50px -30px rgba(14,44,70,0.55); }
.room-card .rc-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.room-card .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--blau-tint); color: var(--blau); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.room-card .rc-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--marine); font-weight: 600; text-align: right; line-height: 1.1; }
.room-card .rc-price small { display: block; font-family: var(--font-body); font-size: 0.66rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.room-card h3 { font-size: 1.35rem; margin-top: 0.4rem; }
.room-card p { color: var(--muted); font-size: 0.96rem; }

/* Ausstattungs-Liste (Icons) */
.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2.6rem; }
.amenity {
  display: flex; align-items: flex-start; gap: 0.85rem; padding: 1.1rem 1.2rem;
  background: var(--surface); border: 1px solid var(--hairline-2); border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(14,44,70,0.04);
}
.amenity .ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--blau-tint); color: var(--blau); display: inline-flex; align-items: center; justify-content: center; }
.amenity .at { font-weight: 600; color: var(--marine); display: block; font-size: 0.98rem; }
.amenity .ad { font-size: 0.84rem; color: var(--muted); }

/* ---------- Preistabelle ---------- */
.price-table-wrap { border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--surface); }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 1.3rem clamp(1.2rem, 3vw, 2rem); border-bottom: 1px solid var(--hairline-2);
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--blau-tint); }
.price-row .pr-name { display: flex; align-items: center; gap: 0.9rem; }
.price-row .ic { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--blau-tint); color: var(--blau); display: inline-flex; align-items: center; justify-content: center; }
.price-row .pr-name strong { font-family: var(--font-display); font-size: 1.22rem; color: var(--marine); font-weight: 600; display: block; }
.price-row .pr-name span { font-size: 0.86rem; color: var(--muted); }
.price-row .pr-price { font-family: var(--font-display); font-size: 1.7rem; color: var(--blau); font-weight: 600; text-align: right; white-space: nowrap; }
.price-row .pr-price small { font-family: var(--font-body); font-size: 0.7rem; color: var(--muted); font-weight: 600; display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.price-head { background: linear-gradient(150deg, var(--marine), var(--marine-900)); color: #fff; padding: 1.3rem clamp(1.2rem, 3vw, 2rem); }
.price-head .ph-t { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.price-head .ph-s { font-size: 0.86rem; color: #aec3d8; margin-top: 0.2rem; }

.note-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.8rem; }
.note-card {
  background: var(--surface); border: 1px solid var(--hairline-2); border-left: 3px solid var(--sand);
  border-radius: 12px; padding: 1.2rem 1.3rem;
}
.note-card .nt { font-weight: 600; color: var(--marine); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.note-card .nt svg { width: 18px; height: 18px; color: var(--sand-tief); flex: none; }
.note-card p { font-size: 0.9rem; color: var(--muted); }
.price-stamp { font-size: 0.84rem; color: var(--muted); margin-top: 1.4rem; font-style: italic; }

/* ---------- Lage-Liste ---------- */
.dist-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-card); }
.dist-item { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--hairline-2); }
.dist-item:last-child { border-bottom: none; }
.dist-item .ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--blau-tint); color: var(--blau); display: inline-flex; align-items: center; justify-content: center; }
.dist-item .di-t { font-weight: 600; color: var(--marine); }
.dist-item .di-d { font-size: 0.86rem; color: var(--muted); }

.excursion-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; margin-top: 2.6rem; }
.exc-card { background: var(--surface); border: 1px solid var(--hairline-2); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 1px 2px rgba(14,44,70,0.04); transition: transform 0.3s var(--ease); }
.exc-card:hover { transform: translateY(-3px); }
.exc-card .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--sand-tint); color: var(--sand-tief); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.7rem; }
.exc-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.exc-card p { font-size: 0.92rem; color: var(--muted); }

.map-cta {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.6rem;
  padding: 0.7rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--hairline);
  background: var(--surface); color: var(--blau); font-weight: 600; font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}
.map-cta:hover { border-color: var(--blau); background: var(--blau-tint); }
.map-cta svg { width: 18px; height: 18px; }

/* ---------- Legal-Seiten ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 0.7rem; color: var(--marine); }
.legal h3 { font-size: 1.15rem; margin: 1.6rem 0 0.5rem; color: var(--marine); }
.legal p { color: var(--text); margin-bottom: 0.9rem; }
.legal a { color: var(--blau); text-decoration: underline; text-underline-offset: 2px; }
.legal .callout {
  background: var(--blau-tint); border: 1px solid var(--blau-tint-2); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; margin-bottom: 1.5rem;
}
.legal .callout .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blau); margin-bottom: 0.6rem; }
.legal .callout p { margin-bottom: 0.4rem; }
.placeholder-pill {
  display: inline-block; background: var(--sand-tint); border: 1px dashed var(--sand-line);
  color: var(--sand-tief); border-radius: 999px; padding: 0.1rem 0.7rem; font-size: 0.82rem; font-weight: 600;
}
.datenschutz-title { hyphens: manual; }

/* ---------- Footer ---------- */
.site-footer { background: var(--marine-900); color: #aec3d8; padding: clamp(2.8rem, 6vw, 4rem) 0 1.6rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(156,196,239,0.14); }
.footer-brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.footer-brand .emblem { width: 42px; height: 42px; flex: none; }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-sub { color: #8aa3bd; }
.footer-about { margin-top: 1rem; font-size: 0.92rem; color: #93a9c2; max-width: 38ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a, .footer-col span { font-size: 0.92rem; color: #aec3d8; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; padding-top: 1.6rem; font-size: 0.82rem; color: #8499b2; }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .tile.feature { grid-row: auto; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0.3rem;
    background: var(--creme); padding: 5.5rem 1.5rem 2rem; z-index: 58;
    transform: translateX(100%); transition: transform 0.34s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(14,44,70,0.4); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { padding: 0.85rem 1rem; font-size: 1.04rem; border-radius: 10px; }
  .nav-links > li > a.active::after { margin: 4px 0 0; }
  .nav-cta { justify-content: center; margin-top: 0.6rem; }
  .split { grid-template-columns: 1fr; }
  .split.flip > .panel-dark, .split.flip > .photo-ph { order: 0; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .tile, .tile.span-7, .tile.span-5, .tile.span-4 { grid-column: span 6; }
  .mini-contact { grid-template-columns: 1fr; }
  .price-row .pr-price { font-size: 1.4rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .tile, .tile.span-7, .tile.span-5, .tile.span-4 { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-meta { gap: 1.2rem 1.8rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .price-row { grid-template-columns: 1fr; }
  .price-row .pr-price { text-align: left; }
  .brand-word { font-size: 1.18rem; }
}
