/* Lucky Immobilien — Shared Stylesheet
   Warme Beige/Creme-Töne, Serif-Headlines, viel Weißraum
*/

:root {
  /* Brand palette */
  --cream: #F7F2EA;
  --cream-2: #EFE7DA;
  --paper: #FBF8F3;
  --ink: #1B1A18;
  --ink-2: #2C2A26;
  --muted: #6B655B;
  --muted-2: #9A9388;
  --hair: #E6DFD1;
  --accent: #C97B3C;      /* warm terracotta (aus Logo) */
  --accent-soft: #E8B98A;
  --gold: #B7903A;
  --success: #4F7B4A;

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dash { display: inline-block; width: 24px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 10px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6.4vw, 92px); line-height: 1.02; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
.serif-italic { font-style: italic; color: var(--accent); }

p { margin: 0; }
.lede { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 62ch; }

/* ============================================================
   SITE HEADER — editorial luxury
   Top utility strip + main nav, scroll-aware shrink
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  isolation: isolate;
}

/* ---------- Top utility strip ---------- */
.topbar {
  background: var(--ink);
  color: rgba(247, 242, 234, 0.62);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  max-height: 44px;
  transition: max-height .42s cubic-bezier(.7,0,.2,1),
              opacity .28s ease;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 24px;
  white-space: nowrap;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 14px;
}
.topbar a {
  color: rgba(247, 242, 234, 0.78);
  transition: color .22s ease;
}
.topbar a:hover { color: var(--accent-soft); }
.topbar-sep {
  color: rgba(255,255,255,0.16);
  font-size: 10px;
}
.topbar-pill {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(247, 242, 234, 0.92);
  font-weight: 500;
}
.topbar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 123, 60, 0.18);
  display: inline-block;
  flex-shrink: 0;
}
.topbar-rating { color: var(--accent-soft); }
.topbar-meta { color: rgba(247, 242, 234, 0.55); }
.topbar-hours { color: rgba(247, 242, 234, 0.55); }

/* ---------- Main nav ---------- */
.nav {
  position: relative;
  background: rgba(251, 248, 243, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease,
              border-color .35s ease,
              box-shadow .35s ease;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  height: 86px;
  transition: height .32s cubic-bezier(.7,0,.2,1);
}
.nav-logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav-logo img {
  height: 40px; width: auto; max-width: 200px;
  object-fit: contain; object-position: left center;
  transition: height .32s cubic-bezier(.7,0,.2,1);
}
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 2.4vw, 36px);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
  position: relative;
  padding: 12px 2px;
  transition: color .25s ease;
}
.nav-links a::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .38s cubic-bezier(.7,0,.2,1);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 1px; background: currentColor; opacity: 0.5;
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s cubic-bezier(.7,0,.2,1),
              background .25s ease,
              opacity .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::before { transform: translate(-50%, -50%) scale(1); }
.nav-links a.active::after {
  transform: scaleX(1); background: var(--accent); opacity: 1;
}

/* ---- Dropdown ---- */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .has-dropdown > .dd-trigger {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; font: inherit;
  font-family: var(--sans);
  font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
  padding: 12px 2px;
  position: relative;
  transition: color .25s ease;
}
.nav-links .has-dropdown > .dd-trigger:hover { color: var(--ink); }
.nav-links .has-dropdown > .dd-trigger::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .38s cubic-bezier(.7,0,.2,1);
}
.nav-links .has-dropdown > .dd-trigger::after {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
  margin-left: 2px;
}
.nav-links .has-dropdown:hover > .dd-trigger::after,
.nav-links .has-dropdown.is-open > .dd-trigger::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.nav-links .has-dropdown.has-active > .dd-trigger { color: var(--ink); }
.nav-links .has-dropdown.has-active > .dd-trigger::before {
  transform: translate(-50%, -50%) scale(1);
}

.nav-links .dd-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--hair);
  box-shadow: 0 24px 50px -22px rgba(30, 25, 15, 0.22);
  padding: 8px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(.7,0,.2,1);
  z-index: 70;
}
.nav-links .has-dropdown:hover .dd-menu,
.nav-links .has-dropdown:focus-within .dd-menu,
.nav-links .has-dropdown.is-open .dd-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-links .dd-menu a {
  display: block;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  position: static;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, color .2s ease;
}
.nav-links .dd-menu a::before,
.nav-links .dd-menu a::after { display: none !important; }
.nav-links .dd-menu a:hover {
  background: var(--cream);
  color: var(--ink);
}
.nav-links .dd-menu a.active {
  color: var(--accent);
  background: var(--cream);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px; letter-spacing: 0.20em; text-transform: uppercase;
  font-weight: 500;
  padding: 13px 22px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  position: relative; overflow: hidden;
  transition: color .3s ease, border-color .3s ease;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .44s cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.nav-cta > * { position: relative; z-index: 1; }
.nav-cta:hover { color: #fff; border-color: var(--accent); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta-arrow {
  transition: transform .32s cubic-bezier(.7,0,.2,1);
  flex-shrink: 0;
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* ---------- Scroll-aware shrink ---------- */
.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}
.site-header.is-scrolled .nav {
  background: rgba(251, 248, 243, 0.96);
  border-bottom-color: var(--hair);
  box-shadow: 0 12px 28px -22px rgba(30, 25, 15, 0.16);
}
.site-header.is-scrolled .nav-inner { height: 68px; }
.site-header.is-scrolled .nav-logo img { height: 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--ink);
  transition: all .3s ease;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn-accent {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.btn-accent:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost { border-color: var(--hair); color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sections ---------- */
section { padding: clamp(80px, 10vw, 140px) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .title h2 { margin-top: 14px; }
.section-head .intro { color: var(--ink-2); font-size: 17px; max-width: 52ch; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* Divider label */
.label-row {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--muted);
}
.label-row .line { flex: 1; height: 1px; background: var(--hair); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--cream);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 28px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--ink-2); }
.trust-item .ti-num { font-family: var(--serif); font-size: 36px; color: var(--accent); line-height: 1; }
.trust-item .ti-txt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.trust-item .ti-txt strong { display: block; color: var(--ink); font-size: 13px; letter-spacing: 0.12em; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 80px 0 32px;
}
footer .f-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em;
  font-weight: 500; margin-bottom: 20px;
}
footer a { color: var(--cream-2); opacity: .8; font-size: 14px; line-height: 2.1; }
footer a:hover { color: var(--accent-soft); opacity: 1; }
footer .brand-col p { color: var(--muted-2); font-size: 14px; line-height: 1.7; max-width: 34ch; margin-top: 16px; }
footer .f-logo { filter: brightness(0) invert(1); opacity: 0.92; height: 36px; width: auto; }

/* Social icons in footer */
footer .f-social {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
}
footer .f-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream-2);
  opacity: 0.85;
  transition: border-color .25s ease, color .25s ease, background .25s ease, opacity .25s ease;
}
footer .f-social a:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  background: rgba(201,123,60,0.06);
  opacity: 1;
}
footer .f-social a svg { width: 18px; height: 18px; display: block; }
footer .f-social .f-handle {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
  margin-left: 4px;
}
footer .f-bottom {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted-2);
  letter-spacing: 0.06em;
}
@media (max-width: 820px) {
  footer .f-grid { grid-template-columns: 1fr 1fr; }
  footer .f-bottom { flex-direction: column; gap: 12px; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--hair);
  transition: transform .4s ease, box-shadow .4s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #d6cdb9;
  box-shadow: 0 18px 40px -20px rgba(30,25,15,0.18);
}

/* ---------- Utilities ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }

.hr { height: 1px; background: var(--hair); border: 0; margin: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(120px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--hair);
}
.page-hero .crumb {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.page-hero h1 {
  /* Product-Sans-Look (Outfit Thin) für die großen Page-Headlines */
  font-family: "Product Sans", "Outfit", "Google Sans", "Inter", system-ui, sans-serif;
  font-weight: 100;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 18ch;
  text-wrap: balance;
}
/* Serif-Italic-Akzent bleibt drin — gibt den editorialen Kontrast */
.page-hero h1 .serif-italic,
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.page-hero .lede { margin-top: 24px; font-size: 19px; color: var(--ink-2); }

/* Form elements */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font: inherit; padding: 14px 16px;
  background: #fff; border: 1px solid var(--hair);
  color: var(--ink); border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}

/* ============================================================
   NAV RIGHT WRAPPER
   ============================================================ */
.nav-right {
  display: flex; align-items: center; gap: 12px;
  justify-self: end;
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: none;
  border: 1px solid var(--hair);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .25s ease;
  position: relative; z-index: 52;
}
.nav-burger:hover { border-color: var(--ink); }
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .36s cubic-bezier(.77,0,.18,1),
              opacity  .22s ease,
              background .2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 11.5px; letter-spacing: 0.14em; }
  .topbar-meta { display: none; }
}
@media (max-width: 960px) {
  .topbar { display: none !important; }   /* hide topbar entirely on mobile */
  .nav-inner { grid-template-columns: 1fr auto; height: 68px; padding: 0 22px; }
  .nav-burger { display: flex; }
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
  .nav-logo img { height: 32px; max-width: 160px; }
  .site-header.is-scrolled .nav-inner { height: 60px; }
}
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
}

/* Bottom safety: prevent sticky widgets (PE seal + WhatsApp) from sitting
   right on top of footer copyright text on small screens */
@media (max-width: 720px) {
  footer { padding-bottom: 80px; }
  footer .f-bottom { flex-direction: column; gap: 10px; padding-bottom: 8px; }
}
@media (max-width: 480px) {
  footer { padding-bottom: 96px; }
}

body.nav-open { overflow: hidden; }

/* ============================================================
   BACKDROP
   ============================================================ */
.mob-backdrop {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(20,18,14,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .42s ease;
}
.mob-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mob-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  z-index: 99;
  background: var(--ink);
  transform: translateX(110%);
  transition: transform .52s cubic-bezier(.77,0,.18,1);
  display: flex; flex-direction: column;
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.mob-nav.is-open { transform: translateX(0); }

.mob-nav::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--accent);
}

.mob-deco {
  position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.mob-deco::before {
  content: ""; position: absolute; inset: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,123,60,0.1);
}
.mob-deco::after {
  content: ""; position: absolute; inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,123,60,0.06);
}

.mob-nav-inner {
  display: flex; flex-direction: column;
  min-height: 100%; min-height: 100dvh;
  padding: 0 28px 44px;
  position: relative; z-index: 1;
}

.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mob-logo img {
  height: 28px; width: auto;
  filter: invert(1) brightness(2.2);
  opacity: .9;
}
.mob-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.13);
  cursor: pointer;
  position: relative;
  transition: border-color .2s ease;
  flex-shrink: 0;
}
.mob-close:hover { border-color: var(--accent); }
.mob-close span {
  position: absolute;
  width: 18px; height: 1.5px;
  background: rgba(247,242,234,0.85);
  transition: background .2s ease;
}
.mob-close:hover span { background: var(--accent-soft); }
.mob-close span:nth-child(1) { transform: rotate(45deg); }
.mob-close span:nth-child(2) { transform: rotate(-45deg); }

.mob-links {
  display: flex; flex-direction: column;
  padding: 36px 0 28px;
  flex: 1;
}
.mob-links a {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 8.5vw, 48px);
  font-weight: 400;
  color: rgba(247,242,234,0.82);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.1;
  opacity: 0;
  transform: translateX(32px);
  transition:
    color      .24s ease,
    opacity    .44s cubic-bezier(.2,.8,.2,1),
    transform  .44s cubic-bezier(.2,.8,.2,1);
}
.mob-nav.is-open .mob-links a { opacity: 1; transform: translateX(0); }
.mob-nav.is-open .mob-links a:nth-child(1) { transition-delay: .07s; }
.mob-nav.is-open .mob-links a:nth-child(2) { transition-delay: .12s; }
.mob-nav.is-open .mob-links a:nth-child(3) { transition-delay: .17s; }
.mob-nav.is-open .mob-links a:nth-child(4) { transition-delay: .22s; }
.mob-nav.is-open .mob-links a:nth-child(5) { transition-delay: .27s; }
.mob-nav.is-open .mob-links a:nth-child(6) { transition-delay: .32s; }

.mob-links a .mn { font-family: var(--sans); font-size: 9.5px; letter-spacing: .26em; color: rgba(255,255,255,0.22); flex-shrink: 0; padding-top: 6px; transition: color .24s ease; }
.mob-links a .ml { flex: 1; }
.mob-links a .ma { font-size: .42em; color: var(--accent); opacity: 0; transform: translateX(-10px); transition: opacity .22s ease, transform .22s ease; flex-shrink: 0; }
.mob-links a:hover           { color: var(--accent-soft); }
.mob-links a:hover .mn       { color: var(--accent); }
.mob-links a:hover .ma       { opacity: 1; transform: translateX(0); }
.mob-links a.active          { color: var(--accent-soft); }
.mob-links a.active .mn      { color: var(--accent); }

.mob-foot {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 18px;
}
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 24px;
  background: var(--accent); color: #fff;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  transition: background .25s ease;
}
.mob-cta:hover { background: #fff; color: var(--ink); }
.mob-info { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,0.32); }
.mob-info a   { color: rgba(255,255,255,0.52); text-decoration: none; transition: color .2s ease; }
.mob-info a:hover { color: var(--accent-soft); }
.mob-dot      { color: rgba(255,255,255,0.2); }
.mob-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.mob-badge { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; padding: 5px 10px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); }

/* ============================================================
   MOBILE GENERAL FIXES
   ============================================================ */
@media (max-width: 900px) { .hero-art { min-height: 340px; } }
@media (max-width: 600px) {
  .hero-art { display: none; }
  .hero-inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stats .s .n { font-size: 22px; }
  .hero-stats .s .l { font-size: 9px; letter-spacing: .18em; }
}
@media (max-width: 900px) {
  .trust-inner { overflow-x: auto; flex-wrap: nowrap; gap: 28px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .section-head { grid-template-columns: 1fr; }
  h2 { font-size: clamp(28px, 8vw, 42px); }
}
@media (max-width: 600px) {
  footer .f-grid { grid-template-columns: 1fr; gap: 28px; }
  footer .f-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 600px) { .hero-ticker-track { font-size: 10px; gap: 32px; } }
@media (max-width: 600px) {
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: clamp(36px, 10vw, 56px); letter-spacing: -0.02em; }
}

/* ===========================================================================
   COOKIE CONSENT (DSGVO / TTDSG) — banner, modal, toggles
   =========================================================================== */
html.cc-open { overflow: hidden; }
.cc-root { position: fixed; inset: 0; z-index: 100000; font-family: var(--sans, "Inter", system-ui, sans-serif); }
.cc-backdrop { position: absolute; inset: 0; background: rgba(20,17,14,0.55); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); animation: ccFade .3s ease-out; }
@keyframes ccFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ccRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cc-modal {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 32px)); max-height: calc(100vh - 32px); overflow-y: auto;
  background: var(--paper, #FBF8F3); color: var(--ink, #1B1A18);
  border: 1px solid var(--hair, rgba(27,26,24,0.10));
  box-shadow: 0 30px 80px -30px rgba(20,17,14,0.4), 0 12px 32px -12px rgba(20,17,14,0.18);
  padding: 32px; animation: ccRise .35s cubic-bezier(.2,.8,.2,1);
}
.cc-modal h2 { font-family: var(--serif, "Cormorant Garamond", Georgia, serif); font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 14px; line-height: 1.2; }
.cc-modal p { font-size: 14px; line-height: 1.65; color: var(--ink-2, #4A463F); margin: 0 0 18px; }
.cc-modal p em { color: var(--ink, #1B1A18); font-style: normal; font-weight: 500; }

.cc-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; border: 1px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
  flex: 1 1 auto; min-width: 140px; text-align: center;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-btn-primary { background: var(--ink, #1B1A18); color: var(--cream, #F7F2EA); border-color: var(--ink, #1B1A18); }
.cc-btn-primary:hover { background: var(--accent, #C97B3C); border-color: var(--accent, #C97B3C); }
.cc-btn-secondary { background: transparent; color: var(--ink, #1B1A18); border-color: var(--hair, rgba(27,26,24,0.18)); }
.cc-btn-secondary:hover { border-color: var(--ink, #1B1A18); background: var(--cream, #F7F2EA); }

.cc-meta { margin-top: 18px; font-size: 11px; letter-spacing: 0.04em; color: var(--muted, #8A857B); text-align: center; }
.cc-meta a { color: var(--ink-2, #4A463F); text-decoration: underline; }
.cc-meta a:hover { color: var(--accent, #C97B3C); }

.cc-cat { border-top: 1px solid var(--hair, rgba(27,26,24,0.10)); padding: 18px 0; }
.cc-cat:first-of-type { border-top: 0; padding-top: 6px; }
.cc-cat-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.cc-cat-head h3 { margin: 0 0 6px; font-size: 15px; font-weight: 500; color: var(--ink, #1B1A18); }
.cc-cat-purpose { font-size: 13px; line-height: 1.55; color: var(--ink-2, #4A463F); margin: 0; }

.cc-toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; flex-shrink: 0; }
.cc-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cc-toggle-pill {
  width: 38px; height: 22px; border-radius: 999px; background: #C9C2B6; position: relative;
  transition: background-color .2s; flex-shrink: 0;
}
.cc-toggle-pill::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.cc-toggle input:checked ~ .cc-toggle-pill { background: var(--accent, #C97B3C); }
.cc-toggle input:checked ~ .cc-toggle-pill::after { transform: translateX(16px); }
.cc-toggle-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted, #8A857B); }
.cc-toggle-locked .cc-toggle-pill { background: var(--accent-soft, #E8B98A); opacity: 0.7; cursor: not-allowed; }
.cc-toggle-locked .cc-toggle-pill::after { transform: translateX(16px); }

.cc-cat details { margin-top: 12px; }
.cc-cat summary { cursor: pointer; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent, #C97B3C); padding: 4px 0; list-style: none; }
.cc-cat summary::-webkit-details-marker { display: none; }
.cc-cat summary::before { content: "+ "; }
.cc-cat details[open] summary::before { content: "− "; }
.cc-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 12px; }
.cc-table th, .cc-table td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--hair, rgba(27,26,24,0.06)); vertical-align: top; }
.cc-table th { color: var(--muted, #8A857B); font-weight: 500; width: 35%; white-space: nowrap; }
.cc-table td { color: var(--ink-2, #4A463F); }
.cc-table a { color: var(--accent, #C97B3C); }

@media (max-width: 600px) {
  .cc-modal { padding: 24px 20px; width: calc(100% - 24px); }
  .cc-actions { flex-direction: column; }
  .cc-btn { width: 100%; }
  .cc-cat-head { flex-direction: column; align-items: stretch; }
  .cc-toggle { align-self: flex-start; }
}

/* ===========================================================================
   FOOTER · Standort-SEO-Cluster (zwischen f-grid und f-bottom)
   =========================================================================== */
footer .f-locations {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 22px;
}
footer .f-locations .fl-label {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream); opacity: 0.65; font-weight: 500;
  flex-shrink: 0;
}
footer .f-locations a {
  font-size: 13px; line-height: 1.4; opacity: 0.78;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: opacity .2s ease, color .2s ease, border-color .2s ease;
}
footer .f-locations a:hover {
  opacity: 1; color: var(--accent-soft); border-bottom-color: var(--accent);
}
footer .f-locations .fl-sep {
  color: rgba(255,255,255,0.22); font-size: 12px;
}
@media (max-width: 600px) {
  footer .f-locations { gap: 10px 14px; margin-top: 36px; padding-top: 20px; }
  footer .f-locations .fl-label { width: 100%; margin-bottom: 6px; }
  footer .f-locations .fl-sep { display: none; }
}

/* ===========================================================================
   FORM STATUS · Success/Error-Meldungen für Kontakt/Bewertung/Ratgeber/Tippgeber
   =========================================================================== */
.form-status {
  display: block;
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--sans);
  border-left: 3px solid var(--hair);
  background: var(--cream);
  color: var(--ink-2);
}
.form-status:empty { display: none; }
.form-status-success {
  border-left-color: #4D8B5C;
  background: #EAF4EC;
  color: #2A5232;
}
.form-status-error {
  border-left-color: #A32D2D;
  background: #FBEFEF;
  color: #6E1F1F;
}
