/* =====================================================================
   STÄRKENLABS — style.css
   Hell, modern, professionell. Markenfarben aus dem Logo abgeleitet.
   Token-basiert: Farbe/Stimmung über :root anpassbar.
   Aufbau: 1) Tokens 2) Reset 3) Basis 4) Layout 5) Buttons
           6) Header 7) Hero 8) Sektionen/Komponenten 9) Footer
           10) Formulare 11) Responsive
   ===================================================================== */

/* ============ 1) DESIGN-TOKENS ============ */
:root {
  /* Maritim-hanseatisch: tiefes Marineblau + warmes Gold/Messing */
  --navy:          #14233F;   /* Wortmarke – Headlines, dunkle Flächen */
  --navy-800:      #1B2E4F;
  --navy-900:      #0E1A30;
  --primary:       #1F3D6B;   /* edles Navy-Blau – Buttons, Links, Akzente */
  --primary-700:   #16314F;
  --accent:        #C2A14D;   /* warmes Gold/Messing – Highlights, CTA */
  --accent-700:    #A8873B;   /* dunkleres Gold – Hover */
  --accent-soft:   #E2CE96;   /* helles Gold – auf Navy-Flächen */
  --accent-ink:    #8A6D22;   /* tiefes Gold – Text-Akzent auf Hell (Kontrast) */

  /* Flächen */
  --bg:            #FFFFFF;
  --tint:          #F2ECDD;   /* zarte Creme-/Gold-Sektion */
  --tint-2:        #FAF6EE;   /* sehr helle Creme-Sektion */
  --card:          #FFFFFF;
  --border:        #E9E2D2;
  --border-strong: #D8CEB8;

  /* Text */
  --fg:            #1E2536;
  --muted-fg:      #5A6072;
  --on-dark:       #EFE9DB;   /* Text auf navy */
  --on-dark-muted: #B7C0D4;

  /* Typo */
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Maße */
  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6rem);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Schatten */
  --shadow-sm: 0 2px 10px rgba(20,35,63,.07);
  --shadow-md: 0 14px 40px rgba(20,35,63,.12);
  --shadow-lg: 0 26px 70px rgba(20,35,63,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ============ 2) RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ============ 3) BASIS ============ */
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  font-size: 1.0125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.14;
  color: var(--navy);
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--fg); }
strong { font-weight: 600; color: var(--navy); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ============ 4) LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--tint); }
.section--tint2 { background: var(--tint-2); }
.section--navy { background: var(--navy); color: var(--on-dark); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-heading);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--primary); display: inline-block;
}
.section--navy .eyebrow { color: var(--accent-soft); }
.section--navy .eyebrow::before { background: var(--accent-soft); }
.section-head--center .eyebrow::before { display: none; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted-fg);
  line-height: 1.65;
  margin-top: 1rem;
}
.section--navy .lead { color: var(--on-dark-muted); }

.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; }

/* ============ 5) BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-heading);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .92rem 1.7rem;
  border-radius: var(--r-pill);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn--accent { background: var(--accent); color: var(--navy); box-shadow: 0 8px 22px rgba(194,161,77,.32); }
.btn--accent:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(194,161,77,.42); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.link-arrow {
  font-family: var(--font-heading); font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: .65rem; }

/* ============ 6) HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 42px; width: auto; }
.nav__menu-wrap { margin-inline-start: auto; }
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav__link {
  font-family: var(--font-heading); font-weight: 500; font-size: .96rem;
  color: var(--fg); position: relative; padding: .4rem 0; transition: color .2s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--primary); transition: width .25s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--primary); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .8rem; }
.lang-switch { display: inline-flex; align-items: center; gap: .15rem; font-family: var(--font-heading); font-size: .85rem; font-weight: 600; }
.lang-switch a { color: var(--muted-fg); padding: .2rem .35rem; border-radius: var(--r-sm); transition: color .2s var(--ease); }
.lang-switch a:hover { color: var(--navy); }
.lang-switch a.is-active { color: var(--accent-ink); }
.lang-switch a + a { border-left: 1px solid var(--border-strong); padding-left: .5rem; margin-left: .15rem; }
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; }
.nav__toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ 7) HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--tint-2), #fff 70%);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__content { position: relative; z-index: 2; }
.hero h1 { margin-top: .4rem; }
.hero h1 .accent { color: var(--accent-ink); }
.hero__lead { font-size: clamp(1.06rem, 1.5vw, 1.25rem); color: var(--muted-fg); margin-top: 1.3rem; max-width: 33ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.2rem; }
.hero__pill {
  font-family: var(--font-heading); font-size: .82rem; font-weight: 500;
  color: var(--navy); background: #fff; border: 1px solid var(--border);
  padding: .45rem .95rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: .45rem;
}
.hero__pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

/* Hero-Bild + Netzwerk-Deko */
.hero__media { position: relative; }
.hero__media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3;
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .9rem 1.15rem; display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--border);
}
.hero__badge-num { font-family: var(--font-heading); font-weight: 700; font-size: 1.55rem; color: var(--accent-ink); line-height: 1; }
.hero__badge-txt { font-size: .8rem; color: var(--muted-fg); line-height: 1.3; }
.hero__net { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; }
.hero__net svg { width: 100%; height: 100%; }

/* Netzwerk-/Knoten-Deko (Leitmotiv) */
.net-deco { color: var(--accent); }
.net-deco line { stroke: currentColor; stroke-width: 1; opacity: .4; }
.net-deco circle { fill: currentColor; }

/* ============ 8) SEKTIONEN / KOMPONENTEN ============ */

/* --- Generisches Grid --- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Karten (Leistungen) --- */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--tint); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted-fg); font-size: .96rem; }
.card__num {
  font-family: var(--font-heading); font-weight: 700; font-size: .85rem;
  color: var(--accent); letter-spacing: .1em;
}

/* --- Vorteile (kompakter) --- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__mark {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(37,99,214,.3);
}
.feature__mark svg { width: 20px; height: 20px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.feature p { color: var(--muted-fg); font-size: .95rem; }

/* --- Prozess-Schritte (Ablauf) --- */
.steps { display: grid; gap: 1.4rem; counter-reset: step; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 2.4rem 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.step__num {
  position: absolute; top: -22px; left: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.step p { color: var(--muted-fg); font-size: .95rem; }
.steps--navy .step { background: var(--navy-800); border-color: rgba(255,255,255,.08); }
.steps--navy .step h3 { color: #fff; }
.steps--navy .step p { color: var(--on-dark-muted); }
.steps--navy .step__num { background: var(--primary); }

/* --- Split (Bild + Text) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split__list { display: grid; gap: .85rem; margin-top: 1.4rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted-fg); }
.split__list li::before {
  content: ""; flex: 0 0 auto; margin-top: .45rem; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}

/* --- Statistik-Band --- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1; }
.stat__label { color: var(--on-dark-muted); font-size: .92rem; margin-top: .5rem; }

/* --- CTA-Band --- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band .lead { color: var(--on-dark-muted); max-width: 52ch; margin-inline: auto; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* --- Werte-Liste (Über uns) --- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value { padding: 1.5rem; border-radius: var(--r-md); background: var(--tint-2); border: 1px solid var(--border); }
.value h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.value p { color: var(--muted-fg); font-size: .95rem; }

/* --- Buchung (Smoobu click-to-load) --- */
.booking { }
.booking__alt { margin-left: 1.1rem; }
.booking__note { font-size: .8rem; color: var(--muted-fg); margin-top: .75rem; max-width: 52ch; }
.booking__note a { color: var(--primary); text-decoration: underline; }
.booking__load[disabled] { opacity: .65; cursor: default; }
.booking__widget { margin-top: 1.3rem; }
.booking__widget:empty { margin-top: 0; }
.booking__widget .calendarWidget { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: .6rem; box-shadow: var(--shadow-sm); }

/* --- Apartment-Karten --- */
.apt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.apt-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.apt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.apt-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.apt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.apt-card:hover .apt-card__media img { transform: scale(1.04); }
.apt-card__tag {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--accent); color: var(--navy);
  font-family: var(--font-heading); font-weight: 600; font-size: .82rem;
  padding: .3rem .75rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.apt-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.apt-card__body h3 { margin-bottom: .6rem; }
.apt-card__specs { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; margin-bottom: .9rem; }
.apt-card__specs li {
  position: relative; font-size: .9rem; color: var(--muted-fg);
  display: inline-flex; align-items: center; gap: .4rem;
}
.apt-card__specs li svg { width: 16px; height: 16px; color: var(--accent-ink); }
.apt-card__body p { color: var(--muted-fg); font-size: .95rem; margin-bottom: 1rem; }
.apt-card__amenities { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.apt-card__amenities li {
  font-size: .78rem; color: var(--navy);
  background: var(--tint); border: 1px solid var(--border);
  padding: .25rem .65rem; border-radius: var(--r-pill);
}
.apt-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* --- Galerie (Masonry-artig) --- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 1 / 1; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }

/* --- Ausstattungs-Raster (Icons) --- */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.amenity { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; padding: 1.4rem 1rem; border-radius: var(--r-md); background: var(--tint-2); border: 1px solid var(--border); }
.amenity__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--accent-soft); display: grid; place-items: center; }
.amenity__icon svg { width: 24px; height: 24px; }
.amenity span { font-family: var(--font-heading); font-weight: 600; font-size: .92rem; color: var(--navy); }

/* --- Seiten-Hero (Unterseiten) --- */
.page-hero {
  background: linear-gradient(180deg, var(--navy), var(--navy-800));
  color: var(--on-dark);
  padding-block: clamp(3rem, 7vw, 4.8rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(91,143,214,.35), transparent 70%);
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero .lead { color: var(--on-dark-muted); position: relative; }
.page-hero .breadcrumb { font-size: .85rem; color: var(--accent-soft); margin-bottom: .8rem; position: relative; }
.page-hero .breadcrumb a { color: var(--accent-soft); }
.page-hero .eyebrow { color: var(--accent-soft); }
.page-hero .eyebrow::before { background: var(--accent-soft); }

/* --- Prose (Rechtstexte etc.) --- */
.prose { max-width: 760px; }
.prose h2 { margin: 2.2rem 0 .8rem; font-size: 1.5rem; }
.prose h3 { margin: 1.6rem 0 .5rem; }
.prose p { margin-bottom: 1rem; color: var(--fg); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose strong { color: var(--navy); }

/* ============ 9) FOOTER ============ */
.site-footer { background: var(--navy); color: var(--on-dark-muted); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-col p { color: var(--on-dark-muted); font-size: .94rem; }
.footer-rep { margin-top: .8rem; font-size: .88rem; color: var(--accent-soft); }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: .55rem; font-size: .94rem; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .86rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a:hover { color: #fff; }

/* ============ 10) FORMULARE ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.info-card { background: var(--tint-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.8rem; }
.info-card h3 { margin-bottom: 1rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; color: var(--muted-fg); }
.info-list svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--primary); margin-top: .2rem; }
.info-list a { color: var(--navy); font-weight: 500; }
.info-list a:hover { color: var(--primary); }
.map-embed { margin-top: 1.4rem; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 500; color: var(--navy); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .95rem; font: inherit; color: var(--fg);
  background: var(--tint-2); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--primary); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field .is-invalid { border-color: #c0392b; }
.form__error { background: #fdecea; color: #a5281b; padding: .8rem 1rem; border-radius: var(--r-sm); margin-bottom: 1rem; font-size: .92rem; }
.form__success {
  display: none; background: #e9f6ee; color: #1d6b3f; padding: 1rem 1.15rem;
  border-radius: var(--r-sm); margin-top: 1rem; font-weight: 500;
}
.form__success.is-visible { display: block; }
.form .btn { width: 100%; margin-top: .4rem; }
.form__hint { font-size: .82rem; color: var(--muted-fg); margin-top: .8rem; }

/* ============ Mobile Aktionsleiste ============ */
.m-actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem; padding: .6rem .8rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(24,36,102,.08);
}
.m-actionbar .btn { flex: 1; }

/* ============ Blog-Liste ============ */
.post-list { display: grid; gap: 1.4rem; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.7rem; box-shadow: var(--shadow-sm); }
.post-card__meta { color: var(--muted-fg); font-size: .85rem; margin-bottom: .6rem; }

/* ============ 11) RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__badge { left: 12px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .apt-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav__menu-wrap {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: #fff; padding: 1.5rem var(--gutter);
    transform: none; margin: 0;
  }
  .nav__menu {
    display: none; flex-direction: column; align-items: flex-start; gap: .3rem;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu .nav__link { font-size: 1.25rem; padding: .7rem 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav__toggle { display: flex; }
  .nav__actions .btn--accent { display: none; }
  .m-actionbar { display: flex; }
  body { padding-bottom: 68px; }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps--4 { grid-template-columns: 1fr; }
  .apt-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ Reveal-Animation ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
