/* ==========================================================================
   Monteurswohnung Bremen-Bremerhaven – Stylesheet
   Farben und Schriftgrößen zentral über die Variablen unten anpassbar.
   ========================================================================== */

:root {
  --brand:        #0e3b4a;
  --brand-600:    #14566b;
  --brand-800:    #0a2b36;
  --accent:       #e0a02e;
  --accent-600:   #bf821b;
  --accent-soft:  #fcf3e0;
  --sand:         #f7f3ec;
  --paper:        #ffffff;
  --ink:          #17272e;
  --ink-soft:     #3d525b;
  --muted:        #64797f;
  --line:         #e2dccf;
  --line-soft:    #eee9df;
  --ok:           #2f7d59;
  --ok-soft:      #e6f2eb;
  --busy:         #b23b3b;
  --busy-soft:    #f8e9e9;

  --radius:       14px;
  --radius-sm:    9px;
  --radius-lg:    22px;
  --shadow-sm:    0 1px 2px rgba(14,59,74,.06), 0 2px 6px rgba(14,59,74,.05);
  --shadow:       0 4px 10px rgba(14,59,74,.07), 0 14px 34px rgba(14,59,74,.09);
  --shadow-lg:    0 10px 24px rgba(14,59,74,.10), 0 30px 60px rgba(14,59,74,.14);

  --container:    1180px;
  --gap:          clamp(1.1rem, 2.4vw, 2rem);
  --section-y:    clamp(3.2rem, 7vw, 6rem);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, .97rem + .16vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 .55em; color: var(--brand-800); font-weight: 750; letter-spacing: -.015em; }
h1 { font-size: clamp(1.95rem, 1.35rem + 2.7vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.7vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.03rem + .5vw, 1.42rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
a { color: var(--brand-600); text-underline-offset: .18em; }
a:hover { color: var(--accent-600); }
ul, ol { margin: 0 0 1.05em; padding-left: 1.25em; }
li + li { margin-top: .35em; }
small { font-size: .875rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

/* --- Layout --------------------------------------------------------------- */
.container { width: min(100% - 2.2rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--tight { padding-block: clamp(2.2rem, 4.5vw, 3.4rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--ink-soft); }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 750; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent-600); margin-bottom: .7rem;
}
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }
.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;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: #21160a; --btn-bd: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 999px; border: 2px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
  box-shadow: var(--shadow-sm); text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .ic { flex: none; }
.btn--primary { --btn-bg: var(--accent); --btn-bd: var(--accent); --btn-fg: #21160a; }
.btn--primary:hover { --btn-bg: var(--accent-600); --btn-bd: var(--accent-600); --btn-fg: #fff; }
.btn--dark { --btn-bg: var(--brand); --btn-bd: var(--brand); --btn-fg: #fff; }
.btn--dark:hover { --btn-bg: var(--brand-800); --btn-bd: var(--brand-800); --btn-fg: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-bd: rgba(255,255,255,.55); --btn-fg: #fff; }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.14); --btn-bd: #fff; --btn-fg: #fff; }
.btn--outline { --btn-bg: transparent; --btn-bd: var(--brand); --btn-fg: var(--brand); box-shadow: none; }
.btn--outline:hover { --btn-bg: var(--brand); --btn-fg: #fff; }
.btn--sm { padding: .55rem 1.05rem; font-size: .93rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--brand-800); margin-right: auto; }
.logo__mark { flex: none; width: 40px; height: 40px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.12; }
.logo__name { font-weight: 800; font-size: 1.06rem; letter-spacing: -.02em; }
.logo__sub { font-size: .74rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a {
  display: block; padding: .55rem .8rem; border-radius: var(--radius-sm);
  color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .97rem;
}
.main-nav a:hover { background: var(--sand); color: var(--brand); }
.main-nav a[aria-current="page"] { color: var(--brand); background: var(--accent-soft); }

.header-actions { display: flex; align-items: center; gap: .5rem; }

/* Sprachumschalter */
.langswitch { position: relative; }
.langswitch > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .6rem; border: 1px solid var(--line); border-radius: 999px; background: #fff;
  font-weight: 600; font-size: .9rem; color: var(--ink-soft);
}
.langswitch > summary::-webkit-details-marker { display: none; }
.langswitch > summary:hover { border-color: var(--brand-600); color: var(--brand); }
.langswitch[open] > summary { border-color: var(--brand-600); }
.flag { width: 26px; height: 18px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.12) inset; flex: none; }
.langswitch__list {
  position: absolute; right: 0; top: calc(100% + .5rem); z-index: 120;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .35rem; margin: 0; list-style: none; min-width: 200px;
}
.langswitch__list li { margin: 0; }
.langswitch__list a {
  display: flex; align-items: center; gap: .6rem; padding: .55rem .65rem;
  border-radius: var(--radius-sm); text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.langswitch__list a:hover { background: var(--sand); }
.langswitch__list a[aria-current="true"] { background: var(--accent-soft); color: var(--brand); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--brand); cursor: pointer;
}
.header-cta { white-space: nowrap; }

/* CTA-Schaltfläche innerhalb der Navigationsliste nur im Mobilmenü zeigen */
@media (min-width: 901px) {
  .main-nav li:last-child { display: none; }
}
@media (max-width: 1120px) {
  .main-nav a { padding: .5rem .55rem; font-size: .93rem; }
  .logo__sub { display: none; }
}
@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: .6rem 0 1.1rem; display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; width: min(100% - 2.2rem, var(--container)); margin-inline: auto; gap: 0; }
  .main-nav a { padding: .8rem .9rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .main-nav li:last-child a { border-bottom: 0; }
  .main-nav .btn { margin-top: .9rem; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; color: #fff; background: var(--brand-800); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,32,41,.92) 0%, rgba(8,32,41,.82) 42%, rgba(8,32,41,.55) 100%);
}
.hero__inner { position: relative; padding-block: clamp(3.2rem, 8vw, 6.5rem); max-width: 46rem; }
.hero h1 { color: #fff; margin-bottom: .5em; text-wrap: balance; }
.hero__sub { font-size: clamp(1.05rem, 1rem + .45vw, 1.3rem); color: #dfe9ed; margin-bottom: 1.8rem; }
.hero .btn-row { margin-bottom: 2.2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.hero__badges li {
  display: inline-flex; align-items: center; gap: .4rem; margin: 0;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: .38rem .8rem; border-radius: 999px; font-size: .88rem; font-weight: 600; color: #eef5f7;
}
.hero__badges .ic { width: 16px; height: 16px; color: var(--accent); }

/* Fakten-Leiste */
.facts { background: var(--brand); color: #fff; }
.facts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; padding-block: 1.6rem; }
.fact { text-align: center; padding: .3rem .6rem; }
.fact__value { display: block; font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem); font-weight: 800; color: var(--accent); line-height: 1.1; }
.fact__label { font-size: .88rem; color: #cfe0e6; }

/* --- Karten --------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.2rem, 2.2vw, 1.7rem); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-600); margin-bottom: .95rem;
}
.card__icon .ic { width: 24px; height: 24px; }
.card--num { counter-increment: step; }
.card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; background: var(--brand); color: #fff;
  font-weight: 800; margin-bottom: .9rem;
}

/* Aufzählung mit Häkchen */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; margin: 0; }
.checklist .ic { flex: none; width: 20px; height: 20px; margin-top: .2rem; color: var(--ok); stroke-width: 2.4; }
.checklist--cols { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

/* --- Galerie -------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: .9rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { padding: .6rem .85rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); background: #fff; }
.gallery--wide figure:first-child { grid-column: span 2; }
@media (max-width: 640px) { .gallery--wide figure:first-child { grid-column: span 1; } }

/* --- Split (Text + Bild) -------------------------------------------------- */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: -1; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* --- Tabellen ------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
table { border-collapse: collapse; width: 100%; min-width: 520px; }
caption { text-align: left; padding: .9rem 1.1rem; font-weight: 700; color: var(--brand-800); }
th, td { padding: .82rem 1.05rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .97rem; }
thead th { background: var(--brand); color: #fff; font-weight: 700; font-size: .92rem; letter-spacing: .01em; border-bottom: 0; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #fbfaf7; }
tbody th { font-weight: 700; color: var(--brand-800); }
.table-note { font-size: .9rem; color: var(--muted); margin-top: .8rem; }

/* --- Notizen / Hinweise --------------------------------------------------- */
.note {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--accent-soft); border: 1px solid #f0dfb8; border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1rem 1.15rem; color: #5c4310; font-size: .95rem;
}
.note .ic { flex: none; color: var(--accent-600); margin-top: .15rem; }
.note p { margin-bottom: .4em; }
.note strong { color: #4a3608; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .7rem; max-width: 56rem; }
.faq details {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.2rem; font-weight: 700; color: var(--brand-800);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; color: var(--accent-600); transition: transform .2s ease; margin-top: .15rem; }
.faq details[open] summary .ic { transform: rotate(180deg); }
.faq__body { padding: 0 1.2rem 1.15rem; color: var(--ink-soft); }

/* --- CTA-Band ------------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); color: #fff; }
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.6rem; padding-block: clamp(2.2rem, 4.5vw, 3.4rem);
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: #d5e3e8; margin: 0; max-width: 48ch; }

/* --- Kontaktbox ----------------------------------------------------------- */
.contact-card { background: var(--brand-800); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card p { color: #cfdfe4; }
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .8rem; }
.contact-list li { display: flex; gap: .75rem; align-items: flex-start; margin: 0; }
.contact-list .ic { flex: none; color: var(--accent); margin-top: .2rem; }
.contact-list a { color: #fff; font-weight: 600; }
.contact-list a:hover { color: var(--accent); }
.contact-list span { color: #cfdfe4; }

/* --- Adresse -------------------------------------------------------------- */
.address-box { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); }
.address-box address { font-style: normal; font-size: 1.1rem; font-weight: 650; color: var(--brand-800); line-height: 1.55; }

/* --- Karte (Consent) ------------------------------------------------------ */
.map-consent {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--sand);
  padding: clamp(1.4rem, 3vw, 2.4rem); text-align: center; box-shadow: var(--shadow-sm);
}
.map-consent .ic { color: var(--brand-600); margin-inline: auto; width: 34px; height: 34px; margin-bottom: .7rem; }
.map-consent p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; font-size: .95rem; }
.map-frame { border: 0; width: 100%; aspect-ratio: 16/9; min-height: 320px; border-radius: var(--radius); display: block; }

/* --- Formular ------------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 1.05rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 650; font-size: .93rem; color: var(--brand-800); }
.field label .req { color: var(--busy); }
.field .hint { font-size: .82rem; color: var(--muted); font-weight: 400; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .68rem .85rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand-600); box-shadow: 0 0 0 3px rgba(20,86,107,.14); outline: none; }
input:invalid:not(:placeholder-shown) { border-color: #d9a2a2; }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.checkbox input { width: 20px; height: 20px; margin: .15rem 0 0; flex: none; accent-color: var(--brand-600); }
.form-status { border-radius: var(--radius-sm); padding: 1rem 1.15rem; margin-top: 1.1rem; font-size: .96rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--ok-soft); border: 1px solid #b9dcc9; color: #1d5b3f; }
.form-status--error { background: var(--busy-soft); border: 1px solid #e5bebe; color: #8d2b2b; }
.form-status strong { display: block; margin-bottom: .2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --- Belegungskalender ---------------------------------------------------- */
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.cal-nav { display: flex; gap: .45rem; }
.cal-btn {
  width: 42px; height: 42px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--brand); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.cal-btn:hover:not(:disabled) { border-color: var(--brand-600); background: var(--sand); }
.cal-btn:disabled { opacity: .35; cursor: not-allowed; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .88rem; color: var(--ink-soft); }
.cal-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.cal-legend i { width: 15px; height: 15px; border-radius: 4px; display: inline-block; }
.cal-legend .sw-free { background: var(--ok-soft); border: 1.5px solid #9dcbb3; }
.cal-legend .sw-busy { background: var(--busy-soft); border: 1.5px solid #dda6a6; }
.cal-legend .sw-past { background: #f1f0ee; border: 1.5px solid #dcd9d3; }
.cal-months { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.cal-month { border: 1px solid var(--line-soft); border-radius: var(--radius); background: #fff; padding: 1rem; box-shadow: var(--shadow-sm); }
.cal-month__title { text-align: center; font-weight: 750; color: var(--brand-800); margin-bottom: .7rem; font-size: 1.02rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-wd { text-align: center; font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; padding-bottom: .3rem; letter-spacing: .04em; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 7px; font-size: .84rem; font-weight: 600; font-variant-numeric: tabular-nums;
}
.cal-day--empty { visibility: hidden; }
.cal-day--free { background: var(--ok-soft); color: #1d5b3f; border: 1px solid #cbe5d8; }
.cal-day--busy { background: var(--busy-soft); color: #8d2b2b; border: 1px solid #eccaca; text-decoration: line-through; }
.cal-day--past { background: #f4f3f1; color: #a8a49d; border: 1px solid #eae8e4; }
.cal-day--today { box-shadow: 0 0 0 2px var(--brand-600); font-weight: 800; }
.cal-updated { font-size: .85rem; color: var(--muted); margin-top: .9rem; }

/* --- Breadcrumb ----------------------------------------------------------- */
.breadcrumb { font-size: .87rem; color: var(--muted); padding-block: .9rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.breadcrumb li + li::before { content: "›"; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand-600); }

/* --- Seitenkopf (Unterseiten) --------------------------------------------- */
.page-head { background: var(--sand); border-bottom: 1px solid var(--line-soft); }
.page-head__inner { padding-block: clamp(1.8rem, 4vw, 3.2rem); max-width: 60rem; }
.page-head h1 { margin-bottom: .4em; text-wrap: balance; }

/* --- Prosa (Rechtstexte) -------------------------------------------------- */
.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.2rem; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.65rem); }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2em; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--brand-800); color: #c9dae0; padding-block: clamp(2.6rem, 5vw, 4rem) 0; font-size: .95rem; }
.site-footer h2 { color: #fff; font-size: 1.02rem; margin-bottom: .9em; letter-spacing: .02em; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer li { margin: 0; }
.site-footer a { color: #c9dae0; text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-bottom {
  margin-top: 2.4rem; border-top: 1px solid rgba(255,255,255,.13); padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .88rem; color: #9fb7bf;
}
.footer-bottom ul { display: flex; gap: 1.2rem; }

/* --- Druck ---------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .btn { display: none !important; }
  body { font-size: 11pt; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* --- Entfernungskarte (Lage-Teaser auf der Startseite) -------------------- */
.distance-card {
  background: linear-gradient(150deg, var(--brand-800), var(--brand-600));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
}
.distance-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(224,160,46,.18); color: var(--accent); margin-bottom: 1.2rem;
}
.distance-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.distance-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.14); margin: 0;
}
.distance-list li:last-child { border-bottom: 0; }
.distance-list span { color: #cfdfe4; font-size: .98rem; }
.distance-list strong { color: var(--accent); font-size: 1.12rem; font-weight: 750; white-space: nowrap; }

/* Galerie: gleich hohe Kacheln */
.gallery figure { display: flex; flex-direction: column; }
.gallery figcaption { flex: 1; }

/* --- Verfügbarkeitsprüfung ------------------------------------------------ */
.availability { --cal-radius: 8px; }
.cal-legend .sw-sel { background: var(--brand-600); border: 1.5px solid var(--brand-800); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
button.cal-day { font: inherit; cursor: pointer; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--cal-radius); font-size: .86rem; font-weight: 600;
  font-variant-numeric: tabular-nums; padding: 0; width: 100%;
  transition: background-color .12s ease, color .12s ease, transform .12s ease;
}
.cal-day--empty { visibility: hidden; }
.cal-day--free { background: var(--ok-soft); color: #1d5b3f; border: 1px solid #cbe5d8; }
.cal-day--free:hover { background: #cdeadb; transform: scale(1.06); }
.cal-day--busy { background: var(--busy-soft); color: #8d2b2b; border: 1px solid #eccaca; text-decoration: line-through; cursor: not-allowed; }
.cal-day--past { background: #f4f3f1; color: #a8a49d; border: 1px solid #eae8e4; }
.cal-day--today { box-shadow: inset 0 0 0 2px var(--accent); }

/* Ausgewählter Zeitraum */
.cal-day--between { background: #d6e6ec; color: var(--brand-800); border-color: #b7d2db; }
.cal-day--start, .cal-day--end {
  background: var(--brand-600) !important; color: #fff !important;
  border-color: var(--brand-800) !important; text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(14,59,74,.3);
}
.cal-day--start { border-top-right-radius: 3px; border-bottom-right-radius: 3px; }
.cal-day--end { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }

/* Ergebnisfeld */
.avail-panel {
  margin-top: 1.4rem; border-radius: var(--radius); border: 1.5px solid var(--line);
  background: #fff; box-shadow: var(--shadow-sm); overflow: hidden;
}
.avail-panel--hint {
  border-style: dashed; background: transparent; box-shadow: none;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .8rem; padding: 1.1rem 1.3rem; text-align: center;
}
.avail-hint { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.avail-hint strong { color: var(--brand-800); }

.avail-head {
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.3rem; font-size: 1.08rem; color: #fff;
}
.avail-head strong { font-weight: 750; }
.avail-panel--ok   .avail-head { background: var(--ok); }
.avail-panel--busy .avail-head { background: var(--busy); }
.avail-panel--warn .avail-head { background: #b07d1a; }
.avail-panel--ok   { border-color: var(--ok); }
.avail-panel--busy { border-color: var(--busy); }
.avail-panel--warn { border-color: #b07d1a; }
.avail-badge {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255,255,255,.22); font-size: .95rem; font-weight: 800;
}
.avail-body { padding: 1.2rem 1.3rem; }
.avail-body p { color: var(--ink-soft); margin: .9rem 0 0; font-size: .96rem; }

.avail-dates { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; }
.avail-range { display: flex; flex-direction: column; line-height: 1.25; }
.avail-range span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.avail-range strong { font-size: 1.12rem; color: var(--brand-800); font-variant-numeric: tabular-nums; }
.avail-arrow { color: var(--accent-600); font-size: 1.3rem; font-weight: 700; }
.avail-nights {
  background: var(--sand); border: 1px solid var(--line); border-radius: 999px;
  padding: .3rem .9rem; font-size: .9rem; font-weight: 700; color: var(--brand-800);
}

.avail-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.2rem;
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft);
}
.avail-guests { display: flex; flex-direction: column; gap: .25rem; }
.avail-guests span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.avail-guests select { padding: .5rem .7rem; min-width: 5rem; }
.avail-price { display: flex; flex-direction: column; gap: .1rem; line-height: 1.25; margin-right: auto; }
.avail-price__approx { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.avail-price small { font-size: .76rem; color: var(--muted); }
.avail-reset {
  background: none; border: 0; padding: .4rem .2rem; font: inherit; font-size: .88rem;
  color: var(--muted); text-decoration: underline; text-underline-offset: .2em; cursor: pointer;
}
.avail-reset:hover { color: var(--busy); }

@media (max-width: 560px) {
  .avail-actions { flex-direction: column; align-items: stretch; }
  .avail-price { margin-right: 0; }
  .avail-actions .btn { width: 100%; }
  .avail-dates { gap: .6rem 1rem; }
  .avail-arrow { display: none; }
}

/* Anker nicht unter dem fixierten Kopfbereich verstecken */
[id] { scroll-margin-top: 96px; }

/* --- Pauschalpreis oben auf der Preisseite -------------------------------- */
.price-hero {
  background: linear-gradient(140deg, var(--brand-800), var(--brand-600));
  color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.price-hero__main {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: .3rem .9rem;
}
.price-hero__main strong {
  font-size: clamp(2.6rem, 1.8rem + 3.4vw, 4.4rem); font-weight: 800;
  color: var(--accent); line-height: 1; letter-spacing: -.03em;
}
.price-hero__main span { font-size: clamp(1.05rem, 1rem + .5vw, 1.4rem); font-weight: 650; color: #eaf3f6; }
.price-hero__note { margin: 1rem 0 0; color: #bcd3da; font-size: .96rem; }

.avail-discount {
  display: inline-block; margin-left: .5rem; padding: .1rem .45rem;
  background: var(--ok); color: #fff; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .02em; text-transform: none;
}

/* Preis-Kennzahl: enthält Text, daher etwas kleiner als die reinen Zahlen */
.fact--price .fact__value {
  font-size: clamp(1.25rem, 1.05rem + .9vw, 1.75rem);
  text-wrap: balance;
}

/* Preisblock im Kalender: Preis pro Person und Nacht als Hauptzahl -------- */
.avail-price__lead { display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem .45rem; }
.avail-price__lead strong {
  font-size: 1.75rem; font-weight: 800; color: var(--ok); line-height: 1.05;
}
.avail-price__lead em {
  font-style: normal; font-size: .95rem; font-weight: 700; color: var(--ok);
}
.avail-price__lead span { font-size: .98rem; color: var(--ink-soft); }
.avail-price__second { font-size: .9rem; color: var(--muted); margin-top: .05rem; }
.avail-price__totals {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .2rem .5rem;
  font-size: .88rem; color: var(--muted); margin-top: .35rem;
  padding-top: .35rem; border-top: 1px solid var(--line-soft);
}
.avail-price__totals strong { font-size: 1rem; font-weight: 750; color: var(--brand-800); }
.avail-price__gross { color: var(--muted); }
.avail-price__gross::before { content: "·"; margin-right: .4rem; }
