/* ========================================================
   style.css – Görlitzer Kartoffelhaus
   Rustikale Eleganz · Moderne Tradition · 2025
   ======================================================== */

/* ── Custom Properties ───────────────────────────────── */
:root {
  /* Farben */
  --gold:         #C4922A;
  --gold-light:   #E8B84B;
  --gold-pale:    #F5E6C8;
  --dark:         #1A1209;
  --dark-brown:   #2D1A07;
  --mid-brown:    #5C3D11;
  --light:        #F8F2E8;
  --light-2:      #EDE0CC;
  --white:        #FFFFFF;
  --text:         #2D1A07;
  --text-muted:   #7A6248;
  --border:       rgba(196,146,42,0.25);
  --green:        #2D7A4F;
  --red:          #C0392B;

  /* Typografie */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  /* Radien & Schatten */
  --radius:      4px;
  --radius-lg:   12px;
  --shadow:      0 4px 20px rgba(26,18,9,0.12);
  --shadow-lg:   0 12px 40px rgba(26,18,9,0.2);
  --shadow-gold: 0 4px 20px rgba(196,146,42,0.3);

  /* Übergänge */
  --ease:        cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition:  all 0.35s var(--ease);
}

/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; font-family: inherit; border: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section { padding: clamp(60px, 10vw, 120px) 0; }
.section-sm { padding: clamp(40px, 6vw, 80px) 0; }

.bg-light    { background: var(--light); }
.bg-light-2  { background: var(--light-2); }
.bg-dark     { background: var(--dark); }
.bg-dark-brown { background: var(--dark-brown); }
.bg-dark p   { color: rgba(255,255,255,0.75); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

/* Grid-2 image+text variant (jobs page) */
.grid-img-right { align-items: stretch; }
.grid-text { display: flex; flex-direction: column; gap: 20px; }
.grid-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}
.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 2×2 feature cards when nested inside a half-width column */
.grid-text .feature-cards-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.grid-text .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}
.grid-text .feature-card .feature-card-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* ── Section Header ─────────────────────────────────── */
.section-header {
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-header.center { text-align: center; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 640px;
}
.section-header.center p { margin: 0 auto; }

.divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 0;
  border-radius: 2px;
}
.section-header.center .divider { margin: 16px auto 0; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.btn-lg svg { width: 19px; height: 19px; }
.btn-sm svg { width: 14px; height: 14px; }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
}

.btn-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.9rem;
}

/* ── Navigation ─────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(26, 18, 9, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#navbar.nav-scrolled {
  background: rgba(26, 18, 9, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  height: 70px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

/* Fallback-Stile falls Logo nicht lädt */
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
  background: rgba(196,146,42,0.1);
}

.nav-links > li > a .nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.nav-links > li.has-dropdown:hover > a .nav-chevron {
  transform: rotate(180deg);
}

/* Nav CTA */
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 10px 20px;
  margin-left: 8px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--dark) !important;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-brown);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 200px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  pointer-events: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(196,146,42,0.15);
  color: var(--gold);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  border-radius: var(--radius);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,18,9,0.55) 0%,
    rgba(26,18,9,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 20px;
}

.hero-content .label { color: var(--gold-light); margin-bottom: 16px; }

.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.hero-content h1 em { color: var(--gold-light); font-style: italic; }

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (für Unterseiten) */
.page-hero {
  padding: calc(80px + clamp(60px, 10vw, 120px)) 0 clamp(60px, 8vw, 100px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,146,42,0.08) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .label { color: var(--gold-light); margin-bottom: 12px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 10px; font-size: 1.2rem; }

/* Card dark variant */
.card-dark {
  background: var(--dark-brown);
  border-color: var(--border);
  color: var(--white);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: rgba(255,255,255,0.7); }

/* Feature Cards */
.feature-card {
  padding: clamp(16px, 2.5vw, 28px);
  border-radius: var(--radius-lg);
  background: var(--light);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.feature-card:hover { transform: translateX(4px); }
.feature-card h3,
.feature-card h4 { margin-bottom: 6px; color: var(--dark-brown); }
.feature-card p   { color: var(--text); font-size: 0.875rem; }

/* ── Info Boxes (Öffnungszeiten, Kontakt etc.) ─────── */
.info-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-box-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.info-box-icon svg { width: 20px; height: 20px; }
.info-box-body strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.info-box-body p { color: var(--text); font-weight: 600; margin: 0; font-size: 1.05rem; }

/* ── Hours Table ─────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 14px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 50%;
}

.hours-table td:last-child {
  color: var(--text-muted);
  text-align: right;
}

.hours-table tr.highlight td {
  color: var(--gold);
  font-weight: 700;
}

/* ── Status Badge ───────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-badge.open   { background: rgba(45,122,79,0.15); color: var(--green); }
.status-badge.closed { background: rgba(192,57,43,0.15); color: var(--red); }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status-badge.open .status-dot { animation: pulse-green 2s ease infinite; }

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ── About Section ───────────────────────────────────── */
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

/* ── Parallax Section ───────────────────────────────── */
.parallax-section {
  background-image: url('../img/Kartoffelhaus4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  color: var(--white);
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0.72);
}

.parallax-section .container { position: relative; z-index: 1; }
.parallax-section h2 { color: var(--white); margin-bottom: 16px; }
.parallax-section p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }

/* ── Testimonials ───────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Gallery ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  cursor: pointer;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall  { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
  width: 40px;
  height: 40px;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26,18,9,0.45);
}
.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  background: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-sans);
}

.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-icon svg { width: 14px; height: 14px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ── Booking Form ────────────────────────────────────── */
.booking-container {
  background: var(--dark-brown);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 60px);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.booking-steps-nav {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.step-nav {
  flex: 1;
  text-align: center;
  padding: 0 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
  position: relative;
}

.step-nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.step-nav.active {
  color: var(--gold);
}

.step-nav.active::after { transform: scaleX(1); }
.step-nav.done { color: rgba(255,255,255,0.6); }

.booking-step { display: none; }
.booking-step.active {
  display: block;
  animation: stepIn 0.35s var(--ease) both;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
}
.form-group label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(196,146,42,0.06);
  box-shadow: 0 0 0 3px rgba(196,146,42,0.12);
}

.form-input.error,
.form-select.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C4922A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option { background: var(--dark-brown); color: var(--white); }

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-back {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-back:hover { background: rgba(255,255,255,0.14); }

/* Form label */
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-brown);
  margin-bottom: 7px;
}

/* Form light variant (for light pages) */
.form-light .form-input,
.form-light .form-select,
.form-light .form-textarea {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}

.form-light .form-input::placeholder,
.form-light .form-textarea::placeholder { color: var(--text-muted); }

.form-light .form-select option { background: var(--white); color: var(--text); }

.form-light label { color: var(--mid-brown); }

/* Booking Feedback */
.booking-feedback {
  display: none;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.booking-feedback.success {
  display: block;
  background: rgba(45,122,79,0.15);
  border: 1px solid rgba(45,122,79,0.4);
}

.booking-feedback.error {
  display: block;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
}

.booking-feedback h3 { color: var(--white); margin-bottom: 12px; }
.booking-feedback p  { color: rgba(255,255,255,0.7); }

/* ── Spinner ─────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(196,146,42,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Biergarten Page ─────────────────────────────────── */
.season-banner {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.season-banner svg { color: var(--gold); flex-shrink: 0; width: 28px; height: 28px; }
.season-banner strong { font-weight: 700; color: var(--mid-brown); }
.season-banner p { margin: 0; color: var(--text-muted); }

/* ── Job Cards ───────────────────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.job-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.job-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.job-icon svg { width: 24px; height: 24px; }
.job-body { flex: 1; }
.job-body h3 { margin-bottom: 6px; font-size: 1.1rem; }
.job-body p  { margin-bottom: 14px; font-size: 0.9rem; }
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.job-tag {
  display: inline-block;
  background: var(--light-2);
  color: var(--mid-brown);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Events / Aktionen ───────────────────────────────── */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
}

.event-card-img svg { width: 60px; height: 60px; opacity: 0.4; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }

.event-card-body { padding: 24px; }
.event-card-body .label { margin-bottom: 8px; }
.event-card-body h3 { margin-bottom: 10px; }
.event-card-body p  { font-size: 0.9rem; margin-bottom: 16px; }

/* ── Highlight Strip ─────────────────────────────────── */
.highlight-strip {
  background: var(--gold);
  color: var(--dark);
  padding: 24px 0;
}

.highlight-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.strip-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Map Section ─────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(60px, 8vw, 100px) 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(40px, 6vw, 70px);
}

.footer-brand .logo-main { color: var(--white); font-size: 1.5rem; display: block; margin-bottom: 4px; font-family: var(--font-serif); font-weight: 700; }
.footer-brand .logo-sub  { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 20px; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-contact-item svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,146,42,0.15);
  border: 1px solid rgba(196,146,42,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Reveal Animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease) 0.15s, transform 0.7s var(--ease) 0.15s;
}

.reveal-delay.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.active > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-children.active > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger-children.active > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger-children.active > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger-children.active > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Misc / Utility ──────────────────────────────────── */
.separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: clamp(30px, 4vw, 60px) 0;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tag-gold { background: var(--gold-pale); color: var(--mid-brown); }
.tag-dark { background: rgba(26,18,9,0.08); color: var(--text-muted); }

.number-large {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.back-link:hover { color: var(--gold-light); }
.back-link svg { width: 16px; height: 16px; }

/* Legal pages */
.legal-content h2 { margin: 40px 0 12px; font-size: 1.3rem; color: var(--dark); }
.legal-content h3 { margin: 24px 0 8px; font-size: 1.05rem; }
.legal-content p  { color: var(--text-muted); margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 20px; color: var(--text-muted); }
.legal-content ul li { margin-bottom: 8px; }

/* ── Shake Animation (Form Error) ───────────────────── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

.shake { animation: shake 0.4s ease both; }
.booking-step.shake { animation: shake 0.4s ease both; }

/* ══════════════════════════════════════════════════════
   RESERVIERUNG PAGE
   ══════════════════════════════════════════════════════ */

/* Hero */
.page-hero-reservierung {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 100%);
}

.page-hero-content { max-width: 720px; margin: 0 auto; }

.page-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* Section header helpers */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.65;
}

/* Booking layout */
.grid-booking {
  grid-template-columns: 3fr 2fr;
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.booking-header {
  margin-bottom: 32px;
}
.booking-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 8px;
  color: var(--white);
}
.booking-header p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

/* Step nav: number + label */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 auto 6px;
  transition: var(--transition);
}
.step-nav.active .step-num {
  border-color: var(--gold);
  background: rgba(196,146,42,0.15);
  color: var(--gold);
}
.step-nav.done .step-num {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.step-nav-divider {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
  align-self: center;
  margin-bottom: 28px;
  margin-left: 4px;
  margin-right: 4px;
}

/* Step intro */
.step-intro { margin-bottom: 28px; }
.step-intro h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.step-intro p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* Step actions */
.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Native form inputs styled for dark booking form */
.booking-step input[type="text"],
.booking-step input[type="email"],
.booking-step input[type="tel"],
.booking-step input[type="date"],
.booking-step select,
.booking-step textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.booking-step input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}
.booking-step input::placeholder,
.booking-step textarea::placeholder { color: rgba(255,255,255,0.3); }

.booking-step input:focus,
.booking-step select:focus,
.booking-step textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(196,146,42,0.06);
  box-shadow: 0 0 0 3px rgba(196,146,42,0.12);
}
.booking-step input.error,
.booking-step select.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
.booking-step select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C4922A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.booking-step select option { background: var(--dark-brown); color: var(--white); }
.booking-step textarea { resize: vertical; min-height: 100px; }

/* Form helpers */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
}
.form-hint a { color: var(--gold); }

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-privacy label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.5;
}
.form-privacy label a { color: var(--gold); }
.form-privacy input.error { outline: 2px solid var(--red); border-radius: 3px; }

.required { color: var(--gold); }

.form-wrapper { max-width: 680px; margin: 0 auto; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.5;
}
.form-note a { color: var(--gold); }

/* Capacity info grid */
.booking-capacity-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
}
.capacity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.capacity-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Booking info column (right side) */
.booking-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-info-box {
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s;
}
.booking-info-box:hover { border-color: rgba(196,146,42,0.3); }

.booking-info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(196,146,42,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.booking-info-icon svg { width: 17px; height: 17px; }

.booking-info-content h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 5px;
}
.booking-info-content p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.booking-info-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}
.booking-info-link:hover { color: var(--gold-light); }

.booking-info-list {
  list-style: none;
  margin: 5px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-info-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  padding-left: 12px;
  position: relative;
}
.booking-info-list li::before { content: '·'; position: absolute; left: 0; color: var(--gold); }

/* btn-outline (for dark backgrounds) */
.btn-outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  background: transparent;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Info cards (light section at bottom) */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,146,42,0.3);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}
.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-list {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   AKTIONEN PAGE
   ══════════════════════════════════════════════════════ */

/* Event Cards Grid */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

/* Event Badges */
.event-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.event-badge-dark  { background: var(--dark-brown); color: var(--gold); }
.event-badge-light { background: rgba(255,255,255,0.18); color: var(--white); }

/* Event Meta & Tags */
.event-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.event-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--gold);
}

/* Event Price */
.event-price {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Event Details List */
.event-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-details-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.event-details-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

/* Grid-2 with image (text left, image right) */
.grid-2-text  { /* inherits grid column, no extra styles needed */ }
.grid-2-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: stretch;
}
.grid-2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 500px;
  border-radius: var(--radius-lg);
}

/* Check List (for dark section backgrounds) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.check-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* Section label on dark backgrounds */
.section-label-light { color: var(--gold); }

/* Feature Cards Grid (4 columns) */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}
.feature-card-icon svg { width: 100%; height: 100%; }

.feature-card-detail {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Info Box Centered */
.info-box-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.info-box-centered .info-box-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.info-box-centered h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--dark);
}
.info-box-centered > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
