/* ==========================================================================
   Corleone Vienna — Komponenten & Sektionen
   ========================================================================== */

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 52px;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}
.site-header.scrolled {
  background: rgba(16, 27, 46, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 52px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.site-header img { height: 76px; width: 76px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); transition: height 0.5s; }
.site-header.scrolled img { height: 44px; }

.nav-links { display: flex; align-items: center; gap: 40px; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; }
.nav-links a { color: var(--ink); transition: color 0.4s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(210, 175, 89, 0.6);
  padding: 10px 22px;
  backdrop-filter: blur(8px);
  background: rgba(21, 35, 59, 0.25);
  transition: background 0.4s, color 0.4s;
}
.nav-cta:hover { background: rgba(210, 175, 89, 0.15); color: var(--gold-light); }

.nav-toggle {
  display: none; background: rgba(21, 35, 59, 0.35); border: 1px solid rgba(210, 175, 89, 0.6);
  color: var(--gold-light); padding: 10px 16px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-sans); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ============ HERO ============ */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; flex-direction: column; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,35,59,0.55) 0%, rgba(21,35,59,0.35) 40%, rgba(21,35,59,0.75) 100%); }
.hero-frame { position: absolute; inset: 18px; border: 1px solid rgba(232,198,108,0.16); pointer-events: none; z-index: 2; }

.hero-anim { opacity: 0; animation: heroFadeUp 1.2s ease-out both; }
.hero-1 { animation-delay: 0.1s; } .hero-2 { animation-delay: 0.3s; }
.hero-3 { animation-delay: 0.55s; } .hero-4 { animation-delay: 0.85s; }

.hero-center { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.hero-kicker { font-size: 12px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.hero-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(56px, 9vw, 124px); line-height: 1; margin: 0; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.hero-script { font-family: var(--font-script); font-size: clamp(32px, 4.5vw, 58px); color: var(--gold-light); margin-top: 6px; transform: rotate(-3deg); }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; margin-top: 44px; }
.btn-gold {
  display: inline-block; padding: 17px 46px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy); font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.4); color: var(--navy); }
.btn-ghost {
  display: inline-block; padding: 16px 44px;
  border: 1px solid rgba(245,239,227,0.5); color: var(--ink);
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  backdrop-filter: blur(10px); background: rgba(245,239,227,0.08);
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}
.btn-ghost:hover { background: rgba(210,175,89,0.25); border-color: var(--gold); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 34px; border: 1px solid rgba(210,175,89,0.6); color: var(--gold);
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  transition: background 0.4s, color 0.4s, gap 0.4s;
}
.btn-outline:hover { background: rgba(210,175,89,0.12); color: var(--gold-light); gap: 20px; }

.btn-text {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 0;
  color: var(--ink-70); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  transition: color 0.4s, gap 0.4s;
}
.btn-text:hover { color: var(--gold-light); gap: 18px; }
.arr { font-family: serif; }

.hero-foot { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 16px; padding-bottom: 28px; }
.scroll-hint-line { width: 1px; height: 42px; background: linear-gradient(180deg, var(--gold-light), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
.hero-address { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(245,239,227,0.6); }

/* ============ Sektions-Köpfe ============ */
.kicker-row { display: flex; align-items: center; gap: 14px; }
.kicker-rule { width: 44px; height: 1px; background: var(--gold-dark); }
.kicker { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.kicker-dim { color: var(--ink-55); }

.kicker-row.center { justify-content: center; gap: 16px; margin-bottom: 18px; }
.kicker-row.center .kicker-rule.left { width: 36px; background: linear-gradient(90deg, transparent, var(--gold-dark)); }
.kicker-row.center .kicker-rule.right { width: 36px; background: linear-gradient(270deg, transparent, var(--gold-dark)); }
.kicker-row.center .kicker { letter-spacing: 0.4em; }

.h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 3.6vw, 50px); margin: 0; color: var(--ink); }
.h2-xl { font-size: clamp(34px, 4vw, 52px); }

/* ============ ERWARTET (3er-Mediengrid) ============ */
.erwartet { background: var(--navy); padding-top: 140px; }
.erwartet-head { text-align: center; padding: 0 24px 70px; }
.erwartet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.erwartet-card { position: relative; height: 72vh; min-height: 520px; overflow: hidden; }
.erwartet-media { position: absolute; inset: 0; transition: transform 1.6s var(--ease-out); }
.erwartet-card:hover .erwartet-media { transform: scale(1.05); }
.erwartet-media video, .erwartet-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.erwartet-media img { object-position: center 35%; }
.erwartet-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,35,59,0.15) 40%, rgba(21,35,59,0.85) 100%); pointer-events: none; }
.erwartet-idx { position: absolute; top: 34px; left: 36px; display: flex; align-items: center; gap: 12px; pointer-events: none; }
.erwartet-idx .n { font-family: var(--font-serif); font-size: 15px; letter-spacing: 0.35em; color: rgba(245,239,227,0.85); }
.erwartet-idx .l { width: 28px; height: 1px; background: rgba(232,198,108,0.55); }
.erwartet-copy { position: absolute; left: 36px; right: 36px; bottom: 80px; pointer-events: none; }
.erwartet-copy .script { font-family: var(--font-script); font-size: 24px; color: var(--gold-light); margin-bottom: 10px; }
.erwartet-copy .t { font-family: var(--font-serif); font-weight: 400; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.erwartet-copy .d { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-70); margin-top: 14px; max-width: 320px; }

/* ============ AUF EINEN BLICK ============ */
.intro { background: var(--navy); padding: 130px var(--pad-x) 90px; display: flex; justify-content: center; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 100px; align-items: center; }
.intro h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.3; margin: 0 0 26px; }
.intro p { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--ink-70); max-width: 400px; margin: 0 0 40px; }
.intro-links { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.intro-links .btn-outline { padding: 14px 32px; }

.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.fact { background: var(--navy); padding: 42px 34px; transition: background 0.4s; }
.fact:hover { background: var(--navy-2); }
.fact .label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.fact .value { font-family: var(--font-serif); font-size: 27px; line-height: 1.35; color: var(--ink); }
.fact .note { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--ink-55); margin-top: 12px; }

/* ============ CHEF'S ============ */
.chefs { background: var(--navy); padding: 100px var(--pad-x) 140px; display: flex; justify-content: center; }
.chefs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.chefs .ghost { font-size: clamp(60px, 7vw, 104px); }
.chefs h2 { font-size: clamp(32px, 3.5vw, 46px); line-height: 1.25; margin: 36px 0 24px; }
.chefs p { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--ink-70); max-width: 440px; margin: 0 0 44px; }
.chefs-media { position: relative; display: flex; justify-content: center; }
.chefs-media .box { position: relative; width: 100%; max-width: 440px; aspect-ratio: 9/16; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); background: var(--navy-deep); }
.chefs-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chefs-media .inner-frame { inset: 18px; }

/* ============ IMPRESSIONEN ============ */
.impressionen { background: var(--navy); padding: 20px var(--pad-x) 40px; display: flex; justify-content: center; }
.imp-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 60px; }
.imp-head h2 { font-size: clamp(32px, 3.6vw, 48px); }
.link-underline {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(210,175,89,0.4); padding-bottom: 8px;
  transition: color 0.4s, border-color 0.4s, gap 0.4s;
}
.link-underline:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); gap: 18px; }
.imp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.imp-card { position: relative; }
.imp-card.riser { margin-top: 56px; }
.imp-card .box { position: relative; aspect-ratio: 9/16; overflow: hidden; background: var(--navy-deep); box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.imp-card video { width: 100%; height: 100%; object-fit: cover; }

/* ============ ÜBER UNS ============ */
.story { background: var(--navy); padding: 140px var(--pad-x) 120px; display: flex; justify-content: center; }
.story-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 90px; align-items: start; }
.story .ghost { font-size: clamp(52px, 6vw, 88px); letter-spacing: 0.2em; }
.story-script { font-family: var(--font-script); font-size: clamp(38px, 4.4vw, 58px); color: var(--gold-light); margin-top: -18px; transform: rotate(-2deg); }
.story-quote { font-family: var(--font-serif); font-size: 24px; font-weight: 400; line-height: 1.65; color: var(--ink); margin: 0 0 30px; }
.story-body { font-size: 16px; font-weight: 300; line-height: 2; color: var(--ink-70); margin: 0; }
.story-strip {
  margin-top: 90px; padding-top: 40px; border-top: 1px solid var(--hairline);
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.story-strip .big { font-family: var(--font-serif); font-weight: 300; font-size: clamp(48px, 6.5vw, 92px); line-height: 0.9; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.story-strip .adr { font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--ink-55); padding-bottom: 8px; }

/* ============ MOMENTE / EVENTS ============ */
.momente { background: var(--navy); padding: 140px var(--pad-x); display: flex; justify-content: center; overflow: hidden; }
.momente-head { text-align: center; margin-bottom: 80px; }
.momente-head .ghost { font-size: clamp(52px, 6vw, 88px); letter-spacing: 0.22em; }
.momente-head .kicker-row { margin: 10px 0 26px; }
.momente-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.moment-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--navy-deep); box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  transition: transform 0.6s var(--ease-out);
}
.moment-card:hover { transform: translateY(-10px); }
.moment-card.rounded { border-radius: 8px; }
.moment-card.bow { border-radius: 160px 160px 8px 8px; }
.moment-card video, .moment-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.moment-card img { object-position: center 30%; }
.moment-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,35,59,0) 42%, rgba(21,35,59,0.92) 100%); pointer-events: none; }
.moment-card .inner-frame { border-radius: 4px; }
.moment-card.bow .inner-frame { border-radius: 146px 146px 4px 4px; }
.moment-copy { position: absolute; left: 40px; right: 40px; bottom: 40px; }
.moment-copy .k { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.moment-copy .t { font-family: var(--font-serif); font-weight: 500; font-size: 30px; line-height: 1.15; color: var(--ink); }
.moment-copy .d { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--ink-70); margin-top: 12px; }
.moment-copy a { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(210,175,89,0.4); padding-bottom: 6px; transition: color 0.4s, border-color 0.4s, gap 0.4s; }
.moment-copy a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); gap: 16px; }

/* Partyraum */
.party { margin-top: 120px; display: grid; grid-template-columns: 0.72fr 1fr; gap: 80px; align-items: center; }
.party-media { position: relative; aspect-ratio: 9/16; overflow: hidden; background: var(--navy-deep); box-shadow: 0 40px 80px rgba(0,0,0,0.5); cursor: pointer; }
.party-media video { width: 100%; height: 100%; object-fit: cover; }
.party-media .inner-frame { inset: 18px; }
.sound-pill {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 34px;
  display: flex; align-items: center; gap: 12px; padding: 12px 22px;
  border: 1px solid rgba(245,239,227,0.45); background: rgba(21,35,59,0.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap; pointer-events: none;
}
.sound-pill .ic { font-size: 13px; color: var(--gold-light); }
.party h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.25; color: var(--ink); margin: 0 0 22px; }
.party p { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--ink-70); margin: 0 0 34px; max-width: 420px; }
.party-facts { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-bottom: 36px; }
.party-facts .row { background: var(--navy); padding: 18px 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.party-facts .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-55); }
.party-facts .value { font-family: var(--font-serif); font-size: 20px; color: var(--ink); }

/* ============ RESERVIERUNG ============ */
.reservieren { background: var(--navy-3); padding: 140px var(--pad-x); display: flex; justify-content: center; }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.reservieren .ghost { font-size: clamp(56px, 6.5vw, 96px); }
.reservieren h2 { font-size: clamp(32px, 3.5vw, 46px); line-height: 1.25; margin: 32px 0 18px; }
.reservieren .sub { font-size: 16px; font-weight: 300; color: var(--ink-70); margin: 0 0 48px; }

.res-form { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 40px; text-align: left; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-55); }
.field input, .field select {
  background: transparent; border: none; border-bottom: 1px solid rgba(245,239,227,0.3);
  padding: 8px 0; color: var(--ink); font-family: var(--font-sans); font-size: 15px; font-weight: 300;
  outline: none; transition: border-color 0.3s; border-radius: 0; appearance: none; -webkit-appearance: none;
}
.field select option { color: var(--navy); background: var(--ink); }
.field input:focus, .field select:focus { border-bottom-color: var(--gold); }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field.span2 { grid-column: span 2; }
.res-submit {
  grid-column: span 2; margin-top: 8px; padding: 18px; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  border: none; border-radius: 999px; color: var(--navy);
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}
.res-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.35); }
.res-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }
.res-note { margin-top: 22px; font-size: 12px; font-weight: 300; line-height: 1.8; color: var(--ink-45); }
.res-error { display: none; grid-column: span 2; font-size: 13px; color: #E8A46C; }
.res-error.show { display: block; }

.res-thanks { border: 1px solid rgba(210,175,89,0.5); padding: 44px 32px; background: rgba(210,175,89,0.06); text-align: center; }
.res-thanks .script { font-family: var(--font-script); font-size: 36px; color: var(--gold-light); margin-bottom: 14px; }
.res-thanks .txt { font-weight: 300; color: var(--ink-70); line-height: 1.8; }

.res-media { position: relative; height: 640px; }
.res-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; border-radius: 260px 260px 0 0; }

/* ============ FOOTER (Nachtfloor) ============ */
.kontakt { background: var(--navy-d, #0D1626); padding: 110px var(--pad-x) 34px; position: relative; overflow: hidden; }
.kontakt::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 70% at 82% 18%, rgba(210,175,89,0.07), transparent 60%); }

.foot-cta { max-width: var(--wrap); margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; padding: 44px 48px; border: 1px solid rgba(210,175,89,0.3);
  background: linear-gradient(120deg, rgba(210,175,89,0.1), rgba(210,175,89,0.02) 55%); }
.foot-cta .kicker { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); }
.foot-cta-big { font-family: var(--font-serif); font-weight: 300; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12; margin-top: 12px; }
.foot-cta .btn-gold { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; padding: 17px 30px; max-width: 100%; box-sizing: border-box; }

.foot-grid { max-width: var(--wrap); margin: 76px auto 0; display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.9fr; gap: 48px; align-items: start; }
.foot-brand img { width: 64px; height: 64px; object-fit: contain; opacity: 0.92; }
.foot-name { font-family: var(--font-serif); font-size: 27px; letter-spacing: 0.06em; margin-top: 16px; }
.foot-name i { color: var(--gold-light); }
.foot-tag { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: var(--ink-55); max-width: 30ch; margin-top: 10px; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(245,239,227,0.22);
  font-size: 11px; letter-spacing: 0.12em; color: var(--ink-70); transition: all 0.35s; }
.foot-social a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.foot-col { display: flex; flex-direction: column; gap: 13px; }
.foot-col h4 { font-size: 11px; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.foot-col a { font-size: 14.5px; color: rgba(245,239,227,0.78); transition: color 0.35s, padding-left 0.35s; width: fit-content; }
.foot-col a:hover { color: var(--gold-light); padding-left: 6px; }
.foot-plain { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--ink-55); }
.foot-plain b { color: rgba(245,239,227,0.9); font-weight: 400; font-family: var(--font-serif); font-size: 16px; letter-spacing: 0.04em; }

.foot-script { text-align: center; margin-top: 84px; font-family: var(--font-script);
  font-size: clamp(34px, 4.6vw, 54px); color: var(--gold-light); transform: rotate(-2deg); }

.foot-bottom { max-width: var(--wrap); margin: 54px auto 0; padding-top: 26px; border-top: 1px solid rgba(245,239,227,0.12);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-45); }
.foot-legal { display: flex; gap: 14px; align-items: center; }
.foot-legal a { color: var(--ink-55); transition: color 0.35s; }
.foot-legal a:hover { color: var(--gold-light); }
.to-top { color: var(--ink-70); border: 1px solid rgba(245,239,227,0.2); padding: 12px 18px; transition: all 0.35s; }
.to-top:hover { color: var(--gold-light); border-color: var(--gold); }

@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-cta { flex-direction: column; text-align: center; padding: 36px 24px; }
}
@media (max-width: 640px) {
  .kontakt { padding-top: 84px; }
  .foot-cta { padding: 30px 22px; }
  .foot-cta .btn-gold { width: 100%; justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-script { margin-top: 60px; }
  .foot-bottom { justify-content: center; text-align: center; }
}
/* (altes to-top entfernt — neue Variante oben im Footer-Block) */

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .site-header { padding: 18px 28px; }
  .site-header.scrolled { padding: 12px 28px; }
  .intro-grid, .chefs-grid, .res-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .party { grid-template-columns: 1fr; gap: 60px; }
  .party-media { max-width: 440px; }
  .intro-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .erwartet-grid { grid-template-columns: 1fr; }
  .erwartet-card { height: 64vh; min-height: 440px; }
  .momente-grid, .imp-grid { grid-template-columns: 1fr; gap: 44px; }
  .imp-card.riser { margin-top: 0; }
  .moment-card { width: 100%; aspect-ratio: 3/3.6; }
  .kontakt-cols { grid-template-columns: 1fr; gap: 56px; }
  .kontakt-col { border-right: none; padding: 0; }
  .res-media { height: 420px; }
  .section { scroll-margin-top: 64px; }
}

@media (max-width: 760px) {
  .momente-head .ghost { font-size: clamp(30px, 8.5vw, 44px); letter-spacing: 0.14em; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact { padding: 30px 26px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; text-align: center; gap: 0;
    background: rgba(16, 27, 46, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232,198,108,0.2); padding: 12px 0 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 24px; }
  .nav-links .nav-cta { margin: 12px 24px 0; }

  .site-header { padding: 16px 20px; }
  .site-header img { height: 56px; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.32em; }
  .hero-title { font-size: clamp(38px, 11.5vw, 56px); letter-spacing: 0.06em; }
  .hero-script { font-size: clamp(27px, 7.5vw, 40px); }
  .hero-actions { gap: 12px; margin-top: 32px; }
  .hero-actions .btn-gold, .hero-actions .btn-ghost { width: 100%; text-align: center; padding-left: 20px; padding-right: 20px; }
  .erwartet { padding-top: 90px; }
  .erwartet-head { padding: 0 20px 44px; }
  .erwartet-copy { left: 24px; right: 24px; bottom: 44px; }
  .erwartet-idx { top: 22px; left: 24px; }
  .intro, .chefs, .story, .momente, .reservieren { padding-top: 90px; padding-bottom: 70px; }
  .story-strip .big { font-size: clamp(40px, 11vw, 64px); }
  .moment-copy { left: 30px; right: 30px; bottom: 34px; }
  .moment-copy .t { font-size: clamp(26px, 7vw, 34px); }
  .moment-copy .d { font-size: 15px; }
  .res-form { grid-template-columns: 1fr; }
  .field.span2, .res-submit, .res-error { grid-column: span 1; }
  .res-media { height: 320px; }
  .res-media img { border-radius: 140px 140px 0 0; }
  .footer-meta { justify-content: center; text-align: center; }
  .footer-links { justify-items: center; }
  .imp-head h2, .momente-head h2 { font-size: clamp(28px, 7.5vw, 40px); }
}
