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

:root {
  --gold-bright:  #B8780A;
  --gold-mid:     #9A6108;
  --gold-deep:    #6B4205;
  --gold-light:   #F0C84A;
  --dark-bg:      #F5EDD8;
  --dark-card:    #EDE3C8;
  --dark-warm:    #E8DCC0;
  --cream:        #2C1A06;
  --cream-muted:  #5C3D12;
  --text-main:    #3A2208;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-main);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; gap: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(245,237,216,0.95), rgba(245,237,216,0));
  backdrop-filter: blur(4px);
}
nav a {
  color: var(--cream-muted);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav a:hover, nav a.active { color: var(--gold-bright); }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream-muted);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
nav a:focus-visible,
.social-btn:focus-visible,
.btn-gold:focus-visible,
.btn-outline:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid rgba(184,120,10,0.55);
  outline-offset: 3px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center; justify-content: center;
  padding: 7rem 2rem 7rem;
  position: relative;
  overflow: hidden;
  max-width: none;
  background-image: url('banner.png');
  background-size: cover;
  background-position: center;
  color: #F5EAD6;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,11,1,0.78) 0%, rgba(20,11,1,0.45) 55%, rgba(20,11,1,0.2) 100%),
    radial-gradient(ellipse 60% 50% at 75% 25%, rgba(240,200,74,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
#hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--dark-bg));
  pointer-events: none;
  z-index: 2;
}

/* Sparkling particles */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px var(--gold-light);
  animation: sparkle-rise linear infinite;
  opacity: 0;
}
@keyframes sparkle-rise {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}
.hero-particles span:nth-child(1)  { left:4%;  top:90%; width:3px; height:3px; animation-duration:9s;  animation-delay:0s;   }
.hero-particles span:nth-child(2)  { left:12%; top:95%; width:2px; height:2px; animation-duration:13s; animation-delay:1.2s; }
.hero-particles span:nth-child(3)  { left:20%; top:85%; width:4px; height:4px; animation-duration:10s; animation-delay:2.5s; }
.hero-particles span:nth-child(4)  { left:30%; top:98%; width:2px; height:2px; animation-duration:15s; animation-delay:0.5s; }
.hero-particles span:nth-child(5)  { left:40%; top:90%; width:3px; height:3px; animation-duration:11s; animation-delay:3s;   }
.hero-particles span:nth-child(6)  { left:50%; top:95%; width:2px; height:2px; animation-duration:12s; animation-delay:1.5s; }
.hero-particles span:nth-child(7)  { left:60%; top:88%; width:4px; height:4px; animation-duration:8s;  animation-delay:4s;   }
.hero-particles span:nth-child(8)  { left:70%; top:96%; width:2px; height:2px; animation-duration:14s; animation-delay:0.8s; }
.hero-particles span:nth-child(9)  { left:80%; top:92%; width:3px; height:3px; animation-duration:10s; animation-delay:2s;   }
.hero-particles span:nth-child(10) { left:90%; top:97%; width:2px; height:2px; animation-duration:12s; animation-delay:3.5s; }
.hero-particles span:nth-child(11) { left:8%;  top:94%; width:2px; height:2px; animation-duration:16s; animation-delay:5s;   }
.hero-particles span:nth-child(12) { left:25%; top:99%; width:3px; height:3px; animation-duration:9s;  animation-delay:6s;   }
.hero-particles span:nth-child(13) { left:35%; top:91%; width:2px; height:2px; animation-duration:11s; animation-delay:1.2s; }
.hero-particles span:nth-child(14) { left:55%; top:97%; width:4px; height:4px; animation-duration:13s; animation-delay:4.5s; }
.hero-particles span:nth-child(15) { left:65%; top:89%; width:2px; height:2px; animation-duration:10s; animation-delay:2.8s; }
.hero-particles span:nth-child(16) { left:75%; top:95%; width:3px; height:3px; animation-duration:14s; animation-delay:0.3s; }
.hero-particles span:nth-child(17) { left:85%; top:93%; width:2px; height:2px; animation-duration:8s;  animation-delay:5.5s; }
.hero-particles span:nth-child(18) { left:15%; top:98%; width:4px; height:4px; animation-duration:12s; animation-delay:3.8s; }
.hero-particles span:nth-child(19) { left:45%; top:90%; width:2px; height:2px; animation-duration:15s; animation-delay:1.8s; }
.hero-particles span:nth-child(20) { left:95%; top:96%; width:3px; height:3px; animation-duration:9s;  animation-delay:7s;   }

.hero-inner {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.hero-text {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}
.hero-logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: -0.6rem;
  align-self: center;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  align-self: center;
  width: 100%;
  text-align: center;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #F5EAD6;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(245,234,214,0.62);
  max-width: 480px;
  line-height: 1.6;
}
/* Hero carousel: Klang-Text <-> Bewertungen */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 296px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-slide-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.hero-review-stars {
  color: var(--gold-light);
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.hero-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  color: #F5EAD6;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1rem;
}
.hero-review-author {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,234,214,0.6);
}
.hero-dots {
  display: flex;
  gap: 0.5rem;
}
.hero-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(245,234,214,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.hero-dots button.active { background: var(--gold-light); }

.hero-cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-text .social-row {
  justify-content: center;
  margin-top: 1rem;
}
#hero .social-btn {
  color: rgba(245,234,214,0.75);
  border-color: rgba(240,200,74,0.3);
}
#hero .social-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(240,200,74,0.1);
}
#hero .btn-outline {
  color: var(--gold-light);
  border-color: rgba(240,200,74,0.4);
}
#hero .btn-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(240,200,74,0.12);
}
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-mid), transparent);
  margin: 2.5rem auto;
}

@media (max-width: 900px) {
  #hero::before {
    background:
      linear-gradient(rgba(20,11,1,0.78), rgba(20,11,1,0.78)),
      radial-gradient(ellipse 60% 50% at 75% 25%, rgba(240,200,74,0.12) 0%, transparent 70%);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-quote { margin: 0 auto; text-align: center; }
  .hero-carousel { min-height: 245px; text-align: center; }
  .hero-slide { display: flex; flex-direction: column; align-items: center; }
  .hero-slide-eyebrow { justify-content: center; }
  .hero-review-text { margin: 0 auto 1rem; }
  .hero-dots { justify-content: center; align-self: center; }
  .hero-cta-row { justify-content: center; }
  .hero-text .social-row { justify-content: center; }
  .hero-photo-wrap { display: none; }
}

/* ── SOCIAL LINKS ── */
.social-row {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2rem;
}
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(154,97,8,0.35);
  border-radius: 2rem;
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(154,97,8,0.08);
}
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ── SECTIONS ── */
section {
  padding: 5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-text {
  color: var(--cream-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ── ABOUT ── */
#about { border-top: 1px solid rgba(154,97,8,0.15); }

/* ── WORKSHOP / UNTERRICHT ── */
#workshop, #unterricht {
  border-top: 1px solid rgba(154,97,8,0.15);
}
#kennenlern, #fortgeschritten, #inhalte {
  padding-bottom: 0;
}
.workshop-info {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 2rem 0;
}
.info-pill {
  background: rgba(154,97,8,0.07);
  border: 1px solid rgba(154,97,8,0.2);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
}
.info-pill .label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.3rem;
}
.info-pill .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
}

/* ── EINZUGSGEBIET ── */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.region-tag {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold-mid);
  background: rgba(154,97,8,0.07);
  border: 1px solid rgba(154,97,8,0.2);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
}

/* Termine */
.termine-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 2rem 0;
}
.monat-block {
  background: rgba(154,97,8,0.05);
  border: 1px solid rgba(154,97,8,0.15);
  border-radius: 0.5rem;
  padding: 1.2rem;
}
.monat-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}
.monat-block ul { list-style: none; }
.monat-block li {
  font-size: 0.88rem;
  color: var(--cream-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(154,97,8,0.08);
}
.monat-block li:last-child { border-bottom: none; }

/* ── FORM ── */
.form-wrap {
  background: rgba(154,97,8,0.04);
  border: 1px solid rgba(154,97,8,0.18);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 2.5rem;
}
.form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(154,97,8,0.2);
  border-radius: 0.4rem;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-bright);
}
.form-group select option { background: #F5EDD8; color: #2C1A06; }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: #F5EDD8;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none; border-radius: 2rem;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  text-decoration: none;
}
.btn-gold:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-gold:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--gold-bright);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(154,97,8,0.4);
  border-radius: 2rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--gold-bright);
  background: rgba(154,97,8,0.08);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-bright);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}
.form-error {
  display: none;
  margin-top: 1rem;
  color: #7A210D;
  font-size: 0.9rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ── GUTSCHEIN ── */
#gutschein {
  border-top: 1px solid rgba(154,97,8,0.15);
}


.gutschein-card {
  background: linear-gradient(135deg, rgba(154,97,8,0.1), rgba(107,66,5,0.05));
  border: 1px solid rgba(154,97,8,0.3);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gutschein-card::before {
  content: '✦';
  position: absolute; top: 1rem; left: 1.5rem;
  color: rgba(154,97,8,0.2);
  font-size: 1.5rem;
}
.gutschein-card::after {
  content: '✦';
  position: absolute; bottom: 1rem; right: 1.5rem;
  color: rgba(154,97,8,0.2);
  font-size: 1.5rem;
}
.gutschein-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.gutschein-text {
  color: var(--cream-muted);
  max-width: 440px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(154,97,8,0.15);
  text-align: center;
  padding: 2.5rem 2rem;
  color: rgba(92,61,18,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.footer-social {
  display: flex; justify-content: center; gap: 1.4rem;
  margin-bottom: 1.2rem;
}
.footer-social a {
  display: inline-flex;
  color: var(--cream-muted);
  opacity: 0.7;
  transition: color 0.3s, opacity 0.3s, transform 0.2s;
}
.footer-social a:hover {
  color: var(--gold-bright);
  opacity: 1;
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-legal {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.footer-legal a {
  color: rgba(92,61,18,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-bright); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 540px;
  background: var(--dark-card);
  border: 1px solid rgba(154,97,8,0.25);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(44,26,6,0.18);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookie-banner p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.5;
  flex: 1;
}
#cookie-banner p a {
  color: var(--gold-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btns button {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 2px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: 1px solid var(--gold-mid);
  transition: background 0.2s, color 0.2s;
}
#cookie-accept {
  background: var(--gold-mid);
  color: var(--dark-bg);
}
#cookie-accept:hover { background: var(--gold-bright); }
#cookie-decline {
  background: transparent;
  color: var(--gold-mid);
}
#cookie-decline:hover { background: rgba(154,97,8,0.08); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-btns { width: 100%; }
  .cookie-btns button { flex: 1; }
}

/* ── LEGAL PAGES ── */
.legal-text {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}
.legal-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 2.5rem 0 0.6rem;
}
.legal-text h3:first-child { margin-top: 0; }
.legal-text p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  opacity: 0.85;
}
.legal-text a {
  color: var(--gold-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SUBPAGE HERO ── */
.page-hero {
  padding: 8rem 2rem 3rem;
  min-height: 19rem;
  text-align: center;
  border-bottom: 1px solid rgba(154,97,8,0.15);
}
.page-hero .section-eyebrow { justify-content: center; }
.page-hero .section-title { margin-bottom: 0.5rem; }
.page-hero .section-text { max-width: 560px; margin: 1rem auto 0; }

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.back-link:hover { color: var(--gold-bright); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .workshop-info { grid-template-columns: 1fr; }
  .termine-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  nav            { justify-content: flex-start; align-items: center; gap: 0; padding: 0.9rem 1rem; flex-wrap: nowrap; }
  .nav-toggle    { display: flex; }
  nav a          {
    display: none;
    width: 100%;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    padding: 0.7rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(154,97,8,0.12);
  }
  nav.open {
    flex-direction: column;
    align-items: flex-start;
    background: var(--dark-bg);
    padding: 4.5rem 1.5rem 1.5rem;
    box-shadow: 0 12px 24px rgba(60,35,5,0.12);
  }
  nav.open a     { display: block; }
  nav.open a:last-child { border-bottom: none; }
  section        { padding: 4rem 1.25rem; }
  #hero          { padding-top: 7rem; }
  .page-hero     { padding-top: 7rem; }
  .form-wrap,
  .gutschein-card { padding: 1.4rem; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-particles span { animation: none; opacity: 0.12; }
}
