:root{
  --bg: #fff7ee;
  --paper: #fffdf9;
  --ink: #2a2320;
  --muted: #6a5f58;
  --line: #ead8c8;

  --brand: #e86a4a;   /* warmes Coral */
  --brand2:#f2b24c;   /* warmes Gelb */
  --shadow: 0 10px 25px rgba(42,35,32,0.10);

  --radius: 16px;
  --max: 1080px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 450px at 10% 0%, rgba(232,106,74,0.14), transparent 55%),
    radial-gradient(800px 420px at 90% 10%, rgba(242,178,76,0.18), transparent 60%),
    var(--bg);
  line-height:1.6;
}

.container{ width:min(var(--max), calc(100% - 36px)); margin:0 auto; }
a{ color: var(--brand); text-decoration: none; }
a:hover{ text-decoration: underline; }

h1,h2,h3{ margin:0 0 10px; line-height:1.2; }
h1{ font-size: clamp(2rem, 3.8vw, 3rem); }
h2{ font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
h3{ font-size: 1.05rem; }
.sub{ margin:0 0 18px; color: var(--muted); }
.tiny{ font-size: 0.92rem; color: var(--muted); }
.note{ margin-top: 14px; }

.topbar{
  position: sticky;
  top:0;
  z-index: 10;
  background: rgba(255,253,249,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 16px;
}

.logo{
  display:flex;
  align-items:center;
  gap: 10px;
}
.logo-mark{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.logo-text span{ color: var(--muted); font-size: 0.9rem; }

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
}
.nav a{
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(232,106,74,0.10);
  text-decoration:none;
}

.menu-btn{
  display:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-nav{
  display:none;
  padding-bottom: 12px;
}
.mobile-nav a{
  display:block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  margin-bottom: 8px;
  color: var(--ink);
}
.mobile-nav a:hover{ background: rgba(242,178,76,0.12); text-decoration:none; }

@media (max-width: 820px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .mobile-nav.open{ display:block; }
}

.hero{
  padding: 56px 0 34px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.kicker{
  display:inline-block;
  font-weight: 700;
  color: var(--brand);
  background: rgba(232,106,74,0.10);
  border: 1px solid rgba(232,106,74,0.22);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 10px;
}
.lead{ color: var(--muted); margin: 0 0 16px; }

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn{
  display:inline-block;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn:hover{ filter: brightness(1.03); text-decoration:none; }
.btn.btn-outline{
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn.btn-outline:hover{ background: rgba(242,178,76,0.12); }

.hint-box{
  background: var(--paper);
  border: 1px dashed rgba(42,35,32,0.25);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.hero-card .card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card-title{ color: var(--muted); font-weight:700; margin-bottom: 8px; }
.card-big{ font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
.card-list{ color: var(--muted); display:grid; gap: 6px; }
.card-note{ margin-top: 12px; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 950px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-card{ display:none; }
}

.section{ padding: 44px 0; }
.section.alt{
  background: rgba(255,253,249,0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 950px){
  .grid{ grid-template-columns: 1fr; }
}

.box{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.box ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.prices{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 950px){
  .prices{ grid-template-columns: 1fr; }
}
.price-box{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.price-head{
  font-weight: 800;
  margin-bottom: 10px;
}
.price-row{
  display:flex;
  justify-content:space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(234,216,200,0.7);
}
.price-row:last-child{ border-bottom:0; }

.event{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 950px){
  .event{ grid-template-columns: 1fr; }
}

.chips{
  list-style:none;
  padding:0;
  margin: 10px 0 10px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.chips li{
  background: rgba(242,178,76,0.18);
  border: 1px solid rgba(242,178,76,0.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  color: #4b382e;
}

.event-form{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
label{ display:block; font-weight: 700; margin-bottom: 10px; }
input, textarea{
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  margin-top: 6px;
}
.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 560px){
  .two{ grid-template-columns: 1fr; }
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 950px){
  .contact{ grid-template-columns: 1fr; }
}
.contact-box{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.hours{
  margin-top: 10px;
  display:grid;
  gap: 8px;
}
.hours div{
  display:flex;
  justify-content:space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(234,216,200,0.7);
}
.hours div:last-child{ border-bottom:0; }

.footer{
  padding: 20px 0;
  color: var(--muted);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.footer-links a{ color: var(--muted); margin-left: 10px; }
.footer-links a:hover{ color: var(--ink); }