/* ============================================================
   BURG WEGBERG — Hotel · Restaurant · Eventlocation
   Bespoke heritage design system
   ============================================================ */

:root {
  /* Brand palette — derived from the heraldic logo */
  --burg:        #5e2129;   /* oxblood / deep burgundy (logo) */
  --burg-700:    #4a1a20;
  --burg-900:    #2e1216;   /* near-black wine */
  --gold:        #b8924f;   /* antique brass */
  --gold-soft:   #cdab72;
  --cream:       #f6f1e7;   /* parchment */
  --cream-2:     #efe7d6;
  --sand:        #e4d8c1;
  --ink:         #2a2320;
  --ink-soft:    #5b5048;
  --line:        rgba(94, 33, 41, 0.16);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", -apple-system, system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.06; letter-spacing: -0.01em; }
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--burg-900);
  margin: 1rem 0 1.2rem;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 3rem); }
section { position: relative; }
.pad { padding-block: clamp(4.5rem, 9vw, 8rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 8px; border: 1px solid transparent;
  transition: all 0.45s var(--ease);
  position: relative; overflow: hidden;
}
.btn .ar { transition: transform 0.45s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 30px -12px rgba(94,33,41,0.5); }
.btn-gold:hover { background: var(--burg); }
.btn-outline { border-color: currentColor; color: var(--burg); }
.btn-outline:hover { background: var(--burg); color: #fff; border-color: var(--burg); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--burg-900); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 60px; width: auto; transition: all 0.5s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }
.nav.scrolled .nav-logo img { height: 50px; filter: none; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.06em;
  color: #fff; position: relative; padding-block: 4px;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 0.5rem; }
.nav .btn { padding: 0.78rem 1.5rem; font-size: 0.86rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; position: relative;
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(46,18,22,0.45) 0%, rgba(46,18,22,0.15) 35%, rgba(46,18,22,0.85) 100%),
    linear-gradient(120deg, #3a1418, #6e2a30 60%, #2e1216);
  background-size: cover; background-position: center;
}
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero-bg img.loaded { opacity: 1; }
.hero-bg video, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-grain { position: absolute; inset: 0; z-index: 1; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 500; margin: 1.4rem 0 0.4rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 52ch; color: rgba(255,255,255,0.86); font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta {
  position: absolute; right: clamp(1.2rem,4vw,3rem); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); display: flex; gap: 2rem; z-index: 2;
}
.scroll-hint { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint .bar { width: 1px; height: 40px; background: linear-gradient(var(--gold-soft), transparent); animation: drop 2s infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Stat strip */
.stats { background: var(--burg-900); color: var(--cream); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2.4rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold-soft); line-height: 1; }
.stat .lab { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

/* ============================================================
   INTRO / HISTORY
   ============================================================ */
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.intro-figure { position: relative; }
.intro-figure .img-block { aspect-ratio: 4/5; border-radius: 3px; }
.intro-figure .badge {
  position: absolute; bottom: -28px; left: -28px; z-index: 3;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--burg); color: var(--cream);
  display: grid; place-content: center; text-align: center;
  font-family: var(--font-display); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  border: 1px solid var(--gold);
}
.intro-figure .badge .b-num { font-size: 2.6rem; color: var(--gold-soft); line-height: 1; }
.intro-figure .badge .b-txt { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); margin-top: 4px; }
.intro p + p { margin-top: 1.1rem; }
.signature { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--burg); }
.intro-feats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; margin-top: 2rem; }
.intro-feats li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; }
.intro-feats .ic { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ---------- Reusable image block with graceful fallback ---------- */
.img-block { position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 70% 10%, rgba(184,146,79,0.25), transparent 55%),
    linear-gradient(135deg, var(--burg-700), var(--burg-900));
}
.img-block::after { /* subtle crest watermark when no photo */
  content: ""; position: absolute; inset: 0; opacity: 0.12;
  background: center/40% no-repeat url("/assets/logo.png"); filter: grayscale(1) brightness(3);
  mix-blend-mode: overlay;
}
.img-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s var(--ease), transform 6s var(--ease); z-index: 1; }
.img-block img.loaded { opacity: 1; }
.img-block.zoom:hover img.loaded { transform: scale(1.06); }

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ============================================================
   ZIMMER
   ============================================================ */
.rooms { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 3.2rem; }
.room-card { background: #fff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(94,33,41,0.4); }
.room-card .img-block { aspect-ratio: 4/3; }
.room-card .r-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.room-card h3 { font-size: 1.7rem; color: var(--burg-900); }
.room-card .r-feat { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 0.8rem 0 1.2rem; font-size: 0.82rem; color: var(--ink-soft); }
.room-card .r-feat span { display: inline-flex; gap: 0.4rem; align-items: center; }
.room-card .r-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; border-top: 1px solid var(--line); }
.room-card .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--burg); }
.room-card .price small { font-size: 0.72rem; color: var(--ink-soft); font-family: var(--font-body); letter-spacing: 0.05em; }
.room-card .r-link { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ============================================================
   SPLIT FEATURE (Restaurant)
   ============================================================ */
.split { overflow: hidden; }
.split.dark { background: var(--burg-900); color: var(--cream); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.split-media { position: relative; }
.split-media .img-block { position: absolute; inset: 0; }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 6rem); }
.split.dark .eyebrow { color: var(--gold-soft); }
.split.dark .section-title { color: var(--cream); }
.split.dark .lead { color: rgba(246,241,231,0.8); }
.menu-list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding-bottom: 0.8rem; border-bottom: 1px dashed rgba(205,171,114,0.3); }
.menu-item .mi-name { font-family: var(--font-display); font-size: 1.3rem; }
.menu-item .mi-desc { font-size: 0.82rem; color: rgba(246,241,231,0.6); }
.menu-item .mi-price { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.2rem; white-space: nowrap; }

/* ============================================================
   EVENTS — Hochzeit & Tagung
   ============================================================ */
.events { background: var(--cream); }
.event-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.event-block + .event-block { margin-top: clamp(4rem, 8vw, 7rem); }
.event-block.reverse .event-media { order: 2; }
.event-media .img-block { aspect-ratio: 5/4; border-radius: 3px; }
.event-media.stack { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.event-media.stack .img-block:first-child { grid-row: 1 / 3; aspect-ratio: auto; }
.event-media.stack .img-block { aspect-ratio: auto; min-height: 150px; border-radius: 3px; }
.feature-list { display: grid; gap: 0.9rem; margin: 1.6rem 0 2rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.feature-list .ic { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: rgba(184,146,79,0.14);
  color: var(--gold); display: grid; place-content: center; }
.feature-list strong { color: var(--burg-900); font-weight: 600; }
.hall-table { width: 100%; margin: 1.4rem 0 2rem; border-collapse: collapse; font-size: 0.92rem; }
.hall-table th, .hall-table td { text-align: left; padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--line); }
.hall-table th { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hall-table td:first-child { font-family: var(--font-display); font-size: 1.15rem; color: var(--burg-900); }
.hall-table .cap { color: var(--ink-soft); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--burg-900); }
.gallery .sec-head .section-title, .gallery .sec-head .lead { color: var(--cream); }
.gallery .lead { color: rgba(246,241,231,0.75); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.9rem; margin-top: 3rem; }
.gal-grid .img-block { border-radius: 3px; }
.gal-grid .g-tall { grid-row: span 2; }
.gal-grid .g-wide { grid-column: span 2; }

/* ============================================================
   INQUIRY / CONTACT
   ============================================================ */
.contact { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); }
.info-card { }
.info-list { margin-top: 2rem; display: grid; gap: 1.5rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--burg); color: var(--gold-soft); display: grid; place-content: center; }
.info-list .k { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.info-list .v { font-size: 1.05rem; color: var(--ink); }
.info-list a.v:hover { color: var(--burg); }
.hours { margin-top: 2rem; padding: 1.4rem 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: 3px; }
.hours h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--burg-900); margin-bottom: 0.6rem; }
.hours .row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.3rem 0; color: var(--ink-soft); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: clamp(1.8rem, 4vw, 3rem); box-shadow: 0 30px 70px -40px rgba(94,33,41,0.35); }
.form-card h3 { font-size: 2rem; color: var(--burg-900); margin-bottom: 0.3rem; }
.form-card .sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.6rem; }
.seg { display: flex; gap: 0.5rem; background: var(--cream-2); padding: 5px; border-radius: 3px; margin-bottom: 1.6rem; }
.seg button { flex: 1; padding: 0.7rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  border: 0; background: transparent; color: var(--ink-soft); border-radius: 2px; transition: 0.3s; }
.seg button.active { background: var(--burg); color: #fff; box-shadow: 0 8px 20px -10px rgba(94,33,41,0.6); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.4rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 3px;
  font-family: inherit; font-size: 0.95rem; background: var(--cream); color: var(--ink); transition: 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(184,146,79,0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.form-ok { display: none; padding: 1rem 1.2rem; background: rgba(184,146,79,0.14); border: 1px solid var(--gold); border-radius: 3px; color: var(--burg); font-size: 0.9rem; margin-top: 1rem; }
.form-ok.show { display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-banner .img-block { position: absolute; inset: 0; }
.cta-banner .veil { position: absolute; inset: 0; background: linear-gradient(rgba(46,18,22,0.82), rgba(46,18,22,0.88)); z-index: 2; }
.cta-inner { position: relative; z-index: 3; max-width: 720px; margin-inline: auto; }
.cta-banner h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 1rem auto 2rem; max-width: 50ch; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--burg-900); color: rgba(246,241,231,0.7); padding-top: 4.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }
.footer a:hover { color: var(--gold-soft); }
.footer-links { display: grid; gap: 0.7rem; font-size: 0.92rem; }
.footer-brand img { height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: grid; place-content: center; color: rgba(255,255,255,0.85); transition: 0.3s; }
.footer-social a svg { display: block; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--burg-900); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0 2.4rem; font-size: 0.8rem; }
.footer-bottom a { margin-left: 1.4rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .intro-grid, .split-grid, .event-block, .event-block.reverse .event-media,
  .contact-grid { grid-template-columns: 1fr; }
  .event-block.reverse .event-media { order: 0; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .split-grid { min-height: auto; }
  .split-media { min-height: 60vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .rooms-grid, .f-row, .intro-feats { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gal-grid .g-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
}

/* ============================================================
   ADDED: multi-page nav (dropdown), page hero, offers
   ============================================================ */

/* Active nav link */
.nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a.active { color: var(--burg); }
.nav-links a.active::after { width: 100%; }

/* Dropdown (desktop) */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.caret { font-size: 0.7em; transition: transform 0.3s var(--ease); }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 0.5rem; box-shadow: 0 30px 60px -28px rgba(94,33,41,0.45);
  opacity: 0; visibility: hidden; transition: all 0.32s var(--ease); z-index: 50;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); }
.dropdown li { display: block; }
.dropdown a {
  display: block; padding: 0.6rem 0.9rem; font-size: 0.85rem; color: var(--ink) !important;
  border-radius: 3px; letter-spacing: 0.01em; transition: 0.2s;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--cream); color: var(--burg) !important; padding-left: 1.1rem; }

/* Nav toggle → X */
.nav-toggle span { transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-locked { overflow: hidden; }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  position: relative; min-height: 60vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(46,18,22,0.55) 0%, rgba(46,18,22,0.25) 45%, rgba(46,18,22,0.9) 100%),
              linear-gradient(120deg, #3a1418, #6e2a30 60%, #2e1216); }
.page-hero .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s var(--ease); }
.page-hero .hero-bg img.loaded { opacity: 1; }
.page-hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1rem; display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb .sep { color: var(--gold-soft); }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); margin-bottom: 0.6rem; }
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero .ph-sub { max-width: 56ch; color: rgba(255,255,255,0.86); font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 300; }

/* ---------- PROSE / content helpers ---------- */
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose p strong { color: var(--burg-900); }
.lyt { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.lyt.reverse .lyt-media { order: 2; }
.lyt-media .img-block { aspect-ratio: 4/5; border-radius: 3px; }
.callout { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 3px; padding: 1.4rem 1.6rem; margin: 1.6rem 0; }
.callout .k { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.callout .v { font-family: var(--font-display); font-size: 1.5rem; color: var(--burg-900); }
.price-tag { font-family: var(--font-display); font-size: 1.8rem; color: var(--burg); }
.price-tag small { font-size: 0.8rem; color: var(--ink-soft); font-family: var(--font-body); }

/* ---------- OFFERS overview grid ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.offer-card { position: relative; border-radius: 4px; overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; color: #fff; transition: transform 0.5s var(--ease); }
.offer-card:hover { transform: translateY(-6px); }
.offer-card .img-block { position: absolute; inset: 0; }
.offer-card .oc-veil { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(46,18,22,0) 30%, rgba(46,18,22,0.9) 100%); }
.offer-card .oc-body { position: relative; z-index: 3; padding: 1.6rem; }
.offer-card h3 { font-size: 1.7rem; }
.offer-card p { font-size: 0.88rem; color: rgba(255,255,255,0.82); margin: 0.4rem 0 0.8rem; }
.offer-card .oc-link { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.offer-card:hover .oc-link { color: #fff; }

/* Two-up info cards */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2rem; }
.icard { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 1.8rem; }
.icard h3 { font-size: 1.5rem; color: var(--burg-900); margin-bottom: 0.5rem; }
.icard .big-time { font-family: var(--font-display); font-size: 1.6rem; color: var(--burg); margin: 0.4rem 0; }
.icard ul { display: grid; gap: 0.5rem; margin-top: 0.8rem; }
.icard li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.icard li::before { content: "✦"; color: var(--gold); }

/* ============================================================
   ADDED: mobile nav (slide-in overlay) — overrides
   ============================================================ */
@media (max-width: 980px) {
  .nav-toggle { display: flex; z-index: 120; position: relative; }
  .nav-logo { z-index: 120; }
  .nav-links {
    position: fixed; inset: 0; z-index: 110;
    flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 0.4rem; background: var(--burg-900);
    padding: 6rem 1.5rem 3rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    display: flex;
  }
  .nav-links.open { transform: none; }
  .nav-links li { width: 100%; max-width: 360px; text-align: center; }
  .nav-links a { color: #fff !important; font-family: var(--font-display); font-size: 1.7rem; padding: 0.6rem 0; display: block; }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--gold-soft) !important; }
  .nav-cta { margin-top: 1.2rem; }
  .nav-links .nav-cta a { font-family: var(--font-body); font-size: 0.85rem; display: inline-flex; }
  /* dropdown becomes accordion */
  .has-dropdown .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: 0; box-shadow: none; min-width: 0;
    max-height: 0; overflow: hidden; padding: 0; transition: max-height 0.4s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 480px; padding: 0.4rem 0 0.8rem; }
  .has-dropdown .caret { transition: transform 0.3s; }
  .has-dropdown.open .caret { transform: rotate(180deg); }
  .dropdown a { color: var(--gold-soft) !important; font-size: 1.05rem !important; font-family: var(--font-body) !important; padding: 0.45rem 0 !important; }
  .dropdown a:hover { background: transparent; padding-left: 0 !important; }
  .lyt, .lyt.reverse .lyt-media, .offer-grid, .cards-2 { grid-template-columns: 1fr; }
  .lyt.reverse .lyt-media { order: 0; }
  .page-hero { min-height: 52vh; }
}
@media (max-width: 600px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADDED: HERO SLIDER (carousel)
   ============================================================ */
.hero-track { display: flex; height: 100%; min-height: 100svh; transition: transform 0.85s var(--ease); will-change: transform; }
.hero-slide { position: relative; flex: 0 0 100%; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }

/* Stronger scrim for text readability over bright photos */
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,8,10,0.85) 0%, rgba(18,8,10,0.55) 36%, rgba(18,8,10,0.15) 66%, rgba(18,8,10,0) 100%),
    linear-gradient(0deg, rgba(18,8,10,0.82) 0%, rgba(18,8,10,0.25) 42%, rgba(18,8,10,0.04) 70%),
    linear-gradient(180deg, rgba(18,8,10,0.5) 0%, rgba(18,8,10,0) 26%);
}
.hero-slide .hero-grain { z-index: 2; }
.hero-slide .hero-inner { z-index: 3; }

/* Content entrance animation per active slide */
.hero-slide .hero-inner > * { opacity: 0; transform: translateY(28px); }
.hero-slide.is-active .hero-inner > * { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.hero-slide.is-active .hero-inner > *:nth-child(1) { transition-delay: 0.15s; }
.hero-slide.is-active .hero-inner > *:nth-child(2) { transition-delay: 0.28s; }
.hero-slide.is-active .hero-inner > *:nth-child(3) { transition-delay: 0.40s; }
.hero-slide.is-active .hero-inner > *:nth-child(4) { transition-delay: 0.52s; }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(18,8,10,0.28);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  color: #fff; font-size: 1.9rem; line-height: 1; font-family: var(--font-body);
  display: grid; place-content: center; transition: all 0.35s var(--ease);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.hero-arrow.prev { left: clamp(0.8rem, 2.5vw, 2rem); }
.hero-arrow.next { right: clamp(0.8rem, 2.5vw, 2rem); }

/* Dots */
.hero-dots { position: absolute; bottom: 2.2rem; left: clamp(1.2rem, 4vw, 3rem); z-index: 6; display: flex; gap: 0.55rem; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.45); transition: all 0.35s var(--ease); }
.hero-dots button:hover { background: rgba(255,255,255,0.8); }
.hero-dots button.active { background: var(--gold); width: 30px; border-radius: 6px; }

@media (max-width: 600px) {
  .hero-arrow { width: 44px; height: 44px; font-size: 1.5rem; }
  .hero-arrow.prev { left: 0.6rem; } .hero-arrow.next { right: 0.6rem; }
  .scroll-hint { display: none; }
}

.hero-meta { display: none; }

/* ============================================================
   ADDED: sub-page hero contrast + premium radii + mobile menu fix
   ============================================================ */

/* Alt sayfa hero'larına güçlü scrim (homepage gibi okunabilirlik) */
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,8,10,0.85) 0%, rgba(18,8,10,0.55) 36%, rgba(18,8,10,0.18) 66%, rgba(18,8,10,0.05) 100%),
    linear-gradient(0deg, rgba(18,8,10,0.82) 0%, rgba(18,8,10,0.28) 44%, rgba(18,8,10,0.05) 72%),
    linear-gradient(180deg, rgba(18,8,10,0.5) 0%, rgba(18,8,10,0) 26%);
}
.page-hero-inner { z-index: 2; }
.page-hero .hero-grain { z-index: 1; }

/* Premium radius — form kontrolleri butonlarla uyumlu */
.field input, .field select, .field textarea { border-radius: 8px; }
.seg { border-radius: 10px; }
.seg button { border-radius: 7px; }

/* Mobil menü düzeltmesi:
   .nav.scrolled'daki backdrop-filter, position:fixed overlay'i nav çubuğuna
   hapsediyordu (containing block sorunu). Menü açıkken bunu kaldırıyoruz. */
.nav.menu-open {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.nav.menu-open .nav-toggle span { background: #fff; }

/* ============================================================
   ADDED: language switcher — açılır/kapanır dropdown (DE / EN / NL)
   ============================================================ */
.lang-dd { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: 1px solid rgba(255,255,255,0.4); border-radius: 8px;
  color: #fff; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.42rem 0.7rem; transition: all 0.3s var(--ease);
}
.nav.scrolled .lang-toggle { color: var(--ink); border-color: var(--line); }
.lang-toggle:hover { color: var(--gold); border-color: var(--gold); }
.lang-toggle .caret { font-size: 0.7em; transition: transform 0.3s var(--ease); }
.lang-dd.open .lang-toggle .caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: 100%; right: 0; margin-top: 8px; min-width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 0.4rem;
  box-shadow: 0 30px 60px -28px rgba(94,33,41,0.45);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.28s var(--ease); z-index: 60;
}
.lang-dd.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { display: block; }
.lang-menu button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--ink);
  padding: 0.55rem 0.7rem; border-radius: 6px; transition: 0.2s;
}
.lang-menu button > span { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; }
.lang-menu button:hover { background: var(--cream); color: var(--burg); padding-left: 0.9rem; }
.lang-menu button.active { background: var(--cream-2); }
.lang-menu button.active > span { color: var(--burg); }

@media (max-width: 980px) {
  .nav-links .lang-dd { margin-top: 1.6rem; display: flex; flex-direction: column; align-items: center; }
  .nav-links .lang-toggle { color: #fff !important; border-color: rgba(255,255,255,0.4); font-size: 1rem; padding: 0.55rem 1.1rem; }
  .nav-links .lang-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; min-width: 0; margin-top: 0;
    max-height: 0; overflow: hidden; padding: 0; transition: max-height 0.35s var(--ease);
  }
  .nav-links .lang-dd.open .lang-menu { max-height: 240px; padding: 0.5rem 0; }
  .nav-links .lang-menu button { color: #fff !important; justify-content: center; font-size: 1.15rem; }
  .nav-links .lang-menu button > span { color: var(--gold-soft); }
  .nav-links .lang-menu button:hover { background: transparent; padding-left: 0.7rem; }
}

/* ============================================================
   ADDED: virtuelle Tour (Matterport)
   ============================================================ */
.tour-tabs { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 1.6rem; }
.tour-tab {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.7rem 1.4rem; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: all 0.3s var(--ease);
}
.tour-tab:hover { border-color: var(--gold); color: var(--burg); }
.tour-tab.active { background: var(--burg); border-color: var(--burg); color: #fff; box-shadow: 0 10px 26px -14px rgba(94,33,41,0.6); }
.tour-frame {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  background: var(--burg-900); box-shadow: 0 40px 80px -40px rgba(46,18,22,0.5); border: 1px solid var(--line);
}
.tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 600px) {
  .tour-tab { font-size: 0.78rem; padding: 0.6rem 1rem; }
  .tour-frame { aspect-ratio: 4/3; }
}

/* ============================================================
   ADDED: legal / AGB sayfası
   ============================================================ */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.7rem; color: var(--burg-900); margin: 2.6rem 0 0.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0.7rem; }
.legal p .cl { display: inline-block; min-width: 2.6rem; font-weight: 700; color: var(--burg); }
.legal .sub { padding-left: 2.6rem; }
.legal .intro-line { font-size: 1.05rem; color: var(--ink); margin-bottom: 2rem; }

/* ============================================================
   ADDED: Bestuhlung tablosu (kapasite) — yatay kaydırılabilir
   ============================================================ */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 1rem; }
.cap-table { min-width: 620px; }
.cap-table th, .cap-table td { white-space: nowrap; }
.cap-table td.cap { text-align: center; font-family: var(--font-body); color: var(--ink-soft); }
.cap-table th:not(:first-child):not(:nth-child(2)) { text-align: center; }

/* ============================================================
   ADDED: Step-Formular (anfrage.html)
   ============================================================ */
.container-narrow { max-width: 820px; }
.stepform {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 2.4rem 2.4rem 2.2rem; box-shadow: 0 40px 90px -50px rgba(46,18,22,0.45);
}

/* Fortschrittsanzeige */
.step-progress { list-style: none; display: flex; gap: 0.5rem; margin: 0 0 2rem; padding: 0; counter-reset: none; }
.step-progress li { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; color: var(--ink-soft); }
.step-progress li::before {
  content: ""; position: absolute; top: 17px; left: -50%; width: 100%; height: 2px;
  background: var(--line); z-index: 0;
}
.step-progress li:first-child::before { display: none; }
.step-progress li.active::before, .step-progress li.done::before { background: var(--gold); }
.step-progress .sp-num {
  position: relative; z-index: 1; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream-2); color: var(--ink-soft);
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; border: 2px solid transparent;
  transition: all 0.3s var(--ease);
}
.step-progress li.active .sp-num { background: var(--burg); color: #fff; border-color: var(--gold); }
.step-progress li.done .sp-num { background: var(--gold); color: #fff; }
.step-progress li.done .sp-num::after { content: "✓"; }
.step-progress li.done .sp-num { font-size: 0; }
.step-progress li.done .sp-num::after { font-size: 1rem; }
.step-progress .sp-lab { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.04em; }
.step-progress li.active .sp-lab { color: var(--burg); font-weight: 600; }

/* Schritte */
.step { display: none; border: 0; padding: 0; margin: 0; min-inline-size: 0; }
.step.is-active { display: block; animation: stepIn 0.4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-title { font-family: var(--font-display); font-size: 1.7rem; color: var(--burg-900); padding: 0; }
.step-sub { color: var(--ink-soft); font-size: 0.95rem; margin: 0.3rem 0 1.4rem; }
.step-hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; background: var(--cream); border-radius: 8px; padding: 0.8rem 1rem; }

/* Termin hinzufügen / entfernen */
.add-date { display: inline-flex; align-items: center; gap: 0.4rem; background: none; border: 1px dashed var(--gold-soft);
  color: var(--burg); border-radius: 8px; padding: 0.6rem 1rem; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; cursor: pointer; margin: 0.2rem 0 1.4rem; transition: all 0.2s var(--ease); }
.add-date:hover { background: var(--cream); border-color: var(--gold); }
.date-extra { margin-bottom: 0.9rem; }
.date-extra .date-row { display: flex; gap: 0.5rem; align-items: center; }
.date-extra .date-row input { flex: 1; }
.rm-date { flex: none; width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 8px;
  color: var(--ink-soft); cursor: pointer; font-size: 0.85rem; transition: all 0.2s var(--ease); }
.rm-date:hover { border-color: #a3322b; color: #a3322b; }

/* ============================================================
   ADDED: Demo-Zugangssperre (Access Gate)
   ============================================================ */
#bw-gate { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center;
  padding: 2rem; background: linear-gradient(135deg, var(--burg-900), var(--burg)); }
#bw-gate .bw-card { background: #fff; border-radius: 16px; padding: 2.6rem 2.2rem; max-width: 400px; width: 100%;
  text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
#bw-gate .bw-logo { height: 54px; width: auto; margin-bottom: 1.1rem; }
#bw-gate h2 { font-family: var(--font-display); font-size: 1.55rem; color: var(--burg-900); margin: 0 0 0.4rem; }
#bw-gate p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 1.4rem; }
#bw-form { display: flex; flex-direction: column; gap: 0.8rem; }
#bw-input { padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 8px; font-size: 1rem;
  text-align: center; letter-spacing: 0.04em; font-family: var(--font-body); }
#bw-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,79,0.18); }
#bw-form .btn { width: 100%; justify-content: center; }
#bw-gate .bw-err { display: none; color: #a3322b; font-size: 0.85rem; }
#bw-gate .bw-err.show { display: block; }

/* ============================================================
   ADDED: Lightbox (Galerie)
   ============================================================ */
.gal-grid img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center;
  background: rgba(20,12,8,0.93); backdrop-filter: blur(4px); padding: 4vh 2vw; }
.lightbox.open { display: flex; animation: lbIn 0.25s var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { margin: 0; display: flex; align-items: center; justify-content: center; max-width: 92vw; max-height: 88vh; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6); animation: lbZoom 0.3s var(--ease); }
@keyframes lbZoom { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close { position: absolute; top: 1.1rem; right: 1.3rem; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.35); color: #fff; font-size: 1.2rem;
  cursor: pointer; transition: 0.25s; z-index: 2; }
.lb-close:hover { background: var(--gold); border-color: var(--gold); color: var(--burg-900); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.35); color: #fff; font-size: 1.8rem; line-height: 1;
  cursor: pointer; transition: 0.25s; z-index: 2; display: grid; place-content: center; }
.lb-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--burg-900); }
.lb-prev { left: 1.2rem; } .lb-next { right: 1.2rem; }
.lb-count { position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; }
@media (max-width: 600px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
}

/* Anlass-Auswahl */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.choice {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; padding: 1.2rem 0.8rem; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: all 0.25s var(--ease); background: #fff;
}
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.choice .ch-ic { font-size: 1.5rem; color: var(--gold); line-height: 1; }
.choice .ch-lab { font-family: var(--font-body); font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.choice.is-checked, .choice:has(input:checked) {
  border-color: var(--burg); background: var(--cream); box-shadow: 0 14px 30px -18px rgba(94,33,41,0.5);
}
.choice.is-checked .ch-ic, .choice:has(input:checked) .ch-ic { color: var(--burg); }

/* Aktionen + Fehler */
.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2rem; }
.step-error { display: none; color: #a3322b; font-size: 0.88rem; margin-top: 0.9rem; }
.step-error.show { display: block; }
.consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--ink-soft); margin-top: 1.2rem; cursor: pointer; }
.consent input { margin-top: 0.2rem; accent-color: var(--burg); }
.consent a { color: var(--gold); border-bottom: 1px solid; }

/* Erfolg + Kontakt-Hinweis */
#stepOk.form-ok.show { display: block; margin-top: 1.6rem; }
.anfrage-aside { text-align: center; margin-top: 1.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.anfrage-aside .al { color: var(--burg); font-weight: 600; border-bottom: 1px solid var(--gold-soft); }
.anfrage-aside .sep2 { margin: 0 0.5rem; color: var(--gold); }

@media (max-width: 640px) {
  .stepform { padding: 1.6rem 1.2rem; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .step-progress .sp-lab { font-size: 0.72rem; }
  .step-title { font-size: 1.45rem; }
  .step-actions .btn { flex: 1; justify-content: center; }
}

/* Homepage-Anfrage-Karte (statt altem Formular) */
.inquire-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; }
.inquire-card h3 { font-family: var(--font-display); font-size: 1.9rem; color: var(--burg-900); margin: 0.3rem 0 0.6rem; }
.inquire-card .sub { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.2rem; }
.inquire-list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 0.7rem; width: 100%; }
.inquire-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.94rem; color: var(--ink); }
.inquire-list .ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--cream); color: var(--gold); flex: none; }
.inquire-card .btn { width: 100%; justify-content: center; }
.inquire-card .btn + .btn { margin-top: 0.7rem; }

/* Kontaktformular → Verweis auf Anfrage-Seite */
.contact-anfrage { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); text-align: center; }
.contact-anfrage p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.contact-anfrage .btn { width: 100%; justify-content: center; }
