/* =========================================================================
   Malerei Zimmerli — Stylesheet
   Design: ruhig, professionell, editorial (nummerierte Sektionen)
   Palette: warmes Stein-Weiss / Charcoal / gedeckter Slate-Akzent
   Fonts: Jost (Display) + Inter (Text/UI) — self-hosted, DSGVO
   ========================================================================= */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: "Jost";
  src: url("../vendor/fonts/jost-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face { font-family: "Inter"; src: url("../vendor/fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../vendor/fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../vendor/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../vendor/fonts/inter-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Design Tokens ---------- */
:root {
  /* Basis – warme, neutrale Steintöne */
  --paper:      #F4F3F0;
  --paper-2:    #EAE8E2;
  --surface:    #FFFFFF;
  --surface-2:  #EFEDE8;
  --ink:        #17181A;   /* Charcoal, Haupttext */
  --ink-2:      #1D1F22;   /* dunkle Sektionen */
  --ink-soft:   #595C61;   /* Sekundärtext */
  --line:       rgba(23, 24, 26, 0.13);
  --line-2:     rgba(23, 24, 26, 0.26);
  --field-border: #8B8E93;   /* Formularfeld-Rand, WCAG 1.4.11 (≥3:1) */

  /* Akzent – gedecktes Slate-Blau (professionell, zurückhaltend) */
  --accent:      #3E5A6E;
  --accent-deep: #2B4353;
  --accent-soft: rgba(62, 90, 110, 0.10);
  --on-dark-soft: rgba(244, 243, 240, 0.66);

  /* Typo */
  --display: "Jost", "Futura", "Century Gothic", sans-serif;
  --sans:    "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow:      0 30px 70px -34px rgba(23, 24, 26, 0.42);
  --shadow-soft: 0 16px 44px -26px rgba(23, 24, 26, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0; font-family: var(--sans); font-weight: 400;
  color: var(--ink); background: var(--paper);
  line-height: 1.68; font-size: clamp(1rem, 0.5vw + 0.9rem, 1.06rem);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 0.4em; }
p { margin: 0 0 1rem; }
strong { font-weight: 600; }

/* ---------- Utilities ---------- */
.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.75rem, 8vw, 7.5rem) 0; }
.section--tight { padding-top: clamp(2.5rem, 5vw, 4rem); }

/* Editoriale Sektions-Köpfe: Index-Nummer + Label + Titel */
.kicker { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1.4rem; }
.kicker .idx { font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--accent); letter-spacing: 0; }
.kicker .lbl { font-family: var(--sans); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.kicker::after { content: ""; flex: 1; height: 1px; background: var(--line); align-self: center; }
.kicker.center { justify-content: center; }
.kicker.center::after { display: none; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.h-xl { font-size: clamp(2.6rem, 6.4vw, 4.6rem); letter-spacing: -0.03em; line-height: 1.02; }
.h-lg { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.025em; }
.lead { font-size: clamp(1.08rem, 1.25vw, 1.24rem); color: var(--ink-soft); line-height: 1.6; }
.muted { color: var(--ink-soft); }

/* Skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; border-radius: 0 0 4px 0; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem; border-radius: 2px;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bg); cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { --bg: var(--accent); --fg: #fff; border-color: var(--accent); }
.btn--accent:hover { --bg: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); border-color: var(--ink); }
.btn--light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,0.45); }
.btn--light:hover { --bg: #fff; --fg: var(--ink); border-color: #fff; }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

/* ---------- Header / Nav ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 1.15rem 0; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease); }
.site-header.scrolled { background: rgba(244, 243, 240, 0.88); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 0.7rem 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .mark { width: 42px; height: 42px; flex: none; border-radius: 3px; }
.brand .name { font-family: var(--display); font-size: 1.28rem; font-weight: 600; line-height: 1; letter-spacing: -0.01em; color: var(--ink); }
.brand .name small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink); position: relative; padding: 0.2rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: var(--accent); transition: width 0.35s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

/* Burger */
.burger { display: none; width: 46px; height: 46px; border: 1.5px solid var(--line-2); border-radius: 3px; background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { width: 18px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; background: linear-gradient(180deg, var(--paper), var(--paper-2) 220%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: end; }
.hero-copy { max-width: 40rem; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.6rem; }
.hero-tag::before { content: ""; width: 30px; height: 1.5px; background: var(--accent); }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin-bottom: 2.2rem; max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.6rem; }

/* Fakten-Zeile (statt großer Zahlen-Statistik) */
.facts { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); }
.facts div { padding: 1.1rem 1.6rem 0 0; margin-right: 1.6rem; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; margin-right: 0; }
.facts b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.facts span { font-size: 0.84rem; color: var(--ink-soft); }

/* Hero-Visual */
.hero-visual { position: relative; }
.hero-frame { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-sidelabel { position: absolute; top: 0; right: -2.6rem; writing-mode: vertical-rl; font-family: var(--sans); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); }

/* Foto-Platzhalter (dezent, neutral) */
.ph { position: relative; background: linear-gradient(140deg, var(--surface-2), var(--paper-2) 60%, #dedcd5); display: grid; place-items: center; }
.ph::after { content: attr(data-label); font-family: var(--sans); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.75; z-index: 1; }
.ph .ph-mono { font-family: var(--display); font-weight: 600; font-size: clamp(3rem, 8vw, 5.5rem); color: rgba(23, 24, 26, 0.07); position: absolute; inset: 0; display: grid; place-items: center; }

/* ---------- Trust-Band ---------- */
.trust { background: var(--ink-2); color: var(--paper); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding: 1.35rem 0; }
.trust span { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; opacity: 0.9; display: inline-flex; align-items: center; gap: 0.6rem; }
.trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- Leistungen (editoriale Karten mit Index) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 0; border-top: 1px solid var(--line); }
.svc { padding: 2rem 1.9rem 2rem 0; border-bottom: 1px solid var(--line); position: relative; }
/* vertikale Trennlinien im 3er-Raster */
.svc { border-right: 1px solid var(--line); padding-right: 1.9rem; }
.services-grid .svc:nth-child(3n) { border-right: 0; padding-right: 0; }
.svc__idx { font-family: var(--display); font-weight: 600; font-size: 0.85rem; color: var(--accent); }
.svc__ic { width: 40px; height: 40px; margin: 1rem 0 1.1rem; color: var(--ink); }
.svc__ic svg { width: 100%; height: 100%; }
.svc h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.svc p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.svc ul { list-style: none; margin: 0; padding: 0; }
.svc ul li { font-size: 0.9rem; color: var(--ink-soft); padding-left: 1.1rem; position: relative; margin-bottom: 0.2rem; }
.svc ul li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 7px; height: 1.5px; background: var(--accent); }
.svc__bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--accent); transition: width 0.5s var(--ease); }
.svc:hover .svc__bar { width: 48px; }

/* CTA-Zeile unter den Leistungen */
.svc-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; margin-top: 2.4rem; padding: 1.6rem 1.9rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.svc-cta p { margin: 0; font-family: var(--display); font-size: 1.25rem; }
.svc-cta .muted { font-family: var(--sans); font-size: 0.92rem; }

/* ---------- Vorher/Nachher ---------- */
.compare { background: var(--surface); }
.ba { position: relative; width: 100%; max-width: 980px; margin-inline: auto; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: none; background: var(--surface-2); }
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba__tag { position: absolute; top: 1rem; z-index: 3; font-family: var(--sans); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 2px; color: #fff; background: rgba(23,24,26,0.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; z-index: 4; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(23,24,26,0.15); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--accent-deep); display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.ba__grip svg { width: 22px; height: 22px; }
.ba__range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba__range:focus-visible ~ .ba__handle .ba__grip { outline: 3px solid var(--accent); outline-offset: 3px; }
.compare-note { text-align: center; margin-top: 1.4rem; font-size: 0.86rem; }

/* ---------- Über / Split ---------- */
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about { background: var(--paper-2); }
.about-visual { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.quote { font-family: var(--display); font-size: clamp(1.5rem, 2.3vw, 2rem); font-weight: 500; line-height: 1.34; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 1.2rem; }
.sig { font-family: var(--display); font-weight: 600; font-size: 1.25rem; color: var(--ink); margin-top: 0.6rem; }
.sig small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.25rem; }
.about-points { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.about-points li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.96rem; }
.about-points .ic { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.about-points .ic svg { width: 100%; height: 100%; }

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.gallery-grid .tile { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-grid .tile.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-grid .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-grid .tile:hover img { transform: scale(1.05); }
.gallery-note { text-align: center; margin-top: 1.5rem; font-size: 0.88rem; }

/* ---------- Kontakt / Offerte ---------- */
.booking { background: var(--ink-2); color: var(--paper); }
.booking .kicker .lbl { color: var(--on-dark-soft); }
.booking .kicker::after { background: rgba(244,243,240,0.16); }
.booking .kicker .idx { color: #8fb0c4; }
.booking h2, .booking h3 { color: var(--paper); }
.booking .lead { color: var(--on-dark-soft); }
.booking-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-channels { display: grid; gap: 0.9rem; }
.channel { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; border: 1px solid rgba(244,243,240,0.16); border-radius: var(--radius); transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.channel:hover { background: rgba(244,243,240,0.05); border-color: rgba(244,243,240,0.32); transform: translateY(-2px); }
.channel .ic { width: 44px; height: 44px; border-radius: 3px; display: grid; place-items: center; flex: none; background: rgba(143,176,196,0.16); color: #aecadb; }
.channel .ic svg { width: 22px; height: 22px; }
.channel b { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.98rem; }
.channel span { font-size: 0.84rem; color: var(--on-dark-soft); }

/* Formular */
.form-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form-card h3 { color: var(--ink); font-size: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: 0.8rem 0.95rem; background: var(--surface); border: 1px solid var(--field-border); border-radius: var(--radius); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { font-size: 0.82rem; color: var(--ink-soft); display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.4rem 0 1.2rem; }
.form-consent input { margin-top: 0.25rem; flex: none; }
.form-consent a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.form-note { font-size: 0.9rem; margin-top: 0.9rem; padding: 0.8rem 1rem; border-radius: var(--radius); display: none; }
.form-note.ok { display: block; background: #e7f2ea; color: #1f6b41; border: 1px solid #b8dbc5; }
.form-note.err { display: block; background: #f7eae6; color: #984028; border: 1px solid #e4c7bc; }
.form-card .btn { width: 100%; justify-content: center; }

/* ---------- Anfahrt / Zeiten ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.address-card { font-style: normal; font-size: 1.02rem; color: var(--ink); line-height: 1.95; }
.address-card a { color: var(--accent-deep); }
.hours { list-style: none; margin: 1.4rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.hours li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.hours li span:first-child { color: var(--ink); font-weight: 500; }
.hours li span:last-child { color: var(--ink-soft); }
.map-card { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); position: relative; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.28) contrast(1.03); }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.5rem; padding: 1.6rem; background: var(--surface-2); color: var(--ink); }
.map-consent__ic { width: 46px; height: 46px; border-radius: 3px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 0.2rem; }
.map-consent__ic svg { width: 24px; height: 24px; }
.map-consent__title { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin: 0; }
.map-consent__note { font-size: 0.84rem; color: var(--ink-soft); max-width: 30rem; margin: 0 0 0.4rem; }
.map-consent .btn { font-size: 0.8rem; }
.map-consent__link { font-size: 0.82rem; color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; margin-top: 0.2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-2); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-top h4 { font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.1rem; }
.footer-top ul { list-style: none; margin: 0; padding: 0; }
.footer-top li { margin-bottom: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.footer-top a:hover { color: var(--accent-deep); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.82rem; color: var(--ink-soft); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent-deep); }

/* ---------- Rechtstexte ---------- */
.legal { background: var(--paper); }
.legal details { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; background: var(--surface); overflow: hidden; }
.legal summary { cursor: pointer; padding: 1.1rem 1.4rem; font-family: var(--display); font-weight: 600; font-size: 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.legal summary::-webkit-details-marker { display: none; }
.legal summary::after { content: "+"; font-family: var(--sans); font-size: 1.4rem; color: var(--accent); transition: transform 0.3s var(--ease); }
.legal details[open] summary::after { transform: rotate(45deg); }
.legal .legal-body { padding: 0 1.4rem 1.4rem; font-size: 0.92rem; color: var(--ink-soft); }
.legal .legal-body h4 { font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin: 1.2rem 0 0.4rem; }
.legal .legal-body a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- Reveal-Animation ---------- */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: 0.08s; }
html.js .reveal.d2 { transition-delay: 0.16s; }

/* ---------- Mobile Menü ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--paper); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.4rem; transform: translateY(-100%); transition: transform 0.5s var(--ease); visibility: hidden; }
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu a { font-family: var(--display); font-weight: 600; font-size: 1.9rem; color: var(--ink); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 1rem; font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-visual { max-width: 26rem; }
  .hero-sidelabel { display: none; }
  .split, .booking-grid, .location-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 26rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .tile.tall { grid-row: span 1; aspect-ratio: 1; }
  .svc { border-right: 0 !important; padding-right: 0 !important; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; }
  .facts div { border-right: 0; margin-right: 0; padding-right: 0; }
}
