/* ============================================================
   Siegfried Zembok — Hauptstylesheet
   ============================================================ */

:root {
  --bg:       #231409;
  --bg-2:     #2e1b0c;
  --bg-3:     #3a2110;
  --text:     #f4ead8;
  --dim:      #c6b69c;
  --muted:    #8a7a60;
  --gold:     #c8a268;
  --gold-hi:  #e2b27c;
  --line:     rgba(200,162,104,.16);
  --shadow:   0 20px 60px rgba(0,0,0,.44);
  --r:        10px;
  --r-lg:     18px;
  --w:        1160px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at top left,  rgba(200,162,104,.09) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(200,162,104,.07) 0%, transparent 60%);
}

/* ---- Base ---- */
a { color: var(--gold-hi); text-decoration: none; transition: color .2s; }
a:hover { color: var(--text); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; font-family: var(--sans); letter-spacing: .04em; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .8em;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem var(--gutter, clamp(1.25rem,4vw,3rem));
  background: rgba(35,20,9,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  gap: .38em;
  white-space: nowrap;
}
.brand span:last-child { color: var(--gold); }
.brand:hover { color: var(--text); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav a {
  color: var(--dim);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 400;
  padding: .4em .9em;
  transition: color .2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold-hi); }
.site-nav .nav-sep {
  width: 1px;
  height: 18px;
  background: var(--line);
  margin: 0 .5rem;
}
.site-nav .nav-cta {
  margin-left: .75rem;
  padding: .55em 1.3em;
  background: var(--gold);
  color: var(--bg) !important;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: background .2s, transform .2s;
}
.site-nav .nav-cta:hover {
  background: var(--gold-hi);
  transform: translateY(-1px);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  margin: 0 auto;
  transition: transform .28s, opacity .28s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  padding: .85em 1.9em;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: .6em 1.25em; font-size: .8rem; }
.btn-lg { padding: 1em 2.4em; font-size: .92rem; }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(200,162,104,.35);
}
.btn-ghost:hover {
  border-color: var(--gold-hi);
  color: var(--gold-hi);
}

.btn-ghost-dim {
  background: transparent;
  color: var(--dim);
  border-color: var(--line);
}
.btn-ghost-dim:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
}

/* ============================================================
   Full Hero (Startseite)
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.6) saturate(1.05);
  transform: rotate(180deg); /* EXIF-Korrektur: fluegel.jpg orientation=lower-right */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(35,20,9,.35) 0%, rgba(35,20,9,.68) 65%, var(--bg) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(200,162,104,.22), transparent 55%);
  z-index: -1;
}
.hero-content {
  max-width: var(--w);
  margin: 0 auto;
  padding: 7rem clamp(1.25rem,4vw,3rem) 5rem;
  width: 100%;
}
.hero-content h1 { max-width: 16ch; margin-bottom: .4em; }
.hero-content .lede {
  max-width: 52ch;
  font-size: 1.15rem;
  color: var(--dim);
  margin-bottom: 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   Sub-page Hero (Buchen, Shop, Kontakt)
   ============================================================ */
.page-hero {
  padding: 4rem clamp(1.25rem,4vw,3rem) 3.5rem;
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,162,104,.07), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--w);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem,4vw,3.2rem);
  margin-bottom: .3em;
}
.page-hero .lede {
  max-width: 60ch;
  color: var(--dim);
  font-size: 1.08rem;
  margin: 0;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: clamp(4rem,8vw,7rem) clamp(1.25rem,4vw,3rem);
  max-width: var(--w);
  margin: 0 auto;
}
.section-wide {
  padding: clamp(4rem,8vw,7rem) clamp(1.25rem,4vw,3rem);
}
.section-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark .section { /* inner container on dark sections */
  max-width: var(--w);
  margin: 0 auto;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-intro {
  color: var(--dim);
  font-size: 1.06rem;
  margin: 0;
}

/* ============================================================
   Kurs-Karten
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1.4rem;
}
.card {
  background: linear-gradient(175deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .28s, border-color .28s, box-shadow .28s;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .28s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(200,162,104,.4); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: rgba(200,162,104,.4);
  line-height: 1;
  margin-bottom: .7rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: .45rem; }
.card p { color: var(--dim); font-size: .97rem; margin: 0 0 .8rem; }
.card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .3em .75em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(200,162,104,.06);
}
.cards-note {
  margin: 2.5rem auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--dim);
  font-size: .98rem;
  font-style: italic;
}

/* ============================================================
   Preise
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.plan {
  background: linear-gradient(175deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .28s, border-color .28s, box-shadow .28s;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(200,162,104,.4); box-shadow: var(--shadow); }
.plan-featured {
  border-color: rgba(200,162,104,.45);
  background:
    linear-gradient(175deg, rgba(200,162,104,.07), rgba(200,162,104,.03)),
    linear-gradient(175deg, var(--bg-3), var(--bg-2));
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -11px; right: 1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .28em .9em;
  border-radius: 999px;
}
.plan-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .5rem;
}
.plan-duration {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--text);
  margin: 0 0 .3rem;
  line-height: 1.1;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  margin: 0 0 1.6rem;
}
.plan-amount {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold-hi);
}
.plan-unit { color: var(--dim); font-size: .97rem; }
.plan-features {
  list-style: none;
  display: grid;
  gap: .55rem;
  color: var(--dim);
  font-size: .97rem;
  flex: 1;
  margin-bottom: 1.8rem;
}
.plan-features li { position: relative; padding-left: 1.4em; }
.plan-features li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: .3em;
}
.plan .btn { align-self: stretch; text-align: center; }
.pricing-note {
  max-width: 640px;
  margin: 2.2rem auto 0;
  text-align: center;
  color: var(--dim);
  font-size: .95rem;
}

/* ============================================================
   Über mich
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem,6vw,5.5rem);
  align-items: center;
}
.about-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--dim); font-size: 1.06rem; max-width: 50ch; }

/* ============================================================
   CTA-Band (Querverbindungen zwischen Seiten)
   ============================================================ */
.cta-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band-item {
  padding: 2.8rem clamp(1.5rem,3vw,3rem);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  text-decoration: none;
  color: var(--text);
  border-right: 1px solid var(--line);
  transition: background .2s;
  position: relative;
}
.cta-band-item:last-child { border-right: 0; }
.cta-band-item:hover { background: rgba(200,162,104,.04); }
.cta-band-item:hover .cta-arrow { transform: translateX(4px); }
.cta-band-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-band-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--text);
  margin: 0;
}
.cta-band-desc { color: var(--dim); font-size: .94rem; margin: 0; }
.cta-arrow {
  margin-top: auto;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform .2s;
}

/* ============================================================
   Shop – Produktkarten
   ============================================================ */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}
.product {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s, border-color .28s;
}
.product:hover { transform: translateY(-4px); border-color: rgba(200,162,104,.4); }
.product-thumb {
  aspect-ratio: 5/3;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-placeholder {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(200,162,104,.07), rgba(200,162,104,.03)),
    var(--bg-3);
}
.product-thumb-accent { background: linear-gradient(135deg, rgba(200,162,104,.18), rgba(107,74,138,.12)), var(--bg-3); color: var(--gold-hi); }
.product-status {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(35,20,9,.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .3em .8em;
  backdrop-filter: blur(6px);
}
.product-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 { margin-bottom: .4rem; }
.product-body p { color: var(--dim); font-size: .97rem; flex: 1; }
.product-variants {
  list-style: none;
  display: grid;
  gap: .5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin: .5rem 0 1rem;
}
.product-variants li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: .7rem;
  align-items: baseline;
  font-size: .92rem;
}
.variant-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.variant-desc { color: var(--dim); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.payment-box {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, rgba(200,162,104,.06), rgba(200,162,104,.02));
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.payment-box p { color: var(--dim); margin: 0; font-size: .97rem; }
.payment-box strong { color: var(--text); }

/* ============================================================
   Buchungs-Seite
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.booking-info { display: grid; gap: 2rem; }
.info-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.info-card h4 { color: var(--gold); margin-bottom: .5rem; font-size: .85rem; letter-spacing: .12em; }
.info-card p, .info-card li { color: var(--dim); font-size: .97rem; margin: 0; }
.info-card ul { list-style: none; display: grid; gap: .45rem; }
.info-card li { position: relative; padding-left: 1.3em; }
.info-card li::before { content: "→"; color: var(--gold); position: absolute; left: 0; font-size: .8em; top: .12em; }
.direct-contact {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(200,162,104,.07), transparent);
  border: 1px solid rgba(200,162,104,.3);
  border-radius: var(--r);
}
.direct-contact p { color: var(--dim); font-size: .95rem; margin: 0 0 1rem; }
.direct-contact a { color: var(--gold-hi); font-weight: 500; }
.contact-links { display: flex; flex-direction: column; gap: .6rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-size: .97rem;
  transition: color .2s;
}
.contact-link:hover { color: var(--gold-hi); }
.contact-link-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(200,162,104,.1);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background .2s;
}
.contact-link:hover .contact-link-icon { background: rgba(200,162,104,.2); }

/* ============================================================
   Kontaktseite
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.contact-options { display: grid; gap: 1rem; margin-bottom: 2rem; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.contact-option:hover { border-color: rgba(200,162,104,.4); background: var(--bg-3); color: var(--text); }
.contact-option-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(200,162,104,.1);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-option-body { flex: 1; }
.contact-option-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .15rem;
}
.contact-option-value { font-size: 1rem; color: var(--text); margin: 0; }

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  background: var(--bg-3);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(.9) hue-rotate(185deg) saturate(.7) brightness(.85);
}
.address-block {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--dim);
  font-size: .97rem;
  line-height: 1.8;
}
.address-block strong { color: var(--text); display: block; margin-bottom: .25rem; }

/* ============================================================
   Formulare (geteilt)
   ============================================================ */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}
.form-card h3 { font-size: 1.4rem; margin-bottom: -.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: grid;
  gap: .35rem;
}
.form-group label {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  padding: .8em 1em;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .97rem;
  font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,104,.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check-group { display: grid; gap: .5rem; }
.form-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .97rem;
  color: var(--dim);
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  padding: 0;
}
.form-hint { font-size: .8rem; color: var(--muted); margin: 0; }
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(200,162,104,.08);
  border: 1px solid rgba(200,162,104,.35);
  border-radius: var(--r);
  color: var(--gold-hi);
  font-size: .97rem;
  text-align: center;
}
.form-success.visible { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 3.5rem clamp(1.25rem,4vw,3rem) 2rem;
  color: var(--dim);
  font-size: .92rem;
}
.footer-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text);
  margin: 0 0 .3rem;
  letter-spacing: .06em;
}
.footer-tagline { color: var(--muted); font-size: .85rem; margin: 0 0 1rem; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .9rem;
  font-weight: 500;
}
.footer-col p, .footer-col a {
  color: var(--dim);
  display: block;
  margin: 0 0 .45rem;
  font-size: .92rem;
}
.footer-col a:hover { color: var(--gold-hi); }
.footer-bottom {
  max-width: var(--w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { color: var(--muted); font-size: .8rem; margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted); font-size: .8rem; }
.footer-legal a:hover { color: var(--gold-hi); }

/* ============================================================
   Impressum / Datenschutz – Textseiten
   ============================================================ */
.text-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem clamp(1.25rem,4vw,3rem);
}
.text-page h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  margin-top: 2.5rem;
  margin-bottom: .5rem;
  color: var(--gold);
}
.text-page h2:first-of-type { margin-top: 0; }
.text-page p, .text-page li { color: var(--dim); font-size: 1rem; }
.text-page ul { list-style: disc; padding-left: 1.5em; display: grid; gap: .3rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .about        { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band     { grid-template-columns: 1fr; }
  .cta-band-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-band-item:last-child { border-bottom: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-media  { aspect-ratio: 4/3; max-width: 480px; }
}

@media (max-width: 700px) {
  .site-nav     { display: none; }
  .nav-toggle   { display: flex; }
  .site-nav.open {
    display: flex;
    position: fixed;
    top: 61px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: rgba(35,20,9,.97);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: .2rem;
    overflow-y: auto;
    z-index: 99;
  }
  .site-nav.open a {
    font-size: 1.1rem;
    padding: .85em 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: .08em;
  }
  .site-nav.open .nav-sep { display: none; }
  .site-nav.open .nav-cta {
    margin: 1rem 0 0;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 5.5rem; padding-bottom: 4rem; }
  .hero-cta     { flex-direction: column; align-items: stretch; }
  .pricing      { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Header-Actions (Theme-Toggle + Hamburger)
   ============================================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--dim);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  padding: 0;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--gold-hi);
  border-color: var(--gold);
  background: rgba(200,162,104,.08);
}
.theme-toggle svg { pointer-events: none; display: block; }

/* Dunkel-Modus (Standard): Mond-Icon sichtbar */
.icon-sun  { display: none; }
.icon-moon { display: block; }

/* Hell-Modus: Sonne-Icon sichtbar */
html[data-theme="light"] .icon-sun  { display: block; }
html[data-theme="light"] .icon-moon { display: none; }
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .icon-sun  { display: block; }
  html:not([data-theme="dark"]) .icon-moon { display: none; }
}

/* Sanfter Übergang beim Moduswechsel */
html { transition: background-color .2s, color .2s; }

/* ============================================================
   Hell-Modus — CSS-Variablen
   ============================================================ */
:root[data-theme="light"] {
  --bg:       #f7f1e8;
  --bg-2:     #ede6d8;
  --bg-3:     #e3d9c8;
  --text:     #1c1008;
  --dim:      #4a3320;
  --muted:    #8a7050;
  --gold:     #9a7530;
  --gold-hi:  #b08838;
  --line:     rgba(90,55,15,.13);
  --shadow:   0 20px 60px rgba(0,0,0,.10);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg:       #f7f1e8;
    --bg-2:     #ede6d8;
    --bg-3:     #e3d9c8;
    --text:     #1c1008;
    --dim:      #4a3320;
    --muted:    #8a7050;
    --gold:     #9a7530;
    --gold-hi:  #b08838;
    --line:     rgba(90,55,15,.13);
    --shadow:   0 20px 60px rgba(0,0,0,.10);
  }
}

/* ============================================================
   Hell-Modus — Komponenten (hardkodierte rgba-Werte überschreiben)
   ============================================================ */

/* Hintergrund-Farbverlauf am Body */
:root[data-theme="light"] body {
  background-image:
    radial-gradient(ellipse at top left,  rgba(160,120,50,.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(160,120,50,.04) 0%, transparent 60%);
}

/* Header-Hintergrund */
:root[data-theme="light"] .site-header {
  background: rgba(247,241,232,.92);
}

/* Hero-Overlay */
:root[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(180deg, rgba(247,241,232,.38) 0%, rgba(247,241,232,.78) 65%, var(--bg) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(180,140,55,.18), transparent 55%);
}

/* Hero-Bild: etwas stärker abdunkeln damit Text lesbar bleibt */
:root[data-theme="light"] .hero-bg img {
  filter: brightness(.42) saturate(1.15);
}

/* Mobiles Menü-Overlay */
:root[data-theme="light"] .site-nav.open {
  background: rgba(247,241,232,.98);
}

/* Karten-Karte kein invert im Hell-Modus */
:root[data-theme="light"] .map-wrap iframe {
  filter: none;
}

/* Gleiche Overrides für System-Präferenz ohne manuelle Einstellung */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) body {
    background-image:
      radial-gradient(ellipse at top left,  rgba(160,120,50,.06) 0%, transparent 55%),
      radial-gradient(ellipse at bottom right, rgba(160,120,50,.04) 0%, transparent 60%);
  }
  :root:not([data-theme="dark"]) .site-header {
    background: rgba(247,241,232,.92);
  }
  :root:not([data-theme="dark"]) .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247,241,232,.38) 0%, rgba(247,241,232,.78) 65%, var(--bg) 100%),
      radial-gradient(ellipse at 25% 60%, rgba(180,140,55,.18), transparent 55%);
  }
  :root:not([data-theme="dark"]) .hero-bg img {
    filter: brightness(.42) saturate(1.15);
  }
  :root:not([data-theme="dark"]) .site-nav.open {
    background: rgba(247,241,232,.98);
  }
  :root:not([data-theme="dark"]) .map-wrap iframe {
    filter: none;
  }
}
