:root {
  --ink-deep: #1a0f08;
  --ink: #2a1810;
  --bark: #3d2817;
  --bark-2: #4a3220;
  --ember: #c97842;
  --ember-glow: #e89456;
  --gold: #e8c87a;
  --gold-deep: #c9a865;
  --cream: #f5e9d3;
  --cream-soft: #ede0c5;
  --moss: #5a6242;
  --moss-glow: #7d8b5e;
  --rust: #8b3a1f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--ink-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.script { font-family: 'Allura', cursive; font-weight: 400; color: var(--gold); line-height: 1; }
.label  { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; }
.mono   { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.05em; }

.grain::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* NAV */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px; display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(15,8,4,0.85) 0%, rgba(15,8,4,0) 100%);
  backdrop-filter: blur(2px); transition: background 0.3s ease;
}
nav.top.scrolled { background: rgba(15,8,4,0.92); border-bottom: 1px solid rgba(232,200,122,0.12); }
nav.top .brand { display: flex; align-items: center; gap: 14px; }
nav.top .brand img.logo { height: 72px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
nav.top .brand .word { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.32em; color: var(--cream); font-size: 1.05rem; }
nav.top .brand .word .accent { color: var(--gold); }
@media (max-width: 560px) {
  nav.top .brand .word { display: none; }
  nav.top .brand img.logo { height: 60px; }
}
nav.top ul { list-style: none; display: flex; gap: 32px; }
nav.top ul a {
  color: var(--cream-soft); text-decoration: none;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
  font-size: 0.85rem; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: all 0.2s;
}
nav.top ul a:hover { color: var(--gold); border-bottom-color: var(--gold); }
nav.top .cta {
  background: var(--ember); color: var(--ink-deep);
  padding: 10px 22px; text-decoration: none;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
  font-size: 0.85rem; border: none; cursor: pointer; transition: all 0.2s;
}
nav.top .cta:hover { background: var(--ember-glow); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,120,66,0.4); }
@media (max-width: 1080px) { nav.top ul { display: none; } nav.top { padding: 14px 20px; } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero-reh-sau3.jpg");
  background-size: cover; background-position: center center;
  z-index: -2;
}
.hero-trees {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,120,66,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15,8,4,0.45) 0%, rgba(15,8,4,0.15) 35%, rgba(15,8,4,0.55) 75%, rgba(15,8,4,0.92) 100%);
  z-index: -1; pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(15,8,4,0.55) 75%, rgba(15,8,4,0.9) 100%);
  pointer-events: none; z-index: -1;
}
.ember-particle {
  position: absolute; width: 3px; height: 3px;
  border-radius: 50%; background: var(--ember-glow);
  box-shadow: 0 0 8px var(--ember), 0 0 16px var(--ember);
  pointer-events: none; z-index: 0; opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  10% { opacity: 1; } 90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(40px) scale(0.3); }
}
.hero-inner { text-align: center; padding: 120px 24px 100px; max-width: 980px; position: relative; }
.hero .eyebrow {
  color: var(--gold); font-size: 0.85rem; margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.9s 0.1s forwards;
}
.hero .eyebrow::before, .hero .eyebrow::after { content: ""; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  color: var(--cream); line-height: 1.05;
  margin-bottom: 8px; opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero h1 .scr {
  font-family: 'Allura', cursive; color: var(--gold);
  font-size: 1.4em; font-weight: 400;
  display: inline-block; transform: translateY(0.08em); margin: 0 0.05em;
}
.hero .underline-accent {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto 32px; opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero .lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--cream-soft);
  max-width: 640px; margin: 0 auto 40px;
  font-style: italic; font-weight: 400;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero .actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.btn-primary, .btn-ghost {
  padding: 16px 32px;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em;
  font-size: 0.95rem; text-decoration: none; cursor: pointer;
  transition: all 0.25s; border: none;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-primary { background: var(--ember); color: var(--ink-deep); box-shadow: 0 8px 30px rgba(201,120,66,0.35); }
.btn-primary:hover { background: var(--ember-glow); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,120,66,0.5); }
.btn-primary .arr { transition: transform 0.25s; }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--ink-deep); }
.hero-meta {
  position: absolute; bottom: 36px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 40px;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.hero-meta .item { display: flex; align-items: center; gap: 10px; color: var(--cream-soft); opacity: 0.85; }
.hero-meta .dot { width: 6px; height: 6px; background: var(--ember); border-radius: 50%; box-shadow: 0 0 8px var(--ember); }
@media (max-width: 720px) { .hero-meta { display: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Sections */
section { position: relative; padding: 120px 40px; }
@media (max-width: 720px) { section { padding: 80px 20px; } }
.container { max-width: 1240px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 72px; }
.sec-head .eyebrow {
  color: var(--ember); font-size: 0.85rem; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.sec-head .eyebrow::before, .sec-head .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--ember); }
.sec-head h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--cream); line-height: 1.1;
  max-width: 820px; margin: 0 auto 16px; text-wrap: pretty;
}
.sec-head h2 .scr {
  font-family: 'Allura', cursive; color: var(--gold);
  font-size: 1.35em; font-weight: 400;
  display: inline-block; transform: translateY(0.08em); margin: 0 0.05em;
}
.sec-head p { color: var(--cream-soft); font-size: 1.1rem; font-style: italic; max-width: 620px; margin: 0 auto; opacity: 0.85; }

/* GENUSS */
#genuss { background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 50%, var(--ink-deep) 100%); }
.genuss-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 880px) { .genuss-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.genuss-card {
  position: relative;
  background: linear-gradient(180deg, rgba(61,40,23,0.55) 0%, rgba(26,15,8,0.95) 100%);
  border: 1px solid rgba(232,200,122,0.15);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.genuss-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.3); transform-origin: center; transition: transform 0.5s;
}
.genuss-card:hover { transform: translateY(-4px); border-color: rgba(232,200,122,0.35); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.genuss-card:hover::before { transform: scaleX(1); }
.genuss-card .visual {
  height: 280px; background-size: cover; background-position: center;
  position: relative; border-bottom: 1px solid rgba(232,200,122,0.12);
}
.genuss-card .visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,8,4,0.55) 100%);
}
.genuss-card .visual .tag {
  position: absolute; bottom: 18px; left: 22px; z-index: 1;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em;
  font-size: 0.78rem; color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(232,200,122,0.5);
  background: rgba(15,8,4,0.6); backdrop-filter: blur(4px);
}
.genuss-card .body { padding: 32px 32px 36px; }
@media (max-width: 560px) {
  .genuss-card .body { padding: 26px 22px 30px; }
  .genuss-card .visual { height: 220px; }
}
.genuss-card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.75rem; color: var(--cream); margin-bottom: 6px; line-height: 1.15;
}
.genuss-card h3 .scr {
  font-family: 'Allura', cursive; color: var(--gold);
  font-size: 1.35em; display: inline-block;
  transform: translateY(0.06em); margin-right: 0.05em;
}
.genuss-card .desc { color: var(--cream-soft); margin: 12px 0 18px; font-size: 1.05rem; line-height: 1.6; }
.genuss-card .tip {
  display: flex; gap: 14px; padding: 14px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(232,200,122,0.05);
  color: var(--cream-soft); font-style: italic; font-size: 0.98rem; line-height: 1.5;
}
.genuss-card .tip strong {
  color: var(--gold); font-style: normal;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
  font-size: 0.78rem; display: block; margin-bottom: 4px;
}

/* REZEPT */
#rezept { background: var(--ink); position: relative; overflow: hidden; }
#rezept::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(201,120,66,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(232,200,122,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.rezept-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: stretch; }
@media (max-width: 980px) { .rezept-grid { grid-template-columns: 1fr; gap: 40px; } }
.rezept-img {
  background-image: url("assets/reh-wachholder.png");
  background-size: cover; background-position: center;
  min-height: 480px; position: relative;
  border: 1px solid rgba(232,200,122,0.15);
}
.rezept-img::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(232,200,122,0.25); pointer-events: none; }
.rezept-img .seal {
  position: absolute; top: 28px; left: 28px;
  background: rgba(15,8,4,0.78); backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  padding: 12px 18px;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em;
  color: var(--gold); font-size: 0.78rem;
}
.rezept-text { padding: 8px 0; }
.rezept-text .eyebrow {
  color: var(--ember); font-size: 0.85rem; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.rezept-text .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ember); }
.rezept-text h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--cream); line-height: 1.1; margin-bottom: 14px; text-wrap: pretty;
}
.rezept-text h2 .scr {
  font-family: 'Allura', cursive; color: var(--gold);
  font-size: 1.3em; display: inline-block; transform: translateY(0.06em);
}
.rezept-text .intro { color: var(--cream-soft); font-size: 1.08rem; line-height: 1.65; margin-bottom: 28px; font-style: italic; }
.rezept-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 28px; padding: 16px 0;
  border-top: 1px solid rgba(232,200,122,0.18);
  border-bottom: 1px solid rgba(232,200,122,0.18);
}
.rezept-meta .m .k { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--gold); margin-bottom: 4px; }
.rezept-meta .m .v { color: var(--cream); font-size: 1.05rem; font-family: 'Cormorant Garamond', serif; }
.rezept-cols { display: grid; grid-template-columns: 0.85fr 1fr; gap: 32px; }
@media (max-width: 560px) { .rezept-cols { grid-template-columns: 1fr; gap: 20px; } }
.rezept-cols h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em; font-size: 0.85rem; color: var(--gold); margin-bottom: 14px; }
.rezept-cols ul.zutaten { list-style: none; }
.rezept-cols ul.zutaten li {
  padding: 8px 0; border-bottom: 1px dashed rgba(232,200,122,0.14);
  color: var(--cream-soft); font-size: 1rem; display: flex; gap: 10px;
}
.rezept-cols ul.zutaten li:last-child { border-bottom: none; }
.rezept-cols ul.zutaten li .qq { color: var(--gold); font-weight: 600; min-width: 70px; }
.rezept-cols ol.schritte { list-style: none; counter-reset: rez; }
.rezept-cols ol.schritte li {
  counter-increment: rez; padding: 10px 0 10px 38px;
  color: var(--cream-soft); font-size: 1rem; line-height: 1.55; position: relative;
}
.rezept-cols ol.schritte li::before {
  content: counter(rez); position: absolute; left: 0; top: 8px;
  width: 26px; height: 26px;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold); display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.82rem; letter-spacing: 0.06em;
}

/* HERKUNFT */
#herkunft { background: var(--ink-deep); }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .story-grid { grid-template-columns: 1fr; gap: 50px; } }
.story-img { aspect-ratio: 4/5; position: relative; background: var(--ink); border: 1px solid rgba(232,200,122,0.15); overflow: hidden; }
.story-img .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(0.92) contrast(1.02); }
.story-img .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,8,4,0) 40%, rgba(15,8,4,0.55) 100%),
              radial-gradient(ellipse at center, transparent 50%, rgba(15,8,4,0.35) 100%);
  pointer-events: none;
}
.story-img::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(232,200,122,0.2); pointer-events: none; }
.story-img .stamp {
  position: absolute; bottom: 28px; right: 28px;
  width: 100px; height: 100px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; text-align: center; color: var(--gold);
  background: rgba(15,8,4,0.7); backdrop-filter: blur(4px);
}
.story-img .stamp .scr { font-family: 'Allura', cursive; font-size: 1.6rem; line-height: 1; }
.story-img .stamp .yr { font-family: 'Bebas Neue', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; margin-top: 2px; }
.story-text .eyebrow { color: var(--ember); font-size: 0.85rem; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.story-text .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ember); }
.story-text h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--cream); line-height: 1.1; margin-bottom: 24px; text-wrap: pretty;
}
.story-text h2 .scr { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.35em; transform: translateY(0.06em); display: inline-block; }
.story-text p { color: var(--cream-soft); font-size: 1.1rem; margin-bottom: 18px; line-height: 1.65; }
.story-text p:first-of-type::first-letter {
  font-family: 'Allura', cursive; font-size: 4rem;
  float: left; line-height: 0.85; color: var(--gold);
  margin: 6px 12px -8px 0;
}
.story-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid rgba(232,200,122,0.15);
}
.story-stats .stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; font-weight: 500; }
.story-stats .stat .lab { margin-top: 6px; color: var(--cream-soft); font-size: 0.9rem; opacity: 0.75; font-style: italic; }

/* REHKITZRETTUNG */
#rehkitz { background: linear-gradient(180deg, var(--ink-deep) 0%, #15140c 100%); position: relative; overflow: hidden; }
#rehkitz::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(125,139,94,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(15,8,4,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.kitz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .kitz-grid { grid-template-columns: 1fr; gap: 40px; } }
.kitz-text .eyebrow {
  color: var(--moss-glow); font-size: 0.85rem; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.kitz-text .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--moss-glow); }
.kitz-text h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--cream); line-height: 1.1; margin-bottom: 22px; text-wrap: pretty;
}
.kitz-text h2 .scr { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.3em; display: inline-block; transform: translateY(0.06em); }
.kitz-text p { color: var(--cream-soft); font-size: 1.08rem; line-height: 1.65; margin-bottom: 16px; }
.kitz-bullets { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.kitz-bullets li { display: flex; gap: 14px; align-items: flex-start; color: var(--cream-soft); font-size: 1rem; line-height: 1.55; }
.kitz-bullets li::before { content: "✺"; color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.kitz-visual {
  position: relative; aspect-ratio: 1200 / 1516;
  background:
    linear-gradient(180deg, rgba(15,8,4,0) 60%, rgba(15,8,4,0.55) 100%),
    url("assets/rehkitzrettung-zwei.jpg");
  background-size: cover; background-position: center;
  border: 1px solid rgba(232,200,122,0.2); overflow: hidden;
}
.kitz-visual::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(232,200,122,0.25); pointer-events: none; }
.kitz-stat-overlay {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.kitz-stat-overlay .ks {
  flex: 1; min-width: 130px;
  background: rgba(15,8,4,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232,200,122,0.3);
  padding: 16px 18px;
}
.kitz-stat-overlay .ks .num { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; color: var(--gold); line-height: 1; }
.kitz-stat-overlay .ks .lab { margin-top: 6px; color: var(--cream-soft); font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em; font-size: 0.72rem; }

/* WILDLISTE */
#wildliste {
  background:
    linear-gradient(180deg, rgba(15,8,4,0.85) 0%, rgba(15,8,4,0.85) 100%),
    url("assets/hero-wild-grill.png");
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
#wildliste::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,120,66,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(232,200,122,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.wildliste-shell {
  position: relative; max-width: 760px; margin: 0 auto;
  background: rgba(15,8,4,0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(232,200,122,0.25);
  padding: 56px 56px;
}
@media (max-width: 720px) { .wildliste-shell { padding: 36px 24px; } }
.wildliste-shell::before, .wildliste-shell::after { content: ""; position: absolute; width: 24px; height: 24px; border: 1px solid var(--gold); }
.wildliste-shell::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.wildliste-shell::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.wildliste-shell .eyebrow { color: var(--ember); font-size: 0.85rem; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.wildliste-shell .eyebrow::before, .wildliste-shell .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--ember); }
.wildliste-shell h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--cream); line-height: 1.1; margin-bottom: 16px; text-wrap: pretty;
}
.wildliste-shell h2 .scr { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.35em; display: inline-block; transform: translateY(0.08em); }
.wildliste-shell .lede { color: var(--cream-soft); font-size: 1.08rem; line-height: 1.65; margin-bottom: 28px; font-style: italic; max-width: 580px; }
.wl-form { display: grid; gap: 14px; }
.wl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .wl-row { grid-template-columns: 1fr; } }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-field label { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em; font-size: 0.78rem; color: var(--gold); }
.wl-field input {
  background: rgba(26,15,8,0.7); border: 1px solid rgba(232,200,122,0.2);
  color: var(--cream); padding: 14px 16px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  transition: all 0.2s; outline: none;
}
.wl-field input:focus { border-color: var(--gold); background: rgba(26,15,8,0.95); box-shadow: 0 0 0 3px rgba(232,200,122,0.1); }
.wl-field .err { color: var(--ember-glow); font-size: 0.85rem; font-style: italic; }
.wl-interests { display: flex; gap: 10px; flex-wrap: wrap; }
.wl-chip {
  padding: 10px 18px; border: 1px solid rgba(232,200,122,0.3);
  background: rgba(26,15,8,0.5); color: var(--cream-soft);
  cursor: pointer; transition: all 0.2s;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.16em;
  font-size: 0.82rem; user-select: none;
}
.wl-chip:hover { border-color: var(--gold); color: var(--cream); }
.wl-chip.active { border-color: var(--gold); background: rgba(201,120,66,0.18); color: var(--gold); }
.wl-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--cream-soft); font-size: 0.92rem; margin: 8px 0 4px; line-height: 1.5; }
.wl-consent input { margin-top: 4px; accent-color: var(--ember); }
.wl-submit {
  margin-top: 8px; background: var(--ember); color: var(--ink-deep);
  border: none; padding: 18px;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em;
  font-size: 1rem; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(201,120,66,0.3);
}
.wl-submit:hover { background: var(--ember-glow); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,120,66,0.5); }
.wl-trust { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 24px; color: var(--cream-soft); opacity: 0.75; font-size: 0.88rem; }
.wl-trust span { display: flex; gap: 8px; align-items: center; }
.wl-trust span::before { content: "✓"; color: var(--gold); font-weight: 600; }
.wl-success { text-align: center; padding: 30px 0 6px; }
.wl-success .check {
  width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%;
  margin: 0 auto 24px; display: grid; place-items: center;
  color: var(--gold); font-size: 2.2rem;
  animation: pop 0.5s cubic-bezier(0.2, 1.5, 0.5, 1);
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.wl-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); margin-bottom: 12px; }
.wl-success h3 .scr { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.3em; display: inline-block; transform: translateY(0.06em); }
.wl-success p { color: var(--cream-soft); font-size: 1.05rem; max-width: 460px; margin: 0 auto 8px; }

/* KONTAKT */
#kontakt { background: var(--ink-deep); position: relative; overflow: hidden; }
#kontakt::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,200,122,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .kontakt-grid { grid-template-columns: 1fr; gap: 40px; } }
.kontakt-card {
  position: relative;
  background: linear-gradient(180deg, rgba(61,40,23,0.4) 0%, rgba(15,8,4,0.85) 100%);
  border: 1px solid rgba(232,200,122,0.2);
  padding: 44px 40px;
}
@media (max-width: 560px) { .kontakt-card { padding: 32px 24px; } }
.kontakt-card::before, .kontakt-card::after { content: ""; position: absolute; width: 18px; height: 18px; border: 1px solid var(--gold); }
.kontakt-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.kontakt-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.kontakt-card .role { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em; color: var(--gold); font-size: 0.78rem; margin-bottom: 10px; }
.kontakt-card .name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 2.2rem; color: var(--cream); margin-bottom: 4px; line-height: 1.1; }
.kontakt-card .name .scr { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.3em; display: inline-block; transform: translateY(0.08em); margin-right: 0.04em; }
.kontakt-card .hege { color: var(--cream-soft); font-style: italic; font-size: 1.02rem; margin-bottom: 32px; opacity: 0.85; }
.kontakt-rows { display: grid; gap: 0; }
.kontakt-rows .kr {
  display: grid; grid-template-columns: 30px 1fr;
  gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px dashed rgba(232,200,122,0.15);
}
.kontakt-rows .kr:last-child { border-bottom: none; }
.kontakt-rows .kr .ico {
  width: 28px; height: 28px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold); font-size: 0.9rem; margin-top: 2px;
}
.kontakt-rows .kr .k { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em; color: var(--gold); font-size: 0.72rem; margin-bottom: 4px; }
.kontakt-rows .kr .v { color: var(--cream); font-size: 1.1rem; line-height: 1.4; }
.kontakt-rows .kr .v a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(232,200,122,0.3); transition: all 0.2s; }
.kontakt-rows .kr .v a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.kontakt-rows .kr .sub { color: var(--cream-soft); font-style: italic; font-size: 0.92rem; opacity: 0.75; margin-top: 4px; }
.kontakt-aside { color: var(--cream-soft); }
.kontakt-aside .eyebrow { color: var(--ember); font-size: 0.85rem; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.kontakt-aside .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ember); }
.kontakt-aside h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--cream); line-height: 1.1; margin-bottom: 24px; text-wrap: pretty;
}
.kontakt-aside h2 .scr { font-family: 'Allura', cursive; color: var(--gold); font-size: 1.3em; display: inline-block; transform: translateY(0.06em); }
.kontakt-aside p { color: var(--cream-soft); font-size: 1.08rem; line-height: 1.65; margin-bottom: 16px; }
.kontakt-aside .pickup { margin-top: 28px; padding: 20px 22px; border-left: 2px solid var(--ember); background: rgba(201,120,66,0.06); }
.kontakt-aside .pickup .h { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em; color: var(--ember-glow); font-size: 0.82rem; margin-bottom: 10px; }
.kontakt-aside .pickup ul { list-style: none; display: grid; gap: 6px; color: var(--cream-soft); font-size: 1rem; }
.kontakt-aside .pickup ul li::before { content: "›"; color: var(--gold); margin-right: 8px; }

/* FAQ */
#faq { background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 100%); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(232,200,122,0.15); padding: 24px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.3rem; color: var(--cream); }
.faq-q .toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold); flex-shrink: 0;
  transition: all 0.3s; font-size: 1.1rem;
}
.faq-item.open .toggle { background: var(--gold); color: var(--ink-deep); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }
.faq-a p { color: var(--cream-soft); line-height: 1.65; padding-right: 60px; font-size: 1.05rem; }

/* FOOTER */
footer { background: var(--ink-deep); padding: 80px 40px 32px; border-top: 1px solid rgba(232,200,122,0.12); }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em; color: var(--gold); font-size: 0.85rem; margin-bottom: 18px; }
.footer-grid p, .footer-grid a, .footer-grid li { color: var(--cream-soft); font-size: 0.98rem; line-height: 1.7; text-decoration: none; list-style: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(232,200,122,0.12);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  color: var(--cream-soft); opacity: 0.6; font-size: 0.88rem;
}
.brand-script { font-family: 'Allura', cursive; color: var(--gold); font-size: 2.6rem; line-height: 1; margin-bottom: 12px; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s cubic-bezier(0.2, 0.8, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ SO EINFACH (Drei Schritte) ============ */
#soeinfach {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
#soeinfach::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201,120,66,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(232,200,122,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
@media (max-width: 980px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 24px; }
}

/* connecting line between steps (desktop only) */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,200,122,0.4) 15%,
    rgba(232,200,122,0.4) 85%,
    transparent 100%);
  z-index: 0;
}
@media (max-width: 980px) { .steps-grid::before { display: none; } }

.step-card {
  position: relative;
  background: linear-gradient(180deg, rgba(61,40,23,0.55) 0%, rgba(26,15,8,0.95) 100%);
  border: 1px solid rgba(232,200,122,0.18);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,200,122,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
@media (max-width: 560px) { .step-card { padding: 32px 24px 30px; } }

.step-num {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink-deep);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  margin: -8px auto 8px;
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(232,200,122,0.25);
  border-radius: 50%;
}

.step-kicker {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--ember);
  text-align: center;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 4px;
}
.step-card h3 .scr {
  font-family: 'Allura', cursive;
  color: var(--gold);
  font-size: 1.3em;
  display: inline-block;
  transform: translateY(0.06em);
  margin-right: 0.04em;
}
.step-card p {
  color: var(--cream-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  text-align: center;
  flex: 1;
}
.step-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
  align-self: stretch;
}
.step-cta.primary {
  background: var(--ember);
  color: var(--ink-deep);
  box-shadow: 0 6px 20px rgba(201,120,66,0.3);
}
.step-cta.primary:hover {
  background: var(--ember-glow);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,120,66,0.5);
}
.step-cta.ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.step-cta.ghost:hover {
  background: var(--gold);
  color: var(--ink-deep);
}
.step-cta .arr { transition: transform 0.25s; }
.step-cta:hover .arr { transform: translateX(4px); }
