/* =========================================================================
   HELIO STUDIO — Design System
   Warmes Licht · Fraunces + Hanken Grotesk · statisch, CSP-konform
   ========================================================================= */

/* --- Fonts (self-hosted, latin subset) ------------------------------------ */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-normal.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-italic.woff2') format('woff2');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('fonts/hanken-var.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* --- Design tokens -------------------------------------------------------- */
:root {
  /* Surfaces */
  --paper:      #FAF7F2;   /* Warmweiss */
  --sand:       #F3EDE3;   /* gebrochenes Sand */
  --sand-deep:  #EBE2D4;
  --card:       #FFFFFF;
  --ink:        #171E28;   /* tiefes Blauschwarz */
  --ink-deep:   #10151D;   /* fast schwarz, dunkle Sektionen */
  --ink-soft:   #55606E;   /* Sekundärtext auf hell */

  /* Accents */
  --sun:        #F2A93B;   /* Sonnengold (Flächen/Badges) */
  --sun-soft:   #F8C877;
  --gold-text:  #935A0F;   /* goldener TEXT auf hell — Kontrast ≥ 4.5:1 */
  --petrol:     #0E7C93;   /* abgedunkeltes Petrol-Cyan */
  --petrol-deep:#0A5C6E;
  --petrol-lite:#4FB3C6;   /* Petrol-Text auf dunklem Grund */

  /* Lines & shadows */
  --line:       rgba(23,30,40,.10);
  --line-soft:  rgba(23,30,40,.06);
  --line-dark:  rgba(255,255,255,.12);
  --shadow-sm:  0 1px 2px rgba(23,30,40,.04), 0 2px 8px rgba(23,30,40,.05);
  --shadow-md:  0 6px 18px -8px rgba(23,30,40,.14), 0 2px 6px rgba(23,30,40,.05);
  --shadow-lg:  0 24px 60px -22px rgba(23,30,40,.30), 0 8px 24px -14px rgba(23,30,40,.14);
  --shadow-gold:0 18px 46px -16px rgba(242,169,59,.55);

  /* Type scale (fluid) */
  --step--1: clamp(.83rem, .80rem + .12vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.12rem + .4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + .75vw, 2rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.5vw, 2.9rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.5vw, 4rem);
  --step-5:  clamp(3rem, 2.2rem + 4vw, 5.75rem);

  /* Spacing */
  --space-section: clamp(2.75rem, 2.2rem + 2.2vw, 4.5rem);
  --container: 74rem;
  --radius:   18px;
  --radius-lg:28px;
  --radius-sm:11px;

  /* Motion */
  --dur-fast: 160ms;
  --dur:      320ms;
  --dur-slow: 620ms;
  --ease:     cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.22,.61,.36,1);
}

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

body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Typography ----------------------------------------------------------- */
.font-serif { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); font-weight: 460; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p  { text-wrap: pretty; }
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }
em, .italic { font-style: italic; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-text);
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sun), transparent);
}
.eyebrow.on-dark { color: var(--sun-soft); }
.accent.on-dark { color: var(--sun-soft); }
.bg-ink .card { color: var(--ink); }
.bg-ink .card h3 { color: var(--ink); }
.ki-cta { text-align: center; margin-top: clamp(2rem, 1.4rem + 2vw, 3rem); }
.ki-cta p { color: #C7CDD6; margin: 1rem 0 1.5rem; }
.ki-cta .badge { margin-bottom: .2rem; }
/* Website-Check-Block */
.check-sec .grid-2 { align-items: center; gap: clamp(2rem, 1rem + 4vw, 4rem); }
.check-visual { display: flex; justify-content: center; }
.gauge-num { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 54px; fill: var(--ink); }
.gauge-sub { font-family: 'Hanken Grotesk', sans-serif; font-size: 16px; fill: var(--ink-soft); }
.check-list { display: grid; gap: .55rem; margin: 1.3rem 0 1.7rem; }
.check-list li { display: flex; gap: .6rem; align-items: center; color: var(--ink-soft); }
.check-list .tick { color: var(--gold-text); font-weight: 700; }
@media (max-width: 720px) { .check-visual { order: -1; } .check-visual svg { width: 180px; height: 180px; } }
/* Zentrierte Überschriften: symmetrischer Strich auch rechts */
.section-head.center .eyebrow::after {
  content: ""; width: 1.6rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--sun));
}

/* --- Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, .6rem + 2vw, 2rem); }
.section { padding-block: var(--space-section); border-top: 1px solid var(--line); }
#leistungen { border-top: 0; }        /* Trust-Strip trennt bereits */
.section.bg-ink { border-top: 0; }    /* Farbwechsel hell→dunkel trennt */
.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1.1rem; }
.stack > * + * { margin-top: 1.1rem; }

.bg-sand   { background: var(--sand); }
.bg-ink    { background: var(--ink-deep); color: #EDE7DC; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #FCFAF6; }
.bg-ink .lead, .bg-ink p { color: rgba(237,231,220,.78); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  font-weight: 650; font-size: .98rem; letter-spacing: -.01em;
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur), border-color var(--dur), color var(--dur);
  will-change: transform;
}
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: #FCFAF6; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); background: var(--ink-deep); box-shadow: var(--shadow-lg); }
.btn-sun { background: var(--sun); color: var(--ink); box-shadow: var(--shadow-md); }
.btn-sun:hover { transform: translateY(-2px); background: var(--sun-soft); box-shadow: var(--shadow-gold); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-outline-dark { border: 1px solid var(--line-dark); color: #FCFAF6; }
.btn-outline-dark:hover { transform: translateY(-2px); border-color: var(--sun); color: var(--sun-soft); }
.btn-block { width: 100%; }

.textlink { color: var(--gold-text); font-weight: 650; display: inline-flex; align-items: center; gap: .4rem; border-bottom: 1px solid transparent; transition: border-color var(--dur); }
.textlink .arrow { transition: transform var(--dur) var(--ease); }
.textlink:hover { border-color: currentColor; }
.textlink:hover .arrow { transform: translateX(3px); }

/* --- Chips / badges ------------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--sand); color: var(--ink-soft);
  border: 1px solid var(--line-soft);
  padding: .4rem .9rem; border-radius: 999px;
  font-size: .84rem; font-weight: 550;
}
.chip .dot { width: .45rem; height: .45rem; border-radius: 50%; background: var(--petrol); }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--sun); color: var(--ink);
  padding: .32rem .8rem; border-radius: 999px;
  font-size: .72rem; font-weight: 750; letter-spacing: .02em;
  text-transform: uppercase;
}

/* =========================================================================
   NAVIGATION  (CSS-only mobile menu via hidden checkbox — kein JS)
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250,247,242,.82);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4.6rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.32rem; letter-spacing: -.02em; color: var(--ink); }
.brand-logo { height: 2.35rem; width: auto; display: block; }
.brand-logo-invert { filter: brightness(0) invert(1); opacity: .92; }
.brand .mark {
  display: inline-grid; place-items: center;
  width: 2.1rem; height: 2.1rem; border-radius: 9px;
  background: radial-gradient(120% 120% at 30% 20%, var(--sun-soft), var(--sun) 55%, var(--petrol));
  color: var(--ink); font-weight: 800; font-family: 'Hanken Grotesk', sans-serif; font-size: 1.05rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.5), 0 4px 14px -4px rgba(242,169,59,.6);
}
.brand small { font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-soft); align-self: flex-end; padding-bottom: .28rem; margin-left: -.15rem; }

.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-link { padding: .5rem .8rem; border-radius: 8px; color: var(--ink-soft); font-weight: 550; font-size: .95rem; transition: color var(--dur), background var(--dur); }
.nav-link:hover { color: var(--ink); background: rgba(23,30,40,.05); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }

.nav-close { display: none; }
.nav-burger { display: none; }

/* Desktop */
@media (min-width: 961px) {
  .nav-mobile-only { display: none !important; }
}
/* Mobile */
@media (max-width: 960px) {
  .nav-desktop-only { display: none !important; }
  .nav-burger {
    display: inline-grid; place-items: center; width: 2.8rem; height: 2.8rem;
    border-radius: 10px; border: 1px solid var(--line); background: var(--card);
  }
  .nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform var(--dur), opacity var(--dur); }
  .nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur), top var(--dur); }
  .nav-burger span::before { top: -6px; }
  .nav-burger span::after  { top: 6px; }

  .nav-panel {
    position: fixed; inset: 0; z-index: 120;
    background: var(--paper);
    padding: 5.5rem 1.5rem 2rem;
    display: flex; flex-direction: column; gap: .2rem;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    overflow-y: auto;
  }
  .nav-panel .nav-link { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 500; color: var(--ink); padding: .7rem .2rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-panel .btn { margin-top: 1.2rem; }
  .nav-close {
    display: inline-grid; place-items: center; position: absolute; top: 1.4rem; right: 1.5rem;
    width: 2.8rem; height: 2.8rem; border-radius: 10px; border: 1px solid var(--line); font-size: 1.5rem; color: var(--ink);
  }
  /* open state via :target */
  .nav-panel:target { transform: translateX(0); }
}
/* Scroll-Lock, solange das Menü offen ist (ausserhalb der Breakpoint-Query,
   greift nur, wenn das Panel per :target sichtbar ist) */
html:has(.nav-panel:target) { overflow: hidden; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding-top: clamp(7rem, 6rem + 6vw, 10rem); padding-bottom: clamp(3rem, 2rem + 4vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -20% 40% 30% -20%;
  background: radial-gradient(60% 60% at 30% 30%, rgba(242,169,59,.28), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; z-index: 0; inset: 20% -25% -30% 55%;
  background: radial-gradient(55% 55% at 60% 40%, rgba(14,124,147,.20), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero h1 { margin-top: 1.4rem; }
.hero h1 .accent { font-style: italic; color: var(--gold-text); }
.hero .lead { margin-top: 1.5rem; max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 1.8rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-trust li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; font-weight: 550; color: var(--ink-soft); }
.hero-trust svg { flex: none; color: var(--petrol); }

/* Browser mockup visual */
.hero-visual { position: relative; }
.mock {
  position: relative; border-radius: var(--radius-lg); background: var(--card);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); overflow: hidden;
  transform: rotate(1.6deg);
}
.mock-bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; background: var(--sand); border-bottom: 1px solid var(--line-soft); }
.mock-bar i { width: .7rem; height: .7rem; border-radius: 50%; background: #D9CFBF; }
.mock-bar i:nth-child(1){ background:#E88A7D; } .mock-bar i:nth-child(2){ background:var(--sun-soft);} .mock-bar i:nth-child(3){ background:#8FC9A6; }
.mock-url { margin-left: .6rem; flex: 1; height: 1.4rem; border-radius: 999px; background: var(--card); border: 1px solid var(--line-soft); display: flex; align-items: center; padding: 0 .7rem; font-size: .68rem; color: var(--ink-soft); }
.mock-shot { display: block; width: 100%; height: auto; }
.mock-body { padding: 1.6rem 1.5rem 1.9rem; }
.mock-hero { height: 5.2rem; border-radius: 12px; background: linear-gradient(120deg, var(--ink) 0%, var(--petrol-deep) 100%); position: relative; overflow: hidden; }
.mock-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 15% 10%, rgba(242,169,59,.5), transparent 60%); }
.mock-line { height: .62rem; border-radius: 6px; background: var(--sand-deep); margin-top: .8rem; }
.mock-line.w70 { width: 70%; } .mock-line.w45 { width: 45%; } .mock-line.w90{width:90%;}
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .7rem; margin-top: 1.2rem; }
.mock-cards div { height: 3.4rem; border-radius: 10px; background: var(--sand); border: 1px solid var(--line-soft); }
.mock-cards div:nth-child(2){ background: var(--sun); }
.float-card {
  position: absolute; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: .8rem 1rem;
  display: flex; align-items: center; gap: .7rem; font-size: .84rem; font-weight: 600;
}
.float-card .ic { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 9px; background: var(--sand); color: var(--petrol); flex: none; }
/* Responsive-Showcase: Webseite (Desktop-Browser) + Handy davor — beide vollständig,
   prozentual skalierend im festen Seitenverhältnis, damit nichts abgeschnitten wird. */
.showcase { position: relative; width: 100%; max-width: 33rem; margin: 0 auto; aspect-ratio: 10 / 8; }
.showcase::before {
  content: ""; position: absolute; inset: 6%; z-index: 0;
  background: radial-gradient(circle at 42% 34%, rgba(242,169,59,.28), rgba(14,124,147,.10) 55%, transparent 74%);
  filter: blur(30px); border-radius: 50%; pointer-events: none;
}
/* Desktop-Browserfenster (die „Webseite") */
.browser {
  position: absolute; top: 2%; left: 0; width: 80%; z-index: 1;
  border-radius: 14px; overflow: hidden; background: var(--card);
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-lg);
}
.browser-bar { display: flex; align-items: center; gap: .35rem; padding: .5rem .65rem; background: var(--sand); border-bottom: 1px solid var(--line-soft); }
.browser-bar i { width: .5rem; height: .5rem; border-radius: 50%; background: #D9CFBF; flex: none; }
.browser-bar i:nth-child(1){ background:#E88A7D; } .browser-bar i:nth-child(2){ background:var(--sun-soft); } .browser-bar i:nth-child(3){ background:#8FC9A6; }
.browser-url { margin-left: .35rem; flex: 1; height: 1rem; border-radius: 999px; background: var(--card); border: 1px solid var(--line-soft); display: flex; align-items: center; padding: 0 .55rem; font-size: .58rem; color: var(--ink-soft); overflow: hidden; }
.browser img { width: 100%; display: block; }
/* Handy davor rechts */
.phone {
  position: absolute; right: 0; bottom: 0; width: 34%; z-index: 2;
  border-radius: 1.7rem; padding: .32rem; background: var(--ink-deep);
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
}
.phone-inner { border-radius: 1.4rem; overflow: hidden; background: var(--ink-deep); line-height: 0; }
.phone-inner img { width: 100%; display: block; }
.badge-mobil {
  position: absolute; z-index: 4; bottom: 4%; left: -4%; right: auto;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: .5rem .9rem;
  font-size: .8rem; font-weight: 650; color: var(--ink);
  box-shadow: var(--shadow-md); transform: rotate(-2deg);
}
.badge-mobil .d { width: .5rem; height: .5rem; border-radius: 50%; background: #37B24D; box-shadow: 0 0 0 3px rgba(55,178,77,.2); flex: none; }
.float-1 { top: -5%; left: -5%; right: auto; transform: rotate(-3deg); z-index: 4; }

/* Logo-strip / trust marquee */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; padding-block: 1.6rem; }
.trust-strip span { font-size: .9rem; color: var(--ink-soft); font-weight: 550; }
.trust-strip strong { color: var(--ink); font-weight: 700; }

/* =========================================================================
   CARDS / GRIDS
   ========================================================================= */
.grid { display: grid; gap: clamp(1rem, .6rem + 1.5vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card .ic {
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 13px;
  background: var(--sand); color: var(--petrol); margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card-accent .ic { background: rgba(242,169,59,.16); color: var(--gold-text); }

/* Service feature list (leistungen) */
.feature { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding: 1.5rem 0; border-top: 1px solid var(--line-soft); }
.feature:first-child { border-top: 0; }
.feature .ic { display: grid; place-items: center; width: 2.9rem; height: 2.9rem; border-radius: 12px; background: var(--sand); color: var(--petrol); flex: none; }
.feature h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.feature p { color: var(--ink-soft); font-size: .96rem; }

/* Industry tags */
.tags { display: flex; flex-wrap: wrap; gap: .7rem; }
.tag {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.15rem; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  font-weight: 550; font-size: .95rem; color: var(--ink);
  transition: transform var(--dur) var(--ease), border-color var(--dur), background var(--dur);
}
.tag:hover { transform: translateY(-2px); border-color: var(--petrol); }
.tag .tico { width: 1.2rem; height: 1.2rem; color: var(--petrol); flex: none; }
.tag.tag-discreet { background: var(--ink-deep); color: #EDE7DC; border-color: transparent; }
.tag.tag-discreet .tico { color: var(--sun-soft); }
.tag.tag-discreet:hover { border-color: var(--sun); }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, .5rem + 1.5vw, 1.5rem); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan-featured { background: var(--ink-deep); color: #EDE7DC; border-color: transparent; box-shadow: var(--shadow-lg); }
.plan-featured h3, .plan-featured .price b { color: #FCFAF6; }
.plan-featured .plan-desc { color: rgba(237,231,220,.72); }
.plan-featured li { color: rgba(237,231,220,.9); }
.plan-featured .check { color: var(--sun); }
.plan-badge { position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%); }
.plan h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.plan-desc { font-size: .93rem; color: var(--ink-soft); min-height: 3.2rem; }
.price { display: flex; align-items: baseline; gap: .4rem; margin: 1.3rem 0 .3rem; }
.price small { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.plan-featured .price small { color: rgba(237,231,220,.7); }
.price b { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 500; letter-spacing: -.02em; }
.price .per { font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.plan-note { font-size: .8rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.plan-featured .plan-note { color: rgba(237,231,220,.6); }
.plan ul { display: grid; gap: .7rem; margin: .4rem 0 1.8rem; flex: 1; }
.plan li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; font-size: .92rem; line-height: 1.45; }
.check { color: var(--petrol); flex: none; margin-top: .15rem; }
.plan .btn { margin-top: auto; }

.addons { display: grid; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); gap: .7rem; }
.addon { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.1rem; background: var(--card); border: 1px solid var(--line-soft); border-radius: 12px; font-size: .93rem; font-weight: 550; }
.addon .plus { color: var(--gold-text); font-weight: 800; flex: none; }

/* =========================================================================
   PROCESS STEPS
   ========================================================================= */
.steps { display: grid; gap: 1.2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; padding: 1.5rem; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.step-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--ink); display: grid; place-items: center; width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--sand); border: 1px solid var(--line-soft); flex: none; }
.step:nth-child(odd) .step-num { color: var(--gold-text); }
.step:nth-child(even) .step-num { color: var(--petrol); }
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* =========================================================================
   PROJECTS / REFERENCES
   ========================================================================= */
.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, .6rem + 1.5vw, 1.6rem); }
.project { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-visual { position: relative; aspect-ratio: 4/3; display: grid; place-items: center; overflow: hidden; background: var(--sand); }
.project-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform var(--dur-slow) var(--ease); }
.project:hover .project-visual img { transform: scale(1.03); }
.project-visual .demo-badge { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: rgba(23,30,40,.82); color: #FCFAF6; padding: .3rem .7rem; border-radius: 999px; font-size: .68rem; font-weight: 650; letter-spacing: .03em; }
.project-link { display: block; color: inherit; }
.project-go { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: .85rem; font-weight: 650; color: var(--gold-text); }
.project-link .arrow { transition: transform var(--dur) var(--ease); }
.project-link:hover .arrow { transform: translateX(4px); }
.pv-1 { background: linear-gradient(135deg, #1C3A2E 0%, #2E5B45 100%); }
.pv-2 { background: linear-gradient(135deg, #1E2A44 0%, #3A4E7A 100%); }
.pv-3 { background: linear-gradient(135deg, #3A2416 0%, #7A4A28 100%); }
.pv-inner { width: 76%; }
.pv-inner .mock-mini { background: rgba(255,255,255,.94); border-radius: 10px; padding: .8rem; box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }
.pv-inner .mock-mini .b { height: 1.9rem; border-radius: 6px; background: linear-gradient(120deg,var(--ink),var(--petrol-deep)); }
.pv-inner .mock-mini .l { height: .4rem; border-radius: 4px; background: var(--sand-deep); margin-top: .5rem; }
.pv-inner .mock-mini .l.s { width: 55%; }
.pv-inner .mock-mini .r { display: flex; gap: .4rem; margin-top: .6rem; }
.pv-inner .mock-mini .r i { flex: 1; height: 1.1rem; border-radius: 5px; background: var(--sand); }
.pv-inner .mock-mini .r i:nth-child(2){ background: var(--sun); }
.project-body { padding: 1.4rem 1.4rem 1.6rem; }
.project-body .meta { display: flex; gap: .5rem; margin-bottom: .7rem; }
.project-body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.project-body p { color: var(--ink-soft); font-size: .92rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.project-tags span { font-size: .74rem; color: var(--ink-soft); background: var(--sand); border-radius: 6px; padding: .2rem .55rem; }

/* =========================================================================
   WHY / VALUE  +  ABOUT
   ========================================================================= */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,.6rem + 1.5vw,1.6rem); }
.value { padding: 1.6rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.value .n { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold-text); font-weight: 600; }
.value h3 { font-size: 1.22rem; margin: .5rem 0 .4rem; }
.value p { color: var(--ink-soft); font-size: .95rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.about-portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--sand); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-values { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }

/* =========================================================================
   FAQ  (native details/summary — kein JS)
   ========================================================================= */
.faq-list { display: grid; gap: .7rem; max-width: 48rem; }
details.faq { background: var(--card); border: 1px solid var(--line-soft); border-radius: 14px; padding: 0 1.4rem; box-shadow: var(--shadow-sm); transition: border-color var(--dur); }
details.faq[open] { border-color: var(--line); }
details.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 500; cursor: pointer; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq .plus { flex: none; width: 1.6rem; height: 1.6rem; display: grid; place-items: center; color: var(--gold-text); font-size: 1.5rem; line-height: 1; transition: transform var(--dur) var(--ease); }
details.faq[open] .plus { transform: rotate(45deg); }
details.faq .faq-a { padding: 0 0 1.3rem; color: var(--ink-soft); font-size: .97rem; max-width: 42rem; }

/* =========================================================================
   CONTACT + FORM
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact-aside .lead { margin-top: 1.2rem; }
.contact-meta { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-meta a, .contact-meta div { display: flex; align-items: center; gap: .9rem; font-weight: 550; }
.contact-meta .ic { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border-radius: 11px; background: rgba(255,255,255,.08); color: var(--sun); flex: none; }
.bg-ink .contact-meta a:hover { color: var(--sun-soft); }

.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field label { display: block; font-size: .86rem; font-weight: 650; margin-bottom: .45rem; color: var(--ink); }
.field .opt { font-weight: 500; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .96rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 11px;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(14,124,147,.15); background: var(--card); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #C24B3A; }
.field select { 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='%2355606E' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.check-field { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.check-field input { width: 1.15rem; height: 1.15rem; margin-top: .18rem; accent-color: var(--petrol); flex: none; }
.check-field a { color: var(--gold-text); border-bottom: 1px solid transparent; }
.check-field a:hover { border-color: currentColor; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }

/* success (#danke:target) */
.alert { display: none; align-items: flex-start; gap: .9rem; padding: 1.2rem 1.4rem; border-radius: 14px; margin-bottom: 1.8rem; }
.alert .ic { flex: none; }
#danke:target ~ #kontakt .alert-ok,
.alert-ok.show { display: flex; }
.alert-ok { background: #E7F3EC; border: 1px solid #B6DBC3; color: #1F5233; }
.alert-ok .ic { color: #2E7D4F; }
.alert-err { background: #FBECE8; border: 1px solid #EBC3B8; color: #8A3322; }

/* =========================================================================
   CTA BANNER
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--ink-deep); color: #FCFAF6; border-radius: var(--radius-lg); padding: clamp(2.5rem,1.5rem + 4vw,4.5rem) clamp(1.5rem,1rem + 3vw,4rem); text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 90% at 20% 0%, rgba(242,169,59,.35), transparent 55%), radial-gradient(45% 80% at 90% 100%, rgba(14,124,147,.4), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #FCFAF6; margin-bottom: 1rem; }
.cta-band .lead { color: rgba(237,231,220,.82); max-width: 38rem; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 2rem; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink-deep); color: rgba(237,231,220,.7); padding-block: clamp(3rem,2rem + 3vw,4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.footer .brand { color: #FCFAF6; }
.footer .brand small { color: rgba(237,231,220,.55); }
.footer p { font-size: .92rem; margin-top: 1rem; max-width: 22rem; color: rgba(237,231,220,.66); }
.footer h4 { color: #FCFAF6; font-family: 'Hanken Grotesk', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { font-size: .93rem; color: rgba(237,231,220,.7); transition: color var(--dur); }
.footer-links a:hover { color: var(--sun-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .84rem; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--sun-soft); }

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.legal { padding-top: clamp(7rem,6rem + 5vw,9rem); }
.legal .container { max-width: 46rem; }
.legal h1 { font-size: var(--step-4); margin-bottom: .5rem; }
.legal h2 { font-size: var(--step-2); margin-top: 2.6rem; margin-bottom: .8rem; }
.legal h3 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: .4rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--gold-text); border-bottom: 1px solid transparent; }
.legal a:hover { border-color: currentColor; }
.legal .muted { font-size: .86rem; }
.legal .placeholder { background: rgba(242,169,59,.14); border-radius: 4px; padding: 0 .3rem; font-weight: 600; color: var(--gold-text); }
.legal-note { background: var(--sand); border: 1px solid var(--line); border-left: 3px solid var(--sun); border-radius: 10px; padding: 1rem 1.2rem; font-size: .88rem; color: var(--ink-soft); margin: 1.5rem 0; }

/* =========================================================================
   MOTION  (self-contained CSS reveal — Inhalt ist per Default sichtbar)
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  @keyframes reveal-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  .reveal { animation: reveal-up var(--dur-slow) var(--ease) both; }
  .reveal-2 { animation-delay: .08s; }
  .reveal-3 { animation-delay: .16s; }
  .reveal-4 { animation-delay: .24s; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; width: min(30rem, 100%); margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 24rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .plan-featured { order: -1; }
  .projects { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-cta .btn { width: 100%; }
  .showcase { max-width: 24rem; }
  .float-1 { top: -4%; left: -2%; }
  .badge-mobil { left: -2%; right: auto; bottom: 4%; }
}

/* =========================================================================
   PROJEKT-DETAILSEITE (Case Study)
   ========================================================================= */
.case { padding-bottom: clamp(3rem, 2.2rem + 2.5vw, 4.5rem); }
.case-hero { padding-top: clamp(6.5rem, 5.5rem + 4vw, 9rem); }
.case-hero .chip { margin-bottom: 1.3rem; }
.case-hero h1 { font-size: var(--step-4); max-width: 20ch; }
.case-hero .lead { margin-top: 1.3rem; max-width: 46rem; }
.case-hero .lead strong { color: var(--ink); font-weight: 650; }
.case-meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2.6rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.case-meta div { display: flex; flex-direction: column; gap: .25rem; }
.case-meta span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.case-meta strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; }
.case-meta a { color: var(--gold-text); border-bottom: 1px solid transparent; transition: border-color var(--dur); }
.case-meta a:hover { border-color: currentColor; }
.case-shot { margin-top: 2.6rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); }
.case-shot img { width: 100%; display: block; }

.case-body { max-width: 44rem; padding-block: clamp(2.8rem, 2.2rem + 2vw, 4.5rem); }
.case-section { margin-bottom: clamp(2.2rem, 1.8rem + 1.5vw, 3rem); }
.case-section .eyebrow { margin-bottom: .8rem; }
.case-section h2 { font-size: var(--step-2); margin-bottom: .8rem; }
.case-section p { color: var(--ink-soft); font-size: 1.06rem; }
.case-section a { color: var(--gold-text); border-bottom: 1px solid currentColor; }
.case-list { display: grid; gap: .75rem; margin-top: .4rem; }
.case-list li { display: grid; grid-template-columns: auto 1fr; gap: .65rem; font-size: 1.02rem; align-items: start; }
.case-list .check { color: var(--petrol); margin-top: .15rem; flex: none; }

.case-mobile { margin: 0 0 clamp(2.5rem, 2rem + 2vw, 4rem); display: grid; grid-template-columns: 1fr auto; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center; background: var(--sand); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.4rem + 2vw, 2.8rem); }
.case-mobile-text .eyebrow { margin-bottom: .7rem; }
.case-mobile-text h2 { font-size: var(--step-1); margin-bottom: .6rem; }
.case-mobile-text p { color: var(--ink-soft); font-size: .98rem; }
.case-mobile img { width: 190px; max-width: 42vw; display: block; border-radius: 1.5rem; box-shadow: var(--shadow-lg); border: 6px solid var(--ink-deep); }
@media (max-width: 620px) {
  .case-mobile { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .case-mobile img { max-width: 62vw; }
}

/* =========================================================================
   FAKTEN-BAND  (Statistik / Credibility)
   ========================================================================= */
.stats { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 1rem + 3vw, 3.25rem); padding-block: clamp(2.5rem, 2rem + 2vw, 3.75rem); }
.stat { text-align: center; padding-inline: .5rem; }
.stat b { display: block; font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2.6rem, 2rem + 2.4vw, 3.6rem); line-height: 1; color: var(--gold-text); letter-spacing: -.01em; }
.stat h3 { font-size: 1.05rem; margin: .75rem 0 .35rem; }
.stat p { font-size: .92rem; color: var(--ink-soft); max-width: 21rem; margin-inline: auto; }
.stat cite { display: block; font-style: normal; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); opacity: .68; margin-top: .6rem; }
.stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 720px) {
  .stats .container { grid-template-columns: 1fr; gap: 0; }
  .stat { padding-block: 1.9rem; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
}

/* =========================================================================
   VERSPRECHEN / GARANTIE
   ========================================================================= */
.promise { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center;
  background: linear-gradient(135deg, #fff, var(--sand)); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.4rem + 2.5vw, 3.25rem); box-shadow: var(--shadow-md);
  position: relative; overflow: hidden; }
.promise::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(var(--sun), var(--petrol)); }
.promise-badge { width: clamp(64px, 8vw, 92px); height: clamp(64px, 8vw, 92px); flex: none; border-radius: 22px;
  display: grid; place-items: center; background: rgba(14,124,147,.1); color: var(--petrol); }
.promise-badge svg { width: 52%; height: 52%; }
.promise-body .eyebrow { margin-bottom: .5rem; }
.promise-body h2 { font-size: var(--step-2); margin-bottom: .8rem; }
.promise-body h2 .accent { color: var(--gold-text); font-style: italic; }
.promise-lead { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.promise-lead b { color: var(--ink); font-weight: 650; }
.promise-points { display: grid; gap: .7rem; }
.promise-points li { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .98rem; color: var(--ink-soft); }
.promise-points .check { color: var(--petrol); margin-top: .1rem; flex: none; font-weight: 700; }
.promise-points b { color: var(--ink); font-weight: 650; }
@media (max-width: 640px) {
  .promise { grid-template-columns: 1fr; }
  .promise-badge { margin-bottom: .2rem; }
}

/* =========================================================================
   KUNDENSTIMMEN / REVIEWS
   ========================================================================= */
.stars { color: var(--sun); letter-spacing: .08em; line-height: 1; }
.reviews-summary { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .55rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); font-size: 1.05rem; color: var(--ink-soft); }
.reviews-summary .stars { font-size: 1.25rem; }
.reviews-summary strong { color: var(--ink); font-weight: 750; }
.reviews-summary a { color: var(--gold-text); border-bottom: 1px solid currentColor; font-weight: 600; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, .6rem + 1.5vw, 1.6rem); }
.review { display: flex; flex-direction: column; gap: 1rem; padding: 1.7rem;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.review .stars { font-size: 1.05rem; }
.review-quote { font-size: 1.02rem; line-height: 1.55; color: var(--ink); font-style: italic; margin: 0; }
.review-author { display: flex; flex-direction: column; margin-top: auto; }
.review-author b { font-weight: 650; color: var(--ink); }
.review-author span { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
}
