/*
Theme Name: Zucker Scharf
Theme URI: https://zuckerscharf.at/
Author: Zucker Scharf
Description: Custom WordPress Theme auf Basis der originalen Zucker-Scharf-index.html.
Version: 1.1.0
Text Domain: zuckerscharf
*/

/* ═══════════════════════════════════════════════════════════
   ZUCKER SCHARF · Design Tokens
   ═══════════════════════════════════════════════════════════ */
:root {
  --ink: #0A0A0B;
  --ink-2: #121218;
  --ink-3: #1A1A22;
  --ink-4: #23232E;
  --ember: #E30613;
  --ember-glow: #FF3B2D;
  --ember-dim: #8B0810;
  --ember-soft: rgba(227, 6, 19, 0.12);
  --ash: #B8B8BE;
  --ash-2: #6B6B75;
  --ash-3: #3A3A44;
  --bone: #F5F1EA;
  --bone-2: #E8E1D3;
  --bone-dim: #C9C2B4;
  --wood: #5C3A1E;
  --wood-2: #8B5A2E;

  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-script: 'Caveat Brush', cursive;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

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

/* Utility: signature flame divider */
.flame-hr {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ember);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.flame-hr::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--ember);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ember);
  color: var(--bone);
  box-shadow: 0 8px 24px -8px rgba(227, 6, 19, 0.6);
}
.btn-primary:hover {
  background: var(--ember-glow);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(227, 6, 19, 0.8);
}
.btn-secondary {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid var(--bone);
}
.btn-secondary:hover {
  background: var(--bone);
  color: var(--ink);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--bone);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: relative;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
  letter-spacing: 0;
}
.logo .scharf {
  font-family: var(--font-script);
  color: var(--ember);
  font-size: 32px;
  font-weight: normal;
  transform: rotate(-4deg);
  line-height: 0.8;
}
.logo .flame {
  width: 14px;
  height: 18px;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ash);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  background: var(--ember);
  color: var(--bone);
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--ember-glow); }
.mobile-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    z-index: 200;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.scrolled {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .nav-inner {
    position: relative;
    z-index: 2;
    background: var(--ink);
    padding: 14px var(--pad);
    gap: 16px;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .mobile-toggle:hover,
  .mobile-toggle[aria-expanded="true"] {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
  }
  .mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--bone);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: grid;
    align-content: start;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 92px var(--pad) 32px;
    overflow-y: auto;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(227,6,19,0.18), transparent 58%),
      var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--ash);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
  }
  .mobile-menu a:hover {
    color: var(--bone);
  }
  .mobile-menu .mobile-menu-cta {
    min-height: 48px;
    justify-content: center;
    margin-top: 10px;
    border-top: 0;
    border-radius: var(--radius);
    background: var(--ember);
    color: var(--bone);
    font-weight: 800;
  }
  .mobile-menu .mobile-menu-cta:hover {
    background: var(--ember-glow);
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(227,6,19,0.18), transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139,90,46,0.08), transparent 70%),
    var(--ink);
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--ember-soft);
  border: 1px solid rgba(227,6,19,0.3);
  color: var(--ember-glow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--ember-glow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--bone);
  margin-bottom: 24px;
}
.hero-title .accent {
  font-family: var(--font-script);
  color: var(--ember);
  font-weight: normal;
  font-size: 1.08em;
  display: inline-block;
  transform: rotate(-3deg);
  margin: 0 0.1em;
  line-height: 0.9;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ash);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Hero Visual: SVG Automat Illustration */
.hero-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  justify-self: end;
}
.automat-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 40px 80px rgba(227,6,19,0.25)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.floating-badge {
  position: absolute;
  padding: 12px 18px;
  background: rgba(10,10,11,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227,6,19,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}
.floating-badge-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}
.floating-badge-2 {
  bottom: 20%;
  right: -8%;
  animation-delay: 2s;
}
.floating-badge .dot {
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ember);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    max-width: 320px;
    justify-self: center;
  }
  .floating-badge-1 {
    left: -5%;
    top: -10%;
  }
  .floating-badge-2 {
    right: 0;
    bottom: -10%;
  }
}

/* ═══════════════════════════════════════════════════════════
   TRUST TICKER
   ═══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--ember);
  color: var(--bone);
  padding: 18px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ticker-stat {
  min-height: 76px;
  padding: 12px 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.ticker-stat:not(:last-child) {
  border-right: 1px solid rgba(245,241,234,0.28);
}
.ticker-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1;
  color: var(--bone);
}
.ticker-stat-label {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.82);
}
@media (max-width: 800px) {
  .ticker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ticker-stat:nth-child(2) {
    border-right: none;
  }
  .ticker-stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(245,241,234,0.22);
  }
}
@media (max-width: 480px) {
  .ticker-stat {
    min-height: 68px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS – gemeinsame Struktur
   ═══════════════════════════════════════════════════════════ */
section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  max-width: 780px;
  margin-bottom: 64px;
}
.section-head.centered {
  margin: 0 auto 64px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: var(--bone);
}
.section-title .accent {
  font-family: var(--font-script);
  color: var(--ember);
  font-weight: normal;
  font-size: 1.08em;
  display: inline-block;
  transform: rotate(-3deg);
  line-height: 0.9;
}
.section-sub {
  font-size: 16px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 620px;
}
.section-head.centered .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   STORY / ÜBER UNS
   ═══════════════════════════════════════════════════════════ */
.story {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-quote {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(227,6,19,0.15);
  border-radius: var(--radius-lg);
}
.story-quote::before {
  content: "“";
  display: block;
  width: max-content;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--ember);
  line-height: 0.7;
  margin: 0 0 14px;
}
.story-quote-text {
  font-size: 19px;
  line-height: 1.5;
  color: var(--bone);
  font-weight: 500;
  margin-bottom: 32px;
  font-style: italic;
}
.story-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.story-quote-avatars {
  display: flex;
}
.story-quote-avatars .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood-2), var(--ember-dim));
  border: 2px solid var(--ink-2);
  margin-left: -12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--bone);
}
.story-quote-avatars .avatar:first-child { margin-left: 0; }
.story-quote-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--bone);
}
.story-quote-role {
  font-size: 12px;
  color: var(--ash-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.story-quote-cta {
  margin-top: 28px;
}

.story-facts {
  display: grid;
  gap: 24px;
}
.story-fact {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.story-fact:first-child { border-top: none; padding-top: 0; }
.story-fact-label {
  font-size: 12px;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 8px;
}
.story-fact-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: 0;
}
.story-fact-desc {
  font-size: 14px;
  color: var(--ash);
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS – Prozess in 5 Schritten
   ═══════════════════════════════════════════════════════════ */
.how {
  background: var(--ink-2);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ember) 20%, var(--ember) 80%, transparent);
  opacity: 0.4;
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--ember);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ember);
  position: relative;
  transition: all 0.3s;
}
.how-step:hover .how-step-num {
  background: var(--ember);
  color: var(--bone);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(227,6,19,0.5);
}
.how-step-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.how-step-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-steps::before { display: none; }
  .how-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    text-align: left;
    align-items: start;
  }
  .how-step-num { margin: 0; }
}

/* ═══════════════════════════════════════════════════════════
   GERICHTE
   ═══════════════════════════════════════════════════════════ */
.dishes {
  background: var(--ink);
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dish {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.dish:hover {
  transform: translateY(-6px);
  border-color: rgba(227,6,19,0.3);
}
.dish-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--wood), var(--ink-3));
  display: grid;
  place-items: center;
}
/* Placeholder-Stil: warmer Gradient + gestylte Teller-Silhouette */
.dish-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,140,60,0.15), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(227,6,19,0.1), transparent 60%);
}
.dish-plate {
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  display: grid;
  place-items: center;
}
.dish-icon {
  font-size: 42px;
  filter: grayscale(0.3) contrast(1.1);
  opacity: 0.85;
}
.dish-body {
  padding: 22px 24px 26px;
}
.dish-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--ember);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dish-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--bone);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 0;
}
.dish-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.5;
}
.dishes-note {
  margin-top: 40px;
  padding: 24px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ash);
}
.dishes-note strong { color: var(--bone); }

@media (max-width: 900px) {
  .dishes-grid { grid-template-columns: 1fr; }
}
@media (min-width: 700px) and (max-width: 900px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   VARIANTEN
   ═══════════════════════════════════════════════════════════ */
.variants {
  background: var(--ink-2);
}
.variants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.variant {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.variant:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
}
.variant-badge {
  display: inline-block;
  padding: 5px 10px;
  background: var(--ember-soft);
  color: var(--ember-glow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.variant-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bone);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.15;
}
.variant-desc {
  font-size: 13px;
  color: var(--ash);
  margin-bottom: 24px;
  line-height: 1.5;
  flex-grow: 1;
}
.variant-features {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.variant-features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--bone);
  align-items: flex-start;
}
.variant-features li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 1000px) {
  .variants-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .variants-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ZIELGRUPPEN
   ═══════════════════════════════════════════════════════════ */
.targets {
  background: var(--ink);
}
.targets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.target {
  padding: 28px 20px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-align: left;
}
.target:hover {
  border-color: var(--ember);
  background: var(--ink-3);
}
.target-icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  color: var(--ember);
  margin-bottom: 16px;
}
.target-icon svg { width: 100%; height: 100%; }
.target-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.target-note {
  font-size: 12px;
  color: var(--ash-2);
}

@media (max-width: 1000px) {
  .targets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .targets-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   STANDORTCHECK – das Herzstück
   ═══════════════════════════════════════════════════════════ */
.check {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(227,6,19,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(139,90,46,0.08), transparent 60%),
    var(--ink);
  position: relative;
}
.check::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.check .wrap { position: relative; z-index: 1; }
.check-tool {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.check-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(0,0,0,0.2);
}
.check-header-label {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.06em;
}
.check-progress-track {
  display: flex;
  gap: 8px;
}
.check-progress-dot {
  width: 32px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: background 0.3s;
}
.check-progress-dot.active { background: var(--ember); }
.check-progress-dot.done { background: var(--ember-dim); }

.check-body {
  padding: 48px 32px;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.check-step {
  display: none;
}
.check-step.active { display: contents; }
.check-side-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--ember);
  line-height: 0.9;
  opacity: 0.9;
}
.check-side-label {
  font-size: 12px;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 12px;
}
.check-side-title {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--bone);
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 16px;
}
.check-side-desc {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.55;
}
.check-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.check-choices {
  display: grid;
  gap: 12px;
}
.check-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
  transition: all 0.15s;
  width: 100%;
}
.check-choice:hover {
  background: rgba(227,6,19,0.08);
  border-color: rgba(227,6,19,0.4);
}
.check-choice.selected {
  background: rgba(227,6,19,0.12);
  border-color: var(--ember);
}
.check-choice-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.check-choice.selected .check-choice-icon {
  border-color: var(--ember);
  background: var(--ember);
}
.check-choice.selected .check-choice-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--bone);
  border-radius: 50%;
}
.check-choice-desc {
  font-size: 12px;
  color: var(--ash-2);
  display: block;
  margin-top: 3px;
  font-weight: 400;
}

.check-input-group {
  display: grid;
  gap: 16px;
}
.check-input-label {
  font-size: 13px;
  color: var(--ash);
  font-weight: 600;
}
.check-input {
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--bone);
  font-size: 15px;
  font-family: inherit;
  transition: border 0.15s;
  width: 100%;
}
.check-input:focus {
  outline: none;
  border-color: var(--ember);
  background: rgba(227,6,19,0.05);
}

.check-slider-wrap {
  padding: 8px 0;
}
.check-slider-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 16px;
}
.check-slider-value span {
  font-size: 16px;
  color: var(--ash);
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 8px;
}
.check-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  outline: none;
}
.check-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  background: var(--ember);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(227,6,19,0.2);
}
.check-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--ember);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.check-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ash-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.check-footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.2);
}
.check-footer-back {
  font-size: 14px;
  color: var(--ash);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.check-footer-back:hover { color: var(--bone); }
.check-footer-back:disabled { opacity: 0.3; cursor: not-allowed; }
.check-next {
  padding: 14px 24px;
  background: var(--ember);
  color: var(--bone);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: background 0.15s;
}
.check-next:hover { background: var(--ember-glow); }
.check-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Result step */
.check-result {
  display: none;
  padding: 48px 32px;
  text-align: center;
}
.check-result.active { display: block; }
.check-score-ring {
  width: 180px;
  height: 180px;
  margin: 0 auto 32px;
  position: relative;
}
.check-score-ring svg { transform: rotate(-90deg); }
.check-score-ring circle {
  fill: none;
  stroke-width: 12;
}
.check-score-ring .ring-bg { stroke: rgba(255,255,255,0.08); }
.check-score-ring .ring-fill {
  stroke: var(--ember);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 12px var(--ember));
}
.check-score-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--bone);
  line-height: 1;
}
.check-score-value small {
  font-size: 16px;
  color: var(--ash);
  font-family: var(--font-body);
  font-weight: 500;
}
.check-result-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--bone);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.check-result-desc {
  font-size: 15px;
  color: var(--ash);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.check-result-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .check-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .check-side-num { font-size: 50px; }
  .check-side-title { font-size: 21px; }
}

/* ═══════════════════════════════════════════════════════════
   STANDORTE (Karte)
   ═══════════════════════════════════════════════════════════ */
.locations {
  background: var(--ink-2);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.locations-map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.locations-map-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(227,6,19,0.05), transparent 70%),
    var(--ink);
}
/* Topographic style backdrop */
.map-topo {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227,6,19,0.25), 0 4px 8px rgba(0,0,0,0.4);
  position: relative;
  animation: pulse-pin 2.5s infinite;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 4px rgba(227,6,19,0.25), 0 4px 8px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(227,6,19,0.15), 0 4px 8px rgba(0,0,0,0.4); }
}
.map-pin-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 4px 10px;
  background: var(--ink);
  border: 1px solid rgba(227,6,19,0.4);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--bone);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.map-pin:hover .map-pin-label { opacity: 1; }
.map-pin.headquarters .map-pin-dot {
  background: var(--bone);
  box-shadow: 0 0 0 4px rgba(245,241,234,0.25), 0 4px 12px rgba(0,0,0,0.4);
}
.map-pin.headquarters::after {
  content: "HQ";
  position: absolute;
  top: -8px; right: -8px;
  background: var(--bone);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 2px;
}

.locations-list {
  display: grid;
  gap: 2px;
}
.locations-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.locations-list-item:last-child { border-bottom: none; }
.locations-list-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ember);
  min-width: 32px;
}
.locations-list-name {
  font-weight: 600;
  color: var(--bone);
  font-size: 15px;
  margin-bottom: 2px;
}
.locations-list-addr {
  font-size: 12px;
  color: var(--ash-2);
}
.locations-list-tag {
  font-size: 10px;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid var(--ember);
  border-radius: 100px;
}
.locations-list-tag.hq {
  color: var(--bone);
  border-color: var(--bone);
}
.locations-list-item--with-routes {
  align-items: start;
}
.locations-list-meta {
  min-width: 0;
}
.locations-list-meta .locations-list-name {
  margin: 0 0 4px;
}
.locations-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.locations-route-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  color: var(--bone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.locations-route-links a:hover {
  background: rgba(227,6,19,0.13);
  border-color: rgba(227,6,19,0.55);
  color: var(--ember);
}

.locations-note {
  margin-top: 24px;
  padding: 20px;
  background: var(--ink);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ash);
}
.locations-note strong { color: var(--bone); }

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .locations-list-item--with-routes {
    grid-template-columns: auto 1fr;
  }
  .locations-list-item--with-routes .locations-list-tag {
    grid-column: 2;
    justify-self: start;
  }
}

/* ═══════════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════════ */
.benefits {
  background: var(--ink);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit {
  padding: 32px 28px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.benefit:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 44px; height: 44px;
  color: var(--ember);
  margin-bottom: 20px;
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--bone);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.benefit-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   TECH & SICHERHEIT
   ═══════════════════════════════════════════════════════════ */
.tech {
  background: var(--ink-2);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tech-card {
  padding: 24px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.tech-card:hover { border-color: rgba(227,6,19,0.4); }
.tech-card-icon {
  width: 32px; height: 32px;
  color: var(--ember);
  margin-bottom: 16px;
}
.tech-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.tech-card-desc {
  font-size: 12px;
  color: var(--ash);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FAMILIE / TRUST
   ═══════════════════════════════════════════════════════════ */
.family {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,90,46,0.12), transparent 60%),
    var(--ink);
}
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.family-text .section-title { margin-bottom: 24px; }
.family-signature {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--ember);
  transform: rotate(-3deg);
  display: inline-block;
  line-height: 0.9;
  margin-top: 24px;
}
.family-cards {
  display: grid;
  gap: 16px;
}
.family-card {
  padding: 24px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
}
.family-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember-dim), var(--wood-2));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bone);
  border: 2px solid rgba(227,6,19,0.3);
}
.family-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bone);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.family-role {
  font-size: 12px;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

@media (max-width: 900px) {
  .family-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   INFO-MATERIAL
   ═══════════════════════════════════════════════════════════ */
.download {
  background: var(--ink-2);
}
.download-card {
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(227,6,19,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.download-visual {
  width: 120px;
  height: 150px;
  background: linear-gradient(180deg, var(--ink), var(--ink-3));
  border: 1px solid rgba(227,6,19,0.3);
  border-radius: 4px 4px 8px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  gap: 6px;
  box-shadow: 0 20px 40px -8px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
}
.download-visual::before {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 24px; height: 24px;
  background: var(--ink-2);
  border-left: 1px solid rgba(227,6,19,0.3);
  border-bottom: 1px solid rgba(227,6,19,0.3);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.download-visual-logo {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--bone);
  line-height: 1;
}
.download-visual-logo span {
  font-family: var(--font-script);
  color: var(--ember);
  font-size: 13px;
  display: block;
  transform: rotate(-4deg);
}
.download-visual-line {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  margin-top: 6px;
}
.download-visual-line.short { width: 60%; }
.download-visual-line.medium { width: 80%; }
.download-visual-line.red {
  background: var(--ember);
  width: 40%;
}
.download-text .section-title { font-size: 24px; margin-bottom: 12px; }
.download-text p {
  font-size: 14px;
  color: var(--ash);
  max-width: 460px;
}
.download-action {
  justify-self: end;
}
.download-action .btn {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .download-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 32px;
  }
  .download-visual { margin: 0; }
  .download-action {
    justify-self: start;
  }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq {
  background: var(--ink);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bone);
  letter-spacing: 0;
}
.faq-q:hover { color: var(--ember); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s;
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon {
  border-color: var(--ember);
  color: var(--ember);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════════ */
.contact {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(227,6,19,0.2), transparent 60%),
    var(--ink-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info-list {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.contact-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--ember-soft);
  color: var(--ember);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 11px;
  color: var(--ash-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--bone);
  font-weight: 500;
  display: block;
}
.contact-info-value:hover { color: var(--ember); }

.contact-form {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bone);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  color: var(--ash);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--bone);
  font-family: inherit;
  font-size: 14px;
  transition: border 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ember);
  background: rgba(227,6,19,0.05);
}
.form-field textarea {
  min-height: 100px;
  resize: vertical;
}
.form-consent {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--ash);
  margin-bottom: 20px;
  align-items: flex-start;
}
.form-consent input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--ember);
  color: var(--bone);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--ember-glow); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-page {
  background: var(--ink);
}
.legal-hero {
  padding: 96px 0 40px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(227,6,19,0.14), transparent 58%),
    var(--ink);
}
.legal-hero-inner {
  max-width: 780px;
}
.legal-content {
  padding: 40px 0 96px;
}
.legal-card {
  max-width: 900px;
  padding: 48px;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(227,6,19,0.16);
  border-radius: var(--radius-lg);
}
.legal-block {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.legal-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.legal-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 14px;
}
.legal-block p {
  max-width: 720px;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block a {
  color: var(--bone);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(227,6,19,0.65);
  text-underline-offset: 4px;
}
.legal-block a:hover {
  color: var(--ember-glow);
}
.legal-block-extra {
  color: var(--ash);
}
.legal-note {
  margin-top: 32px;
  padding: 18px 20px;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.6;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

@media (max-width: 700px) {
  .legal-hero {
    padding: 72px 0 28px;
  }
  .legal-content {
    padding: 28px 0 72px;
  }
  .legal-card {
    padding: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 16px;
  color: var(--ash);
  max-width: 300px;
  line-height: 1.6;
}
.footer-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 16px;
  background: var(--ember);
  color: var(--bone);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.15s, transform 0.15s;
}
.footer-cta svg {
  width: 16px;
  height: 16px;
}
.footer-cta:hover {
  background: var(--ember-glow);
  color: var(--bone);
  transform: translateY(-1px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--bone);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ash);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--ember); }
.footer-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ash-2);
}
.footer-bar-slogan {
  font-family: var(--font-script);
  color: var(--ember);
  font-size: 20px;
  transform: rotate(-3deg);
  display: inline-block;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WordPress integration: original index.html CI plus real uploaded imagery in the same templates. */
body.admin-bar .nav { top: auto; }
.dish-img img,
.variant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.dish-img.has-photo::before { opacity: 0.18; z-index: 2; pointer-events: none; }
.variant-media {
  aspect-ratio: 4 / 3;
  margin: -8px -8px 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-visual-photo {
  padding: 0;
  overflow: visible;
  background: transparent;
}
.hero-visual-photo::before {
  display: none;
}
.hero-visual-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 32px 90px rgba(0,0,0,0.5);
}
.variants-grid-teaser,
.dishes-grid-teaser {
  grid-template-columns: repeat(3, 1fr);
}
.targets-grid-teaser {
  grid-template-columns: repeat(4, 1fr);
}
.home-section-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.nav .logo { white-space: nowrap; }
@media (max-width: 782px) { body.admin-bar .nav { top: auto; } }
@media (max-width: 900px) {
  body.admin-bar .nav {
    top: auto;
  }
  .variants-grid-teaser,
  .dishes-grid-teaser,
  .targets-grid-teaser {
    grid-template-columns: 1fr;
  }
  .hero-visual-photo img {
    aspect-ratio: 4 / 3;
  }
}
