/* ============================================================
   BrutzelKisch – Stylesheet
   Grill- / Feuer-Look passend zum Flyer
   ============================================================ */

:root {
  --bg:        #15100d;
  --bg-2:      #1d1612;
  --bg-dark:   #100b09;
  --panel:     #f4e8d4;   /* cremefarbene Boxen wie auf dem Flyer */
  --panel-ink: #2a2018;

  --red:       #e11b22;
  --red-dark:  #b3151b;
  --orange:    #f4811f;
  --gold:      #e8b23a;

  --text:      #f5efe6;
  --muted:     #b6a692;
  --line:      rgba(244, 232, 212, .12);

  --shadow:    0 18px 40px rgba(0, 0, 0, .45);
  --radius:    16px;
  --maxw:      1180px;

  --font-display: 'Anton', 'Oswald', system-ui, sans-serif;
  --font-head:    'Oswald', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-hero:    'Barcelony', 'Kaushan Script', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ---------- Headings ---------- */
h1, h2, h3 { margin: 0; line-height: 1.05; }

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --b: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: .8em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(225, 27, 34, .35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(225, 27, 34, .5); }

.btn-ghost {
  background: transparent;
  border-color: rgba(245, 239, 230, .35);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-whatsapp { background: #25d366; color: #06351b; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, .45); }

.btn-phone {
  background: rgba(225, 27, 34, .12);
  border-color: rgba(225, 27, 34, .55);
  color: var(--text);
  font-size: .92rem;
  padding: .6em 1.1em;
}
.btn-phone:hover { background: var(--red); color: #fff; }

.btn-sm  { font-size: .9rem; padding: .65em 1.2em; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 16, 13, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 70px;
}

.brand { display: flex; align-items: center; gap: .5rem; font-family: var(--font-script); }
.brand-flame { font-size: 1.4rem; filter: drop-shadow(0 0 6px rgba(244, 129, 31, .6)); }
.brand-word {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--text);
  line-height: 1;
}
.brand-k { color: var(--red); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .92rem;
  color: var(--muted);
  padding: .3em 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--red); transition: width .25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px; background: var(--text); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.16); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 30%, rgba(225, 27, 34, .28), transparent 55%),
    linear-gradient(180deg, rgba(12, 8, 6, .55) 0%, rgba(12, 8, 6, .72) 55%, rgba(12, 8, 6, .94) 100%);
}
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 4rem 0;
}
.hero-text { flex: 1 1 auto; max-width: 660px; }

/* Flyer neben dem Hero-Text – Klick scrollt zum Flyer-Abschnitt */
.hero-flyer {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: clamp(200px, 24vw, 300px);
  padding: 9px;
  background: #fff;
  border-radius: 12px;
  transform: rotate(3deg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .55), 0 0 60px rgba(244, 129, 31, .35);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: heroFlyerFloat 5.5s ease-in-out infinite;
}
@keyframes heroFlyerFloat { 50% { transform: rotate(3deg) translateY(-10px); } }
.hero-flyer img { display: block; border-radius: 7px; }
.hero-flyer:hover {
  transform: rotate(0) scale(1.04);
  box-shadow: 0 30px 64px rgba(0, 0, 0, .65), 0 0 90px rgba(244, 129, 31, .6);
  animation-play-state: paused;
}
.hero-flyer-hint {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .8rem;
  padding: .5em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(225, 27, 34, .5);
}

.hero-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 1rem;
}
/* Hero-Überschrift im Flyer-Stil:
   Script-Zeilen (weiß) + dicke rote Pinsel-Großbuchstaben */
.hero-title { margin-bottom: .4rem; line-height: 1; }

.ht-script {
  display: block;
  font-family: var(--font-hero);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .6);
}
.ht-script-top {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  transform: rotate(-3deg);
  margin: 0 0 .1rem .35rem;
}
.ht-script-bot {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  transform: rotate(-2deg);
  margin: .25rem 0 0 .6rem;
}
.ht-fire {
  display: block;
  font-family: var(--font-hero);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: .82;
  letter-spacing: 0;
  /* schräg nach rechts oben ansteigend wie auf dem Flyer */
  transform: rotate(-5deg);
  transform-origin: left center;
  margin: 1.7rem 0 1.1rem .15rem;
}
.ht-feurig,
.ht-heisses { display: block; }
.ht-feurig {
  color: #e7261c;
  text-shadow:
    2px 2px 0 #7a0d08,
    4px 5px 0 rgba(0, 0, 0, .3),
    0 10px 26px rgba(0, 0, 0, .5);
}
.ht-heisses {
  color: #fff;
  margin-left: .55em;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, .55),
    4px 5px 0 rgba(0, 0, 0, .25),
    0 10px 26px rgba(0, 0, 0, .55);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ede3d4;
  margin: 1.4rem 0 2rem;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-tagline {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.7rem;
  margin: 2.2rem 0 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  overflow: hidden;
  white-space: nowrap;
  border-block: 2px solid rgba(0, 0, 0, .15);
}
.marquee-track {
  display: inline-flex;
  gap: 1.6rem;
  align-items: center;
  padding: .8rem 0;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-size: 1rem;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-dark { background: var(--bg-dark); }

.section-head { max-width: 680px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); text-align: center; }
.kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 .7rem;
}
.section-lead { color: var(--muted); margin: 1rem 0 0; font-size: 1.08rem; }

/* ---------- Angebot Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}
.card {
  background: linear-gradient(180deg, var(--bg-2), #160f0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 129, 31, .5);
  box-shadow: var(--shadow);
}
.card-emoji {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #2a160f;
  border: 2px solid rgba(244, 129, 31, .7);
  box-shadow:
    0 0 0 6px rgba(244, 129, 31, .08),
    0 16px 32px rgba(0, 0, 0, .38);
}
.card-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.02);
}
.card h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.card-more { border-color: rgba(225, 27, 34, .4); }
.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .5px;
}
.card-link:hover { color: var(--gold); }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}
.feature {
  text-align: center;
  padding: 1.5rem 1rem;
}
.feature-icon {
  width: 84px; height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--red-dark);
  border: 3px solid rgba(225, 27, 34, .95);
  box-shadow:
    0 0 0 6px rgba(225, 27, 34, .12),
    0 14px 30px rgba(225, 27, 34, .25);
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.feature h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .5rem;
}
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Split (Einsatz & Buchung) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.split-card {
  background: var(--panel);
  color: var(--panel-ink);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
  border: 2px dashed rgba(42, 32, 24, .25);
}
.split-card-accent { background: linear-gradient(160deg, #fbeede, #f1ddc0); }
.split-icon {
  font-size: 1.6rem;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  margin-bottom: 1.1rem;
}
.split-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: .5px;
  margin-bottom: .7rem;
}
.split-card p { margin: 0 0 1rem; font-size: 1.05rem; }
.split-card strong { color: var(--red-dark); }
.split-card-accent strong { color: var(--red-dark); }

/* ============================================================
   FLYER SHOWCASE
   ============================================================ */
.flyer-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(90% 80% at 78% 50%, rgba(244, 129, 31, .22), transparent 60%),
    radial-gradient(70% 70% at 20% 20%, rgba(225, 27, 34, .20), transparent 55%),
    linear-gradient(160deg, #241510 0%, #160d0a 60%, #100b09 100%);
  border-block: 1px solid var(--line);
}
.flyer-embers {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 15% 80%, rgba(244, 129, 31, .9), transparent),
    radial-gradient(2px 2px at 35% 30%, rgba(255, 180, 70, .8), transparent),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(244, 129, 31, .8), transparent),
    radial-gradient(2px 2px at 85% 40%, rgba(255, 160, 60, .8), transparent),
    radial-gradient(1.5px 1.5px at 50% 15%, rgba(255, 200, 90, .7), transparent);
  opacity: .55;
  animation: emberRise 6s ease-in-out infinite alternate;
}
@keyframes emberRise { from { transform: translateY(8px); opacity: .35; } to { transform: translateY(-8px); opacity: .65; } }

.flyer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.flyer-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1rem;
}
.flyer-accent { font-family: var(--font-script); text-transform: none; color: var(--gold); font-size: .85em; }
.flyer-lead { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.4rem; max-width: 520px; }
.flyer-points { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .6rem; }
.flyer-points li { font-size: 1.05rem; }
.flyer-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.flyer-stage {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.flyer-badge {
  position: absolute;
  top: -14px; right: 8%;
  z-index: 3;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  padding: .5em 1.1em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(225, 27, 34, .5);
  transform: rotate(6deg);
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse { 50% { transform: rotate(6deg) scale(1.07); } }

.flyer-frame {
  position: relative;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .15),
    0 30px 60px rgba(0, 0, 0, .6),
    0 0 60px rgba(244, 129, 31, .35);
  transform: rotate(-3deg);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: flyerFloat 5s ease-in-out infinite;
  max-width: 380px;
}
@keyframes flyerFloat { 50% { transform: rotate(-3deg) translateY(-12px); } }
.flyer-frame img { border-radius: 8px; display: block; }
.flyer-frame:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .2),
    0 36px 70px rgba(0, 0, 0, .7),
    0 0 90px rgba(244, 129, 31, .55);
  animation-play-state: paused;
}
.flyer-zoom {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  background: rgba(21, 16, 13, .9);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .82rem;
  padding: .5em 1em;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.flyer-frame:hover .flyer-zoom { opacity: 1; }

@media (max-width: 820px) {
  .flyer-inner { grid-template-columns: 1fr; text-align: center; }
  .flyer-lead { margin-inline: auto; }
  .flyer-points { justify-items: center; }
  .flyer-actions { justify-content: center; }
  .flyer-text h2 { margin-top: .5rem; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  padding: 0; border: 0; cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item::after {
  content: "🔍";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.4rem;
  background: rgba(225, 27, 34, .35);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-wide { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info { padding-top: .5rem; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-ic {
  font-size: 1.2rem;
  width: 50px; height: 50px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
}
.contact-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.contact-line strong, .contact-line a { font-size: 1.2rem; font-weight: 600; }
.contact-line a:hover { color: var(--orange); }

.contact-direct { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-intro { margin: 0 0 1.3rem; color: var(--muted); font-size: .95rem; }
.form-row { margin-bottom: 1.1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .4rem;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #120d0a;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 27, 34, .18);
}
.contact-form textarea { resize: vertical; }
.form-hint { margin: 1rem 0 0; font-size: .9rem; color: var(--muted); text-align: center; }
.form-hint a { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
.footer-brand .brand-word { font-size: 2rem; }
.footer-claim { font-family: var(--font-script); color: var(--gold); margin: .6rem 0 0; font-size: 1.15rem; }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: .6rem; color: var(--muted); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(8, 5, 4, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
  animation: lbpop .25s ease;
}
@keyframes lbpop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(225, 27, 34, .85);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s ease, transform .15s ease;
}
.lb-close { top: 22px; right: 26px; width: 48px; height: 48px; font-size: 1.8rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-close:hover, .lb-nav:hover { background: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    background: rgba(16, 11, 9, .98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .3s ease;
    margin: 0;
    padding: 1rem 0 1.4rem;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-top: 1px solid var(--line); }
  .main-nav a { display: block; padding: 1rem 24px; font-size: 1rem; }
  .main-nav a::after { display: none; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: flex; }

  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 2.6rem; padding: 3rem 0; }
  .hero-text { max-width: 100%; }
  .hero-flyer { align-self: center; width: min(240px, 62%); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-cta { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-wide { grid-column: span 2; grid-row: span 1; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .marquee-track { animation: none; }
  * { scroll-behavior: auto; }
}
