/* =====================================================================
   OLYMP Haus GmbH — Design-System
   Designsprache angelehnt an olymp-immo.de:
   warmes Creme, Ziegelrot-Akzent, Hanken Grotesk + Inter, Pill-Buttons,
   weiche, stark gerundete Karten, foto-geführt. WCAG-AA, Zoom erlaubt.
   ===================================================================== */

/* ---------- Fonts (lokal, variabel) ---------- */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url('../fonts/hankengrotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url('../fonts/hankengrotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --bg:        #F6F2EB;   /* helles, warmes Off-White (Basis) */
  --bg-2:      #E7DDCB;   /* deutlich tieferes Beige (Akzent-Bänder) */
  --bg-3:      #EFEADF;   /* mittlere Zwischenstufe */
  --card:      #FFFFFF;
  --ink:       #1C1A17;   /* warmes Fast-Schwarz */
  --ink-soft:  #3B3833;
  --muted:     #6E675D;   /* Sekundärtext (AA auf Creme) */
  --muted-d:   #B9B1A4;   /* Sekundär auf Dunkel */
  --line:      #DFD5C3;   /* warme Haarlinie (etwas kräftiger) */
  --line-2:    #D2C8B4;
  --accent:    #1C1A17;   /* Akzent = warmes Anthrazit (monochrom) */
  --accent-2:  #34302A;   /* Hover (etwas heller) */
  --accent-lt: #D9CFBF;   /* Akzent auf Dunkel = warmes Hell */
  --accent-soft:#EAE3D6;  /* neutrale Chip-/Tint-Fläche */
  --dark:      #211F1C;   /* dunkle Sektionen/Footer */
  --dark-2:    #2C2925;
  --dark-line: #3A362F;
  --ok:        #4B7A57;

  --display: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif:   var(--display);   /* Abwärtskompatibilität für Inline-Styles */

  --fs-eyebrow: 0.74rem;
  --fs-small:   0.84rem;
  --fs-body:    clamp(1rem, 0.97rem + 0.16vw, 1.08rem);
  --fs-lead:    clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem);
  --fs-h4:      clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem);
  --fs-h3:      clamp(1.35rem, 1.15rem + 0.9vw, 1.9rem);
  --fs-h2:      clamp(1.85rem, 1.4rem + 2vw, 3rem);
  --fs-h1:      clamp(2.3rem, 1.6rem + 3.3vw, 4rem);

  --maxw: 1240px;
  --maxw-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --sp-sec: clamp(3.5rem, 2.8rem + 4vw, 6.5rem);
  --header-h: 78px;

  --r-card: 24px;
  --r-lg: 20px;
  --r-md: 16px;
  --r-btn: 999px;
  --r-input: 14px;

  --shadow-sm: 0 6px 22px rgba(33,31,28,.09);
  --shadow: 0 18px 48px rgba(33,31,28,.13);
  --shadow-lift: 0 28px 64px rgba(33,31,28,.20);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: var(--fs-body); line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: color-mix(in srgb, var(--accent) 45%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--accent); }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 .5em; color: var(--ink); overflow-wrap: break-word; }
h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 700; line-height: 1.25; }
@media (max-width: 560px) { h1, h2 { hyphens: auto; } }
p  { margin: 0 0 1.1em; } p:last-child { margin-bottom: 0; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; opacity: .8; }
.eyebrow--light { color: var(--accent-lt); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--maxw-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sp-sec); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2.5vw, 4rem); }
.section--ink { background: var(--dark); color: var(--bg); }
/* Optionales KI-/Foto-Hintergrundbild für Sektionen (mit dunklem Verlauf-Overlay für Lesbarkeit) */
.section--media { position: relative; overflow: hidden; }
.section--media .section__media { position: absolute; inset: 0; z-index: 0; }
.section--media .section__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; filter: brightness(1.22) saturate(1.05); }
.section--media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(24,22,19,.85) 0%, rgba(24,22,19,.60) 50%, rgba(24,22,19,.36) 100%); }
.section--media > .wrap { position: relative; z-index: 2; }
.section--media .sec-head, .section--media .feature { text-shadow: 0 1px 18px rgba(0,0,0,.45); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead { color: var(--muted-d); }
.section--panel { background: var(--bg-2); }

.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); }
.sec-head--wide { max-width: 880px; }
.sec-head .lead { margin-top: .4rem; }

.grid { display: grid; gap: clamp(1.1rem, 0.8rem + 1.4vw, 1.8rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 1rem + 4vw, 4.5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split, .split--reverse > :first-child { grid-template-columns: 1fr; order: 0; } }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Skip-Link ---------- */
.skip { position: absolute; left: 1rem; top: -60px; background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-md); z-index: 1200; transition: top .18s var(--ease); }
.skip:focus { top: 1rem; }

/* ---------- Buttons (Pill) ---------- */
.btn {
  --bg-btn: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; line-height: 1;
  padding: 1rem 1.7rem; min-height: 52px;
  background: var(--bg-btn); color: var(--fg);
  border: 1.5px solid var(--bd); border-radius: var(--r-btn);
  cursor: pointer; text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; }
.btn--bronze, .btn--accent { --bg-btn: var(--accent); --bd: var(--accent); --fg: #fff; }
.btn--bronze:hover, .btn--accent:hover { --bg-btn: var(--accent-2); --bd: var(--accent-2); }
.btn--ghost { --bg-btn: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--ghost:hover { --bd: var(--ink); background: rgba(0,0,0,.02); }
.btn--on-ink { --bg-btn: rgba(255,255,255,.08); --fg: #fff; --bd: rgba(255,255,255,.34); }
.btn--on-ink:hover { --bd: #fff; background: rgba(255,255,255,.16); }
.btn--light { --bg-btn: var(--bg); --fg: var(--ink); --bd: var(--bg); }
.btn--light:hover { --bg-btn: #fff; --bd: #fff; }
.btn--sm { padding: .7rem 1.25rem; min-height: 44px; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .96rem; text-decoration: none; color: var(--accent);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.arrow-link::after { content: "→"; transition: transform .2s var(--ease); }
.arrow-link:hover { gap: .7rem; color: var(--accent-2); }
.arrow-link:hover::after { transform: translateX(3px); }
.section--ink .arrow-link { color: var(--accent-lt); }
.section--ink .arrow-link:hover { color: #fff; }

/* ---------- Header / Navigation (transparent über Hero, solid beim Scrollen) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: transparent; border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
/* Lesbarer Header: .is-scrolled setzt main.js beim Scrollen, .is-solid kommt aus dem
   Generator für Seiten OHNE dunklen Hero (danke, 404) — dort wäre die weiße
   Standard-Navigation sonst unsichtbar auf hellem Grund. */
.site-header:is(.is-scrolled, .is-solid) {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: 1.4rem; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand__mark { height: 36px; width: auto; display: block; }
.brand__mark--dark { display: none; }
.site-header:is(.is-scrolled, .is-solid) .brand__mark--light { display: none; }
.site-header:is(.is-scrolled, .is-solid) .brand__mark--dark { display: block; }
.brand__word { font-family: var(--display); font-weight: 400; font-size: 1.24rem; letter-spacing: .04em; color: #fff; text-transform: uppercase; white-space: nowrap; }
.brand__word b { font-weight: 800; }
.site-header:is(.is-scrolled, .is-solid) .brand__word { color: var(--ink); }

/* Standard (über Hero): weiß */
.nav-menu { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a, .has-sub > button { display: inline-flex; align-items: center; font-size: .94rem; font-weight: 500; text-decoration: none; color: rgba(255,255,255,.92); padding: .55rem .85rem; border-radius: var(--r-btn); font-family: var(--sans); background: none; border: 0; cursor: pointer; }
.nav-menu a:hover, .has-sub > button:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav-menu a[aria-current="page"] { color: #fff; font-weight: 600; }
.site-header:is(.is-scrolled, .is-solid) .nav-menu a, .site-header:is(.is-scrolled, .is-solid) .has-sub > button { color: var(--ink); }
.site-header:is(.is-scrolled, .is-solid) .nav-menu a:hover, .site-header:is(.is-scrolled, .is-solid) .has-sub > button:hover { background: color-mix(in srgb, var(--bg-2) 80%, transparent); }
.site-header:is(.is-scrolled, .is-solid) .nav-menu a[aria-current="page"] { color: var(--ink); }

.has-sub { position: relative; }
.has-sub > button .chev { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.has-sub[data-open="true"] > button .chev { transform: rotate(180deg); }
.submenu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 268px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow); padding: .5rem; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s; }
.has-sub[data-open="true"] .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a { display: block; padding: .65rem .8rem; border-radius: var(--r-md); font-size: .92rem; color: var(--ink); font-weight: 500; }
.submenu a small { display: block; color: var(--muted); font-weight: 400; font-size: .78rem; margin-top: 1px; }
.submenu a:hover { background: var(--bg); color: var(--ink); }
.submenu a[aria-current="page"] { color: var(--ink); font-weight: 600; background: var(--bg-2); }
.submenu a[aria-current="page"] small { color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .92rem; text-decoration: none; white-space: nowrap; color: #fff; }
.nav-phone .ico { width: 16px; height: 16px; color: #fff; }
.site-header:is(.is-scrolled, .is-solid) .nav-phone { color: var(--ink); }
.site-header:is(.is-scrolled, .is-solid) .nav-phone .ico { color: var(--ink); }

/* Header-CTA: über Hero helle Pille, beim Scrollen dunkle Pille */
.btn--cta { --bg-btn: var(--bg); --fg: var(--ink); --bd: var(--bg); }
.btn--cta:hover { --bg-btn: #fff; --bd: #fff; }
.site-header:is(.is-scrolled, .is-solid) .btn--cta { --bg-btn: var(--ink); --fg: #fff; --bd: var(--ink); }
.site-header:is(.is-scrolled, .is-solid) .btn--cta:hover { --bg-btn: var(--accent-2); --bd: var(--accent-2); }

.menu-btn { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; background: none; border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-btn); cursor: pointer; color: #fff; }
.menu-btn svg { width: 22px; height: 22px; }
.site-header:is(.is-scrolled, .is-solid) .menu-btn { border-color: var(--line-2); color: var(--ink); }
@media (max-width: 1040px) {
  .menu-btn { display: inline-flex; }
  .nav-cta .nav-phone span { display: none; }
  .nav > .nav-menu, .nav > .nav-cta .btn { display: none; }
  .mobile-nav { display: block; }
}

.mobile-nav { display: none; position: fixed; inset: 0 0 0 auto; width: min(420px, 88vw); background: var(--dark); color: var(--bg); z-index: 1100; transform: translateX(100%); transition: transform .32s var(--ease); padding: 1.5rem var(--gutter) 2rem; overflow-y: auto; }
.mobile-nav[hidden] { display: none; }
body.nav-open .mobile-nav { transform: translateX(0); display: flex; flex-direction: column; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-nav .close-btn { background: none; border: 1.5px solid var(--dark-line); color: #fff; width: 48px; height: 48px; border-radius: var(--r-btn); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-top: 1px solid var(--dark-line); }
.mobile-nav a, .mobile-nav .m-group > span { display: block; padding: .95rem .2rem; color: var(--bg); text-decoration: none; font-size: 1.1rem; font-family: var(--display); font-weight: 600; }
.mobile-nav .m-sub { padding-left: .8rem; }
.mobile-nav .m-sub a { font-family: var(--sans); font-size: .96rem; padding: .55rem .2rem; color: var(--muted-d); font-weight: 500; }
.mobile-nav .m-group > span { color: var(--accent-lt); font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; padding-bottom: .3rem; }
.mobile-nav__cta { margin-top: auto; padding-top: 1.6rem; display: grid; gap: .7rem; }
.nav-scrim { position: fixed; inset: 0; background: rgba(20,18,15,.5); opacity: 0; visibility: hidden; z-index: 1050; transition: opacity .3s; }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* ---------- Hero (Slideshow, zieht unter den transparenten Header) ---------- */
.hero { position: relative; background: var(--dark); color: var(--bg); overflow: hidden; margin-top: calc(var(--header-h) * -1); padding-top: calc(var(--header-h) + clamp(3rem, 2rem + 5vw, 6.5rem)); padding-bottom: clamp(3rem, 2.2rem + 4vw, 5.5rem); }
.hero__grid-lines { display: none; }
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--dark-2); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__slide.is-active { opacity: 1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(100deg, rgba(24,22,19,.93) 0%, rgba(24,22,19,.74) 44%, rgba(24,22,19,.30) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: .8rem; }
.hero h1 em { font-style: normal; color: #fff; }
.hero__sub { font-size: var(--fs-lead); color: #E8E1D6; max-width: 48ch; margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 2.6rem; }
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } }

.datum-bar { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.4rem; }
.datum-bar div { display: flex; flex-direction: column; }
.datum-bar dt { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); }
.datum-bar dd { margin: .3rem 0 0; font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: #fff; }
.datum-bar dd small { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 400; color: var(--muted-d); letter-spacing: .02em; margin-top: 2px; }
.datum-bar dd .u { color: var(--accent-lt); }

/* ---------- Drei-Wege-Block ---------- */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,.8rem + 1vw,1.5rem); }
@media (max-width: 820px) { .ways { grid-template-columns: 1fr; } }
.way { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); display: flex; flex-direction: column; gap: .5rem; text-decoration: none; color: var(--ink); position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease); min-height: 250px; box-shadow: var(--shadow-sm); }
.way:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.way__idx { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--r-md); background: var(--ink); color: var(--bg); margin-bottom: .6rem; }
.way__idx svg { width: 24px; height: 24px; }
.way h3 { margin: .2rem 0 .1rem; }
.way p { color: var(--muted); font-size: .98rem; }
.way .arrow-link { margin-top: auto; align-self: flex-start; }

/* ---------- Karten / Plates ---------- */
.plate { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
a.plate:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.plate__img { position: relative; aspect-ratio: 4 / 3; background: var(--bg-2); overflow: hidden; }
.plate__img--wide { aspect-ratio: 16 / 10; }
.plate__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
a.plate:hover .plate__img img { transform: scale(1.05); }
.plate__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; background: repeating-linear-gradient(45deg, var(--bg-2) 0 14px, #E4DCCE 14px 28px); }
.plate__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.plate__loc { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .4rem; display: flex; gap: .5rem; }
.plate__loc .num { color: var(--muted); }
.plate h3, .plate h4 { margin: 0 0 .35rem; font-size: 1.22rem; }
.plate__hint { color: var(--muted); font-size: .92rem; margin: 0 0 .9rem; }
.plate__spec { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .35rem 1.2rem; font-size: .84rem; color: var(--muted); }
.plate__spec b { color: var(--ink); font-weight: 600; }

/* Status-Badge */
.badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .4rem .7rem; border-radius: var(--r-btn); line-height: 1; background: #fff; color: var(--ink); }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--avail { color: var(--ok); }
.badge--soon  { color: var(--accent); }
.badge--sold  { color: var(--muted); }
.badge--vertrieb { background: var(--ink); color: #fff; letter-spacing: .04em; }
.badge--vertrieb::before { display: none; }
.plate__img .badge { position: absolute; top: .9rem; left: .9rem; box-shadow: var(--shadow-sm); }
/* Projektkarte: Preiszeile + Merkmale (angelehnt an olymp-immo.de/immobilien) */
.plate__price { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin: .1rem 0 .35rem; }
.plate__price b { font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
.tag-frei { display: inline-flex; align-items: center; gap: .25rem; font-size: .72rem; font-weight: 600; color: var(--ink); background: var(--bg-2); border-radius: 999px; padding: .18rem .5rem; }
.tag-frei .ico { width: 12px; height: 12px; }
.plate__loc { display: flex; align-items: center; gap: .3rem; }
.plate__loc .ico { width: 13px; height: 13px; color: var(--muted); flex: none; }

/* ---------- Feature / Prozess ---------- */
.feature__ico { width: 52px; height: 52px; padding: 14px; border-radius: var(--r-md); background: var(--ink); color: var(--bg); margin-bottom: 1rem; }
.feature h3, .feature h4 { font-size: 1.24rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }
.section--ink .feature p { color: var(--muted-d); }
.section--ink .feature__ico { background: rgba(255,255,255,.12); color: #fff; }

.steps { counter-reset: step; display: grid; gap: clamp(.8rem,.6rem + .6vw,1.1rem); }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem clamp(1.2rem,1rem + 1vw,1.7rem); display: grid; grid-template-columns: auto 1fr; column-gap: 1.1rem; row-gap: .3rem; align-items: start; box-shadow: var(--shadow-sm); }
.section--ink .step { background: var(--dark-2); border-color: var(--dark-line); }
.step::before { counter-increment: step; content: counter(step); grid-column: 1; grid-row: 1 / span 2; align-self: start; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-btn); background: var(--accent); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.step h4 { grid-column: 2; margin: 0; }
.step p { grid-column: 2; margin: 0; color: var(--muted); font-size: .96rem; }
.section--ink .step::before { background: var(--accent-lt); color: var(--ink); }
.section--ink .step p { color: var(--muted-d); }

/* ---------- Spec-Tabelle ---------- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: .9rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; width: 42%; white-space: nowrap; }
.spec-table td { font-weight: 500; }

/* ---------- Trust / Testimonials ---------- */
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.5rem, 1.2rem + 1vw, 2.2rem); display: flex; flex-direction: column; gap: 1.1rem; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--accent); letter-spacing: .1em; font-size: 1rem; }
.quote blockquote { margin: 0; font-family: var(--display); font-size: 1.24rem; line-height: 1.4; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.quote figcaption { font-size: .86rem; color: var(--muted); margin-top: auto; }
.quote figcaption b { color: var(--ink); font-weight: 600; }

.trust-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.5rem; }
.trust-item { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--muted-d); }
.trust-item .ico, .trust-item svg { width: 26px; height: 26px; color: var(--accent-lt); flex: none; }
.trust-item b { color: #fff; font-weight: 600; }
.section--panel .trust-item, .section:not(.section--ink) .trust-item { color: var(--muted); }
.section--panel .trust-item .ico, .section:not(.section--ink) .trust-item .ico { color: var(--accent); }
.section--panel .trust-item b, .section:not(.section--ink) .trust-item b { color: var(--ink); }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(.8rem,.6rem + .6vw,1.1rem); }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); }
.section--ink .stat { background: var(--dark-2); border-color: var(--dark-line); }
.stat dt { font-family: var(--display); font-size: clamp(2rem,1.4rem + 2vw,2.8rem); font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.section--ink .stat dt { color: #fff; }
.stat dd { margin: .5rem 0 0; font-size: .84rem; color: var(--muted); letter-spacing: .01em; }
.section--ink .stat dd { color: var(--muted-d); }
.stat dt .u { color: var(--accent); }
.section--ink .stat dt .u { color: var(--accent-lt); }

/* Partner-Logoband */
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.6rem,.4rem + .6vw,1rem); align-items: stretch; margin-top: 1.6rem; }
@media (max-width: 900px) { .partners { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .partners { grid-template-columns: repeat(2, 1fr); } }
.partner { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; padding: 1rem 1.1rem; min-height: 78px; }
.partner img { max-height: 46px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1) opacity(.62); transition: filter .25s var(--ease); }
.partner:hover img { filter: grayscale(0) opacity(1); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 3rem 1.2rem 1.4rem; position: relative; font-family: var(--display); font-size: clamp(1.05rem,1rem + .35vw,1.22rem); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); transition: transform .2s var(--ease); font-family: var(--sans); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq__a { padding: 0 1.4rem 1.4rem; color: var(--muted); max-width: 70ch; }
.faq__a p { margin-bottom: .8rem; }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.5rem,1.2rem + 1.2vw,2rem); margin-top: 2.5rem; }
.prose h3 { font-size: clamp(1.2rem,1.05rem + .6vw,1.5rem); margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--accent); }
.prose blockquote { margin: 1.6rem 0; padding: .3rem 0 .3rem 1.4rem; border-left: 3px solid var(--accent); font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.prose a { color: var(--accent); }
.callout { background: var(--bg-2); border-radius: var(--r-lg); padding: 1.4rem 1.6rem; margin: 1.8rem 0; }
.callout h4 { margin: 0 0 .4rem; }
.callout p { margin: 0; color: var(--muted); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .82rem; color: var(--muted); padding-block: 1.1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .5rem; color: var(--line-2); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink); }
.crumbs--light { color: var(--muted-d); }

/* Page-Header (zieht unter den transparenten Header) */
.page-head { background: var(--dark); color: var(--bg); margin-top: calc(var(--header-h) * -1); padding-top: calc(var(--header-h) + clamp(2rem,1.6rem + 2vw,3.2rem)); padding-bottom: clamp(2.5rem,2rem + 3vw,4.5rem); position: relative; overflow: hidden; }
.page-head__media { position: absolute; inset: 0; z-index: 0; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.page-head--media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(24,22,19,.94) 0%, rgba(24,22,19,.78) 46%, rgba(24,22,19,.45) 100%); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head .lead { color: var(--muted-d); max-width: 58ch; margin-top: .8rem; }
.page-head .crumbs { color: var(--muted-d); padding-top: 0; padding-bottom: 1.4rem; }
.page-head .crumbs a { color: var(--muted-d); }
.page-head .crumbs [aria-current] { color: var(--bg); }
.page-head .crumbs li::after { color: var(--dark-line); }

/* Dankeseite: nutzt die Seitenkopf-Mechanik (Bild + Abdunklung), aber mittig
   statt linksbündig und mit mehr Höhe — die Danke-Botschaft steht allein. */
.danke-head { display: flex; align-items: center; min-height: 62vh; text-align: center; }
.danke-head .wrap { width: 100%; }
.danke-head h1 { max-width: 20ch; margin-inline: auto; }
/* Text steht mittig über der erleuchteten Fassade, nicht über der stark abgedunkelten
   linken Seite wie bei den übrigen Seitenköpfen — daher heller als --muted-d und mit
   einem weichen Schatten, der den Kontrast hebt ohne das Bild abzudunkeln. */
.danke-head .lead { max-width: 52ch; margin-inline: auto; color: rgba(255,255,255,.94); }
.danke-head .eyebrow, .danke-head h1, .danke-head .lead, .danke-head .arrow-link {
  text-shadow: 0 1px 14px rgba(12,10,8,.55);
}
.danke-head .eyebrow { justify-content: center; }
.danke-head .btn-row { justify-content: center; }
.danke-head .arrow-link { color: var(--bg); }
.danke-head .arrow-link:hover { color: var(--accent-lt); }

/* ---------- Formular ---------- */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.5rem,1.2rem + 1.5vw,2.6rem); box-shadow: var(--shadow); container-type: inline-size; }
.section--ink .form-card { background: var(--dark-2); border-color: var(--dark-line); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: .45rem; color: var(--ink); }
.section--ink .field label { color: var(--bg); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); padding: .9rem 1rem; background: var(--bg-3); border: 1.5px solid var(--line); border-radius: var(--r-input); transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.section--ink .field input, .section--ink .field select, .section--ink .field textarea { background: var(--dark); border-color: var(--dark-line); color: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 2.6rem; cursor: pointer; text-overflow: ellipsis; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E675D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .95rem center; background-size: 17px; }
.section--ink .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9B1A4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .7; }
.section--ink .field input::placeholder, .section--ink .field textarea::placeholder { color: var(--muted-d); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
/* Formular stapelt Felder, sobald die Karte selbst schmal wird (z. B. schmale Split-Spalte im Tablet-Bereich) — unabhängig vom Viewport. */
@container (max-width: 400px) { .field-row { grid-template-columns: 1fr; } }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.section--ink .consent { color: var(--muted-d); }
.consent input { width: 20px; height: 20px; margin-top: .1rem; flex: none; accent-color: var(--accent); }
.consent a { color: var(--accent); }
.section--ink .consent a { color: var(--accent-lt); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 1rem; }
.form-status { display: none; padding: .9rem 1.1rem; border-radius: var(--r-md); font-size: .9rem; margin-bottom: 1rem; }
.form-status.is-err { display: block; background: #FBEDE9; color: #9A3412; border: 1px solid #F1C7BB; }
.form-status.is-ok  { display: block; background: #EAF3EC; color: #2E5C3A; border: 1px solid #C6E0CD; }

/* ---------- Kontakt / Info ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.info-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.info-list .ico { width: 44px; height: 44px; padding: 11px; border-radius: var(--r-md); background: var(--ink); color: var(--bg); flex: none; }
.section--ink .info-list .ico { background: rgba(255,255,255,.12); color: #fff; }
.info-list dt { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.info-list dd { margin: 0; }
.info-list a { text-decoration: none; }

.map-card { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; background: var(--bg-2); box-shadow: var(--shadow-sm); }
.map-card > img { width: 100%; height: 100%; object-fit: cover; }
.map-card .plate__ph { position: static; height: 100%; }
.map-card__pin { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.2rem; }
.map-card__pin a { background: #fff; border-radius: var(--r-btn); padding: .75rem 1.1rem; box-shadow: var(--shadow); font-weight: 600; font-size: .9rem; text-decoration: none; display: inline-flex; gap: .5rem; align-items: center; }
.map-card__pin .ico { width: 18px; height: 18px; color: var(--accent); }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--dark); color: var(--bg); border-radius: var(--r-card); padding: clamp(2rem,1.5rem + 2.5vw,3.75rem); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: var(--muted-d); max-width: 52ch; margin-bottom: 1.6rem; }
.cta-band .hero__grid-lines { display: none; }
.cta-band > * { position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--muted-d); padding-block: clamp(3rem,2.5rem + 2vw,4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 2.5rem 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--dark-line); align-items: start; }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { display: inline-block; }
.footer-logo img { height: 76px; width: auto; }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-top: 1.3rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { font-size: .94rem; text-decoration: none; color: var(--muted-d); }
.footer-col a:hover { color: #fff; }
.footer-contact address { font-style: normal; font-size: .94rem; line-height: 1.7; }
.footer-contact a { color: var(--muted-d); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 42px; height: 42px; border: 1.5px solid var(--dark-line); border-radius: var(--r-btn); display: inline-flex; align-items: center; justify-content: center; color: var(--muted-d); transition: color .2s, border-color .2s, background .2s; }
.footer-social a:hover { color: #fff; border-color: var(--accent); background: var(--accent); }
.footer-social .ico { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .82rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a { text-decoration: none; color: var(--muted-d); }
.footer-bottom a:hover { color: #fff; }
.footer-credit { margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--dark-line); font-size: .82rem; color: var(--muted); }
.footer-credit a { color: var(--muted-d); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: #fff; }
.footer-credit__tagline { display: block; margin-top: .15rem; font-size: .76rem; color: var(--muted); }

/* ---------- WhatsApp-Float ---------- */
.wa-float { position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 950; }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; box-shadow: 0 10px 28px -6px rgba(37,211,102,.6); text-decoration: none; transition: transform .2s var(--ease); }
.wa-btn:hover { transform: scale(1.06); }
.wa-btn svg { width: 30px; height: 30px; }
.wa-panel { position: absolute; bottom: 74px; right: 0; width: 288px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lift); padding: 1.3rem; text-align: center; opacity: 0; visibility: hidden; transform: translateY(10px) scale(.97); transform-origin: bottom right; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
.wa-panel[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.wa-panel h4 { font-family: var(--display); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.wa-panel p { font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }
.wa-panel__qr { width: 176px; height: 176px; margin: 0 auto 1rem; border: 1px solid var(--line); border-radius: var(--r-md); padding: 8px; background: #fff; }
.wa-panel__qr svg { width: 100%; height: 100%; }
.wa-panel a.wa-web { font-size: .84rem; color: var(--accent); font-weight: 600; text-decoration: none; }
.wa-panel__close { position: absolute; top: .5rem; right: .5rem; width: 32px; height: 32px; border: 0; background: var(--bg); border-radius: 50%; cursor: pointer; color: var(--muted); font-size: 1.1rem; line-height: 1; }
.wa-panel__phone { font-weight: 600; font-size: .92rem; margin-bottom: 1rem; color: var(--ink); text-decoration: none; display: inline-block; }
@media (max-width: 640px) { .wa-panel { display: none !important; } }

/* ---------- Video-Kundenstimmen (Klick-to-Load) ---------- */
.video-card { display: flex; flex-direction: column; gap: .9rem; background: none; border: 0; padding: 0; text-align: left; cursor: pointer; font: inherit; color: inherit; }
.video-card__thumb { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); box-shadow: var(--shadow-sm); }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card__play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 50%; background: rgba(28,26,23,.72); color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .2s var(--ease), background .2s var(--ease); }
.video-card__play svg { width: 30px; height: 30px; margin-left: 3px; }
.video-card:hover .video-card__play { transform: scale(1.08); background: var(--ink); }
.video-card__meta { display: flex; flex-direction: column; gap: .15rem; }
.video-card__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.video-card__title { font-family: var(--display); font-weight: 700; font-size: 1.1rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); }

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: clamp(.6rem, .4rem + .8vw, 1rem); }
.gallery__main { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; background: var(--bg-2); box-shadow: var(--shadow-sm); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem, .4rem + .8vw, 1rem); }
@media (max-width: 560px) { .gallery__thumbs { grid-template-columns: repeat(2, 1fr); } }
.gallery__thumb { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--bg-2); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery__thumb:hover img { transform: scale(1.05); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .plate, .way, .wa-btn, .plate__img img { transition: none !important; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hide { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider-datum { display: none; }
