/* ============================================================
   RHÖNFACKEL — Design System v2
   Richtung: Warm, premium, editorial (statt industriell)
   Fonts: Fraunces (Display-Serif) + Figtree (Body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Figtree:wght@400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Color — warm dark, etwas angehoben & einladender */
  --bg-base:      oklch(16% 0.014 52);
  --bg-surface:   oklch(20% 0.016 50);
  --bg-elevated:  oklch(25% 0.018 48);
  --border:       oklch(34% 0.020 50);
  --border-faint: oklch(27% 0.014 50);

  --accent:       oklch(72% 0.155 52);
  --accent-warm:  oklch(78% 0.170 55);
  --accent-dim:   oklch(58% 0.110 52);
  --accent-glow:  oklch(72% 0.155 52 / 0.14);

  --whatsapp:     oklch(58% 0.16 150);

  --text-1: oklch(96% 0.012 78);
  --text-2: oklch(76% 0.015 68);
  --text-3: oklch(58% 0.012 62);

  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  /* Fluide Schriftgrößen */
  --step--1: clamp(0.78rem, 0.74rem + 0.18vw, 0.875rem);
  --step-0:  clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --step-1:  clamp(1.0625rem, 1rem + 0.3vw, 1.2rem);
  --step-2:  clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
  --step-3:  clamp(1.7rem, 1.4rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.3rem, 1.8rem + 2.5vw, 3.8rem);
  --step-5:  clamp(2.9rem, 2.1rem + 3.9vw, 5.2rem);

  /* Fluider Abstand */
  --sp-xs:  clamp(0.5rem, 0.45rem + 0.25vw, 0.625rem);
  --sp-sm:  clamp(0.75rem, 0.68rem + 0.35vw, 1rem);
  --sp-md:  clamp(1rem, 0.88rem + 0.6vw, 1.5rem);
  --sp-lg:  clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  --sp-xl:  clamp(2.5rem, 1.9rem + 3vw, 4.5rem);
  --sp-2xl: clamp(3.5rem, 2.6rem + 5vw, 7rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur:      240ms;
  --dur-slow: 520ms;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --shadow:    0 18px 50px -20px oklch(0% 0 0 / 0.65);
  --shadow-sm: 0 8px 24px -12px oklch(0% 0 0 / 0.5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-1);
  line-height: 1.7;
  color: var(--text-2);
  background: var(--bg-base);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === TYPOGRAFIE === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--text-1);
}

h1 { font-size: var(--step-5); font-weight: 600; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

p { max-width: 66ch; }

/* Eyebrow / kleine Auszeichnung — der EINZIGE Ort mit Versalien */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

/* === LAYOUT UTILS === */
.container {
  width: min(1180px, 100% - var(--sp-lg) * 2);
  margin-inline: auto;
}

.section-pad { padding-block: var(--sp-2xl); }

.section-head { margin-bottom: var(--sp-xl); max-width: 60ch; }
.section-head .eyebrow { margin-bottom: var(--sp-sm); }
.section-head h2 { margin-bottom: var(--sp-md); }
.section-head__lead { color: var(--text-2); font-size: var(--step-1); }
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .section-head__lead { margin-inline: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn--sm { padding: 0.6rem 1.25rem; font-size: var(--step--1); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: oklch(18% 0.02 50);
  box-shadow: 0 8px 24px -10px var(--accent);
}
.btn--primary:hover { background: var(--accent-warm); box-shadow: 0 12px 30px -10px var(--accent-warm); }

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-1);
}
.btn--outline:hover { border-color: var(--accent-dim); background: var(--accent-glow); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: oklch(98% 0.01 150);
  box-shadow: 0 8px 24px -12px var(--whatsapp);
}
.btn--whatsapp:hover { filter: brightness(1.08); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(16% 0.014 52 / 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-faint);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-md);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  transition: color var(--dur) var(--ease-out);
}
.nav__logo span { color: var(--accent); }
.nav__logo:hover { color: var(--accent); }
.nav__logo-img { height: 42px; width: auto; display: block; }
.footer__logo-img { height: 56px; width: auto; display: block; margin-bottom: var(--sp-sm); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-left: auto;
}

.nav__link {
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur) var(--ease-out);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--text-1); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--text-1); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-left: var(--sp-sm); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur);
}
.nav__links--open {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-faint);
  padding: var(--sp-lg);
  gap: var(--sp-md);
  z-index: 99;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: calc(100svh - 68px);
  max-width: 1280px;        /* zentriert, bündig mit dem restlichen Seiteninhalt */
  margin-inline: auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--sp-2xl);
  padding-inline: var(--sp-lg) clamp(1.5rem, 4vw, 4.5rem);
}

.hero__eyebrow { margin-bottom: var(--sp-md); }

.hero__heading {
  margin-bottom: var(--sp-lg);
  max-width: 14ch;
}
.hero__heading em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: var(--step-2);
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: var(--sp-lg);
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--border-faint);
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--text-2);
}
.hero__proof-item svg { color: var(--accent); flex-shrink: 0; }

/* Visual */
.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  margin: var(--sp-md) var(--sp-md) var(--sp-md) 0;
  border-radius: var(--radius-lg);
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 35% 78%, oklch(60% 0.19 44 / 0.7) 0%, transparent 64%),
    radial-gradient(ellipse 50% 40% at 12% 95%, oklch(48% 0.15 38 / 0.55) 0%, transparent 55%),
    linear-gradient(160deg, oklch(22% 0.016 52) 0%, oklch(13% 0.01 50) 100%);
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__badge {
  position: absolute;
  bottom: var(--sp-lg);
  left: var(--sp-lg);
  z-index: 2;
  background: oklch(14% 0.012 52 / 0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__badge-main {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-1);
}
.hero__badge-sub {
  font-size: var(--step--1);
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ============================================================
   PRODUKTE
   ============================================================ */
.products { background: var(--bg-surface); }

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.product-card {
  background: var(--bg-base);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--border); }

.product-card__visual {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.product-card--main .product-card__visual {
  background: radial-gradient(ellipse 60% 50% at 42% 70%, oklch(56% 0.17 44 / 0.55) 0%, transparent 60%),
              linear-gradient(135deg, oklch(20% 0.014 52) 0%, oklch(14% 0.01 50) 100%);
}
.product-card--secondary .product-card__visual {
  background: radial-gradient(ellipse 50% 40% at 60% 60%, oklch(44% 0.07 200 / 0.25) 0%, transparent 60%),
              linear-gradient(135deg, oklch(24% 0.012 52) 0%, oklch(16% 0.01 50) 100%);
}
.product-card__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Freigestelltes Produktbild auf hellem „Studio"-Grund */
.product-card__visual--product {
  background: radial-gradient(circle at 50% 38%, oklch(96% 0.004 80), oklch(87% 0.006 70)) !important;
}
.product-card__visual--product img { object-fit: contain; padding: 7%; }

/* Generische Bildfläche (Figure) */
.media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-faint);
  box-shadow: var(--shadow-sm);
}
.media img { display: block; width: 100%; height: auto; }
/* --wide zeigt das Bild vollständig (kein Beschnitt) */
.media--wide img { height: auto; object-fit: contain; }
.media__caption {
  font-size: var(--step--1);
  color: var(--text-3);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--bg-surface);
}
.product-card__tag {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  background: var(--accent);
  color: oklch(18% 0.02 50);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-card__tag--muted {
  background: var(--bg-elevated);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.product-card__name { margin-bottom: var(--sp-sm); }
.product-card__desc { color: var(--text-2); font-size: var(--step-0); margin-bottom: var(--sp-md); }

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border-faint);
}
.product-card__feature {
  display: flex;
  align-items: baseline;
  gap: var(--sp-sm);
  font-size: var(--step-0);
  color: var(--text-2);
}
.product-card__feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

.product-card__body { display: flex; flex-direction: column; flex: 1; }

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-top: auto;
}
.product-card__price { display: flex; flex-direction: column; gap: 2px; }
.product-card__price-label {
  font-size: var(--step--1);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.product-card__price-value {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.1;
}
.product-card__price-note {
  font-size: var(--step--1);
  color: var(--text-3);
}

/* ============================================================
   NOTICE BAND — Hinweis Grillfürst
   ============================================================ */
.notice-band { background: var(--bg-base); padding-bottom: var(--sp-2xl); }
.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
}
.notice__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}
.notice__desc { color: var(--text-2); font-size: var(--step-0); max-width: 60ch; }
.notice__desc strong { color: var(--text-1); }
.notice .btn { flex-shrink: 0; }

/* Bestellsumme */
.order__summary {
  margin-top: var(--sp-md);
  padding: var(--sp-md);
  background: var(--bg-base);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.order__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--step-0);
  color: var(--text-2);
}
.order__summary-row--total {
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px solid var(--border-faint);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text-1);
}

/* ============================================================
   VORTEILE
   ============================================================ */
.benefits { background: var(--bg-base); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.benefit {
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur);
}
.benefit:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.benefit__icon {
  color: var(--accent);
  width: 30px; height: 30px;
  margin-bottom: var(--sp-xs);
}
.benefit__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-1);
}
.benefit__desc { font-size: var(--step-0); color: var(--text-2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-surface); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.testimonial {
  background: var(--bg-base);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: var(--accent); font-size: var(--step-1); letter-spacing: 2px; }
.testimonial__text {
  color: var(--text-1);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--step-1);
  line-height: 1.55;
  flex: 1;
  max-width: none;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border-faint);
}
.testimonial__name {
  font-weight: 600;
  color: var(--text-1);
}
.testimonial__location { font-size: var(--step--1); color: var(--text-3); }

/* ============================================================
   BESTELLEN
   ============================================================ */
.order { background: var(--bg-base); border-top: 1px solid var(--border-faint); }

.order__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.order__step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}
.order__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
}
.order__step-title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}
.order__step-desc { font-size: var(--step-0); color: var(--text-2); }

.order__panel {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow);
}

.order__form-title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-md);
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-md); }
.field--row { flex-direction: row; gap: var(--sp-md); }
.field--row .field { flex: 1; margin-bottom: 0; }
.field__label { font-size: var(--step--1); font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; }
.field__opt { color: var(--text-3); font-weight: 400; }
.field__input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: var(--text-1);
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field__input::placeholder { color: var(--text-3); }
.field__input:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea.field__input { resize: vertical; line-height: 1.5; }
select.field__input { appearance: none; cursor: pointer; }

.order__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}
.order__hint { font-size: var(--step--1); color: var(--text-3); margin-top: var(--sp-sm); }

.order__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  background: var(--bg-base);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius);
  padding: var(--sp-md);
}
.order__contact-title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-xs);
}
.order__contact-row {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  transition: background var(--dur);
}
.order__contact-row:hover { background: var(--bg-surface); }
.order__contact-row svg { color: var(--accent); flex-shrink: 0; }
.order__contact-row span { display: flex; flex-direction: column; font-weight: 500; }
.order__contact-label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-faint);
  padding-block: var(--sp-xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border-faint);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-sm);
}
.footer__brand-name span { color: var(--accent); }
.footer__tagline { color: var(--text-3); font-size: var(--step-0); margin-bottom: var(--sp-md); max-width: 36ch; }
.footer__social { display: flex; gap: var(--sp-sm); }
.footer__social-link {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  color: var(--text-3);
  border-radius: 50%;
  transition: color var(--dur), border-color var(--dur), background var(--dur);
}
.footer__social-link:hover { color: var(--accent); border-color: var(--accent-dim); background: var(--accent-glow); }
.footer__social-link svg { width: 17px; height: 17px; }
.footer__nav-title {
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: var(--sp-md);
}
.footer__nav-list { display: flex; flex-direction: column; gap: var(--sp-xs); }
.footer__nav-link { font-size: var(--step-0); color: var(--text-2); transition: color var(--dur); }
.footer__nav-link:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.footer__copy { font-size: var(--step--1); color: var(--text-3); }
.footer__legal { display: flex; gap: var(--sp-md); }
.footer__legal a { font-size: var(--step--1); color: var(--text-3); transition: color var(--dur); }
.footer__legal a:hover { color: var(--text-2); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   PAGE HERO — Unterseiten
   ============================================================ */
.page-hero {
  padding-block: var(--sp-2xl) var(--sp-xl);
  background:
    radial-gradient(ellipse 70% 80% at 85% 0%, var(--accent-glow) 0%, transparent 60%),
    var(--bg-surface);
  border-bottom: 1px solid var(--border-faint);
}
.page-hero .eyebrow { margin-bottom: var(--sp-sm); }
.page-hero h1 { font-size: var(--step-4); max-width: 20ch; margin-bottom: var(--sp-md); }
.page-hero__lead { font-size: var(--step-2); color: var(--text-2); max-width: 60ch; line-height: 1.5; }

/* ============================================================
   PROSE — Text-/Rechtsseiten
   ============================================================ */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: var(--sp-md); }
.prose h2 { font-size: var(--step-3); margin-top: var(--sp-xl); }
.prose h3 { font-size: var(--step-2); margin-top: var(--sp-lg); }
.prose p { color: var(--text-2); max-width: none; }
.prose strong { color: var(--text-1); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { display: flex; flex-direction: column; gap: var(--sp-xs); }
.prose li { display: flex; gap: var(--sp-sm); color: var(--text-2); }
.prose li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  top: 0.65em;
}
.prose__meta {
  font-size: var(--step--1);
  color: var(--text-3);
  border-top: 1px solid var(--border-faint);
  padding-top: var(--sp-md);
  margin-top: var(--sp-xl);
}

/* ============================================================
   CALLOUT
   ============================================================ */
.callout {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: var(--sp-lg);
}
.callout p { color: var(--text-2); }
.callout p + p { margin-top: var(--sp-sm); }

/* ============================================================
   GUIDE — nummerierte Anleitung (vertikal)
   ============================================================ */
.guide {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  max-width: 760px;
}
.guide__step { display: flex; gap: var(--sp-md); align-items: flex-start; }
.guide__step-title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}
.guide__step-desc { font-size: var(--step-0); color: var(--text-2); }

/* ============================================================
   FAQ — Akkordeon (<details>)
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: var(--sp-sm); max-width: 820px; }
.faq__item {
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--dur);
}
.faq__item[open] { border-color: var(--accent-dim); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text-1);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 var(--sp-lg) var(--sp-md); }
.faq__answer p { color: var(--text-2); max-width: none; }

/* ============================================================
   CTA BAND — wiederkehrender Abschluss-Aufruf
   ============================================================ */
.cta-band { background: var(--bg-surface); border-top: 1px solid var(--border-faint); }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  text-align: left;
}
.cta-band h2 { font-size: var(--step-3); max-width: 18ch; }
.cta-band p { color: var(--text-2); margin-top: var(--sp-xs); }

/* Feature-Karten (Home: zwei Welten) — nutzt .products__grid + .product-card */
.feature-link { margin-top: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__content {
    order: 2;
    padding: var(--sp-xl) var(--sp-lg);
  }
  .hero__visual {
    order: 1;
    min-height: 46svh;
    margin: var(--sp-md);
  }
  .hero__heading { max-width: none; }

  .products__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .order__steps { grid-template-columns: 1fr; }
  .order__panel { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .field--row { flex-direction: column; gap: var(--sp-md); }
  .field--row .field { margin-bottom: 0; }
  .hero__actions .btn,
  .order__actions .btn { flex: 1; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  z-index: 50;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  color: oklch(98% 0.01 150);
  border-radius: 50%;
  box-shadow: 0 8px 28px -6px oklch(58% 0.16 150 / 0.6);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 34px -6px oklch(58% 0.16 150 / 0.7); }
.whatsapp-fab svg { width: 28px; height: 28px; }
