:root{
  --bg: #d3cccc;
  --paper: #f4f1ee;
  --ink: #1b1411;
  --muted: #5c514b;

  --olive: #688000;
  --blue:  #00a0e0;
  --orange:#f8a830;
  --brown: #986008;

  --hero-dark: #2e0d00;
  --hero-warm: #ab7a4e;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow2: 0 6px 18px rgba(0,0,0,.10);

  --sans: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --script: "Sarah Script", cursive;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background: linear-gradient(180deg, #efe9e6 0%, var(--bg) 60%, #e9e2de 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1140px, calc(100% - 40px));
  margin:0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px;
  background:var(--paper);
  border-radius:10px;
  box-shadow:var(--shadow2);
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(244,241,238,.75);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand-mini{
  display:flex; align-items:center; gap:10px;
}
.brand-mini-mark{
  width:34px; height:34px;
  border-radius:10px;
  background: linear-gradient(135deg, var(--hero-dark), var(--hero-warm));
  box-shadow: var(--shadow2);
}
.brand-mini-title{
  font-weight:800;
  letter-spacing:.01em;
  font-size:14px;
}
.brand-mini-sub{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}
.nav{
  display:flex; align-items:center; gap:14px;
  font-weight:700;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--hero-dark), #4a1c0c);
  color:white;
  box-shadow: var(--shadow2);
  border:0;
  cursor:pointer;
  font-weight:800;
}
.btn:hover{ filter:brightness(1.03); text-decoration:none; }
.btn.small{ padding:10px 14px; font-size:14px; }
.btn.ghost{
  background: transparent;
  color: var(--ink);
  border:1px solid rgba(0,0,0,.15);
  box-shadow:none;
}
.btn.ghost:hover{ background: rgba(255,255,255,.55); }

/* Sections */
.section{ padding:36px 0; }
.section-head{ margin-bottom:14px; }
.section-title{
  margin:0;
  font-weight:900;
  letter-spacing:.02em;
  font-size:26px;
}
.section-sub{
  margin:6px 0 0;
  color: rgba(0,0,0,.7);
}

.muted{ color: var(--muted); }
.smallprint{ font-size:12.5px; }

/* Cards */
.card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.card-title{
  margin:0 0 8px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
  font-size:14px;
}
.card-text{ margin:0; color: rgba(0,0,0,.72); }
.mb{ margin-bottom:14px; }

/* Hero */
.hero{ padding:30px 0 10px; }
.hero-simple{
  padding:22px;
  border-radius: var(--radius);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(248,168,48,.16), transparent 60%),
    radial-gradient(700px 420px at 70% 20%, rgba(0,160,224,.12), transparent 55%),
    linear-gradient(135deg, rgba(244,241,238,.92), rgba(244,241,238,.75));
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.06);
}
.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  width:120px;
  height:auto;
  padding:10px 12px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--hero-dark), var(--hero-warm));
  box-shadow: var(--shadow2);
}
.brand-place{
  font-weight:900;
  letter-spacing:.01em;
}
.brand-dates{
  color: var(--muted);
  font-weight:800;
  margin-top:2px;
}
.hero-title{
  margin:16px 0 8px;
  line-height:1.05;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight:900;
}
.hero-title .script{
  font-family: var(--script);
  font-weight:400;
}
.hero-title .bold{ font-weight:900; }
.hero-lead{
  margin:0;
  color: rgba(0,0,0,.72);
  font-weight:600;
}

/* Grid helpers */
.grid-2{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mt{ margin-top:14px; }
.stack{ display:grid; gap:14px; }

/* Schedules */
.schedule{ padding:0; overflow:hidden; }
.schedule-head{
  padding:14px 16px;
  color:white;
  font-weight:900;
  letter-spacing:.02em;
}
.schedule-head h3{ margin:0; font-size:16px; }
.schedule-head-sub{
  margin-top:4px;
  font-size:12px;
  opacity:.92;
  font-weight:700;
}
.schedule-head.all{
  background: linear-gradient(135deg, rgba(0,0,0,.70), rgba(0,0,0,.40));
}
.schedule-head.singers{
  background: linear-gradient(135deg, var(--blue), rgba(0,160,224,.70));
}
.schedule-head.brass{
  background: linear-gradient(135deg, var(--orange), rgba(248,168,48,.65));
  color:#1b1411;
}
.schedule-head.organ{
  background: linear-gradient(135deg, var(--brown), rgba(152,96,8,.65));
}

.schedule-body{ padding:14px 16px 16px; }
.schedule-body.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.schedule-body.one{ display:block; }

.day{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding:12px 12px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.day + .day{ margin-top:12px; }

.day-tag{
  display:inline-flex;
  align-items:center;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border: 1px solid rgba(0,0,0,.10);
}
.day-tag.olive{ background: rgba(104,128,0,.18); color:#2b2f14; border-color: rgba(104,128,0,.22); }
.day-tag.blue{ background: rgba(0,160,224,.16); color:#053447; border-color: rgba(0,160,224,.22); }
.day-tag.orange{ background: rgba(248,168,48,.22); color:#3a2400; border-color: rgba(248,168,48,.26); }
.day-tag.brown{ background: rgba(152,96,8,.16); color:#2d1b03; border-color: rgba(152,96,8,.22); }

.day-list{
  margin:10px 0 0;
  padding-left:18px;
  color: rgba(0,0,0,.78);
}
.day-list li{ margin:6px 0; }

/* Chips & features */
.feature{ margin:10px 0; }
.feature-text{ margin:8px 0 0; color: rgba(0,0,0,.72); }
.chip{
  display:inline-block;
  padding:7px 10px;
  border-radius: 999px;
  font-weight:900;
  font-size:12px;
  border: 1px solid rgba(0,0,0,.10);
}
.chip.brown{ background: rgba(152,96,8,.18); }
.chip.orange{ background: rgba(248,168,48,.24); }
.chip.blue{ background: rgba(0,160,224,.18); }

.list{ margin:0; padding-left:18px; }
.list li{ margin:8px 0; color: rgba(0,0,0,.76); }

/* Form */
.form{ padding:18px; }
.form-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-weight:800; font-size:13px; }
.field input{
  border-radius: 12px;
  padding:12px 12px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.86);
  outline:none;
}
.field input:focus{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}
.field .hint{ font-size:12px; color: var(--muted); }
.span-2{ grid-column: span 2; }

.sep{
  border:0;
  height:1px;
  background: rgba(0,0,0,.10);
  margin:18px 0;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

/* Titles */
.form-title{
  margin:0 0 12px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
}

/* Workshop radios */
.fieldset{ border:0; padding:0; margin:0; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.radio{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.62);
  margin-bottom:10px;
  cursor:pointer;
}
.radio input{ position:absolute; opacity:0; pointer-events:none; }
.radio .dot{
  width:18px; height:18px;
  border-radius:999px;
  border:2px solid rgba(0,0,0,.30);
  background: transparent;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.8);
}
.radio input:checked + .dot{
  background: linear-gradient(135deg, var(--hero-dark), var(--hero-warm));
  border-color: rgba(0,0,0,.15);
}

/* Boxes */
.box{
  padding:22px; /* mehr Innenabstand */
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.58);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* Checks */
.check{
  display:flex; gap:10px; align-items:flex-start;
  font-weight:700;
  margin:10px 0; /* mehr Luft */
}
.check input{ margin-top:3px; }

.pill-row{ display:flex; flex-wrap:wrap; gap:8px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.66);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}
.pill input{ margin:0; }

/* Workshop details */
.ws-details{
  margin-top:12px;
  padding:14px;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.18);
  background: rgba(255,255,255,.55);
}
.ws-head{ margin:0 0 8px; font-weight:900; }

/* Right column stack spacing */
.form-stack > section + section{
  margin-top:22px; /* MEHR Abstand zwischen Verpflegung/Anreise/Unterbringung/Einwilligungen */
}

/* Notice / Callout */
.notice{
  border-radius: 18px;
  padding:18px; /* mehr Innenabstand */
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}
.notice.callout{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border-left: 8px solid var(--orange);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(248,168,48,.22), transparent 60%),
    radial-gradient(500px 220px at 80% 20%, rgba(0,160,224,.14), transparent 55%),
    rgba(255,255,255,.72);
}
.notice-icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background: rgba(0,0,0,.06);
}
.notice-title{
  margin:0 0 6px;
  font-weight:900;
  letter-spacing:.01em;
}
.notice-text{
  margin:0;
  color: rgba(0,0,0,.72);
  font-weight:600;
}
.notice a{
  text-decoration:underline;
  font-weight:900;
}

/* misc */
.mt{ margin-top:14px; }
.caps{ text-transform:uppercase; letter-spacing:.03em; }

/* Honeypot hidden */
.hp{
  position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;
}

/* Form actions */
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
  margin-top:18px;
}

/* Footer */
.footer{
  padding:26px 0 34px;
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(0,0,0,.10);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-title{
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.footer-col{ flex:1; min-width:260px; }
.footer-nav a{
  display:block;
  margin:8px 0;
  font-weight:800;
  color: rgba(0,0,0,.75);
}

/* Responsive */
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr 1fr; }
  .span-2{ grid-column: span 2; }
  .schedule-body.two{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .nav{ display:none; }
  .form-grid{ grid-template-columns: 1fr; }
  .span-2{ grid-column: span 1; }
}