/* ═══════════════════════════════════════════
   HÜNIQUE 2026 — Design System
   Concept: Precision in Motion
   Ref: Pictet · Herzog & de Meuron · Schindler
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --ink:      #0b1a24;
  --ink-2:    #132230;
  --ink-3:    #1a2e3d;
  --slate:    #2c4458;
  --cream:    #f5f2ed;
  --warm:     #ede9e2;
  --mist:     #ddd8cf;
  --white:    #ffffff;
  --gold:     #c4a265;
  --gold-2:   #a8854a;
  --gold-lt:  #e2c99a;
  --red:      #c0392b;

  --serif: 'Libre Baskerville', Georgia, serif;
  --sans:  'DM Sans', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --w: 1320px;
  --g: clamp(1.5rem, 5vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Cursor: Standard-Browser-Cursor */

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none;  }
button {  }
input, textarea, select, button { font-family: var(--sans); }

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

/* ── PAGE TRANSITION ── */
.page-cover {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9000;
  transform-origin: bottom;
  transform: scaleY(1);
  animation: coverReveal 1.1s var(--ease-out) .1s forwards;
}
@keyframes coverReveal {
  0%   { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.fade    { transform: translateX(-20px); }
.reveal.fade.visible { transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .44s; }
.d5 { transition-delay: .60s; }

/* ── SECTION LABEL ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-txt {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.02em;
}
.headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.015em;
}
.title {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}
.body-lg {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(11,26,36,.6);
}
.body-lg.lt { color: rgba(255,255,255,.62); }
.body-sm {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(11,26,36,.55);
}
.body-sm.lt { color: rgba(255,255,255,.55); }
.lt { color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: .06; }

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 1rem 2.25rem;
}
.btn-primary:hover { background: var(--gold-2); }

.btn-outline-dark {
  border: 1px solid rgba(11,26,36,.22);
  color: var(--ink);
  padding: .9375rem 2.25rem;
}
.btn-outline-dark:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-outline-light {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  padding: .9375rem 2.25rem;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.btn-ghost-gold {
  border: 1px solid rgba(196,162,101,.3);
  color: var(--gold);
  padding: .9375rem 2.25rem;
}
.btn-ghost-gold:hover { border-color: var(--gold); background: rgba(196,162,101,.06); }

.btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; stroke-width: 1.75; fill: none;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.btn:hover svg { transform: translateX(4px); }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(245,242,237,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(11,26,36,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 3rem;
}
.nav-logo {
  height: 76px;
  width: auto;
  flex-shrink: 0;
  transition: filter .4s;
}
.nav-logo { filter: none; }

/* Simple horizontal links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(11,26,36,.58);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* CTA button */
.nav-cta-btn {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7rem 1.625rem;
  border: 1px solid rgba(255,255,255,.38);
  color: #fff;
  background: transparent;
  
  transition: all .25s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
#nav.scrolled .nav-cta-btn { border-color: var(--ink); color: var(--ink); }
#nav.scrolled .nav-cta-btn:hover { background: var(--ink); color: #fff; }

/* Hamburger */
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  
}
.hbg span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .3s var(--ease-out);
  transform-origin: center;
}
.hbg.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Fullscreen drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 799;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 7rem var(--g) 4rem;
  gap: 4rem;
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}
.drawer.open { transform: none; }
.drawer-nav { display: flex; flex-direction: column; justify-content: center; }
.drawer-nav a {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 400;
  color: rgba(255,255,255,.55);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .3s var(--ease-out);
  display: block;
  letter-spacing: -.01em;
}
.drawer-nav a:last-child { border: none; }
.drawer-nav a:hover { color: #fff; padding-left: .625rem; }
.drawer-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1rem;
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 4rem;
}
.drawer-info-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1rem;
}
.drawer-info p {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.drawer-info a {
  font-size: .875rem;
  color: var(--gold);
  margin-top: 1rem;
  display: block;
  transition: color .2s;
}
.drawer-info a:hover { color: var(--gold-lt); }

/* ════════════════════════════════════════
   HERO — full bleed, single image, light veil
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 115%; /* 15% extra for parallax travel */
  object-fit: cover;
  object-position: 50% 20%;
  transform-origin: center top;
  will-change: transform;
  /* No CSS animation — JS handles all transform via rAF for smooth parallax */
}
/* Subtle left-biased veil — keeps image visible, text readable */
.hero-veil {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-body {
  position: relative;
  width: 100%;
  padding: 9rem 0 5.5rem; /* top: nav height (92px) + breathing room */
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .5s forwards;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6.5vw, 6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -.022em;
  margin: 1.5rem 0 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.45), 0 1px 8px rgba(0,0,0,.3);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .7s forwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.82);
}
.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.75rem;
  text-shadow: 0 1px 20px rgba(0,0,0,.4);
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .9s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) 1.05s forwards;
}

/* Stats — bottom right corner, subtle */
.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: var(--g);
  display: flex;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.18);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}
.hero-stat {
  padding: .875rem 2rem;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: .2rem;
}
.hero-stat-l {
  font-size: .54rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.28);
  opacity: 0;
  animation: fadeIn .8s 1.4s forwards;
}
.hero-scroll-track {
  width: 1px; height: 42px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scroll-track::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollTrack 2.5s 1.8s ease-in-out infinite;
}
@keyframes scrollTrack { 0% { top: -100%; } 100% { top: 200%; } }
.hero-scroll-txt {
  font-size: .5rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════════
   MARQUEE BAND
   ════════════════════════════════════════ */

.marquee-band {
  background: var(--gold);
  padding: .875rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.marquee-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════
   DIENSTLEISTUNGEN
   ════════════════════════════════════════ */
.dienst-sec { padding: 9rem 0; background: var(--cream); }
.dienst-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 6rem;
}
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.di {
  padding: 3rem 2.5rem 3rem 0;
  border-top: 1px solid rgba(11,26,36,.1);
  border-right: 1px solid rgba(11,26,36,.08);
  position: relative;
  transition: padding-left .35s var(--ease-out);
  cursor: default;
}
.di::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-out);
}
.di:hover::before { width: 100%; }
.di:hover { padding-left: .75rem; }
.di:nth-child(3n) { border-right: none; padding-right: 0; }
.di-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(11,26,36,.04);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .35s;
}
.di:hover .di-num { color: rgba(196,162,101,.12); }
.di-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.di-desc {
  font-size: .8375rem;
  font-weight: 300;
  color: rgba(11,26,36,.52);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   SERVICES — horizontal scroll cards
   ════════════════════════════════════════ */
.svc-sec { padding: 9rem 0; background: var(--ink); overflow: hidden; }
.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.svc-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,.08);
}
.svc-card {
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-card:hover { transform: translateY(-4px); }

/* Photo background */
.svc-card-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease-out), filter .5s ease;
  will-change: transform;
  filter: grayscale(15%) brightness(0.55);
}
.svc-card:hover .svc-card-photo {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.75);
}

/* Dark gradient overlay — bottom-heavy so text always readable */
.svc-card-overlay {
  position: absolute;
  inset: 0;
  /* Gradient: stronger at bottom (text area) lighter at top (image shows) */
  background: linear-gradient(
    to top,
    rgba(11,26,36,.92) 0%,
    rgba(11,26,36,.80) 40%,
    rgba(11,26,36,.58) 70%,
    rgba(11,26,36,.42) 100%
  );
  transition: background .5s ease;
}
.svc-card:hover .svc-card-overlay {
  /* On hover: slightly lighter top — highlight effect */
  background: linear-gradient(
    to top,
    rgba(11,26,36,.92) 0%,
    rgba(11,26,36,.78) 40%,
    rgba(11,26,36,.45) 70%,
    rgba(11,26,36,.25) 100%
  );
}

/* Gold accent line at top */
.svc-card-top-line {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transition: width .5s var(--ease-out);
  z-index: 2;
}
.svc-card:hover .svc-card-top-line { width: 100%; }

/* Content sits above overlay */
.svc-card-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
}
.svc-num {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.svc-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  opacity: .85;
  transition: opacity .3s;
}
.svc-card:hover .svc-icon { opacity: 1; }
.svc-icon svg { width: 100%; height: 100%; stroke: var(--gold); stroke-width: 1.2; fill: none; }
.svc-title {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.svc-desc {
  font-size: .8375rem;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}
.svc-divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
}
.svc-body {
  font-size: .8375rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   ÜBER UNS — asymmetric editorial
   ════════════════════════════════════════ */
.about-sec { padding: 10rem 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 10rem;
  align-items: start;
}
.about-kicker {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(11,26,36,.78);
  line-height: 1.45;
  margin-bottom: 2.5rem;
}
.about-body p {
  font-size: .9375rem;
  font-weight: 300;
  color: rgba(11,26,36,.58);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-body p.acc { font-style: italic; color: rgba(11,26,36,.7); }
.about-aside {}
.about-values {
  border: 1px solid rgba(11,26,36,.1);
}
.av {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(11,26,36,.08);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background .25s, padding-left .3s var(--ease-out);
}
.av:last-child { border: none; }
.av:hover { background: rgba(11,26,36,.02); padding-left: 2.5rem; }
.av-num {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: rgba(196,162,101,.35);
  flex-shrink: 0;
  width: 1.5rem;
  text-align: right;
  line-height: 1.4;
}
.av-content {}
.av-title { font-size: .875rem; font-weight: 500; color: var(--ink); margin-bottom: .35rem; }
.av-desc  { font-size: .8125rem; font-weight: 300; color: rgba(11,26,36,.5); line-height: 1.65; }

/* ════════════════════════════════════════
   INFO PANEL — split color block
   ════════════════════════════════════════ */
.info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ip {
  padding: 6rem var(--g);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.ip.gold-bg { background: var(--gold); }
.ip.ink-bg  { background: var(--ink-2); }
.ip-h {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.ip-p { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.8; }

/* ════════════════════════════════════════
   GRAFIKEN
   ════════════════════════════════════════ */
.gfk-sec { padding: 9rem 0; background: var(--warm); }
.gfk-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 6rem;
}
.gfk-grp { margin-top: 5.5rem; }
.gfk-grp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(11,26,36,.09);
}
.gfk-grp-label { display: flex; align-items: center; gap: 1rem; }
.gfk-grp-bar { width: 20px; height: 2px; background: var(--gold); flex-shrink: 0; }
.gfk-grp-txt {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(11,26,36,.4);
}
.gfk-grp-desc { font-size: .8125rem; font-weight: 300; color: rgba(11,26,36,.45); }
.gfk-hero { background: var(--ink); overflow: hidden; border: 1px solid rgba(11,26,36,.1); margin-bottom: .625rem; }
.gfk-hero img, .gfk-box img, .gfk-single img { width: 100%; height: auto; display: block; }
.gfk-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: .625rem; }
.gfk-box  { background: #fff; overflow: hidden; border: 1px solid rgba(11,26,36,.09); }
.gfk-single { background: #fff; overflow: hidden; border: 1px solid rgba(11,26,36,.09); margin-bottom: .625rem; }
.gfk-cap {
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(11,26,36,.25);
  text-align: right;
  margin-bottom: 1rem;
}
.gfk-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: rgba(11,26,36,.04);
  border: 1px solid rgba(11,26,36,.08);
  margin-bottom: .5rem;
}
.gfk-legend-item { display: flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 300; color: rgba(11,26,36,.65); }
.ldot { width: 11px; height: 11px; border-radius: 2px; flex-shrink: 0; }
.gfk-note {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(196,162,101,.06);
}
.gfk-note p { font-size: .8125rem; font-weight: 300; color: rgba(11,26,36,.58); line-height: 1.8; }
.gfk-note strong { font-weight: 500; color: rgba(11,26,36,.8); }

/* ════════════════════════════════════════
   INFOS / ACCORDION
   ════════════════════════════════════════ */
.infos-sec { background: var(--ink); padding: 9rem 0; }
.infos-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.zgb-block {
  margin-bottom: 5rem;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}
.zgb-title { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: #fff; margin-bottom: .75rem; }
.zgb-sub { font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.dl-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.dl-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 1.25rem 1.75rem;
  text-decoration: none;
  transition: all .3s;
}
.dl-card:hover { background: rgba(255,255,255,.09); border-color: rgba(196,162,101,.4); }
.dl-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(196,162,101,.15); border-radius: 2px; }
.dl-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
.dl-name { font-size: .9375rem; font-weight: 500; color: #fff; display: block; }
.dl-meta { font-size: .6875rem; font-weight: 300; color: rgba(255,255,255,.45); display: block; margin-top: .125rem; }

/* Accordion */
.acc-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.acc-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.acc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem 0;
  background: none; border: none; text-align: left; 
  transition: padding-left .3s var(--ease-out);
}
.acc-btn:hover { padding-left: .5rem; }
.acc-title {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 400;
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.acc-btn:hover .acc-title,
.acc-btn.open .acc-title { color: #fff; }
.acc-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .35s var(--ease-out);
}
.acc-icon svg { width: 12px; height: 12px; stroke: rgba(255,255,255,.65); stroke-width: 2; fill: none; transition: transform .35s var(--ease-out); }
.acc-btn.open .acc-icon { background: var(--gold); border-color: var(--gold); }
.acc-btn.open .acc-icon svg { transform: rotate(45deg); stroke: #fff; }
.acc-body { display: none; padding-bottom: 2.5rem; }
.acc-body.open { display: block; }
.acc-body p { font-size: .9375rem; font-weight: 300; color: rgba(255,255,255,.62); line-height: 1.9; margin-bottom: 1.25rem; }
.acc-body p:last-child { margin: 0; }
.acc-body h4 { font-family: var(--serif); font-size: 1.125rem; font-weight: 400; color: rgba(255,255,255,.85); margin: 1.75rem 0 .75rem; }
.acc-body ul { list-style: none; margin: .75rem 0 1.25rem; }
.acc-body ul li { font-size: .9375rem; font-weight: 300; color: rgba(255,255,255,.62); padding: .4rem 0 .4rem 1.5rem; position: relative; line-height: 1.65; }
.acc-body ul li::before { content: ''; position: absolute; left: 0; top: .75rem; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.acc-body .tip { background: rgba(196,162,101,.08); border-left: 2px solid var(--gold); padding: 1rem 1.375rem; margin: 1.25rem 0; }
.acc-body .tip p { color: rgba(255,255,255,.65); font-size: .875rem; margin: 0; }

/* ════════════════════════════════════════
   GLOSSAR
   ════════════════════════════════════════ */
.glossar-sec { background: var(--cream); padding: 9rem 0; }
.glossar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }
.glossar-list {}
.gl-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(11,26,36,.09); }
.gl-item:last-child { border: none; }
.gl-term { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.gl-def { font-size: .875rem; font-weight: 300; color: rgba(11,26,36,.58); line-height: 1.8; }
.links-col {}
.link-group { margin-bottom: 3rem; }
.link-group-lbl { font-size: .6rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.link-item { display: flex; align-items: flex-start; justify-content: space-between; padding: .875rem 0; border-bottom: 1px solid rgba(11,26,36,.07); gap: 1rem; }
.link-item:last-child { border: none; }
.link-name { font-size: .9375rem; font-weight: 400; color: var(--ink); line-height: 1.4; }
.link-url { font-size: .8125rem; font-weight: 300; color: var(--gold); display: flex; align-items: center; gap: .375rem; white-space: nowrap; flex-shrink: 0; }
.link-url svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.glossar-note { margin-top: 2.5rem; padding: 1.75rem 2rem; background: rgba(11,26,36,.04); border-left: 2px solid var(--gold); }
.glossar-note p { font-size: .875rem; font-weight: 300; color: rgba(11,26,36,.58); line-height: 1.8; }

/* ════════════════════════════════════════
   FORMULARE — alle Stile
   ════════════════════════════════════════ */
.anf-sec { background: var(--ink-2); padding: 9rem 0; }
.anf-header { padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 5rem; }
.anf-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; color: #fff; letter-spacing: -.02em; line-height: 1.04; margin-bottom: 1.25rem; }
.anf-title em { font-style: italic; font-weight: 400; color: var(--gold-lt); }
.anf-sub { font-size: .9375rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 540px; }
.anf-form { max-width: 900px; }

/* Chapter headings */
.fchap { display: flex; align-items: baseline; gap: 1.5rem; margin-top: 4.5rem; margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.fchap:first-of-type { margin-top: 0; }
.fc-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 400; color: rgba(255,255,255,.05); line-height: 1; flex-shrink: 0; width: 3rem; }
.fc-title { font-family: var(--serif); font-size: 1.375rem; font-weight: 400; color: rgba(255,255,255,.8); }

/* Field grids */
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.75rem; margin-bottom: 1.25rem; }
.fg3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem 1.75rem; margin-bottom: 1.25rem; }
.fh  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.75rem; margin-bottom: 1.25rem; }
.ff  { margin-bottom: 1.25rem; }

/* Labels & inputs */
.fl {
  display: block;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .5rem;
}
.fi {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.88);
  padding: .9375rem 1.125rem;
  font-size: .9375rem;
  font-weight: 300;
  outline: none;
  border-radius: 2px;
  transition: all .25s;
  -webkit-appearance: none;
  appearance: none;
}
.fi:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(196,162,101,.1);
}
.fi::placeholder { color: rgba(255,255,255,.22); }
.fi option { background: var(--ink-2); color: rgba(255,255,255,.85); }
select.fi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 5L10 1' stroke='rgba(196,162,101,.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.75rem;
  
}
textarea.fi { resize: none; min-height: 100px; line-height: 1.7; }

/* Checkboxes */
.cb-note { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.42); letter-spacing: .04em; margin-bottom: 1.25rem; }
.cbg { display: grid; grid-template-columns: 1fr 1fr; }
.cbr {
  display: flex; align-items: center; gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  
  transition: padding-left .2s var(--ease-out);
}
.cbr:hover { padding-left: .5rem; background: rgba(255,255,255,.02); }
.cbr input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--gold);  }
.cbr span { font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.65); user-select: none; line-height: 1.35; }

/* Radio */
.rgl { font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1rem; display: block; }
.rrow { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 2rem; }
.rpill {
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem 1.5rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  
  transition: all .25s;
  font-size: .8375rem;
  font-weight: 300;
  color: rgba(255,255,255,.62);
}
.rpill:hover { border-color: rgba(196,162,101,.5); color: rgba(255,255,255,.9); }
.rpill input { accent-color: var(--gold); width: 14px; height: 14px; }
.rpill:has(input:checked) { border-color: var(--gold); background: rgba(196,162,101,.1); color: #fff; }
.rvg { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; margin-bottom: 2rem; }
.rv {
  display: flex; align-items: center; gap: .875rem;
  padding: .875rem 1.125rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  
  transition: all .2s;
  font-size: .8375rem;
  color: rgba(255,255,255,.58);
}
.rv:hover { border-color: rgba(196,162,101,.35); color: rgba(255,255,255,.85); }
.rv input { accent-color: var(--gold); width: 14px; height: 14px; flex-shrink: 0;  }
.rv:has(input:checked) { border-color: var(--gold); background: rgba(196,162,101,.08); color: rgba(255,255,255,.92); }

/* Disclaimer */
.disc {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 2px solid var(--gold);
}
.disc p { font-size: .8375rem; font-weight: 300; color: rgba(255,255,255,.48); line-height: 1.8; margin-bottom: .75rem; }
.disc p:last-child { margin: 0; }

/* Submit */
.fsub { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.btn-submit {
  display: inline-flex; align-items: center; gap: .875rem;
  background: var(--gold);
  color: #fff;
  font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: 1.125rem 3rem;
  border: none; border-radius: 2px;
  
  transition: background .3s var(--ease-out), transform .2s;
}
.btn-submit:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.btn-submit svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2; fill: none; transition: transform .3s var(--ease-out); }
.btn-submit:hover svg { transform: translateX(4px); }
.sub-note { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.6; }
.suc-msg { display: none; margin-top: 1.5rem; padding: 1.125rem 1.5rem; background: rgba(196,162,101,.1); border: 1px solid rgba(196,162,101,.25); font-size: .9rem; font-weight: 300; color: var(--gold-lt); border-radius: 2px; }

/* Homepage simple form */
.home-form { background: var(--ink-2); padding: 6rem 0; }
.home-form-grid { display: grid; grid-template-columns: 1fr 1.618fr; gap: 8rem; align-items: start; }
.hfl { display: block; font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .5rem; }
.hfi { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.88); padding: .9375rem 1.125rem; font-size: .9375rem; font-weight: 300; outline: none; border-radius: 2px; transition: all .25s; }
.hfi:focus { border-color: var(--gold); background: rgba(255,255,255,.08); }
.hfi::placeholder { color: rgba(255,255,255,.22); }
textarea.hfi { resize: none; min-height: 120px; line-height: 1.7; }
.hfr { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.hff { margin-bottom: 1.25rem; }

/* Light form card */
.fcard { background: #fff; border: 1px solid rgba(11,26,36,.1); padding: 3.5rem; border-radius: 2px; }
.fcard-h { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--ink); margin-bottom: .5rem; }
.fcard-sub { font-size: .875rem; font-weight: 300; color: rgba(11,26,36,.48); margin-bottom: 2.25rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(11,26,36,.09); }
.fl-l { display: block; font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(11,26,36,.42); margin-bottom: .5rem; }
.fi-l { width: 100%; background: transparent; border: 1px solid rgba(11,26,36,.14); border-bottom: 1px solid rgba(11,26,36,.3); color: var(--ink); padding: .9rem 1.125rem; font-size: .9375rem; font-weight: 300; outline: none; border-radius: 2px; transition: border-color .2s; -webkit-appearance: none; }
.fi-l:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,162,101,.1); }
.fi-l::placeholder { color: rgba(11,26,36,.25); }
textarea.fi-l { resize: none; min-height: 100px; line-height: 1.7; }
.l2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.lf { margin-bottom: 1.25rem; }
.fsuc { display: none; padding: 1rem 1.25rem; background: rgba(0,160,153,.06); border: 1px solid rgba(0,160,153,.2); font-size: .875rem; color: #006b66; margin-top: 1.25rem; border-radius: 2px; }

/* Dark form */
.fcard-dk { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); padding: 3.5rem; border-radius: 2px; }
.fcard-dk-h { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: #fff; margin-bottom: .5rem; }
.fcard-dk-sub { font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.48); margin-bottom: 2.25rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }

/* ════════════════════════════════════════
   PARTNER
   ════════════════════════════════════════ */
.partner-sec { padding: 9rem 0; background: var(--cream); }
.part-g { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.pbadge { display: inline-block; font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(196,162,101,.3); padding: .4rem 1rem; margin-bottom: 1.5rem; border-radius: 100px; }
.plist { list-style: none; margin: 1rem 0 1.5rem; }
.plist li { font-size: .9rem; font-weight: 300; color: rgba(11,26,36,.65); padding: .625rem 0 .625rem 1.5rem; border-bottom: 1px solid rgba(11,26,36,.07); position: relative; line-height: 1.45; }
.plist li::before { content: ''; position: absolute; left: 0; top: 1.05rem; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.pnote { font-size: .8375rem; font-weight: 300; color: rgba(11,26,36,.52); line-height: 1.8; margin-bottom: 1rem; }

/* ════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════ */
.kontakt-sec { padding: 9rem 0; background: var(--ink); }
.k-g { display: grid; grid-template-columns: 5fr 7fr; gap: 8rem; align-items: start; }
.kd { display: flex; gap: 1.25rem; margin-bottom: 2.5rem; align-items: flex-start; }
.k-ic { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 50%; }
.k-ic svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.25; fill: none; }
.k-lbl { font-size: .58rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: .4rem; }
.k-val { font-size: .9375rem; font-weight: 300; color: rgba(255,255,255,.78); line-height: 1.6; }
.k-val a { color: var(--gold); transition: color .2s; }
.k-val a:hover { color: var(--gold-lt); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); }
.foot-main { padding: 6rem 0 4rem; }
.foot-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 5rem; }
.f-logo { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 2rem; display: block; opacity: .85; }
.f-logo:hover { opacity: 1; }
.f-tagline { font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.35); line-height: 1.8; max-width: 260px; margin-bottom: 1.75rem; }
.f-email { font-size: .875rem; color: var(--gold); display: block; margin-bottom: .5rem; transition: color .2s; }
.f-email:hover { color: var(--gold-lt); }
.f-addr { font-size: .8125rem; font-weight: 300; color: rgba(255,255,255,.28); line-height: 1.8; margin-top: .75rem; }
.f-col-h { font-size: .58rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.5rem; }
.f-nav { list-style: none; }
.f-nav li { margin-bottom: .75rem; }
.f-nav a { font-size: .875rem; font-weight: 300; color: rgba(255,255,255,.38); transition: color .2s, padding-left .2s; display: block; }
.f-nav a:hover { color: rgba(255,255,255,.78); padding-left: .375rem; }
.f-bar { border-top: 1px solid rgba(255,255,255,.06); padding: 1.5rem 0; }
.f-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.f-copy { font-size: .68rem; font-weight: 300; color: rgba(255,255,255,.22); }
.f-legal { display: flex; gap: 2rem; }
.f-legal a { font-size: .68rem; font-weight: 300; color: rgba(255,255,255,.25); transition: color .2s; }
.f-legal a:hover { color: rgba(255,255,255,.6); }


/* Grafiken inside dark Infos section */
.infos-sec .gfk-grp-header {
  border-bottom-color: rgba(255,255,255,.1);
}
.infos-sec .gfk-grp-txt { color: rgba(255,255,255,.45); }
.infos-sec .gfk-grp-desc { color: rgba(255,255,255,.38); }
.infos-sec .gfk-cap { color: rgba(255,255,255,.28); }
.infos-sec .gfk-legend {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.infos-sec .gfk-legend-item { color: rgba(255,255,255,.65); }
.infos-sec .gfk-note {
  background: rgba(196,162,101,.07);
  border-left-color: var(--gold);
}
.infos-sec .gfk-note p { color: rgba(255,255,255,.62); }
.infos-sec .gfk-note strong { color: rgba(255,255,255,.88); }
.infos-sec .gfk-hero { border-color: rgba(255,255,255,.08); }
.infos-sec .gfk-box { border-color: rgba(255,255,255,.1); }
.infos-sec .gfk-single { border-color: rgba(255,255,255,.1); }
.infos-sec .gfk-grp { margin-top: 4rem; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-stats { display: none; }
  .hero-h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); }
  .dienst-header, .svc-header, .gfk-header, .infos-header, .about-grid, .k-g, .home-form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { gap: 5rem; }
  .info-panel { grid-template-columns: 1fr; }
  .part-g, .foot-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .dienst-grid { grid-template-columns: 1fr 1fr; }
  .di:nth-child(2n) { border-right: none; padding-right: 0; }
  .di:nth-child(3n) { border-right: 1px solid rgba(11,26,36,.08); padding-right: 2.5rem; }
  .svc-cards-wrap { grid-template-columns: 1fr; }
  .glossar-grid { grid-template-columns: 1fr; gap: 4rem; }
  .nav-links { display: none; }
  .hbg { display: flex; }
  .drawer { grid-template-columns: 1fr; }
  .drawer-info { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding-left: 0; padding-top: 3rem; }
}
@media (max-width: 768px) {
  :root { --g: 1.25rem; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .nav-inner { height: 72px; }
  .nav-logo { height: 48px; }
  section, .gfk-sec, .anf-sec, .infos-sec, .glossar-sec, .partner-sec, .kontakt-sec, .dienst-sec, .svc-sec, .about-sec { padding: 6rem 0; }
  .hero-stats { display: none; }
  .fg2, .fg3, .fh, .cbg, .rvg, .gfk-pair, .dienst-grid, .svc-cards-wrap { grid-template-columns: 1fr; }
  .di { border-right: none !important; padding-right: 0 !important; }
  .foot-grid, .part-g { grid-template-columns: 1fr; gap: 2.5rem; }
  .l2, .hfr { grid-template-columns: 1fr; }
  .fcard, .fcard-dk { padding: 2rem 1.5rem; }
  .ip { padding: 4rem 2rem; }
  .rrow { flex-direction: column; }
  .dl-row { flex-direction: column; }
  .drawer { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; }
  .drawer-info { display: none; }
}

@media (max-width: 768px) {
  #impressum .wrap > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .svc-card { min-height: 420px; }
  .svc-card-content { padding: 2rem; }
}

/* ════════════════════════════════════════
   TOUCH & MOBILE FIXES
   ════════════════════════════════════════ */
/* Ensure pointer on all interactive elements */
a, button, label, select, input[type="radio"],
input[type="checkbox"], .acc-btn, .cbr, .rv, .rpill { cursor: pointer; }

/* Touch tap highlight */
a, button { -webkit-tap-highlight-color: rgba(196,162,101,.15); }

/* iOS input zoom fix */
input, select, textarea {
  font-size: 16px !important; /* prevents iOS auto-zoom */
}
@media (min-width: 769px) {
  input, select, textarea { font-size: inherit !important; }
}

/* Smooth scroll on iOS */
html { -webkit-overflow-scrolling: touch; }

/* Safe area for notched phones */
.nav-inner { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
footer .wrap { padding-bottom: env(safe-area-inset-bottom); }
