/* H & V Equity AG — Website
   Gestaltungsidee: ein Tag am See. Morgenlicht (Video) am Anfang, Dämmerung am Ende.
   Farben aus Video und Monogramm. Schriften lokal gehostet (keine Drittanbieter-Verbindung). */

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader.woff2") format("woff2");
  font-weight: 200 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  /* Seetiefe — Markenfarbe aus dem Logo */
  --see: #0b1d2b;
  --see-2: #11283a;
  --see-3: #1b3649;
  /* Morgennebel — kühle, helle Flächen statt Creme */
  --nebel: #e5e8e4;
  --nebel-hell: #f1f3f0;
  --papier: #fafbf9;
  /* Champagner — das Metall des Monogramms, sparsam */
  --champagner: #c7ad82;
  --champagner-tief: #8a6f45;
  /* Schiefer — die Wasseroberfläche im Video */
  --schiefer: #56666f;
  --tinte: #13222d;
  --linie: #c9cfcb;
  --linie-dunkel: rgba(229, 232, 228, 0.16);
  --fehler: #a3372c;
  --erfolg: #2f6b55;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Typografische Skala (Quarte, 1.333) */
  --t-xs: 0.8125rem;
  --t-s: 0.9375rem;
  --t-m: 1.0625rem;
  --t-l: 1.3125rem;
  --t-xl: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  --t-2xl: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem);
  --t-3xl: clamp(2.7rem, 1.5rem + 4.6vw, 5.4rem);
  --t-hero: clamp(3rem, 1.2rem + 6.8vw, 7.6rem);

  --rand: clamp(1.25rem, 4vw, 4rem);
  --breite: 1320px;
  --radius: 3px;
  --kopf: 84px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--kopf) + 16px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--t-m);
  line-height: 1.6;
  color: var(--tinte);
  background: var(--papier);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--champagner); color: var(--see); }

:focus-visible { outline: 2px solid var(--champagner); outline-offset: 3px; border-radius: 2px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--champagner); color: var(--see); padding: .7rem 1.1rem; text-decoration: none;
}
.skip:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 var(--rand); }

/* ——— Typografie ——— */
.serif { font-family: var(--serif); }
.display {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.h-hero { font-size: var(--t-hero); }
.h-1 { font-size: var(--t-3xl); }
.h-2 { font-size: var(--t-2xl); line-height: 1.08; }
.h-3 { font-family: var(--serif); font-size: var(--t-xl); line-height: 1.2; font-weight: 400; letter-spacing: -0.01em; }
.lead { font-size: var(--t-l); line-height: 1.55; max-width: 38em; }
.klein { font-size: var(--t-s); }
.gedaempft { color: var(--schiefer); }
.messe { max-width: 64ch; }
.zeile { display: block; }

/* ——— Knöpfe & Links ——— */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 3.1rem; padding: 0 1.5rem;
  font-size: var(--t-s); font-weight: 600; letter-spacing: .01em;
  text-decoration: none; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.knopf svg { width: 1.05em; height: 1.05em; flex: none; }
.knopf--hell { background: var(--papier); color: var(--see); }
.knopf--hell:hover { background: var(--champagner); }
.knopf--dunkel { background: var(--see); color: var(--papier); }
.knopf--dunkel:hover { background: var(--see-3); }
.knopf--rand { border-color: currentColor; background: transparent; }
.knopf--rand:hover { background: rgba(255,255,255,.08); }
.knopf--rand-dunkel { border-color: var(--see); color: var(--see); background: transparent; }
.knopf--rand-dunkel:hover { background: var(--see); color: var(--papier); }
.knopf[disabled], .knopf[aria-busy="true"] { opacity: .55; cursor: progress; }
.knopf--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: var(--t-s); text-decoration: none;
  border-bottom: 1px solid var(--champagner); padding-bottom: .2rem;
}
.textlink svg { width: 14px; height: 14px; flex: none; transition: transform .3s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }
.textlink:hover { color: var(--champagner-tief); }
.dunkel .textlink:hover { color: var(--champagner); }

/* ——— Kopfzeile ——— */
.kopf {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--kopf);
  color: var(--papier);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.kopf::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,173,130,.45) 20%, rgba(199,173,130,.45) 80%, transparent);
  opacity: 0; transition: opacity .4s;
}
.kopf--fest, .kopf--immer { background: rgba(11, 29, 43, .94); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); }
.kopf--fest::after, .kopf--immer::after { opacity: 1; }
.kopf__innen { height: 100%; display: flex; align-items: center; gap: 2rem; }
.marke { display: block; flex: none; line-height: 0; }
.marke img { height: 42px; width: auto; }
@media (max-width: 520px) { .marke img { height: 34px; } }
.nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav a {
  position: relative; display: block; padding: .5rem 0;
  font-size: var(--t-s); font-weight: 500; text-decoration: none; color: rgba(250,251,249,.86);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--papier); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .15rem; height: 1px;
  background: var(--champagner); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.portal-link {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1rem; border: 1px solid rgba(199,173,130,.6); border-radius: var(--radius);
  font-size: var(--t-s); font-weight: 600; text-decoration: none; color: var(--papier);
  transition: background-color .25s, color .25s;
}
.portal-link svg { width: 15px; height: 15px; }
.portal-link:hover { background: var(--champagner); color: var(--see); border-color: var(--champagner); }
.menu-knopf {
  display: none; margin-left: auto; width: 46px; height: 46px; border: 0; background: none; cursor: pointer; color: inherit;
  position: relative;
}
.menu-knopf span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.menu-knopf span:nth-child(1) { top: 17px; }
.menu-knopf span:nth-child(2) { top: 23px; }
.menu-knopf span:nth-child(3) { top: 29px; right: 20px; }
.menu-offen .menu-knopf span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-offen .menu-knopf span:nth-child(2) { opacity: 0; }
.menu-offen .menu-knopf span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); right: 11px; }

@media (max-width: 1080px) {
  .kopf .nav, .kopf .portal-link { display: none; }
  .menu-knopf { display: block; }
}

/* Mobiles Menü */
.menue {
  position: fixed; inset: 0; z-index: 45; background: var(--see); color: var(--papier);
  padding: calc(var(--kopf) + 2rem) var(--rand) 2rem;
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s .35s;
  overflow-y: auto;
}
.menu-offen .menue { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.menu-offen { overflow: hidden; }
.menu-offen .kopf { background: var(--see); }
.menue ul { list-style: none; margin: 0; padding: 0; }
.menue li a {
  display: block; padding: .55rem 0; font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.15; text-decoration: none;
}
.menue li a[aria-current="page"] { color: var(--champagner); }
.menue__fuss { margin-top: auto; display: grid; gap: 1rem; font-size: var(--t-s); color: rgba(250,251,249,.7); }

/* ——— Hero mit Video ——— */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  color: var(--papier); background: var(--see) center/cover no-repeat;
  display: flex; align-items: flex-end; overflow: hidden; isolation: isolate;
}
@supports (min-height: 100svh) { .hero { min-height: 100svh; } }
.hero__video, .hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero__video { opacity: 0; transition: opacity 1.6s ease; }
.hero__video.laeuft { opacity: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,29,43,.55) 0%, rgba(11,29,43,0) 22%),
    linear-gradient(8deg, rgba(11,29,43,.92) 6%, rgba(11,29,43,.55) 34%, rgba(11,29,43,0) 64%);
}
.hero__inhalt { width: 100%; padding-bottom: clamp(2.5rem, 7vh, 5.5rem); }
.hero__titel { font-weight: 300; font-size: clamp(2.9rem, 1rem + 6.4vw, 7rem); }
.hero__titel .zeile { overflow: hidden; padding-bottom: .06em; }
.hero__titel .zeile > span { display: block; }
.hero__text { margin-top: 1.8rem; max-width: 34rem; font-size: var(--t-l); line-height: 1.5; color: rgba(250,251,249,.88); }
.hero__aktionen { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__fuss {
  margin-top: clamp(2.5rem, 6vh, 4.5rem); padding-top: 1.2rem;
  border-top: 1px solid rgba(229,232,228,.22);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: var(--t-xs); color: rgba(250,251,249,.72);
}
.hero__fuss p { margin: 0; }
.video-schalter {
  display: inline-flex; align-items: center; gap: .55rem; background: none; border: 0; padding: .4rem 0;
  color: inherit; font-size: var(--t-xs); cursor: pointer;
}
.video-schalter:hover { color: var(--papier); }
.video-schalter svg { width: 14px; height: 14px; }

/* Einmalige, orchestrierte Eröffnung */
.js .hero__titel .zeile > span { transform: translateY(105%); }
.js .hero__text, .js .hero__aktionen, .js .hero__fuss { opacity: 0; transform: translateY(12px); }
.bereit .hero__titel .zeile > span { transform: none; transition: transform 1.3s var(--ease); }
.bereit .hero__titel .zeile:nth-child(2) > span { transition-delay: .14s; }
.bereit .hero__text, .bereit .hero__aktionen, .bereit .hero__fuss { opacity: 1; transform: none; transition: opacity 1s ease .55s, transform 1s var(--ease) .55s; }
.bereit .hero__aktionen { transition-delay: .7s; }
.bereit .hero__fuss { transition-delay: .9s; }

/* ——— Unterseiten-Kopf ——— */
.seitenkopf {
  position: relative; background: var(--see); color: var(--papier);
  padding: calc(var(--kopf) + clamp(3.5rem, 9vw, 7.5rem)) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden; isolation: isolate;
}
.bildgrund { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.seitenkopf--bild .bildgrund { object-position: right center; }
.seitenkopf--bild::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--see) 30%, rgba(11,29,43,.74) 60%, rgba(11,29,43,.3));
}
@media (max-width: 860px) { .seitenkopf--bild::before { background: linear-gradient(0deg, var(--see) 35%, rgba(11,29,43,.65)); } }
.seitenkopf__pfad { font-size: var(--t-xs); color: rgba(250,251,249,.6); margin-bottom: 2.2rem; }
.seitenkopf__pfad a { text-decoration: none; }
.seitenkopf__pfad a:hover { color: var(--papier); }
.seitenkopf h1 { max-width: 16ch; }
.seitenkopf .lead { margin-top: 1.6rem; color: rgba(250,251,249,.82); }

/* Horizontlinie — wiederkehrendes Motiv */
.horizont {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, var(--champagner) 0, var(--champagner) 72px, var(--linie) 72px);
}
.dunkel .horizont { background: linear-gradient(90deg, var(--champagner) 0, var(--champagner) 72px, var(--linie-dunkel) 72px); }

/* ——— Abschnitte ——— */
.abschnitt { padding: clamp(4.5rem, 10vw, 9rem) 0; }
.abschnitt--nebel { background: var(--nebel); }
.abschnitt--hell { background: var(--nebel-hell); }
.dunkel { background: var(--see); color: var(--papier); }
.dunkel .gedaempft { color: rgba(250,251,249,.66); }

.raster { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1rem, 2.4vw, 2.5rem); }
.sp-2-12 { grid-column: 2 / -1; }
.sp-1-6 { grid-column: 1 / 7; }
.sp-7-12 { grid-column: 7 / -1; }
.sp-1-5 { grid-column: 1 / 6; }
.sp-6-12 { grid-column: 6 / -1; }
.sp-1-4 { grid-column: 1 / 5; }
.sp-5-12 { grid-column: 5 / -1; }
.sp-8-12 { grid-column: 8 / -1; }
.sp-1-7 { grid-column: 1 / 8; }
@media (max-width: 860px) {
  .raster > * { grid-column: 1 / -1 !important; }
}

.kopfzeile-abschnitt { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.kopfzeile-abschnitt h2 { max-width: 18ch; }

/* Einleitung Startseite */
.statement { font-family: var(--serif); font-optical-sizing: auto; font-weight: 300; font-size: var(--t-2xl); line-height: 1.18; letter-spacing: -0.015em; max-width: 24ch; }
.statement-neben { margin-top: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem 3rem; }
.fakt { border-top: 1px solid var(--linie); padding-top: 1rem; }
.fakt dt { font-size: var(--t-xs); color: var(--schiefer); margin-bottom: .3rem; }
.fakt dd { margin: 0; font-family: var(--serif); font-size: var(--t-l); }

/* ——— Geschäftsfelder-Index ——— */
.index { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--linie); position: relative; }
.dunkel .index { border-color: var(--linie-dunkel); }
.index__zeile { border-bottom: 1px solid var(--linie); }
.dunkel .index__zeile { border-color: var(--linie-dunkel); }
.index__link {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto; align-items: center; gap: 2rem;
  padding: clamp(1.3rem, 2.4vw, 2rem) 0; text-decoration: none; position: relative;
}
.index__titel { font-family: var(--serif); font-optical-sizing: auto; font-weight: 300; font-size: var(--t-xl); line-height: 1.15; letter-spacing: -0.01em; transition: transform .45s var(--ease), color .3s; }
.index__text { font-size: var(--t-s); color: var(--schiefer); max-width: 40ch; }
.dunkel .index__text { color: rgba(250,251,249,.62); }
.index__pfeil { width: 44px; height: 44px; border: 1px solid var(--linie); border-radius: 50%; display: grid; place-items: center; transition: background-color .3s, border-color .3s, color .3s; }
.dunkel .index__pfeil { border-color: var(--linie-dunkel); }
.index__pfeil svg { width: 16px; height: 16px; }
.index__link:hover .index__titel, .index__link:focus-visible .index__titel { transform: translateX(.6rem); }
.index__link:hover .index__pfeil, .index__link:focus-visible .index__pfeil { background: var(--champagner); border-color: var(--champagner); color: var(--see); }
.index__bild { display: none; }
.index-vorschau {
  position: fixed; left: 0; top: 0; z-index: 30; width: 300px; aspect-ratio: 4 / 3; pointer-events: none;
  overflow: hidden; border-radius: var(--radius); opacity: 0; transform: scale(.94);
  transition: opacity .3s ease, transform .4s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(11,29,43,.5);
}
.index-vorschau.sichtbar { opacity: 1; transform: scale(1); }
.index-vorschau img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px), (hover: none) {
  .index__link { grid-template-columns: 88px minmax(0,1fr); gap: .5rem 1.1rem; align-items: start; }
  .index__bild { display: block; grid-row: span 2; width: 88px; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
  .index__pfeil { display: none; }
  .index-vorschau { display: none; }
}

/* ——— Ansatz / Ablauf ——— */
.ablauf { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: schritt; position: relative; }
.ablauf::before {
  content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 1px; background: var(--linie-dunkel);
}
.ablauf li { position: relative; padding: 3rem clamp(1rem, 3vw, 2.5rem) 0 0; counter-increment: schritt; }
.ablauf li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 15px; height: 15px; border-radius: 50%;
  background: var(--see); border: 1px solid var(--champagner);
}
.ablauf li:first-child::before { background: var(--champagner); }
.ablauf__nr { font-family: var(--serif); font-style: italic; color: var(--champagner); font-size: var(--t-m); }
.ablauf__nr::before { content: counter(schritt) ". "; }
.ablauf h3 { font-family: var(--serif); font-size: var(--t-xl); font-weight: 300; margin: .4rem 0 .9rem; }
.ablauf p { color: rgba(250,251,249,.72); max-width: 34ch; }
.abschnitt:not(.dunkel) .ablauf::before { background: var(--linie); }
.abschnitt:not(.dunkel) .ablauf li::before { background: var(--papier); }
.abschnitt:not(.dunkel) .ablauf li:first-child::before { background: var(--champagner); }
.abschnitt:not(.dunkel) .ablauf p { color: var(--schiefer); }
@media (max-width: 760px) {
  .ablauf { grid-template-columns: 1fr; }
  .ablauf::before { left: 7px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .ablauf li { padding: 0 0 2.5rem 2.6rem; }
}

/* Bildband */
.bildband { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.bildband__bild { position: relative; overflow: hidden; }
.bildband__bild img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bildband__text { padding: clamp(3rem, 7vw, 7rem) var(--rand); display: flex; flex-direction: column; justify-content: center; }
.bildband__text > * { max-width: 34rem; }
@media (max-width: 860px) { .bildband { grid-template-columns: 1fr; } .bildband__bild { min-height: 320px; } }

.bildvermerk { position: absolute; right: .8rem; bottom: .6rem; font-size: .6875rem; color: rgba(255,255,255,.75); text-shadow: 0 1px 2px rgba(0,0,0,.5); }

/* ——— Team ——— */
.team { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(208px, 1fr)); gap: 0 clamp(1.25rem, 2vw, 2rem); }
.person { display: grid; grid-template-columns: 56px 1fr; gap: 1.1rem; align-items: center; padding: 1.4rem 0; border-top: 1px solid var(--linie); }
.dunkel .person { border-color: var(--linie-dunkel); }
.person__zeichen {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: .04em;
  background: var(--see); color: var(--champagner);
}
.dunkel .person__zeichen { background: var(--see-3); }
.person__name { font-family: var(--serif); font-size: var(--t-l); line-height: 1.25; }
.person__rolle { font-size: var(--t-s); color: var(--schiefer); }
.dunkel .person__rolle { color: rgba(250,251,249,.62); }
.person__mail { font-size: var(--t-xs); color: var(--schiefer); text-decoration: none; }
.person__mail:hover { color: var(--champagner-tief); text-decoration: underline; }
.teamgruppe + .teamgruppe { margin-top: clamp(3rem, 6vw, 5rem); }
.teamgruppe h2 { margin-bottom: 1.5rem; }

/* Werte */
.werte { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.wert h3 { font-family: var(--serif); font-size: var(--t-xl); font-weight: 300; margin-bottom: .7rem; }
.wert { padding-top: 1.4rem; border-top: 1px solid var(--linie); }
.dunkel .wert { border-color: var(--linie-dunkel); }
@media (max-width: 760px) { .werte { grid-template-columns: 1fr; } }

/* Portal-Hinweis */
.portal-hinweis { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.portal-karte {
  background: var(--see); color: var(--papier); border-radius: 6px; padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 40px 80px -40px rgba(11,29,43,.55); position: relative; overflow: hidden;
}
.portal-karte::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--champagner), transparent); }
.portal-karte__kopf { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--linie-dunkel); font-size: var(--t-xs); color: rgba(250,251,249,.6); }
.portal-karte__kopf img { height: 26px; width: auto; }
.portal-karte ul { list-style: none; margin: 0; padding: 0; }
.portal-karte li { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--linie-dunkel); font-size: var(--t-s); }
.portal-karte li:last-child { border-bottom: 0; padding-bottom: 0; }
.portal-karte li span:last-child { color: rgba(250,251,249,.55); white-space: nowrap; }
.merkmale { list-style: none; margin: 1.8rem 0 2.2rem; padding: 0; display: grid; gap: .85rem; }
.merkmale li { display: grid; grid-template-columns: 22px 1fr; gap: .8rem; align-items: start; }
.merkmale svg { width: 18px; height: 18px; margin-top: .25rem; color: var(--champagner-tief); }
@media (max-width: 860px) { .portal-hinweis { grid-template-columns: 1fr; } }

/* ——— Abschluss in der Dämmerung ——— */
.daemmerung {
  position: relative; color: var(--papier); overflow: hidden; isolation: isolate;
  padding: clamp(6rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 7rem);
}
.daemmerung .bildgrund { object-position: center 45%; }
.daemmerung::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,29,43,.15), rgba(11,29,43,.3) 40%, rgba(11,29,43,.9));
}
.daemmerung h2 { max-width: 14ch; }
.daemmerung .lead { margin-top: 1.4rem; color: rgba(250,251,249,.85); }
.daemmerung__aktionen { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }
.daemmerung__aktionen a:not(.knopf) { color: var(--papier); font-size: var(--t-l); font-family: var(--serif); }

/* ——— Fusszeile ——— */
.fuss { background: var(--see); color: rgba(250,251,249,.72); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; font-size: var(--t-s); }
.fuss__oben { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--linie-dunkel); }
.fuss__marke img { height: 30px; width: auto; margin-bottom: 1.4rem; }
.fuss h2 { font-family: var(--sans); font-size: var(--t-xs); font-weight: 600; color: var(--champagner); margin-bottom: 1rem; letter-spacing: .02em; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.fuss a { text-decoration: none; }
.fuss a:hover { color: var(--papier); text-decoration: underline; }
.fuss address { font-style: normal; line-height: 1.7; }
.fuss__unten { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: var(--t-xs); color: rgba(250,251,249,.5); }
@media (max-width: 900px) { .fuss__oben { grid-template-columns: 1fr 1fr; } .fuss__marke { grid-column: 1 / -1; } }
@media (max-width: 520px) { .fuss__oben { grid-template-columns: 1fr; } }

/* ——— Geschäftsfeld-Detail ——— */
.feld-kopf { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.feld-kopf__bild { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.3; max-width: 470px; justify-self: end; width: 100%; }
.feld-kopf__bild img { width: 100%; height: 100%; object-fit: cover; }
.feld-kopf .zeile { display: block; }
.stichworte { margin-top: 1.4rem; font-size: var(--t-s); color: var(--champagner); }
@media (max-width: 860px) { .feld-kopf { grid-template-columns: 1fr; } .feld-kopf__bild { justify-self: start; } }

.schwerpunkte { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.schwerpunkt { border-top: 1px solid var(--linie); padding-top: 1.4rem; }
.schwerpunkt h3 { font-family: var(--serif); font-size: var(--t-l); font-weight: 400; margin-bottom: .7rem; }
.schwerpunkt p { color: var(--schiefer); font-size: var(--t-s); }
@media (max-width: 860px) { .schwerpunkte { grid-template-columns: 1fr; } }

.pruefliste { list-style: none; margin: 0; padding: 0; counter-reset: pl; }
.pruefliste li { display: grid; grid-template-columns: 28px 1fr; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--linie-dunkel); }
.pruefliste li::before { content: ""; width: 18px; height: 18px; margin-top: .2rem; border: 1px solid var(--champagner); border-radius: 50%; background: radial-gradient(circle, var(--champagner) 3px, transparent 3.5px); }
.abschnitt:not(.dunkel) .pruefliste li { border-color: var(--linie); }

.hinweis { font-size: var(--t-xs); color: var(--schiefer); border-left: 1px solid var(--champagner); padding-left: 1rem; max-width: 70ch; }
.dunkel .hinweis { color: rgba(250,251,249,.55); }

.nachbarn { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--linie); }
.nachbarn a { padding: 2rem 0; text-decoration: none; display: grid; gap: .3rem; }
.nachbarn a + a { text-align: right; border-left: 1px solid var(--linie); padding-left: 2rem; }
.nachbarn span:first-child { font-size: var(--t-xs); color: var(--schiefer); }
.nachbarn span:last-child { font-family: var(--serif); font-size: var(--t-xl); font-weight: 300; }
.nachbarn a:hover span:last-child { color: var(--champagner-tief); }

/* ——— Leitfäden (Akkordeon) ——— */
.leitfaden { border-top: 1px solid var(--linie); }
.leitfaden:last-child { border-bottom: 1px solid var(--linie); }
.leitfaden summary {
  list-style: none; cursor: pointer; padding: 1.6rem 0; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
}
.leitfaden summary::-webkit-details-marker { display: none; }
.leitfaden summary h3 { font-family: var(--serif); font-size: var(--t-xl); font-weight: 300; }
.leitfaden summary p { color: var(--schiefer); font-size: var(--t-s); margin-top: .3rem; }
.leitfaden__zeichen { width: 40px; height: 40px; border: 1px solid var(--linie); border-radius: 50%; position: relative; transition: transform .35s var(--ease), background-color .3s; }
.leitfaden__zeichen::before, .leitfaden__zeichen::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1px; background: currentColor; transform: translate(-50%, -50%); }
.leitfaden__zeichen::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .35s var(--ease); }
.leitfaden[open] .leitfaden__zeichen::after { transform: translate(-50%, -50%) rotate(0); }
.leitfaden[open] .leitfaden__zeichen { background: var(--champagner); border-color: var(--champagner); }
.leitfaden__inhalt { padding: 0 0 2.5rem; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); }
.leitfaden__inhalt h4 { font-weight: 600; font-size: var(--t-m); margin: 1.4rem 0 .4rem; }
.leitfaden__inhalt h4:first-child { margin-top: 0; }
.leitfaden__inhalt p { color: var(--schiefer); }
.leitfaden__liste { background: var(--papier); padding: 1.6rem; border-radius: var(--radius); align-self: start; }
.leitfaden__liste h4 { margin-top: 0; }
.leitfaden__liste ul { padding-left: 1.1rem; margin: 0 0 1rem; }
.leitfaden__liste li { margin: .35rem 0; }
@media (max-width: 860px) { .leitfaden__inhalt { grid-template-columns: 1fr; } }

/* ——— Formulare ——— */
.formular { display: grid; gap: 1.3rem; }
.feld { display: grid; gap: .45rem; }
.feld label, .feld legend { font-size: var(--t-s); font-weight: 600; }
.feld .opt { font-weight: 400; color: var(--schiefer); }
.eingabe {
  width: 100%; min-height: 3.1rem; padding: .8rem 1rem; background: var(--papier);
  border: 1px solid var(--linie); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s;
}
textarea.eingabe { min-height: 9rem; resize: vertical; line-height: 1.55; }
.eingabe:hover { border-color: #9fa9a4; }
.eingabe:focus { outline: none; border-color: var(--see); box-shadow: 0 0 0 3px rgba(199,173,130,.35); }
.eingabe[aria-invalid="true"] { border-color: var(--fehler); }
.feldfehler { font-size: var(--t-xs); color: var(--fehler); }
.feldhilfe { font-size: var(--t-xs); color: var(--schiefer); }
.zwei { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 620px) { .zwei { grid-template-columns: 1fr; } }
.auswahl { display: flex; flex-wrap: wrap; gap: .5rem; border: 0; padding: 0; margin: 0; }
.auswahl legend { margin-bottom: .6rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span { display: inline-block; padding: .6rem 1rem; border: 1px solid var(--linie); border-radius: 999px; font-size: var(--t-s); background: var(--papier); transition: all .2s; }
.chip input:checked + span { background: var(--see); color: var(--papier); border-color: var(--see); }
.chip input:focus-visible + span { outline: 2px solid var(--champagner); outline-offset: 2px; }
.haken { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; font-size: var(--t-s); align-items: start; }
.haken input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--see); }
.falle { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.meldung { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: var(--t-s); border-left: 3px solid; }
.meldung--ok { background: #e7f0eb; border-color: var(--erfolg); color: #1e4a3a; }
.meldung--fehler { background: #f6e9e7; border-color: var(--fehler); color: #6e2119; }
.meldung--info { background: var(--nebel-hell); border-color: var(--champagner); }

.kontakt-raster { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); }
.kontakt-daten { display: grid; gap: 2rem; align-content: start; }
.kontakt-daten h2 { font-family: var(--sans); font-size: var(--t-xs); font-weight: 600; color: var(--champagner-tief); margin-bottom: .5rem; }
.kontakt-daten address { font-style: normal; font-family: var(--serif); font-size: var(--t-l); line-height: 1.45; }
.kontakt-daten a { font-family: var(--serif); font-size: var(--t-l); }
.karte-platz { aspect-ratio: 4 / 3; background: var(--nebel); border-radius: var(--radius); display: grid; place-items: center; text-align: center; padding: 1.5rem; position: relative; overflow: hidden; }
.karte-platz iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.karte-platz p { font-size: var(--t-xs); color: var(--schiefer); max-width: 32ch; margin: .8rem auto 1rem; }
@media (max-width: 900px) { .kontakt-raster { grid-template-columns: 1fr; } }

/* Rechtstexte */
.rechtstext { max-width: 70ch; }
.rechtstext h2 { font-family: var(--serif); font-size: var(--t-xl); font-weight: 400; margin: 2.8rem 0 .8rem; }
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext dl { display: grid; grid-template-columns: max-content 1fr; gap: .4rem 1.5rem; }
.rechtstext dt { color: var(--schiefer); }
.rechtstext dd { margin: 0; }

/* Allgemeine Einblendung beim Scrollen: bewusst nur für Überschriften grosser Abschnitte */
.js [data-einblenden] { opacity: 0; transform: translateY(18px); transition: opacity 1s ease, transform 1s var(--ease); }
.js [data-einblenden].sichtbar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .hero__titel .zeile > span, .js .hero__text, .js .hero__aktionen, .js .hero__fuss, .js [data-einblenden] { transform: none; opacity: 1; }
}

@media print {
  .kopf, .menue, .fuss, .hero__video, .daemmerung, .video-schalter { display: none !important; }
  body { background: #fff; }
}
