/* =====================================================================
   aviomotion.de — styles-v2.css  (Entwurf v2 — verfeinert)
   Luftfahrt-Editorial: nummerierte Module, großformatige Bilder,
   technische Detail-Elemente (Kursskala, HUD-Rahmen, Datenlabels).
   Farbwelt: Tiefes Navy + warmes Horizont-Gold — zivil, nicht militärisch.
   Fonts: Montserrat (Display) · Source Serif 4 (Fließtext) · Jost (Marke + Daten)
   ===================================================================== */

:root {
  --paper:      #f7f5f0;
  --panel:      #ffffff;
  --text:       #1f242a;
  --muted:      #6b7480;
  --line:       #e3ddd0;
  --line-soft:  #efe9dd;
  --paper-soft: #f1ede4;
  --navy:       #233245;
  --navy-deep:  #0a141e;
  --gold:       #cb9454;
  --gold-lite:  #e3bd83;
  --gold-dark:  #96652b;
  --shadow-sm:  0 1px 2px rgba(15,29,44,.05);
  --radius:     2px;
  --container:      1220px;
  --container-wide: 1480px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --font-head:  'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:  'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-brand: 'Jost', var(--font-head);
  --font-data:  'Jost', var(--font-head);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy); }
h1, h2, h3, h4 {
  font-family: var(--font-head); color: var(--navy);
  line-height: 1.05; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.015em;
}
p { margin: 0 0 1.25em; }
::selection { background: var(--gold); color: #fff; }

.container      { max-width: var(--container);      margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 28px; }

/* ---------- Micro-Labels / Datenlabels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-data); font-size: .74rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-dark);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .75; }
.eyebrow.on-dark { color: var(--gold-lite); }
.hero-v2 .eyebrow::before { display: none; }

.data-label {
  font-family: var(--font-data); font-size: .68rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Header ---------- */
.site-header {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 1000;
  background: rgba(247,245,240,.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 28px;
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--font-brand); font-weight: 700; font-size: 1.42rem;
  letter-spacing: .16em; text-transform: uppercase; display: inline-flex; align-items: center;
}
.brand-mark { width: 36px; height: 36px; margin-right: 10px; flex: none; }
.site-footer .brand-mark { filter: brightness(0) invert(1); opacity: .92; }
.brand .name   { color: var(--navy); }
.brand .suffix { color: var(--gold-dark); font-size: .56em; letter-spacing: .24em; margin-left: .5em; font-weight: 600; }
.brand:hover   { opacity: .85; }

.nav-toggle { display: none; background: none; border: none; color: var(--navy); cursor: pointer; padding: 6px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  position: relative; color: var(--navy);
  font-family: var(--font-data); font-size: .76rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 16px; opacity: .68; transition: opacity .25s var(--ease), color .25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { opacity: 1; color: var(--navy); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.nav-login {
  margin-left: 10px; padding: 11px 22px; opacity: 1; color: var(--navy);
  border: 1px solid rgba(20,38,58,.28); border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.main-nav a.nav-login::after { display: none; }
.main-nav a.nav-login:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; padding: 16px 28px 28px; gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line-soft); opacity: 1; }
  .main-nav a::after { display: none; }
  .main-nav a.nav-login { margin: 18px 0 0; text-align: center; justify-content: center; display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-data); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 30px; border-radius: var(--radius); border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn .arr { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-ghost { border-color: rgba(20,38,58,.3); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Kursskala (Heading tape) ---------- */
.tape {
  display: flex; align-items: stretch; justify-content: space-between;
  height: 30px; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.tape span {
  position: relative; flex: 1; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-data); font-size: .62rem; font-weight: 500;
  letter-spacing: .22em; color: rgba(255,255,255,.62);
}
.tape span::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.6);
}
.tape.on-light { border-top-color: var(--line); border-bottom-color: var(--line-soft); }
.tape.on-light span { color: var(--muted); }
.tape.on-light span::before { background: var(--gold); opacity: .5; }
/* Auf schmalen Schirmen nur jede zweite bzw. dritte Gradzahl zeigen,
   damit die Skala nicht gestaucht wirkt. */
@media (max-width: 1100px) { .tape span:nth-child(even) { display: none; } }
@media (max-width: 560px)  { .tape span:nth-child(3n+2), .tape span:nth-child(3n+3) { display: none; } }

/* ---------- Hero ---------- */
.hero-v2 {
  padding: 0; position: relative;
  min-height: clamp(480px, 70vh, 760px);
  display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--navy-deep);
}
.hero-v2-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 74%;
  filter: saturate(.92) contrast(1.04);
  animation: heroDrift 26s var(--ease) forwards;
}
@keyframes heroDrift { from { transform: scale(1.07); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-v2-bg { animation: none; } }
.hero-v2::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(10,20,30,.9) 0%, rgba(10,20,30,.5) 42%, rgba(10,20,30,.1) 66%, rgba(10,20,30,.35) 100%),
    linear-gradient(90deg, rgba(10,20,30,.42) 0%, transparent 46%);
}
.hero-v2-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container-wide); margin: 0 auto; padding: 48px 28px 44px; color: #fff;
}
/* HUD-Eckklammern */
.hero-frame { position: absolute; inset: 34px; z-index: 2; pointer-events: none; }
.hero-frame span { position: absolute; width: 24px; height: 24px; opacity: .5; }
.hero-frame span::before, .hero-frame span::after { content: ""; position: absolute; background: #fff; }
.hero-frame span::before { width: 100%; height: 1px; }
.hero-frame span::after  { width: 1px; height: 100%; }
.hero-frame .tl { top: 0; left: 0; }
.hero-frame .tr { top: 0; right: 0; }
.hero-frame .tr::after { right: 0; }
.hero-frame .bl { bottom: 0; left: 0; }
.hero-frame .bl::before { bottom: 0; }
.hero-frame .br { bottom: 0; right: 0; }
.hero-frame .br::before { bottom: 0; }
.hero-frame .br::after  { right: 0; }
/* Auf schmalen Schirmen beruehren die Klammern die Schrift — dort weglassen */
@media (max-width: 900px) { .hero-frame { display: none; } }

.hero-v2-content h1 {
  color: #fff; font-size: clamp(2.7rem, 7.4vw, 6rem); font-weight: 800;
  letter-spacing: -.025em; margin-bottom: .3em; text-wrap: balance;
}
.hero-v2-content h1 em { font-style: normal; color: var(--gold-lite); }
.hero-v2-content .lead {
  color: #d8e0e7; font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 620px; margin-bottom: 2em;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  position: relative; z-index: 2; display: flex; gap: 28px; flex-wrap: wrap;
  max-width: var(--container-wide); margin: 0 auto; width: 100%;
  padding: 0 28px 20px; color: rgba(255,255,255,.55);
  font-family: var(--font-data); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
}
.hero-tape { position: relative; z-index: 2; }

/* ---------- Kompassrose (Hero) ---------- */
.hero-compass {
  position: absolute; z-index: 1; pointer-events: none;
  right: max(-14vw, -220px); top: 50%; transform: translateY(-54%);
  width: min(56vw, 860px); height: auto; opacity: .32;
}
@media (max-width: 760px) { .hero-compass { width: 88vw; right: -30vw; opacity: .22; } }

.statement-mark { width: 56px; height: 56px; margin-bottom: 22px; opacity: .85; }

/* ---------- Kennzahlen ---------- */
.stats { padding: 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 46px 30px; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--font-head); font-size: clamp(2.1rem, 3.4vw, 3rem); font-weight: 800;
  color: var(--navy); line-height: 1; letter-spacing: -.03em; display: block; margin-bottom: 12px;
}
.stat .num sup { font-size: .42em; color: var(--gold); vertical-align: super; margin-left: 2px; }
.stat .cap { font-family: var(--font-data); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 34px 22px; border-top: 1px solid var(--line-soft); }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
}

/* ---------- Statement ---------- */
.statement { padding: clamp(80px, 11vw, 140px) 0; background: var(--paper); }
.statement .container { max-width: 960px; }
.statement p {
  font-family: var(--font-body); font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  line-height: 1.42; color: var(--navy); margin: 0; text-wrap: balance;
}
.statement p em { font-style: italic; color: var(--gold-dark); }

/* ---------- Nummerierte Module ---------- */
.modules { padding: 0; background: var(--panel); border-top: 1px solid var(--line); }
.modules-head { padding: 74px 0 8px; }
.module { display: flex; align-items: stretch; border-top: 1px solid var(--line-soft); }
.module:first-of-type { border-top: none; }
.module-media { flex: 0 0 50%; position: relative; overflow: hidden; min-height: 480px; background: var(--navy-deep); }
.module-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.88) contrast(1.03);
  transition: transform .9s var(--ease), filter .9s var(--ease);
}
.module:hover .module-media img { transform: scale(1.045); filter: saturate(1) contrast(1.05); }
.module-tag {
  position: absolute; z-index: 2; left: 24px; bottom: 22px;
  font-family: var(--font-data); font-size: .64rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: #fff;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.38); border-radius: var(--radius);
  background: rgba(10,20,30,.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.module-copy { flex: 1; display: flex; align-items: center; padding: clamp(48px, 6vw, 92px); position: relative; }
.module-num {
  position: absolute; top: 30px; left: clamp(30px, 4vw, 60px);
  font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1; letter-spacing: -.05em;
  color: rgba(20,38,58,.07);
  pointer-events: none; user-select: none; z-index: 0;
}
@supports (-webkit-text-stroke: 1px #000) {
  .module-num { color: transparent; -webkit-text-stroke: 1px rgba(20,38,58,.17); }
}
.module-copy-inner { position: relative; z-index: 1; max-width: 480px; }
.module-copy-inner h3 { font-size: clamp(1.55rem, 2.5vw, 2.15rem); margin-bottom: .55em; }
.module-copy-inner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6em; }
.card-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-data); font-size: .76rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--navy);
  padding-bottom: 6px; border-bottom: 1px solid var(--gold);
}
.card-link .arr { transition: transform .3s var(--ease); }
.card-link:hover { color: var(--gold-dark); }
.card-link:hover .arr { transform: translateX(5px); }
.module.reverse { flex-direction: row-reverse; }
.module.reverse .module-num { left: auto; right: clamp(30px, 4vw, 60px); }

@media (max-width: 940px) {
  .module, .module.reverse { flex-direction: column; }
  .module-media { min-height: 320px; flex-basis: auto; }
  .module-copy { padding: 54px 28px 60px; }
  .module-num, .module.reverse .module-num { left: 28px; right: auto; top: 18px; }
}

/* ---------- Profil-Band (dunkel) ---------- */
.profil-band { position: relative; background: var(--navy-deep); color: #cdd7df; padding: clamp(84px, 10vw, 130px) 0; overflow: hidden; }
.profil-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 82% 18%, rgba(198,138,66,.16), transparent 58%);
}
.profil-band .container { position: relative; z-index: 1; }
.profil-band .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.profil-band h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); }
.profil-band .lead { font-size: 1.18rem; color: #e6ebef; }
.profil-band p { color: #a9b6c0; }
.profil-card-v2 { border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.profil-card-v2 h4 {
  font-family: var(--font-data); color: var(--gold-lite); font-size: .7rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; margin: 0; padding: 24px 30px 16px;
}
.profil-card-v2 ul { list-style: none; margin: 0; padding: 0 30px 26px; }
.profil-card-v2 li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 15px 0; border-top: 1px solid rgba(255,255,255,.09);
}
.profil-card-v2 li strong { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: .01em; }
.profil-card-v2 li span { font-family: var(--font-data); font-size: .82rem; color: #8d9ba6; text-align: right; letter-spacing: .04em; }
@media (max-width: 900px) { .profil-band .split { grid-template-columns: 1fr; } }

/* ---------- Bild-Trenner ---------- */
.divider-band { position: relative; height: clamp(280px, 38vw, 460px); overflow: hidden; background: var(--navy-deep); }
.divider-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); }
.divider-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,30,.28), rgba(10,20,30,.12)); }
.divider-quote {
  position: absolute; z-index: 2; inset: auto 0 0 0; padding: 0 28px 34px;
  max-width: var(--container-wide); margin: 0 auto;
  font-family: var(--font-data); font-size: .7rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  text-shadow: 0 1px 14px rgba(10,20,30,.65);
}

/* ---------- CTA ---------- */
.cta-v2 { position: relative; padding: clamp(90px, 11vw, 140px) 0; background: var(--navy); overflow: hidden; }
.cta-v2::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 8%, rgba(198,138,66,.22), transparent 62%); }
.cta-v2 .container { position: relative; z-index: 1; max-width: 820px; }
.cta-v2 h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); text-wrap: balance; }
.cta-v2 p { color: #bcc7d0; font-size: 1.12rem; margin-bottom: 2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #93a0a9; padding: 78px 0 30px; }
.site-footer .brand .name   { color: #fff; }
.site-footer .brand .suffix { color: var(--gold-lite); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-tag { color: #85929c; font-size: .95rem; margin-top: 18px; max-width: 290px; }
.site-footer h4 { font-family: var(--font-data); color: var(--gold-lite); font-size: .68rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #aeb9c1; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.copyright { padding-top: 26px; font-family: var(--font-data); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #66727a; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Reveal ---------- */
/* Einblenden nur, wenn JavaScript nachweislich läuft (html.js) —
   sonst bleibt alles sofort sichtbar (kein leerer Bildschirm ohne JS). */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Kontaktformular (Entwurfs-Design) ---------- */
.contact-form { margin: 30px 0 8px; max-width: 560px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-family: var(--font-data); font-size: .7rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; background: var(--panel); color: var(--text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,138,66,.16);
}
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c68a42' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #b4472f; }
.field-error {
  display: block; margin-top: 8px;
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  color: #a03e28;
}
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-privacy { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 6px 0 22px; }
.contact-form button.btn { cursor: pointer; }
.form-note { border-left: 2px solid var(--gold); background: var(--panel); padding: 18px 22px; margin: 26px 0; font-size: .96rem; }
.form-note strong { display: block; font-family: var(--font-head); color: var(--navy); margin-bottom: 5px; }
.form-note-ok { border-left-color: #3f7a4f; }
.form-note-error { border-left-color: #b4472f; color: #7a3421; }
.form-debug { background: var(--navy-deep); color: #cfe0ea; padding: 18px; font-size: .78rem; line-height: 1.5; overflow-x: auto; white-space: pre-wrap; word-break: break-word; }
.form-alt { font-size: .92rem; color: var(--muted); margin-top: 20px; }

/* Einwilligung */
.form-consent {
  display: flex; align-items: flex-start; gap: 13px;
  margin: 24px 0 6px; padding: 18px 20px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
}
.form-consent input[type="checkbox"] {
  flex: 0 0 auto; width: 18px; height: 18px; margin: 3px 0 0;
  accent-color: var(--gold); cursor: pointer;
}
.form-consent label {
  font-family: var(--font-body); font-size: .9rem; line-height: 1.55;
  color: var(--muted); text-transform: none; letter-spacing: 0; margin: 0; cursor: pointer;
}
.form-consent.has-error { border-color: #b4472f; }
.field-error-consent { margin: 8px 0 0; }

/* =====================================================================
   TEIL 2 — Bausteine der Unterseiten
   Gleiche Formensprache wie oben, angewandt auf Seiten-Hero, Split-
   Abschnitte, Panels, Karten, Rechtstexte.
   ===================================================================== */

/* ---------- Abschnitts-Grundraster ---------- */
section { padding: clamp(72px, 9vw, 118px) 0; }
section.no-pad { padding: 0; }

.lead { font-size: clamp(1.08rem, 1.5vw, 1.24rem); color: var(--text); line-height: 1.6; }
.profil-band .lead { color: #e6ebef; }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.section-head .lead { color: var(--muted); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-hero {
  padding: 0; position: relative; min-height: clamp(380px, 52vh, 560px);
  display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep);
}
.page-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,20,30,.88) 0%, rgba(10,20,30,.45) 52%, rgba(10,20,30,.14) 100%);
}
.page-hero > .container {
  position: relative; z-index: 2; width: 100%; padding-bottom: 56px; color: #fff;
}
.page-hero h1 {
  color: #fff; font-size: clamp(2.2rem, 5.4vw, 4rem); margin-bottom: .15em; text-wrap: balance;
}
.page-hero .eyebrow { color: var(--gold-lite); }
.page-hero .lead { color: #d5dee5; max-width: 620px; }

/* ---------- Split-Abschnitt ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 78px); align-items: center;
}
.split.reverse > *:first-child { order: 2; }
.split-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.split-text p { color: var(--muted); }
.split-text .lead { color: var(--text); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > *:first-child { order: 0; }
}

/* ---------- Bildrahmen ---------- */
.frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy-deep); }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.9); }
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(20,38,58,.1);
}

/* ---------- Bild-Trenner ---------- */
.divider-img {
  width: 100%; height: clamp(260px, 34vw, 420px); object-fit: cover;
  filter: saturate(.9); display: block;
}

/* ---------- Panels (Raster mit 3 Spalten) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 38px); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.panel {
  background: var(--panel); padding: clamp(32px, 3.4vw, 46px);
  position: relative; transition: background .3s var(--ease);
}
.panel:hover { background: #fdfcfa; }
.panel h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); margin-bottom: .6em; }
.panel p { color: var(--muted); font-size: 1rem; margin-bottom: 0; }
.panel .eyebrow { font-size: .68rem; margin-bottom: 14px; }
.panel-num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1;
  letter-spacing: -.04em; color: rgba(20,38,58,.08); pointer-events: none; user-select: none;
}
@supports (-webkit-text-stroke: 1px #000) {
  .panel-num { color: transparent; -webkit-text-stroke: 1px rgba(20,38,58,.2); }
}

/* ---------- Karten ---------- */
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .5s var(--ease);
}
.card:hover { border-color: rgba(198,138,66,.5); transform: translateY(-3px); }
.card-img { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--navy-deep); }
.card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .8s var(--ease); }
.card:hover .card-img img { transform: scale(1.045); }
.card-body { padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.3rem; }
.card-body p { color: var(--muted); font-size: 1rem; flex: 1; }

/* ---------- Profilkarte ---------- */
.profile-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 0;
}
.profile-card h3 {
  font-family: var(--font-data); font-size: .7rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-dark);
  margin: 0; padding: 24px 30px 14px;
}
.profile-card ul { list-style: none; margin: 0; padding: 0 30px 24px; }
.profile-card li {
  padding: 14px 0; border-top: 1px solid var(--line-soft);
  font-size: .95rem; color: var(--muted);
}
.profile-card li:first-child { border-top: none; }
.profile-card li strong {
  display: block; font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px;
}

/* ---------- CTA-Band (Unterseiten) ---------- */
.cta-band { position: relative; background: var(--navy); padding: clamp(80px, 10vw, 130px) 0; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(198,138,66,.2), transparent 62%);
}
.cta-band .container { position: relative; z-index: 1; max-width: 800px; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.9rem); text-wrap: balance; }
.cta-band p { color: #bcc7d0; font-size: 1.08rem; }
.cta-band .eyebrow { color: var(--gold-lite); }

/* ---------- Hinweis-Plakette ---------- */
.note {
  display: inline-block; font-family: var(--font-data); font-size: .66rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--line); color: var(--gold-dark);
  padding: 4px 10px; border-radius: var(--radius); vertical-align: middle;
}
.draft {
  display: inline-block; font-family: var(--font-data); font-size: .5em; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--gold); color: #fff; padding: 5px 11px;
  border-radius: var(--radius); vertical-align: middle; margin-left: 12px;
}

/* ---------- Rechtstexte ---------- */
.legal { padding: 0; }
.legal > section { padding-bottom: clamp(72px, 9vw, 118px); }
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .6em; }
.prose h2 {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem); margin-top: 2.2em; margin-bottom: .7em;
  padding-top: 1.2em; border-top: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: 1.4em; }
.prose p { color: var(--muted); }
.prose p strong { color: var(--navy); }
.prose ul { color: var(--muted); }
.prose a { border-bottom: 1px solid rgba(150,101,43,.35); }
.prose a:hover { border-bottom-color: var(--navy); }

/* ---------- Kleinteile ---------- */
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; }


/* ---------- Bedienbarkeit / Klick-Affordanzen ---------- */
a, button, select, input[type="checkbox"], .btn { cursor: pointer; }
input[type="text"], input[type="email"], textarea { cursor: text; }

:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
  border-radius: var(--radius);
}
.btn:focus-visible { outline-offset: 4px; }

.btn { box-shadow: 0 0 0 0 rgba(203,148,84,0); transition:
  background .3s var(--ease), color .3s var(--ease),
  border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(35,50,69,.16); }
.btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(35,50,69,.14); }

.footer-links a { position: relative; }
.footer-links a:hover { padding-left: 14px; }
.footer-links a::before {
  content: "→"; position: absolute; left: 0; opacity: 0;
  transition: opacity .25s var(--ease);
}
.footer-links a:hover::before { opacity: .8; }

/* Formular: zweispaltige Reihe */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Fachmodul-Streifen (Startseite) ---------- */
.more-strip { padding: clamp(44px, 6vw, 70px) 0; background: var(--paper-soft); border-top: 1px solid var(--line); }
.more-strip .eyebrow { margin-bottom: 14px; }
.more-strip-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.more-strip-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 12px 0; flex-wrap: wrap; }
.more-strip-list li {
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem); letter-spacing: -.01em;
}
.more-strip-list li + li::before {
  content: "·"; color: var(--gold); margin: 0 18px; font-weight: 800;
}

/* Buttons als echte <button>-Elemente */
button.btn-ghost { background: none; border: 1px solid rgba(20,38,58,.3); color: var(--navy); }
button.btn-ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Adress-Chip: zeigt die Mail-Adresse, Klick kopiert sie */
.mail-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-data); font-size: .98rem; font-weight: 500;
  letter-spacing: .02em; text-transform: none; color: var(--navy);
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 13px 22px; cursor: pointer;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.mail-chip svg { color: var(--gold-dark); flex: none; }
.mail-chip:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(35,50,69,.1); transform: translateY(-1px); }
.mail-chip:active { transform: translateY(0); }
.mail-chip:disabled { cursor: default; border-color: #3f7a4f; color: #3f7a4f; transform: none; box-shadow: none; }
