/* ==========================================================================
   Zetti's Ferienhäusle, Berg bei Ravensburg — Demo-Gestaltungsvorschlag
   Charakter: Liebevoll umgebautes Fachwerk-Häusle (ehem. Steinmetz-
              Gesellenkammer), warm, naturnah, handgemacht, refined-cozy.
   Farbwelt: Naturholz/Warmbraun #9c6f3f (Leitfarbe) · Steinbeige #cdbfa6 ·
             Tannengrün #5f7a4f (Akzent) · Warmweiß #f6f1e7 · Anthrazit #33352f
   Schriften: Petrona (Display) + Onest (Text), lokal gehostet
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Petrona";
  src: url("../fonts/petrona-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Petrona";
  src: url("../fonts/petrona-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Designsystem ---------- */
:root {
  --cream: #f6f1e7;          /* Warmweiß — Grundton */
  --cream-bright: #fbf8f1;   /* aufgehellte Flächen (Header, Karten) */
  --stone: #cdbfa6;          /* Steinbeige — abgesetzte Flächen */
  --stone-soft: #e3d8c3;     /* helles Steinbeige */
  --wood: #9c6f3f;           /* Naturholz/Warmbraun — Leitfarbe */
  --wood-deep: #7d5630;      /* dunkleres Holz — Hover */
  --wood-warm: #b88a52;      /* helleres Holz — Glanzlichter */
  --green: #5f7a4f;          /* Tannengrün — Akzent */
  --green-deep: #46603a;     /* dunkleres Grün — Hover/Links */
  --ink: #33352f;            /* Anthrazit — Headlines/Text */
  --ink-soft: #565849;       /* abgesetzter Fließtext */
  --line: #ddd0b8;           /* Trennlinien auf hellem Grund */
  --sky: #7fa6bf;            /* Himmelblau — sehr sparsam (Bergblick) */

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

  --container: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px -28px rgba(51, 53, 47, 0.45);
}

/* ---------- 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.04rem;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  /* dezente warme Papier-/Putztextur */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(184, 138, 82, 0.06), transparent 45%),
    radial-gradient(circle at 85% 78%, rgba(95, 122, 79, 0.05), transparent 50%);
  background-attachment: fixed;
}

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

a { color: var(--green-deep); text-decoration: none; }
a:hover { color: var(--wood-deep); }

::selection { background: var(--wood); color: var(--cream-bright); }

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

.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.14;
  color: var(--ink);
  text-wrap: balance;
  hyphens: manual; /* lange Komposita nur an gesetzten &shy;-Stellen brechen */
}

h1 { font-size: clamp(2.1rem, 5.6vw, 3.7rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.9vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.18rem, 2vw, 1.42rem); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  background: var(--wood);
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.66;
  color: var(--ink-soft);
}

em { font-style: italic; color: var(--wood-deep); }

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

/* ---------- Header & Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  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.8rem;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 46px; height: 46px; flex: none; color: var(--wood); }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
}
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  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(--wood);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--wood-deep); }
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav a[aria-current="page"] { color: var(--wood-deep); }

.nav__cta {
  background: var(--green);
  color: var(--cream-bright) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--green-deep); color: var(--cream-bright) !important; 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;
  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-bright);
    border-bottom: 3px solid var(--wood);
    padding: 0.5rem var(--pad) 1.5rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding-block: 0.8rem; font-size: 1rem; }
  .nav__cta { margin-top: 0.8rem; }
  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-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  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(--wood);
  border-color: var(--wood);
  color: var(--cream-bright);
}
.btn--solid:hover { background: var(--wood-deep); border-color: var(--wood-deep); color: var(--cream-bright); }

.btn--green {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream-bright);
}
.btn--green:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--cream-bright); }

.btn--light { border-color: var(--cream); color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--ink); }

/* ---------- Story-Badge ---------- */
.badge-story {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-deep);
  border: 1px solid var(--wood);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  background: var(--cream-bright);
}
.badge-story svg { width: 18px; height: 18px; color: var(--green); flex: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(205, 191, 166, 0.4), transparent 60%),
    linear-gradient(180deg, var(--cream-bright) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.8rem, 9vw, 7rem) clamp(3.2rem, 8vw, 6rem);
}

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

.hero .badge-story { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Emblem-Fläche rechts: Z-Monogramm im Giebel über Steinsockel */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 380px;
  width: 100%;
  margin-inline: auto;
}
.hero__art::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--stone-soft), var(--stone) 80%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.hero__art::after {
  content: "";
  position: absolute;
  inset: -1%;
  border-radius: 50%;
  border: 1px dashed var(--wood);
  opacity: 0.45;
}
.hero__emblem {
  position: relative;
  width: 56%;
  color: var(--wood-deep);
  z-index: 1;
}

/* dekorative Holzmaserung-Linie am unteren Hero-Rand */
.hero__grain {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.8rem;
  width: 100%;
  color: var(--wood);
  opacity: 0.22;
  pointer-events: none;
}

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

/* ---------- Trenner ---------- */
.rule-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding-block: clamp(0.6rem, 1.6vw, 1.2rem);
  color: var(--wood);
}
.rule-sep::before,
.rule-sep::after {
  content: "";
  height: 1px;
  width: min(120px, 22vw);
  background: linear-gradient(90deg, transparent, var(--wood));
  opacity: 0.5;
}
.rule-sep::after { background: linear-gradient(90deg, var(--wood), transparent); }
.rule-sep svg { width: 22px; height: 22px; flex: none; }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.2rem, 8vw, 6rem); }

.section--stone {
  background: linear-gradient(180deg, var(--stone-soft), var(--cream) 90%);
  border-block: 1px solid var(--line);
}
.section--bright {
  background: var(--cream-bright);
  border-block: 1px solid var(--line);
}

.section__head { max-width: 720px; margin-bottom: clamp(1.8rem, 5vw, 3rem); }
.section__head p { margin-top: 0.9rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center p { margin-inline: auto; }

/* ---------- Karten (Highlights) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.card {
  background: var(--cream-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card__icon {
  width: 42px; height: 42px; flex: none;
  color: var(--green);
  padding: 0.5rem;
  background: var(--stone-soft);
  border-radius: 10px;
  box-sizing: content-box;
}
.card h3 { color: var(--ink); }
.card p { font-size: 0.97rem; }

/* ---------- Teaser-Reihen (Bild-Platzhalter + Text) ---------- */
.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.8rem; }
.teaser .btn { margin-top: 1.6rem; }

/* gestalteter Bild-Platzhalter (kein fremdes Foto) */
.photo-ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(124, 86, 48, 0.05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--stone-soft), var(--stone));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}
.photo-ph svg { width: clamp(54px, 8vw, 84px); color: var(--wood-deep); opacity: 0.8; }
.photo-ph__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(0deg, rgba(51, 53, 47, 0.78), transparent);
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.photo-ph--tall { aspect-ratio: 3 / 4; }

.fact-list {
  list-style: none;
  margin-top: 1.2rem;
}
.fact-list li {
  padding: 0.4rem 0 0.4rem 1.9rem;
  position: relative;
  color: var(--ink-soft);
}
.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

@media (max-width: 840px) {
  .teaser, .teaser--flip { grid-template-columns: 1fr; }
  .teaser--flip .photo-ph { order: -1; }
}

/* ---------- Story-Block (Steinmetz-Geschichte) ---------- */
.story {
  position: relative;
  background:
    linear-gradient(180deg, rgba(51, 53, 47, 0.02), transparent),
    var(--cream-bright);
}
.story__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  color: var(--wood-deep);
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 1.4rem;
  margin-top: 1.6rem;
  max-width: 30ch;
}
@media (max-width: 840px) {
  .story__inner { grid-template-columns: 1fr; }
}

/* ---------- Ausstattungs-Listen (haeusle) ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.spec {
  background: var(--cream-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.spec h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 1.18rem;
}
.spec h3 svg { width: 26px; height: 26px; color: var(--green); flex: none; }
.spec ul { list-style: none; }
.spec li {
  padding-block: 0.4rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  font-size: 0.97rem;
}
.spec li:last-child { border-bottom: none; }

/* Eckdaten-Band */
.facts-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.fact-box {
  text-align: center;
  background: var(--cream-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
}
.fact-box .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--wood-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.fact-box .lbl {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Umgebung: Entfernungen ---------- */
.dist-list {
  display: grid;
  gap: 0.2rem;
  max-width: 620px;
  margin-top: 1.4rem;
}
.dist-list .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}
.dist-list .row:last-child { border-bottom: none; }
.dist-list .place { color: var(--ink); font-weight: 500; }
.dist-list .km {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--wood-deep);
  white-space: nowrap;
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(circle at 80% 20%, var(--wood-warm), transparent 55%),
    var(--wood);
  color: var(--cream-bright);
  text-align: center;
  padding-block: clamp(3.2rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band__mark {
  position: absolute;
  width: clamp(180px, 24vw, 320px);
  color: rgba(255, 255, 255, 0.1);
  top: 50%;
  right: -3%;
  transform: translateY(-50%) rotate(-6deg);
}
.cta-band h2 { color: var(--cream-bright); margin-bottom: 0.9rem; position: relative; }
.cta-band p {
  margin-inline: auto;
  margin-bottom: 1.6rem;
  color: rgba(251, 248, 241, 0.9);
  position: relative;
}
.cta-band .tel {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 600;
  color: var(--cream-bright);
  margin-bottom: 1.7rem;
  position: relative;
}
.cta-band .tel:hover { color: var(--ink); }
.cta-band .note { color: rgba(251, 248, 241, 0.78); position: relative; font-size: 0.9rem; }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.contact-cell {
  background: var(--cream-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.contact-cell h3 { margin-bottom: 0.7rem; }
.contact-cell .big {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--wood-deep);
  display: inline-block;
}
.contact-cell .big:hover { color: var(--green-deep); }
.contact-cell address { font-style: normal; color: var(--ink-soft); }
.contact-cell p { font-size: 0.97rem; }
.contact-cell .ext {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.contact-cell .ext:hover { color: var(--wood-deep); }

/* Anfrage-Formular (rein gestaltet, mailto / kein Drittanbieter) */
.form {
  display: grid;
  gap: 1.1rem;
  background: var(--cream-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.form .field { display: grid; gap: 0.35rem; }
.form .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form input,
.form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(95, 122, 79, 0.15);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .form-note { font-size: 0.84rem; color: var(--ink-soft); }
.form button { justify-self: start; border: none; }

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

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 780px; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 0.8rem; }
.legal p, .legal address { margin-bottom: 1rem; font-style: normal; color: var(--ink-soft); }

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

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

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: rgba(246, 241, 231, 0.78);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.93rem;
  border-top: 4px solid var(--wood);
}
.site-foot a { color: var(--stone); }
.site-foot a:hover { color: var(--wood-warm); }
.foot-emblem {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--wood-warm);
}
.foot-emblem svg { width: 34px; height: 34px; }
.foot-emblem span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246, 241, 231, 0.16);
}
.foot-grid h3 {
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  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.04em;
  color: rgba(246, 241, 231, 0.55);
}

/* ---------- Einblend-Animationen ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    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; }
}
