/* ==========================================================================
   KAISERSTUHL DIGITAL - Shared Design System
   Cinematic dark glassmorphism. Navy #0f1628 + Gold #C9A84C.
   Type: Cabinet Grotesk (Fontshare). Motion: GSAP (loaded per page via CDN).

   Radius system (locked):
     - pill (980px): nav, buttons, badges, region chips  (interactive)
     - 20px:         cards / glass panels
     - 12px:         form inputs, icon tiles
   Accent lock: gold #C9A84C only. Theme lock: dark navy, whole site.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0f1628;
  --navy-deep:   #0a0f1e;
  --gold:        #C9A84C;
  --gold-lite:   #E8C96A;
  --gold-deep:   #b8942e;
  --white:       #ffffff;

  --t-1: rgba(255,255,255,.92);   /* headings */
  --t-2: rgba(255,255,255,.70);   /* body */
  --t-3: rgba(255,255,255,.50);   /* muted */
  --t-4: rgba(255,255,255,.34);   /* faint */

  --line:   rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --glass:  rgba(255,255,255,.04);
  --glass-2:rgba(255,255,255,.07);

  --r-pill: 980px;
  --r-card: 20px;
  --r-sm:   12px;

  --ease: cubic-bezier(.16,1,.3,1);
  --wrap: 1200px;

  --font: 'Cabinet Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--t-2);
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(40,60,110,.55) 0%, rgba(15,22,40,0) 60%),
    radial-gradient(ellipse 60% 40% at 88% 6%, rgba(201,168,76,.08) 0%, rgba(15,22,40,0) 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(201,168,76,.32); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 { color: var(--t-1); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; }
.accent { color: var(--gold); }

.eyebrow {            /* used max once per 3 sections (preflight) */
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}

/* ----- LAYOUT ----- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; width: 100%; }
.section { padding: clamp(88px, 11vw, 160px) 0; position: relative; }
.section--tint { background: rgba(8,12,24,.45); }

.sec-head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 76px); text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.sec-head p { margin-top: 16px; font-size: 18px; color: var(--t-3); font-weight: 400; }

/* ----- REVEAL (GSAP-driven; CSS no-JS fallback) ----- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.js .hero__title .word { opacity: 0; transform: translateY(32px); }
.no-js [data-reveal],
.no-js .hero__title .word,
.no-js .scrub-text .w { opacity: 1 !important; transform: none !important; }
/* failsafe: if scripts are slow/blocked, never leave content invisible */
.anim-fallback [data-reveal],
.anim-fallback .hero__title .word,
.anim-fallback .scrub-text .w { opacity: 1 !important; transform: none !important; }

/* ==========================================================================
   NAVIGATION - floating glass pill
   ========================================================================== */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: min(1080px, calc(100% - 28px));
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 9px 9px 9px 22px;
  background: rgba(15,22,40,.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(201,168,76,.20);
  border-radius: var(--r-pill);
  box-shadow: 0 10px 40px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  background: rgba(8,12,24,.82);
  border-color: rgba(201,168,76,.34);
  box-shadow: 0 12px 46px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 54px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--t-2); transition: color .25s var(--ease); position: relative; }
.nav__links a:hover { color: var(--white); }
.nav__links a.is-active { color: var(--gold); }

.nav__cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 50%, var(--gold) 100%);
  color: var(--navy); font-weight: 600; font-size: 14.5px; letter-spacing: -.01em;
  padding: 11px 22px; border-radius: var(--r-pill);
  box-shadow: 0 0 26px rgba(201,168,76,.26);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.nav__cta:hover { box-shadow: 0 0 46px rgba(201,168,76,.5); transform: translateY(-1px); }
.nav__cta:active { transform: scale(.98); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-right: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* mobile drawer - slides from right */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100;
  width: min(360px, 84vw); transform: translateX(105%);
  background: rgba(8,12,24,.96);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(0,0,0,.5);
  padding: 96px 30px 40px; display: flex; flex-direction: column; gap: 4px;
  transition: transform .45s var(--ease); visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer a { font-size: 19px; font-weight: 500; color: var(--t-2); padding: 16px 0; border-bottom: 1px solid var(--line); transition: color .2s; }
.drawer a:hover, .drawer a.is-active { color: var(--white); }
.drawer__cta {
  margin-top: 22px; text-align: center; border-bottom: none !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  color: var(--navy) !important; font-weight: 600; padding: 15px !important; border-radius: var(--r-pill);
}
.drawer__close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: var(--t-2); cursor: pointer; padding: 6px; }
.scrim { position: fixed; inset: 0; z-index: 1090; background: rgba(5,8,18,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease); }
.scrim.open { opacity: 1; visibility: visible; }

/* ==========================================================================
   BUTTONS  (gold = dark text; dark/ghost = white text -> WCAG AA)
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15.5px; font-weight: 600; letter-spacing: -.01em;
  padding: 15px 30px; border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 50%, var(--gold) 100%); color: var(--navy); box-shadow: 0 0 30px rgba(201,168,76,.26); }
.btn--gold:hover { box-shadow: 0 0 52px rgba(201,168,76,.5); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--white); border-color: var(--line-2); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn--lg { padding: 18px 38px; font-size: 16.5px; }
.btn--full { width: 100%; }

/* ==========================================================================
   GLASS CARD
   ========================================================================== */
.card {
  position: relative; overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease);
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(201,168,76,.10), transparent 65%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,.30); background: var(--glass-2); box-shadow: 0 22px 50px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.10); }
.card:hover::after { opacity: 1; }

.icon-tile {
  width: 50px; height: 50px; border-radius: var(--r-sm);
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  color: var(--gold); transition: transform .4s var(--ease), background .3s;
}
.card:hover .icon-tile { transform: scale(1.08) rotate(-4deg); background: rgba(201,168,76,.18); }
.icon-tile svg { width: 24px; height: 24px; }
.card h3 { font-size: 21px; font-weight: 700; margin-bottom: 11px; }
.card p { font-size: 16px; color: var(--t-3); line-height: 1.68; }

/* ==========================================================================
   HERO - cinematic center
   ========================================================================== */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 24px 90px; overflow: hidden; }
/* atmosphere: local gradients + grain instead of external hero photography */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 62% at 20% -6%, rgba(48,72,132,.5) 0%, rgba(15,22,40,0) 62%),
    radial-gradient(ellipse 52% 44% at 84% 4%, rgba(201,168,76,.10) 0%, rgba(15,22,40,0) 55%),
    radial-gradient(ellipse 95% 75% at 50% 118%, rgba(5,8,18,.85) 0%, rgba(15,22,40,0) 62%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background: url("/hero-bg.jpg") center 62% / cover no-repeat;
  filter: saturate(.5) brightness(.32) contrast(1.08);
}
.hero__wash { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(201,168,76,.13) 0%, transparent 60%),
    radial-gradient(ellipse 120% 90% at 50% 50%, rgba(15,22,40,.15) 30%, rgba(15,22,40,.7) 78%),
    linear-gradient(180deg, rgba(15,22,40,.4) 0%, transparent 25%, transparent 60%, var(--navy) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 62rem; }
.hero__logo { width: clamp(260px, 32vw, 460px); height: auto; margin: 0 auto 24px; display: block; }
.hero__title { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.04; letter-spacing: -.035em; color: #fff; }
.hero__title .word { display: inline-block; will-change: transform; }
.hero__sub { max-width: 40rem; margin: 28px auto 0; font-size: clamp(17px, 2vw, 20px); color: var(--t-2); font-weight: 400; line-height: 1.6; }
.hero__cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* primary gold CTA: slow, subtle glow breathing (opacity-only -> cheap repaint) */
.hero__cta .btn--gold { position: relative; }
.hero__cta .btn--gold::before {
  content: ''; position: absolute; inset: -2px; z-index: -1; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 42px 4px rgba(201,168,76,.5);
  opacity: .3; animation: ctaGoldPulse 3.6s ease-in-out infinite;
}
@keyframes ctaGoldPulse { 0%, 100% { opacity: .26; } 50% { opacity: .82; } }

/* sub-page hero (shorter) */
.hero--sub { min-height: 72vh; }
.hero--sub .hero__title { font-size: clamp(2.4rem, 4.8vw, 4.2rem); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(8,12,24,.4); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
.marquee__item { font-size: 17px; font-weight: 500; color: var(--t-3); padding: 0 30px; white-space: nowrap; transition: color .25s var(--ease), transform .25s var(--ease); }
.marquee__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .8; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
/* pause the whole band on hover, then let the single word under the cursor light up gold */
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item:hover { color: var(--gold); transform: translateY(-1px); }

/* ==========================================================================
   BENTO GRID  (gapless: [A A B / A A B / C D D])
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(168px, 1fr); grid-auto-flow: dense; gap: 18px; }
.bento .card { padding: 32px; }
.bento .bento-a { grid-column: span 2; grid-row: span 2; }
.bento .bento-b { grid-column: span 1; grid-row: span 2; }
.bento .bento-c { grid-column: span 1; grid-row: span 1; }
.bento .bento-d { grid-column: span 2; grid-row: span 1; }

.bento-a {
  display: flex; flex-direction: column; justify-content: flex-end;
  border-left: 3px solid var(--gold) !important;
  background: linear-gradient(155deg, rgba(48,72,132,.22) 0%, rgba(15,22,40,0) 58%), var(--glass);
}
.bento-a > * { position: relative; z-index: 1; }
.bento-a h3 { font-size: clamp(26px, 3vw, 34px); }
.bento-a p { max-width: 42ch; font-size: 17px; }

/* compact check list inside bento cells */
.mini-feats { list-style: none; margin-top: 20px; display: grid; gap: 11px; }
.mini-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--t-2); }
.mini-feats svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* accent (gold) card - dark text */
.bento-d.is-accent { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 100%); border-color: transparent; display: flex; align-items: center; gap: 22px; }
.bento-d.is-accent::after { display: none; }
.bento-d.is-accent .icon-tile { background: rgba(15,22,40,.16); border-color: rgba(15,22,40,.18); color: var(--navy); margin-bottom: 0; flex-shrink: 0; }
.bento-d.is-accent h3 { color: var(--navy); margin-bottom: 4px; }
.bento-d.is-accent p { color: rgba(15,22,40,.78); font-weight: 500; }
.bento-d.is-accent:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(201,168,76,.4); }

/* ==========================================================================
   PINNED "WARUM" SECTION
   ========================================================================== */
.pin-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.pin-left { position: relative; }
.pin-left__inner { padding-top: 10px; }
.pin-left h2 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; }
.pin-left p { margin-top: 20px; font-size: 18px; color: var(--t-3); max-width: 38ch; }
.pin-left .btn { margin-top: 34px; }
.pin-right { display: flex; flex-direction: column; gap: 20px; }
.value-card { display: flex; gap: 22px; align-items: flex-start; padding: 30px; }
.value-card .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.value-card h3 { font-size: 21px; margin-bottom: 9px; }
.value-card p { font-size: 16px; color: var(--t-3); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 880px; margin: 0 auto; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 40px; }
.price-card.is-feat { border-color: rgba(201,168,76,.5); box-shadow: 0 0 0 1px rgba(201,168,76,.3), 0 24px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08); }
.price-card.is-feat::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,.12), transparent 60%); pointer-events: none; }
/* hover hierarchy: featured card leads (bigger lift + gold glow), others lift plainly */
.price-card:not(.is-feat):hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--glass-2); box-shadow: 0 18px 44px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06); }
.price-card:not(.is-feat):hover::after { opacity: 0; }
.price-card.is-feat:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.6); box-shadow: 0 0 0 1px rgba(201,168,76,.45), 0 30px 72px rgba(0,0,0,.5), 0 0 48px rgba(201,168,76,.28), inset 0 1px 0 rgba(255,255,255,.1); }
.price-badge { position: absolute; top: 22px; right: 24px; background: linear-gradient(135deg, var(--gold), var(--gold-lite)); color: var(--navy); font-size: 12.5px; font-weight: 700; letter-spacing: .03em; padding: 6px 14px; border-radius: var(--r-pill); }
.price-name { font-size: 15px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.price-amount { margin-top: 16px; font-size: 52px; font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1; }
.price-amount span { font-size: 17px; font-weight: 500; color: var(--t-3); letter-spacing: 0; }
.price-note { margin-top: 12px; font-size: 14.5px; color: var(--t-4); }
.price-feats { list-style: none; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 13px; border-top: 1px solid var(--line); padding-top: 26px; }
.price-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--t-2); }
.price-feats svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { margin-top: auto; }
.price-hint { text-align: center; margin-top: 38px; color: var(--t-3); font-size: 16px; }
.price-hint a { color: var(--gold); font-weight: 600; }
.price-hint a:hover { text-decoration: underline; }

/* ==========================================================================
   BEISPIELE - showcase cards (device-mockup pattern)
   ========================================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.showcase-grid:has(> :only-child) { max-width: 620px; }

.card.showcase-card { display: block; padding: 0; }
.showcase-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-card) var(--r-card) 0 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5,8,18,.5);
}
.showcase-card__desktop { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s var(--ease); }
.showcase-card:hover .showcase-card__desktop { transform: scale(1.04); }
.showcase-card__mobile {
  position: absolute; right: 22px; bottom: -34px; z-index: 2;
  width: 26%; max-width: 118px; height: auto; aspect-ratio: 9 / 19.5;
  object-fit: cover; border-radius: 14px;
  border: 3px solid var(--navy-deep);
  box-shadow: 0 20px 44px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.25);
  transition: transform .45s var(--ease);
}
.showcase-card:hover .showcase-card__mobile { transform: translateY(-6px); }
.showcase-card__badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 50%, var(--gold) 100%);
  color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: -.01em;
  padding: 8px 14px; border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
  transition: transform .3s var(--ease);
}
.showcase-card__badge svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.showcase-card:hover .showcase-card__badge { transform: translateY(-1px); }
.showcase-card:hover .showcase-card__badge svg { transform: translate(2px, -2px); }
.showcase-card__body { padding: 44px 32px 32px; }
.showcase-card__body h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.showcase-card__meta { font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--gold); margin-bottom: 14px; }
.showcase-card__desc { font-size: 15.5px; color: var(--t-3); line-height: 1.65; }

/* ==========================================================================
   FAQ (GSAP height tween)
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-family: var(--font); font-size: clamp(17px, 2vw, 20px); font-weight: 600; color: var(--t-1); }
.faq-q:hover { color: #fff; }
.faq-ic { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--gold); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-ic::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-panel { height: 0; overflow: hidden; }
.faq-panel__in { padding: 0 4px 28px; max-width: 64ch; color: var(--t-3); font-size: 16.5px; line-height: 1.72; }

/* ==========================================================================
   LEISTUNGEN - service rows
   ========================================================================== */
.service { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.service + .service { margin-top: clamp(90px, 11vw, 150px); }
.service--rev .service__media { order: 2; }
.service__media { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(0,0,0,.45); aspect-ratio: 4/3; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(.85); will-change: transform; }
.service__media--gold::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,.42), rgba(15,22,40,.35)); mix-blend-mode: overlay; pointer-events: none; }
.service__media::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 50%, rgba(10,15,30,.45)); pointer-events: none; }
.service__body h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 20px; }
.service__body > p { font-size: 18px; color: var(--t-2); line-height: 1.7; }
.feat-list { list-style: none; margin-top: 28px; display: grid; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--t-2); }
.feat-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.scrub-text .w { opacity: .15; }

/* ==========================================================================
   UEBER UNS
   ========================================================================== */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.about__img { position: relative; aspect-ratio: 3 / 4; }
.about__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: var(--r-card); box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(201,168,76,.14); border: 1px solid rgba(201,168,76,.18); }
.about__badge { position: absolute; left: 20px; bottom: 20px; background: rgba(8,12,24,.78); backdrop-filter: blur(14px); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 10px 18px; font-size: 14.5px; font-weight: 600; color: var(--t-1); }
.about__badge b { color: var(--gold); font-weight: 700; }
.about__body h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-bottom: 22px; }
.about__body p { font-size: 17px; color: var(--t-2); line-height: 1.74; }
.blockquote { margin-top: 34px; padding: 8px 0 8px 28px; border-left: 3px solid var(--gold); font-size: clamp(19px, 2.2vw, 24px); font-style: italic; font-weight: 500; color: var(--t-1); line-height: 1.5; }
.blockquote cite { display: block; margin-top: 16px; font-size: 15px; font-style: normal; font-weight: 600; color: var(--gold); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.region-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.region-chip { padding: 12px 24px; border-radius: var(--r-pill); border: 1px solid rgba(201,168,76,.35); background: rgba(201,168,76,.06); color: var(--t-1); font-weight: 600; font-size: 16px; }
.region-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,64px); align-items: center; }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; max-width: 940px; margin: 0 auto; }
/* connecting line: SVG stroke drawn on scroll via stroke-dashoffset (pathLength=100) */
.steps__line { position: absolute; top: 24px; left: 12%; right: 12%; height: 6px; z-index: 0; overflow: visible; }
.steps__path { fill: none; stroke: url(#stepLineGrad); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 0; filter: drop-shadow(0 0 4px rgba(201,168,76,.3)); }
.no-js .steps__path, .anim-fallback .steps__path { stroke-dashoffset: 0 !important; }
.step { position: relative; z-index: 1; text-align: center; }
/* oversized watermark numeral behind each step */
.step__ghost { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; font-size: clamp(100px, 13vw, 170px); font-weight: 900; line-height: 1; letter-spacing: -.04em; color: rgba(201,168,76,.07); pointer-events: none; user-select: none; }
.step > .step__num, .step > h3, .step > p { position: relative; z-index: 1; }
.step__num { width: 54px; height: 54px; margin: 0 auto 22px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; box-shadow: 0 0 26px rgba(201,168,76,.25); }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15.5px; color: var(--t-3); max-width: 30ch; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-line:first-of-type { padding-top: 0; }
.contact-line .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.contact-line__lbl { font-size: 13.5px; color: var(--t-4); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.contact-line a, .contact-line span { font-size: 18px; color: var(--t-1); font-weight: 500; }
.contact-line a:hover { color: var(--gold); }
.soft-note { margin-top: 30px; padding: 26px; border-radius: var(--r-card); background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.18); font-size: 16px; color: var(--t-2); line-height: 1.65; }

.form { padding: 36px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 14.5px; font-weight: 600; color: var(--t-2); margin-bottom: 8px; }
.form-row label .req { color: var(--gold); }
.form-control {
  width: 100%; font-family: var(--font); font-size: 16px; color: #fff;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 14px 16px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-control::placeholder { color: var(--t-4); }
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.07); box-shadow: 0 0 0 3px rgba(201,168,76,.18); }
select.form-control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form__status { margin-top: 14px; font-size: 14.5px; min-height: 1em; }
.form__status.err { color: #ff8d7a; }
.form-success { text-align: center; padding: 30px 20px; }
.form-success__ic { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: rgba(201,168,76,.14); border: 1px solid rgba(201,168,76,.4); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.form-success h3 { font-size: 23px; margin-bottom: 12px; }
.form-success p { color: var(--t-3); font-size: 16px; max-width: 36ch; margin: 0 auto; }
.is-hidden { display: none !important; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band__box { position: relative; overflow: hidden; max-width: 880px; margin: 0 auto; padding: clamp(50px, 7vw, 84px) 32px; border-radius: var(--r-card); border: 1px solid rgba(201,168,76,.22); background: linear-gradient(160deg, rgba(201,168,76,.10), rgba(255,255,255,.02)); box-shadow: 0 30px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08); }
.cta-band__box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,.16), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; position: relative; }
.cta-band p { margin: 18px auto 36px; max-width: 48ch; font-size: 18px; color: var(--t-2); position: relative; }

/* ==========================================================================
   FOOTER  (3 columns)
   ========================================================================== */
.footer { background: rgba(5,8,18,.92); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; }
.footer__brand .logo-text { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.footer__brand .logo-text .g { color: var(--gold); }
.footer__brand p { margin-top: 16px; font-size: 15px; color: var(--t-3); max-width: 32ch; line-height: 1.6; }
.footer__col h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--t-4); margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col span { display: block; font-size: 15px; color: var(--t-3); padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--t-4); }

/* ==========================================================================
   PAGE HEADER (legal pages)
   ========================================================================== */
.page-head { padding: 180px 0 60px; text-align: center; }
.page-head h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; }
.page-head p { margin-top: 16px; color: var(--t-3); font-size: 18px; }
.legal-block { margin-bottom: 44px; }
.legal-block > h2 { font-size: 24px; font-weight: 800; margin-bottom: 20px; color: var(--t-1); }
.legal-block > h3, .legal-item h3 { font-size: 17px; font-weight: 700; color: var(--t-1); margin: 18px 0 8px; }
.legal-block > p, .legal-item p { color: var(--t-3); font-size: 16px; margin-bottom: 8px; }
.legal-block a, .legal-item a { color: var(--gold); }
.legal-block a:hover { text-decoration: underline; }
.imp-card, .legal-item { background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 26px; margin-bottom: 16px; }
.legal-narrow { max-width: 820px; margin: 0 auto; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .pin-wrap { grid-template-columns: 1fr; gap: 36px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .service, .service--rev .service__media { grid-template-columns: 1fr; }
  .service--rev .service__media { order: 0; }
  .about, .region-split { grid-template-columns: 1fr; }
  .about__img { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 9px 9px 9px 18px; }

  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento .bento-a, .bento .bento-b, .bento .bento-c, .bento .bento-d { grid-column: auto; grid-row: auto; }
  .bento-a { min-height: 260px; }

  .values-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps__line { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .word { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
  .service__media img { transform: scale(1) !important; }
  .scrub-text .w { opacity: 1 !important; }
  .steps__path { stroke-dashoffset: 0 !important; }
  .step__ghost { opacity: 1 !important; transform: none !important; }
  .hero__cta .btn--gold::before { animation: none; }
  * { scroll-behavior: auto !important; }
}
