/* =========================================================================
   Apartments Leverkusen City — Stylesheet
   Design: ruhiges Innenhof-Grün, Serif-Headlines + klare Sans, Weißraum.
   Keine externen Fonts (System-Stack). Mobile-first.
   ========================================================================= */

:root {
  --green-900: #26342b;
  --green-700: #3c5142;
  --green-600: #4d6555;
  --cream:     #f6f3ec;
  --cream-card:#fffdf8;
  --ink:       #23241f;
  --muted:     #6f6e64;
  --line:      #e4ddcf;
  --brass:     #a98b5d;
  --white:     #ffffff;

  --serif: 'Iowan Old Style','Palatino Linotype',Palatino,'Book Antiqua',Georgia,'Times New Roman',serif;
  --sans:  system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;

  --maxw: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(38,52,43,.06);
  --shadow-md: 0 10px 30px rgba(38,52,43,.10);
  --shadow-lg: 0 24px 60px rgba(38,52,43,.16);
  --header-h: 68px;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
h1,h2,h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--green-900); letter-spacing: .2px; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin: 0 0 .4em; }
h3 { font-size: 1.25rem; margin: 0 0 .3em; }
p { margin: 0 0 1em; }

/* ---------- Accessibility helpers ---------- */
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 1000;
  background: var(--green-900); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gap); }
section { padding-block: clamp(3rem, 7vw, 6rem); }
.section-head { max-width: 720px; margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.section-head .eyebrow { color: var(--brass); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; cursor: pointer;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  min-height: 48px; text-decoration: none; transition: background .2s, color .2s, border-color .2s, transform .08s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-600); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }
.btn-light { background: #fff; color: var(--green-900); }
.btn-light:hover { background: var(--cream); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,243,236,.88); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line); min-height: var(--header-h);
}
.site-header .container { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.brand { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--green-900); text-decoration: none; display: flex; align-items: center; gap: .55rem; }
.brand .mark { width: 30px; height: 30px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-size: .95rem; }
.brand small { display: block; font-family: var(--sans); font-weight: 500; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
/* HP-Header Titel einzeilig (Sync mit Portal) */
.brand { white-space: nowrap; flex-shrink: 0; }
.nav-links a { white-space: nowrap; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.5rem,1.5vw,1.6rem); }
.nav-links { display: flex; gap: clamp(.6rem,1.5vw,1.4rem); list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .96rem; padding: .4rem 0; }
.nav-links a:hover { color: var(--green-700); }

/* language switcher */
.lang { position: relative; }
.lang-toggle { background: transparent; border: 1.5px solid var(--line); border-radius: 999px; padding: .45rem .8rem; font: inherit; font-weight: 600; cursor: pointer; color: var(--ink); display: flex; align-items: center; gap: .35rem; min-height: 42px; }
.lang-toggle:hover { border-color: var(--green-600); }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); padding: .4rem; min-width: 170px; display: none; max-height: 60vh; overflow:auto; }
.lang-menu.open { display: block; }
.lang-menu a { display: block; padding: .5rem .7rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 500; }
.lang-menu a[aria-current="true"] { background: var(--cream); color: var(--green-700); font-weight: 700; }
.lang-menu a:hover { background: var(--cream); }

.nav-toggle { display: none; background: transparent; border: 1.5px solid var(--line); border-radius: 10px; width: 46px; height: 46px; cursor: pointer; color: var(--ink); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; padding-block: 0; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,40,32,.55) 0%, rgba(28,40,32,.35) 40%, rgba(28,40,32,.62) 100%); }
.hero-inner { padding-block: clamp(4rem, 12vw, 8.5rem) clamp(7rem, 12vw, 9rem); max-width: 760px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4); color: #fff; padding: .45rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: .9rem; margin-bottom: 1.4rem; backdrop-filter: blur(4px);
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.94); max-width: 640px; text-shadow: 0 1px 12px rgba(0,0,0,.3); }

/* ---------- Booking bar ---------- */
.booking-wrap { position: relative; margin-top: -3.6rem; z-index: 20; }
.booking {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.2rem;
  display: grid; gap: .8rem; grid-template-columns: 1fr; align-items: end;
}
.booking .field { display: flex; flex-direction: column; gap: .3rem; }
.booking label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.booking input, .booking select {
  font: inherit; padding: .7rem .8rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); min-height: 48px; width: 100%;
}
.booking input:hover, .booking select:hover { border-color: var(--green-600); }
.booking .submit { display: flex; }
.booking .submit .btn { width: 100%; }

/* ---------- USP band ---------- */
.usp { background: var(--green-900); color: #fff; }
.usp .container { padding-block: clamp(1.6rem,3vw,2.2rem); }
.usp-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem 1.4rem; }
.usp-list li { display: flex; align-items: center; gap: .6rem; font-weight: 500; font-size: .98rem; color: rgba(255,255,255,.95); }
.usp-list .ic { color: var(--brass); flex: 0 0 auto; display: grid; place-items: center; }
.usp-list .ic svg { width: 22px; height: 22px; }

/* ---------- Apartments grid ---------- */
.apts-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.apt-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.apt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.apt-figure { display: block; position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--line); text-decoration: none; }
.apt-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.apt-card:hover .apt-figure img { transform: scale(1.04); }
.apt-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.94); color: var(--green-900);
  font-weight: 600; font-size: .82rem; padding: .3rem .7rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.apt-min { position: absolute; top: 12px; right: 12px; background: var(--brass); color: #fff;
  font-weight: 600; font-size: .78rem; padding: .3rem .7rem; border-radius: 999px; }
.apt-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.apt-head { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.apt-head .type { color: var(--brass); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.apt-body h3 { margin: 0; }
.apt-blurb { color: var(--muted); margin: 0; }
.apt-facts { list-style: none; margin: .2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.apt-facts li { font-size: .85rem; background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: .25rem .6rem; color: var(--ink); }
.apt-actions { margin-top: auto; padding-top: .4rem; display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---------- Amenities ---------- */
.amen-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.amen-item { display: flex; gap: .8rem; align-items: flex-start; background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.1rem; box-shadow: var(--shadow-sm); }
.amen-item .ic { color: var(--green-700); flex: 0 0 auto; background: var(--cream); border-radius: 10px; width: 42px; height: 42px; display: grid; place-items: center; }
.amen-item .ic svg { width: 22px; height: 22px; }
.amen-item p { margin: 0; font-weight: 500; }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: start; }
.loc-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .7rem; }
.loc-list li { display: flex; gap: .7rem; align-items: flex-start; }
.loc-list .ic { color: var(--green-700); flex: 0 0 auto; margin-top: 2px; }
.loc-list .ic svg { width: 20px; height: 20px; }
.address-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.address-card .gw { color: var(--muted); font-size: .9rem; border-top: 1px dashed var(--line); margin-top: .9rem; padding-top: .9rem; }
.map-embed { border: 0; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--line); }
/* OSM/Leaflet-Lagekarte */
.loc-map { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; background: var(--line); border: 1px solid var(--line); font: inherit; }
.loc-pin-wrap { background: none; border: 0; }
.loc-pin { display: block; width: 16px; height: 16px; border-radius: 50%; background: var(--green-700); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(38,52,43,.45); }
.loc-pin-main { width: 28px; height: 28px; background: var(--green-900); border-color: var(--brass); }
.loc-highlight { margin: 0 0 1.4rem; padding: .75rem 1rem; background: var(--cream-card); border-left: 3px solid var(--green-700); border-radius: var(--radius); color: var(--ink); font-size: .95rem; line-height: 1.5; }
.loc-map .leaflet-popup-content { font: inherit; margin: .7rem .9rem; line-height: 1.45; }
.loc-map .leaflet-popup-content a { color: var(--green-700); font-weight: 600; }
.loc-map .leaflet-control-attribution { font-size: 10px; }

/* ---------- Reviews ---------- */
.rev-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.rev-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.4rem 1.2rem; box-shadow: var(--shadow-sm); }
.rev-stars { color: var(--brass); letter-spacing: 2px; margin-bottom: .5rem; }
.rev-card blockquote { margin: 0 0 1rem; font-size: 1.05rem; }
.rev-card cite { font-style: normal; font-weight: 700; color: var(--green-900); }
.rev-card .origin { color: var(--muted); font-size: .88rem; }
.rev-note { color: var(--muted); font-size: .85rem; font-style: italic; margin-top: 1rem; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.4rem); text-align: center; box-shadow: var(--shadow-md); }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.92); max-width: 560px; margin-inline: auto; font-size: 1.1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.1rem 2.2rem 1.1rem 0; position: relative; font-weight: 600; font-size: 1.08rem; color: var(--green-900); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--brass); transition: transform .2s; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a { padding: 0 2.2rem 1.2rem 0; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.82); padding-block: clamp(2.6rem,5vw,3.6rem) 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.site-footer h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: #fff; margin: 0 0 .9rem; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand .mark { background: #fff; color: var(--green-900); }
.footer-brand p { max-width: 30ch; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
/* Kontaktzeilen: kleines Icon links, Text daneben in derselben Zeile (dezent) */
.footer-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .92rem; line-height: 1.45; }
.footer-list li a { display: inline-flex; align-items: flex-start; gap: 8px; }
.footer-list svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; color: rgba(255,255,255,.7); }
.footer-langs { display: flex; flex-wrap: wrap; gap: .4rem .7rem; }
.footer-langs a[aria-current="true"] { color: #fff; font-weight: 700; }
.footer-badge { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; font-weight: 600; color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 2rem; padding-top: 1.2rem; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; }

/* ---------- Forms (Übergangs-Formularseiten) ---------- */
.form-page { padding-block: clamp(2.5rem,6vw,4.5rem); }
.form-card { max-width: 760px; margin-inline: auto; background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.4rem,4vw,2.6rem); }
.form-card h1 { font-size: clamp(1.7rem,4vw,2.4rem); }
.form-intro { color: var(--muted); margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.form-grid.two { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-weight: 600; font-size: .92rem; }
.form-field .req { color: #b3402e; }
.form-field input:not([type="radio"]):not([type="checkbox"]), .form-field select, .form-field textarea {
  font: inherit; padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: 10px; background:#fff; color: var(--ink); min-height: 48px; width: 100%;
}
/* Radio & Checkbox NIE wie Textfelder behandeln (sonst riesige, zentrierte Kreise) */
.form-field input[type="radio"], .form-field input[type="checkbox"] {
  width: 18px; height: 18px; min-height: 0; flex: 0 0 auto; margin: 0; padding: 0;
  border: 0; border-radius: 0; background: none; box-shadow: none;
  -webkit-appearance: auto; appearance: auto; accent-color: var(--green-700); cursor: pointer;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-600); }
.form-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { margin-top: 1.4rem; }
.form-consent { display: flex; gap: .6rem; align-items: center; font-size: .9rem; color: var(--muted); }
.form-consent input[type="checkbox"] {
  width: 19px; height: 19px; min-height: 0; flex: 0 0 auto; margin: 0; padding: 0;
  border: 0; box-shadow: none; -webkit-appearance: auto; appearance: auto;
  accent-color: var(--green-700); cursor: pointer;
}
.form-consent label { font-weight: 400; }
.form-error { background: #fbe9e6; border: 1px solid #e3b4ab; color: #8a2b1c; padding: .8rem 1rem; border-radius: 10px; margin-bottom: 1.2rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
/* Radio-Optionen (Ja/Nein, Yes/No) — kompakte Chips statt riesiger Kreise */
.radio-group { gap: .55rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: .55rem .7rem; }
.radio-group .radio-option {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 500; font-size: .95rem; line-height: 1.2; cursor: pointer;
  padding: .55rem .95rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--cream-card); transition: border-color .15s ease, background .15s ease;
}
.radio-group .radio-option:hover { border-color: var(--green-600); }
.radio-group .radio-option input[type="radio"] {
  width: 18px; height: 18px; min-height: 0; margin: 0; padding: 0;
  border: 0; box-shadow: none; background: none; flex: 0 0 auto;
  accent-color: var(--green-700); -webkit-appearance: auto; appearance: auto;
}
.radio-group .radio-option:has(input[type="radio"]:checked) {
  border-color: var(--green-700); background: #eceff0;
}
.confirm-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-700); color:#fff; display: grid; place-items: center; margin: 0 auto 1.2rem; }
.confirm-icon svg { width: 34px; height: 34px; }
.form-page .text-center { text-align: center; }

/* ---------- Buchungsbereich (/buchen) ---------- */
.booking-section { padding-block: clamp(2rem,5vw,3.5rem); }
.booking-page-bar { margin-bottom: clamp(1.4rem,3vw,2.2rem); }
.booking-embed { width: 100%; }
.booking-iframe { display: block; width: 100%; max-width: 100%; border: none; overflow: auto; min-height: 1600px; background: var(--cream-card); border-radius: var(--radius); }
.booking-open-tab { display: none; }
@media (max-width: 899px) {
  .booking-iframe { display: none; }
  .booking-open-tab { display: inline-flex; }
}

/* ---------- Rechtsseiten ---------- */
.legal-page { padding-block: clamp(2.2rem,5vw,3.6rem); }
.legal-content { max-width: 820px; margin-inline: auto; background: var(--cream-card);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem,4vw,2.8rem); }
.legal-content h1 { font-size: clamp(1.7rem,4vw,2.4rem); margin-bottom: .8rem; }
.legal-content h2 { font-size: 1.3rem; margin-top: 1.8rem; margin-bottom: .5rem; }
.legal-content h3 { font-size: 1.08rem; margin-top: 1.2rem; margin-bottom: .3rem; }
.legal-content p { color: var(--ink); margin: 0 0 .9rem; }
.legal-content a { color: var(--green-700); word-break: break-word; }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.2rem; }
.legal-content li { margin-bottom: .4rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.legal-back { max-width: 820px; margin: 1.4rem auto 0; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .usp-list { grid-template-columns: repeat(3,1fr); }
  .amen-grid { grid-template-columns: repeat(2,1fr); }
  .rev-grid { grid-template-columns: repeat(3,1fr); }
  .apts-grid { grid-template-columns: repeat(2,1fr); }
  .booking { grid-template-columns: 1fr 1fr; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .booking { grid-template-columns: 1.2fr 1.2fr 1fr 1.4fr auto; padding: 1.2rem 1.4rem; }
  .booking .submit .btn { width: auto; padding-inline: 1.8rem; }
  .amen-grid { grid-template-columns: repeat(3,1fr); }
  .apts-grid { grid-template-columns: repeat(3,1fr); }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .usp-list { grid-template-columns: repeat(6,1fr); }
  .usp-list li { flex-direction: column; text-align: center; gap: .4rem; font-size: .9rem; }
}
@media (min-width: 1100px) {
  .apts-grid .apt-card:first-child { grid-column: span 1; }
}

/* mobile nav */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--cream);
    border-bottom: 1px solid var(--line); flex-direction: column; gap: 0; padding: .5rem var(--gap) 1rem;
    box-shadow: var(--shadow-md); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; order: 3; }
  .nav { gap: .5rem; }
  .nav .btn-book-nav { display: none; }
}

/* ---------- Ratings-Band (reine Anzeige) ---------- */
.ratings-band { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.ratings-title { text-align: center; color: var(--muted); font-weight: 600; letter-spacing: .04em; margin-bottom: 1rem; }
.ratings-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.rating-badge { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.1rem 1.2rem; text-align: center; display: flex; flex-direction: column; gap: .25rem; }
.rb-platform { font-weight: 700; color: var(--green-900); letter-spacing: .02em; }
.rb-score { font-family: var(--serif); font-size: 2rem; color: var(--green-700); line-height: 1; }
.rb-score small { font-family: var(--sans); font-size: .9rem; color: var(--muted); margin-left: .2rem; }
.rb-label { color: var(--brass); font-weight: 600; }
.rb-count { color: var(--muted); font-size: .85rem; }

/* ---------- Detailseite ---------- */
.detail-head { padding-block: clamp(1.8rem,4vw,2.8rem) 0; }
.detail-back { margin-bottom: .6rem; }
.detail-back a { color: var(--muted); text-decoration: none; font-weight: 600; }
.detail-back a:hover { color: var(--green-700); }
.detail-hl { color: var(--muted); font-size: 1.05rem; }
.detail-gallery { padding-block: clamp(1.4rem,3vw,2.2rem); }
.gal-grid { display: grid; grid-template-columns: 1fr; gap: .7rem; }
.gal-item { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--line); aspect-ratio: 3/2; box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.detail-cols { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem,4vw,2.4rem); align-items: start; }
.detail-text p { font-size: 1.12rem; margin-bottom: 1.4rem; }
.facts-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.2rem 1.3rem; margin-bottom: 1.2rem; }
.facts-card h2 { font-size: 1.15rem; margin-bottom: .8rem; }
.facts-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.facts-list li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line); padding-bottom: .5rem; }
.facts-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-k { color: var(--muted); }
.fact-v { font-weight: 600; color: var(--green-900); text-align: right; }
.amen-inline { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.amen-inline li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.amen-inline .ic { color: var(--green-700); flex: 0 0 auto; }
.amen-inline .ic svg { width: 20px; height: 20px; }

/* ---------- WhatsApp Floating-Button ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: #0b3d24; font-weight: 700; text-decoration: none;
  padding: .7rem .95rem; border-radius: 999px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.06); min-height: 52px;
}
.wa-float:hover { background: #1ebe5d; }
.wa-float svg { width: 26px; height: 26px; }
.wa-text { display: none; }

@media (min-width: 600px) {
  .ratings-grid { grid-template-columns: repeat(3,1fr); }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .wa-text { display: inline; }
}
@media (min-width: 900px) {
  .gal-grid { grid-template-columns: 1fr 1fr 1fr; }
  .detail-cols { grid-template-columns: 1.6fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .apt-card:hover { transform: none; }
  .apt-card:hover .apt-figure img { transform: none; }
  .gal-item:hover img { transform: none; }
}
