/* ==========================================================================
   Pension Seeferien (Antje Ekert), Unteruhldingen am Bodensee
   Demo-Gestaltungsvorschlag — hell, natürlich, einladend, am See
   Palette aus dem Gebaeude-Render abgeleitet (kein Logo):
     Ziegelrot/Terrakotta (Dach, Leitakzent) · Naturholz/Warmbeige
     (Fassade/Balkone) · Reinweiss · Seeblau (gedeckt) · Wiesengruen
     (sparsam) · Anthrazit (Text)
   Schriften: Newsreader (Headlines) + Onest (Text/UI), lokal gehostet
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --white: #ffffff;
  --cream: #f8f4ec;          /* warmes Off-White, Grundton */
  --cream-deep: #f0e8da;     /* abgesetzte helle Flaeche */
  --sand: #dcc49a;           /* Warmbeige Holz, hell */
  --sand-deep: #c8a06a;      /* Naturholz, kraeftiger */
  --terra: #b54a3a;          /* Ziegelrot/Terrakotta, Leitakzent */
  --terra-deep: #97392c;     /* Hover / dunkler */
  --terra-soft: #c46268;     /* heller Terrakotta-Ton */
  --lake: #5e9bbd;           /* Seeblau, gedeckt — Sekundaerakzent */
  --lake-light: #7fb4cf;     /* helleres Seeblau */
  --lake-deep: #437a98;      /* Seeblau dunkel (Textlinks) */
  --meadow: #7a8c5a;         /* Wiesengruen, sparsam */
  --ink: #3a3f44;            /* Anthrazit — Fliesstext, Headlines */
  --ink-soft: #5b6066;       /* abgesetzter Fliesstext */
  --line: #e4dac8;           /* Trennlinien auf hellem Grund */

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

  --container: 1160px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px -28px rgba(58, 63, 68, 0.45);
  --shadow-soft: 0 10px 30px -20px rgba(58, 63, 68, 0.35);
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--lake-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--terra); }

::selection { background: var(--terra); color: var(--white); }

:focus-visible { outline: 3px solid var(--lake); outline-offset: 3px; }

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

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
  letter-spacing: -0.01em;
  /* lange Komposita: nur an gesetzten &shy;-Stellen trennen */
  hyphens: manual;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.9vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { max-width: 64ch; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

em, .accent-i {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--terra-deep);
}

/* ---------- Demo-Hinweisleiste ---------- */
.demo-bar {
  background: var(--ink);
  color: #eef1f3;
  font-size: 0.77rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.5rem var(--pad);
  border-bottom: 3px solid var(--terra);
}
.demo-bar strong { font-weight: 600; color: var(--sand); }

/* ---------- Header & Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 46px; height: 42px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lake-deep);
  margin-top: 0.15rem;
}

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2rem); }
.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 0.3rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--terra); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--terra); }

.nav__cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--terra-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  margin-block: 6px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--terra);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem var(--pad) 1.5rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding-block: 0.85rem; font-size: 0.98rem; width: 100%; }
  .nav__cta { margin-top: 0.9rem; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn--solid { background: var(--terra); border-color: var(--terra); color: var(--white); }
.btn--solid:hover { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--white); }

.btn--light { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--terra-deep); border-color: var(--white); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--sand-deep);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.badge svg { width: 18px; height: 18px; color: var(--lake); flex: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, #eaf2f6 0%, rgba(234,242,246,0) 55%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.4rem, 8vw, 6.5rem) clamp(5rem, 11vw, 9rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 6.4fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero .badge { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent-i { white-space: nowrap; }
.hero .lead { margin-bottom: 2.3rem; max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero-Bildflaeche: stilisiertes Haus am See als Platzhalter */
.hero__art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, #cfe3ee 0%, #b9d6e6 38%, #9ec6db 38%, #8fbcd4 100%);
}
.hero__scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__art .ph-tag {
  position: absolute;
  left: 0.85rem; bottom: 0.85rem;
  z-index: 3;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(58, 63, 68, 0.78);
  color: #fff;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}

/* Wellen am unteren Hero-Rand */
.hero__shore {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  color: var(--cream);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__art { max-width: 460px; margin-inline: auto; width: 100%; aspect-ratio: 5/4; }
}

/* ---------- Highlight-Leiste ---------- */
.highlights {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  padding-block: clamp(1.6rem, 3.5vw, 2.4rem);
}
.hl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.6rem 0.4rem;
  position: relative;
}
.hl + .hl::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--line);
}
.hl svg { width: 30px; height: 30px; color: var(--lake); flex: none; }
.hl span {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}
@media (max-width: 860px) {
  .highlights__grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem 0.5rem; }
  .hl:nth-child(3n+1)::before { display: none; }
}
@media (max-width: 520px) {
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .hl::before { display: none !important; }
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.4rem, 8vw, 6.5rem); }
.section--cream { background: var(--cream-deep); }
.section--white { background: var(--white); border-block: 1px solid var(--line); }

.section__head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section__head p { margin-top: 1rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::before { display: none; }
.section__head--center p { margin-inline: auto; }

/* ---------- Wellen-Trenner ---------- */
.wave-sep {
  display: flex;
  justify-content: center;
  color: var(--lake-light);
  padding-block: clamp(0.4rem, 1.4vw, 1rem);
}
.wave-sep svg { width: min(240px, 46vw); height: 18px; opacity: 0.8; }

/* ---------- Karten (Teaser-Grid) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { width: 40px; height: 40px; color: var(--terra); flex: none; }
.card h3 { color: var(--ink); }
.card p { font-size: 0.97rem; }

/* ---------- Teaser-Reihen ---------- */
.teaser {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}
.teaser--flip { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.teaser h2 { margin-bottom: 1rem; }
.teaser p + p { margin-top: 0.85rem; }
.teaser .btn { margin-top: 1.7rem; }

/* Bildflaeche fuer Teaser (Platzhalter mit Szene) */
.figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.figure .ph-tag {
  position: absolute;
  left: 0.85rem; bottom: 0.85rem;
  z-index: 3;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(58, 63, 68, 0.78);
  color: #fff;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.figure svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; }

.fact-list { list-style: none; margin-top: 1.3rem; }
.fact-list li {
  padding: 0.42rem 0 0.42rem 1.9rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.fact-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 1.1rem; height: 0.5rem;
  border-bottom: 2px solid var(--lake);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

@media (max-width: 860px) {
  .teaser, .teaser--flip { grid-template-columns: 1fr; }
  .figure { max-width: 480px; }
  .teaser--flip .figure { order: -1; }
}

/* ---------- Zimmer-Seite ---------- */
.rooms { display: grid; gap: 1.4rem; }
.room {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-soft);
  align-items: center;
}
.room--flip .room__media { order: 2; }
.room__media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 170px;
}
.room__media svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.room__media .ph-tag {
  position: absolute; left: 0.65rem; bottom: 0.65rem;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.04em;
  background: rgba(58,63,68,0.78); color: #fff;
  padding: 0.26rem 0.6rem; border-radius: 999px;
}
.room__body h3 { margin-bottom: 0.35rem; }
.room__meta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.room__body p { font-size: 0.97rem; }
.amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.amenities li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}
.price-note {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--lake-deep);
}

@media (max-width: 720px) {
  .room { grid-template-columns: 1fr; }
  .room--flip .room__media { order: 0; }
}

/* Info-Band (Hinweiskaesten) */
.info-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}
.info-card h3 { margin-bottom: 0.5rem; font-size: 1.14rem; }
.info-card p { font-size: 0.95rem; }
.info-card svg { width: 34px; height: 34px; color: var(--lake); margin-bottom: 0.7rem; }

.stand-note { font-size: 0.85rem; font-style: italic; color: var(--ink-soft); }

/* ---------- Das-Haus-Seite: Feature-Liste ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.feature {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.7rem);
  box-shadow: var(--shadow-soft);
}
.feature svg { width: 34px; height: 34px; color: var(--terra); flex: none; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.94rem; }

/* Frühstuecks-Liste */
.breakfast-list {
  columns: 2;
  column-gap: 2.5rem;
  list-style: none;
  margin-top: 1.2rem;
  max-width: 640px;
}
.breakfast-list li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  break-inside: avoid;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.breakfast-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: var(--sand-deep);
}
@media (max-width: 540px) { .breakfast-list { columns: 1; } }

/* Hinweisbox (z. B. Barrierearmut) */
.callout {
  background: var(--cream-deep);
  border-left: 4px solid var(--lake);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.6rem;
  margin-top: 1.8rem;
}
.callout p { font-size: 0.96rem; margin: 0; }
.callout strong { color: var(--ink); }

/* ---------- Lage-Seite ---------- */
.poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.poi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.7rem);
  box-shadow: var(--shadow-soft);
}
.poi__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--meadow);
  display: block;
  margin-bottom: 0.4rem;
}
.poi h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.poi p { font-size: 0.93rem; }

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 720px;
}
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.steps li::before {
  content: counter(step);
  flex: none;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.steps li p { margin: 0.25rem 0 0; }
.steps li strong { color: var(--ink); }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(3.6rem, 8vw, 5.8rem);
  background:
    linear-gradient(150deg, var(--terra) 0%, var(--terra-deep) 100%);
  color: #fff;
}
.cta-band__wave {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 0.9rem; position: relative; }
.cta-band p {
  margin-inline: auto;
  margin-bottom: 1.7rem;
  color: rgba(255,255,255,0.9);
  position: relative;
}
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.8rem;
  position: relative;
}
.cta-band .tel:hover { color: var(--sand); }
.cta-band .actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  position: relative;
}

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.contact-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-soft);
}
.contact-cell svg { width: 32px; height: 32px; color: var(--terra); margin-bottom: 0.7rem; }
.contact-cell h3 { margin-bottom: 0.6rem; }
.contact-cell .big {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 600;
  color: var(--terra);
  display: inline-block;
}
.contact-cell .big:hover { color: var(--terra-deep); }
.contact-cell address { font-style: normal; color: var(--ink-soft); }
.contact-cell p { font-size: 0.97rem; }
.contact-cell .ext {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lake-deep);
}
.contact-cell .ext:hover { color: var(--terra); }

/* ---------- Anfrageformular (Demo, nicht funktional) ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
}
.demo-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(94, 155, 189, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.form-consent input { margin-top: 0.25rem; flex: none; }
.form-hint {
  background: var(--cream-deep);
  border: 1px dashed var(--sand-deep);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.form-hint strong { color: var(--terra-deep); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 800px; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.32rem;
  margin: 2.3rem 0 0.8rem;
  color: var(--ink);
}
.legal p, .legal address { margin-bottom: 1rem; font-style: normal; color: var(--ink-soft); }
.legal ul { margin: 0 0 1rem 1.3rem; color: var(--ink-soft); }
.legal li { padding-block: 0.2rem; }

.demo-note {
  background: var(--white);
  border: 2px solid var(--terra);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.demo-note strong { color: var(--terra-deep); }

.placeholder {
  background: var(--cream-deep);
  border: 1px dashed var(--sand-deep);
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  font-size: 0.9em;
  color: var(--terra-deep);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: rgba(238, 241, 243, 0.78);
  padding-block: clamp(2.6rem, 6vw, 4rem) 1.5rem;
  font-size: 0.93rem;
  border-top: 4px solid var(--terra);
}
.site-foot a { color: #e9eef0; }
.site-foot a:hover { color: var(--sand); }
.foot-emblem {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  color: var(--sand);
}
.foot-emblem svg { width: 42px; height: 38px; flex: none; }
.foot-emblem b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.foot-emblem small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.15rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(238, 241, 243, 0.16);
}
.foot-grid h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.foot-grid ul { list-style: none; }
.foot-grid li { padding-block: 0.25rem; }
.foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(238, 241, 243, 0.55);
}

/* ---------- Seiten-Header (Innenseiten) ---------- */
.page-head {
  background:
    radial-gradient(120% 120% at 85% 0%, #eaf2f6 0%, rgba(234,242,246,0) 55%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}
.page-head .eyebrow { margin-bottom: 1rem; }
.page-head h1 { margin-bottom: 1rem; max-width: 18ch; }
.page-head p { font-size: clamp(1.05rem, 1.6vw, 1.18rem); max-width: 56ch; }

/* ---------- Einblend-Animationen ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
  .reveal[data-delay="4"] { transition-delay: 0.4s; }
}
