/* ============================================
   Wirtschaft zum Engel – Niederglatt SG
   Redesign-Studie von digital M. GmbH
   Konzept: "Warmes Licht im Garten"
   Palette: Burgunder, Creme, Nussholz, Antik-Gold
   ============================================ */

:root {
  /* Farbpalette – abgeleitet aus Original #8A3905 / #B94A48 */
  --burgundy: #6B1F2A;          /* Haupt-Burgunder, tief, warm */
  --burgundy-deep: #4A1119;     /* Footer, Header-Akzent */
  --burgundy-soft: #8F3540;     /* Hover, Akzentflächen */
  --walnut: #3A2518;            /* dunkles Nussholz für Text und Flächen */
  --walnut-soft: #5C3B28;
  --cream: #F5EFE4;             /* warmes Creme, Seitenhintergrund */
  --cream-deep: #EBE1CE;        /* Karten, leicht abgesetzte Flächen */
  --cream-light: #FBF8F1;       /* heller Akzent */
  --gold: #C9A14A;              /* Antik-Gold, Akzente, Lichter */
  --gold-soft: #E0C078;         /* Glow, Highlights */
  --gold-deep: #9A7A2E;         /* Hover-Gold */
  --ink: #231811;               /* Fliesstext sehr dunkel */
  --ink-soft: #5A4A3C;          /* Sekundärtext */
  --line: #D9CDB8;              /* Trennlinien auf Creme */
  --line-dark: rgba(245, 239, 228, 0.15); /* Linien auf Dunkel */
  --white: #ffffff;

  /* Typografie */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Radius – bewusst minimal, Landgasthof-Ästhetik */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(58, 37, 24, 0.08);
  --shadow-md: 0 12px 32px rgba(58, 37, 24, 0.12);
  --shadow-lg: 0 24px 64px rgba(58, 37, 24, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold-deep);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--walnut);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 500;
  font-style: italic;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 1rem;
}

::selection {
  background: var(--burgundy);
  color: var(--cream);
}

/* ============================================
   Utilities
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--burgundy);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section-dark {
  background: var(--walnut);
  color: var(--cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--cream);
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

.section-cream-deep {
  background: var(--cream-deep);
}

/* ============================================
   Demo Banner
   ============================================ */
.demo-banner {
  background: var(--walnut);
  color: var(--cream);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
}

.demo-banner a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.3rem;
}

.demo-banner a:hover {
  color: var(--cream);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 228, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--walnut);
}

.brand:hover {
  color: var(--burgundy);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  font-style: italic;
  color: var(--walnut);
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--walnut);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 1px solid var(--burgundy);
}

.nav-cta:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--walnut);
  transition: all 0.3s ease;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.2rem var(--gutter);
    gap: 0.3rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
  }
  .nav-cta {
    display: none;
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}

.btn-secondary:hover {
  background: var(--walnut);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--walnut);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--walnut);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--walnut);
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(35, 24, 17, 0.55) 0%, rgba(35, 24, 17, 0.35) 40%, rgba(35, 24, 17, 0.85) 100%),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-lights {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(224, 192, 120, 0.55) 0%, transparent 4%),
    radial-gradient(circle at 42% 14%, rgba(224, 192, 120, 0.4) 0%, transparent 3%),
    radial-gradient(circle at 68% 26%, rgba(224, 192, 120, 0.5) 0%, transparent 4%),
    radial-gradient(circle at 86% 18%, rgba(224, 192, 120, 0.42) 0%, transparent 3%);
  pointer-events: none;
  z-index: 1;
  animation: flicker 8s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 14vw, 11rem) 0 clamp(5rem, 10vw, 8rem);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--cream);
  margin: 1.4rem 0 1.6rem;
  font-size: clamp(2.8rem, 7.2vw, 6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-soft);
  font-family: var(--font-display);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.88);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
  padding: 1.8rem 0 2.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  color: rgba(245, 239, 228, 0.75);
  letter-spacing: 0.05em;
}

.hero-meta span strong {
  color: var(--gold-soft);
  font-weight: 600;
  margin-right: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* ============================================
   Intro – Willkommen
   ============================================ */
.intro {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  text-align: left;
}

.intro-text h2 {
  margin: 1rem 0 1.5rem;
}

.intro-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-signature {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--burgundy);
}

.intro-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 239, 228, 0.3);
  pointer-events: none;
  margin: 14px;
}

@media (max-width: 800px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-image {
    aspect-ratio: 4 / 3;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   Features Grid (Home)
   ============================================ */
.features {
  background: var(--cream-deep);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  margin: 1rem 0 0.8rem;
}

.features-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.feature {
  background: var(--cream-light);
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--burgundy);
  margin-bottom: 1.2rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
  fill: none;
  stroke: currentColor;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.feature p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.feature-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   Garten-Strip (Home)
   ============================================ */
.garten-strip {
  background: var(--walnut);
  color: var(--cream);
  overflow: hidden;
}

.garten-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}

.garten-strip-image {
  background-image:
    linear-gradient(135deg, rgba(35, 24, 17, 0.15) 0%, transparent 60%),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.garten-strip-text {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.garten-strip-text h2 {
  color: var(--cream);
  margin: 1.2rem 0 1.4rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.garten-strip-text p {
  color: rgba(245, 239, 228, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.garten-strip-text .btn-gold {
  align-self: flex-start;
}

@media (max-width: 860px) {
  .garten-strip-grid {
    grid-template-columns: 1fr;
  }
  .garten-strip-image {
    min-height: 320px;
  }
}

/* ============================================
   Speisekarte / Menu
   ============================================ */
.menu-page-header {
  padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  background: var(--cream);
  text-align: center;
}

.menu-page-header h1 {
  margin: 1rem 0 1rem;
  color: var(--walnut);
}

.menu-page-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.4rem 0 0;
  padding: 0 var(--gutter);
}

.menu-tab {
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--line);
  background: var(--cream-light);
  color: var(--walnut);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all 0.25s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

.menu-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.menu-category {
  margin-bottom: 3.5rem;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-category-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.menu-category-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 0.4rem 3rem;
  list-style: none;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}

.menu-item-name {
  font-weight: 600;
  color: var(--walnut);
  font-size: 1rem;
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
  margin-top: 0.2rem;
  display: block;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin-bottom: 0.3rem;
  min-width: 1.5rem;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
}

.menu-note {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============================================
   Wochenmenü
   ============================================ */
.week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.week-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.8rem;
  transition: all 0.3s ease;
  position: relative;
}

.week-card.today {
  background: var(--walnut);
  color: var(--cream);
  border-color: var(--walnut);
}

.week-card.today h3,
.week-card.today .week-day {
  color: var(--gold-soft);
}

.week-card.today .week-price {
  color: var(--gold-soft);
}

.week-day {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.week-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.week-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.week-card.today .week-desc {
  color: rgba(245, 239, 228, 0.78);
}

.week-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
}

/* ============================================
   Gartenwirtschaft / Bankette / About Pages
   ============================================ */
.page-header {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--cream);
  text-align: center;
}

.page-header h1 {
  margin: 1rem 0;
  color: var(--walnut);
}

.page-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.split.reverse .split-text {
  order: 2;
}

.split-text h2 {
  margin: 1rem 0 1.4rem;
}

.split-text p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

.split-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-text {
    order: 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

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

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

/* ============================================
   Fact Bar
   ============================================ */
.fact-bar {
  background: var(--burgundy);
  color: var(--cream);
  padding: 3rem 0;
}

.fact-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.fact span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
}

/* ============================================
   Events / Stubete
   ============================================ */
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.event-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
  padding: 2rem;
  border-radius: var(--r-sm);
  transition: all 0.3s ease;
}

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

.event-date {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}

.event-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.event-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================
   Kontakt / Reservation
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info {
  background: var(--walnut);
  color: var(--cream);
  padding: clamp(2.4rem, 4vw, 3.2rem);
  border-radius: var(--r-md);
}

.contact-info h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.92rem;
}

.contact-info-row:last-child {
  border-bottom: none;
}

.contact-info-row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-soft);
  stroke-width: 1.6;
  fill: none;
  stroke: currentColor;
}

.contact-info-row strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.contact-info-row a {
  color: var(--cream);
  border-bottom: 1px solid transparent;
}

.contact-info-row a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

.form {
  background: var(--cream-light);
  padding: clamp(2.4rem, 4vw, 3.2rem);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.form h3 {
  margin-bottom: 1.8rem;
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--walnut);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: var(--white);
}

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

.form button[type="submit"] {
  margin-top: 0.8rem;
  width: 100%;
  justify-content: center;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-band {
  background: var(--burgundy);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(224, 192, 120, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(224, 192, 120, 0.15) 0%, transparent 30%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(245, 239, 228, 0.85);
  font-size: 1.05rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--walnut);
  color: rgba(245, 239, 228, 0.78);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 1.2rem;
}

.footer-col h4 {
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(245, 239, 228, 0.78);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 239, 228, 0.55);
}

.footer-bottom a {
  color: rgba(245, 239, 228, 0.65);
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

.site-footer .brand-name,
.site-footer .brand {
  color: var(--cream);
}

.site-footer .brand-mark {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.site-footer .brand-tag {
  color: rgba(245, 239, 228, 0.55);
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Responsive Hero tweaks
   ============================================ */
@media (max-width: 680px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-meta {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}
