/* =========================
   RUNDELL HOPFGARTEN
   Design tokens
   ========================= */
:root {
  /* Core palette — drawn from logo */
  --gold:        #c9a227;
  --gold-soft:   #d8b34a;
  --gold-dim:    #8a6e1a;
  --brown-900:   #1c120a;
  --brown-800:   #2a1a0f;
  --brown-700:   #3d2817;
  --brown-600:   #5a3a21;
  --brown-500:   #7a5233;
  --cream:       #f5eddc;
  --cream-dim:   #e8dcc0;
  --ink:         #1c120a;
  --paper:       #faf4e6;
  --paper-warm:  #f0e4ca;

  /* Summer palette */
  --summer-bg:   #f5eddc;
  --summer-bg-2: #eaddbd;
  --summer-fg:   #2a1a0f;
  --summer-acc:  #c9a227;

  /* Winter palette */
  --winter-bg:   #1c120a;
  --winter-bg-2: #2a1a0f;
  --winter-fg:   #f5eddc;
  --winter-acc:  #d8b34a;

  /* Type */
  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-script:  "Pinyon Script", "Allura", cursive;
  --ff-body:    "Figtree", "Inter", system-ui, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  --radius: 2px;
  --radius-lg: 4px;
  --shadow-1: 0 2px 20px rgba(28, 18, 10, 0.08);
  --shadow-2: 0 20px 60px rgba(28, 18, 10, 0.18);
}

/* =========================
   Reset & base
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* =========================
   Placeholders (for user's photos)
   ========================= */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(122, 82, 51, 0.08) 0 12px,
      rgba(122, 82, 51, 0.14) 12px 24px
    ),
    var(--paper-warm);
  border: 1px solid rgba(122, 82, 51, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--brown-700);
}
.ph--dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(201, 162, 39, 0.08) 0 12px,
      rgba(201, 162, 39, 0.14) 12px 24px
    ),
    var(--brown-800);
  border-color: rgba(216, 179, 74, 0.3);
  color: var(--cream);
}
.ph--tall { aspect-ratio: 3 / 4; }
.ph--sq { aspect-ratio: 1 / 1; }
.ph--hero { aspect-ratio: auto; width: 100%; height: 100%; border-radius: 0; border: none; }
.ph--winter { aspect-ratio: 7 / 5; }
.ph--map { aspect-ratio: 16 / 9; background-color: #d9cfb4; }
.ph-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  background: rgba(255,255,255,0.65);
  border-top-right-radius: 2px;
  max-width: 92%;
}
.ph--dark .ph-label { background: rgba(0,0,0,0.5); color: var(--cream); }

/* =========================
   Typography
   ========================= */
.kicker {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-500);
  margin-bottom: 24px;
}
.kicker--light { color: var(--gold-soft); }

.display {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--brown-700);
  font-size: clamp(48px, 7vw, 108px);
}
.display em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 400;
}
.display--md { font-size: clamp(40px, 5.2vw, 84px); }
.display--light { color: var(--cream); }
.display--light em { color: var(--gold-soft); }
.display-script {
  display: block;
  font-family: var(--ff-script);
  font-weight: 400;
  color: var(--gold);
  font-size: 0.9em;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: -0.15em;
  padding-left: 0.1em;
}
.display--light .display-script { color: var(--gold-soft); }
.display-line em { font-style: italic; }

/* =========================
   NAV
   ========================= */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.site-nav.is-scrolled {
  background: rgba(250, 244, 230, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
}
[data-season="winter"] .site-nav.is-scrolled {
  background: rgba(28, 18, 10, 0.9);
  color: var(--cream);
}
.site-nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.site-nav__brand { display: flex; align-items: center; gap: 12px; }
.site-nav__brand img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  color: var(--brown-700);
  letter-spacing: 0.01em;
}
[data-season="winter"] .is-scrolled .brand-name { color: var(--cream); }
.brand-place {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-500);
  margin-top: 4px;
}
.site-nav__links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.site-nav:not(.is-scrolled) .site-nav__links a { color: var(--cream); }
.site-nav__links a {
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  color: var(--brown-700);
}
.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.site-nav__links a:hover::after { transform: scaleX(1); }

.site-nav__right { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.site-nav__call {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--brown-700);
  border-radius: 40px;
  background: var(--brown-700);
  color: var(--cream);
  transition: background 0.2s;
}
.site-nav:not(.is-scrolled) .site-nav__call {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.site-nav__call:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-900); }
.call-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(216, 179, 74, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(216, 179, 74, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(216, 179, 74, 0.05); }
}

/* Season toggle */
.season-toggle {
  position: relative;
  display: inline-flex;
  padding: 3px;
  border-radius: 40px;
  border: 1px solid rgba(28, 18, 10, 0.25);
  background: rgba(250, 244, 230, 0.6);
  backdrop-filter: blur(8px);
  gap: 0;
}
.site-nav:not(.is-scrolled) .season-toggle {
  background: rgba(28, 18, 10, 0.3);
  border-color: rgba(245, 237, 220, 0.3);
}
.season-toggle__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown-500);
  transition: color 0.25s;
  border-radius: 40px;
}
.site-nav:not(.is-scrolled) .season-toggle__btn { color: rgba(245, 237, 220, 0.7); }
.season-toggle__btn.is-active { color: var(--brown-900); }
.site-nav:not(.is-scrolled) .season-toggle__btn.is-active { color: var(--brown-900); }
.season-toggle__btn svg { opacity: 0.85; }
.season-toggle__indicator {
  position: absolute;
  z-index: 1;
  top: 3px; bottom: 3px;
  width: calc(50% - 3px);
  border-radius: 40px;
  background: var(--gold);
  transition: left 0.3s cubic-bezier(.4,.0,.2,1);
}
.season-toggle__indicator--summer { left: 3px; }
.season-toggle__indicator--winter { left: calc(50%); }

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--cream);
  overflow: hidden;
  padding: 120px 40px 60px;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-image.is-active { opacity: 1; }
.hero-image--summer .ph {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 220, 140, 0.35), transparent 60%),
    repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 12px, rgba(0,0,0,0.1) 12px 24px),
    linear-gradient(180deg, #7a5233 0%, #3d2817 100%);
}
.hero-image--winter .ph {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(216, 179, 74, 0.25), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.08) 12px 24px),
    linear-gradient(180deg, #1c120a 0%, #0f0806 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 10, 0.55) 0%, transparent 30%, transparent 60%, rgba(28, 18, 10, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(28,18,10,0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 40px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}
.hero-logo-wrap { width: 130px; height: 130px; }
.hero-logo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(216,179,74,0.4);
}
.hero-established {
  display: flex;
  align-items: center;
  gap: 12px;
}
.est-line {
  width: 40px; height: 1px;
  background: var(--gold-soft);
  opacity: 0.6;
}
.est-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-headline {
  align-self: center;
  justify-self: center;
  text-align: center;
  max-width: 900px;
}
.hero-headline .display {
  color: var(--cream);
  font-size: clamp(56px, 9vw, 140px);
  text-wrap: balance;
}
.hero-headline .display em { color: var(--gold-soft); font-weight: 400; }
.hero-headline .display-script {
  color: var(--gold);
  font-size: 0.5em;
  margin-bottom: 0;
}
.hero-lead {
  margin-top: 28px;
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream-dim);
  text-wrap: pretty;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(245, 237, 220, 0.08);
  border: 1px solid rgba(216, 179, 74, 0.35);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.meta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--brown-900);
  border-radius: 40px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }
.hero-cta-arrow { transition: transform 0.2s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 20px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold-soft));
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%      { transform: scaleY(1.2); opacity: 1; }
}
.scroll-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* =========================
   SECTIONS (shared)
   ========================= */
.section {
  padding: 120px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-head {
  max-width: 760px;
  margin-bottom: 80px;
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-head--light { color: var(--cream); }
.section-lead {
  margin-top: 32px;
  font-size: 18px;
  color: var(--brown-600);
  max-width: 60ch;
  text-wrap: pretty;
  line-height: 1.6;
}
.section-lead--light { color: var(--cream-dim); }

/* =========================
   SUMMER
   ========================= */
.section--summer { background: var(--paper); }
.summer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
.summer-hero { position: relative; }
.summer-hero--wide { max-width: 1200px; margin: 0 auto; width: 100%; }
.summer-hero .ph { aspect-ratio: 3/4; }
.summer-hero-caption {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--brown-500);
}
.caption-num {
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
}

.summer-moments {
  border-top: 1px solid rgba(122,82,51,0.2);
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.moments-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-500);
}
.moments-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.moment {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(122,82,51,0.14);
  align-items: baseline;
}
.moment:last-child { border-bottom: none; }
.moment-time {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-dim);
  font-weight: 500;
}
.moment-label {
  display: block;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--brown-700);
  margin-bottom: 4px;
}
.moment-body p {
  margin: 0;
  color: var(--brown-500);
  font-size: 15px;
}

.summer-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.moments-motto {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 82, 51, 0.2);
  text-align: center;
}
.moments-motto-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.moments-motto-text {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
  color: var(--brown-700);
  text-wrap: balance;
}

/* =========================
   WINTER
   ========================= */
.section--winter {
  background: var(--brown-900);
  max-width: none;
  padding: 0;
  position: relative;
  color: var(--cream);
}
.section--winter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(216, 179, 74, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(216, 179, 74, 0.06), transparent 60%);
  pointer-events: none;
}
.winter-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 40px;
}
.winter-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  grid-template-rows: auto auto;
  gap: 40px 60px;
  margin-top: 40px;
}
.winter-card {
  padding: 40px;
  background: rgba(216, 179, 74, 0.05);
  border: 1px solid rgba(216, 179, 74, 0.18);
  border-radius: var(--radius-lg);
  align-self: start;
}
.winter-card-num {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 20px;
}
.winter-card h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--cream);
}
.winter-card p { margin: 0; color: var(--cream-dim); font-size: 15px; line-height: 1.6; }

.winter-feature { grid-row: 1 / span 2; grid-column: 2; align-self: stretch; }
.winter-feature .ph { aspect-ratio: auto; height: 100%; min-height: 500px; }

.winter-drinks {
  padding: 40px 0;
  border-top: 1px solid rgba(216, 179, 74, 0.18);
}
.winter-drinks h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-soft);
  margin: 0 0 20px;
}
.drinks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drinks-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 16px;
}
.drinks-list li > span:first-child { color: var(--cream); font-family: var(--ff-display); font-size: 19px; }
.drinks-list li > span:last-child { font-family: var(--ff-mono); font-size: 14px; color: var(--gold-soft); }
.drinks-list .leader {
  border-bottom: 1px dotted rgba(216, 179, 74, 0.4);
  align-self: center;
  transform: translateY(-2px);
}
.drinks-list--no-price li {
  grid-template-columns: 1fr;
}
.drinks-list--no-price li > span:first-child {
  color: var(--cream);
}

.winter-hours {
  grid-column: 1 / -1;
  padding-top: 40px;
  border-top: 1px solid rgba(216, 179, 74, 0.18);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 40px;
}
.winter-hours .kicker { margin-bottom: 0; }
.winter-hours-big {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  color: var(--gold-soft);
  line-height: 0.9;
  margin: 0;
  letter-spacing: -0.01em;
}
.winter-hours-note {
  margin: 0;
  color: var(--cream-dim);
  font-size: 14px;
  text-align: right;
  line-height: 1.5;
  max-width: 240px;
}

/* =========================
   MENU
   ========================= */
.section--menu {
  background: var(--paper-warm);
  max-width: none;
  padding: 120px 40px;
}
.section--menu .section-head,
.menu-card {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.menu-card {
  background: var(--paper);
  border: 1px solid rgba(122, 82, 51, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  background: var(--brown-800);
  padding: 0;
}
.menu-tab {
  flex: 1 1 auto;
  padding: 18px 20px;
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: var(--cream-dim);
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid rgba(216, 179, 74, 0.12);
  white-space: nowrap;
  min-width: max-content;
}
.menu-tab:last-child { border-right: none; }
.menu-tab:hover { background: var(--brown-700); color: var(--cream); }
.menu-tab.is-active {
  background: var(--gold);
  color: var(--brown-900);
}

.menu-panel {
  padding: 60px 60px 40px;
}
.menu-panel-head {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(122, 82, 51, 0.15);
}
.menu-panel-head h3 {
  font-family: var(--ff-display);
  font-size: 42px;
  font-style: italic;
  font-weight: 500;
  color: var(--brown-700);
  margin: 0;
}
.menu-note {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--brown-500);
  margin: 12px 0 0;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 60px;
}
.menu-list--no-price .menu-row {
  grid-template-columns: 1fr;
  padding: 10px 0;
}
.menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  break-inside: avoid;
}
.menu-row-name {
  font-family: var(--ff-display);
  font-size: 19px;
  color: var(--brown-700);
}
.menu-row-leader {
  border-bottom: 1px dotted rgba(122, 82, 51, 0.35);
  align-self: center;
  transform: translateY(-3px);
}
.menu-row-price {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--gold-dim);
  font-weight: 500;
}
.menu-foot {
  padding: 20px 60px;
  background: var(--paper-warm);
  border-top: 1px solid rgba(122, 82, 51, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-500);
}
.menu-download { color: var(--gold-dim); }
.menu-download:hover { color: var(--brown-700); }

/* =========================
   HOURS / CONTACT
   ========================= */
.section--contact {
  background: var(--paper);
  padding: 120px 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.hours-seasons {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
.hours-season-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.hours-badge {
  padding: 6px 12px;
  border-radius: 40px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hours-badge--summer { background: var(--gold); color: var(--brown-900); }
.hours-badge--winter { background: var(--brown-800); color: var(--gold-soft); }
.hours-period {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  color: var(--brown-500);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px dotted rgba(122, 82, 51, 0.2); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 10px 0;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--brown-700);
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--brown-500);
}
.hours-closed td { color: var(--gold-dim); font-style: italic; }
.hours-note {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--brown-500);
  margin: 12px 0 0;
}

.contact-list {
  margin-top: 40px;
  border-top: 1px solid rgba(122, 82, 51, 0.18);
}
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(122, 82, 51, 0.12);
  transition: background 0.2s;
  align-items: start;
}
a.contact-row:hover { background: rgba(201, 162, 39, 0.05); }
.contact-row-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-500);
  padding-top: 4px;
}
.contact-row-val {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--brown-700);
  line-height: 1.4;
}
a.contact-row .contact-row-val { color: var(--gold-dim); }

.map {
  margin-top: 40px;
}
.map-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(122, 82, 51, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  display: block;
  background: #e8dcc0;
  /* Kartenbild dezent in die warme Farbwelt integrieren */
  filter: saturate(0.92) contrast(0.98);
}
.map-cta {
  display: inline-flex;
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.map-cta:hover { color: var(--brown-700); }

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: var(--brown-900);
  color: var(--cream-dim);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--cream);
}
.footer-logo {
  width: 42px; height: 42px; border-radius: 50%;
}
.footer-nav { display: flex; gap: 24px; justify-content: center; font-size: 14px; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-meta {
  display: flex; gap: 12px; justify-content: flex-end;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-500);
}
.footer-meta a:hover { color: var(--gold-soft); }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 960px) {
  .site-nav__inner { grid-template-columns: auto 1fr; }
  .site-nav__links { display: none; }
  .section { padding: 80px 24px; }
  .hero { padding: 100px 24px 40px; }
  .winter-inner { padding: 80px 24px; }
  .section--contact, .section--menu { padding: 80px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .summer-grid { grid-template-columns: 1fr; gap: 40px; }
  .winter-grid { grid-template-columns: 1fr; }
  .winter-feature { grid-column: auto; grid-row: auto; }
  .winter-feature .ph { min-height: 300px; }
  .winter-hours { grid-template-columns: 1fr; gap: 20px; }
  .winter-hours-note { text-align: left; }
  .menu-list { columns: 1; }
  .menu-panel { padding: 40px 24px; }
  .menu-foot { padding: 16px 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
  .moment { grid-template-columns: 90px 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav, .footer-meta { justify-content: center; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================
   RESPONSIVE – SMALL (Handys)
   ========================= */
@media (max-width: 640px) {
  .site-nav__inner { grid-template-columns: auto 1fr auto; gap: 12px; padding: 0 14px; }
  .site-nav__right { gap: 8px; }
  .site-nav__brand img { width: 52px; height: 52px; }
  .brand-wordmark .brand-place { display: none; }
  .brand-name { font-size: 18px; }
  .open-status { padding: 6px 10px; max-width: 180px; }
  .open-label { font-size: 11px; }
  .open-sub { font-size: 9px; }
  .season-toggle__btn { padding: 5px 10px; font-size: 10px; }
  .season-toggle__btn svg { width: 14px; height: 14px; }

  .hero { padding: 90px 20px 32px; min-height: auto; }
  .hero-logo-wrap { width: 96px; height: 96px; }
  .hero-headline .display { font-size: clamp(42px, 11vw, 72px); }
  .hero-lead { font-size: 16px; margin-top: 20px; }
  .hero-meta { flex-direction: column; gap: 14px; }
  .meta-pill { font-size: 10px; padding: 8px 14px; }
  .hero-cta { padding: 12px 20px; font-size: 13px; }
  .hero-inner { gap: 24px; }
  .hero-scroll { display: none; }

  .section { padding: 60px 20px; }
  .section-head { margin-bottom: 48px; }
  .display--md { font-size: clamp(34px, 9vw, 56px); }
  .section-lead { font-size: 16px; margin-top: 24px; }

  .summer-grid { gap: 32px; }
  .summer-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .summer-moments { padding-top: 16px; }
  .moment { padding: 18px 0; }
  .moment-time { font-size: 22px; }
  .moment-label { font-size: 20px; }

  .winter-inner { padding: 60px 20px; }
  .winter-card { padding: 28px; }
  .winter-card h3 { font-size: 24px; }
  .winter-hours-big { font-size: clamp(42px, 12vw, 64px); }

  .menu-tab { padding: 14px 16px; font-size: 13px; }
  .menu-panel-head h3 { font-size: 32px; }

  .site-footer { padding: 40px 20px 32px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .footer-meta { flex-wrap: wrap; gap: 8px; font-size: 10px; }

  .legal-nav__back { font-size: 11px; }
  .legal-nav__brand .brand-wordmark { display: none; }
}

/* =========================
   OPEN STATUS INDICATOR
   ========================= */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 40px;
  border: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
  max-width: 260px;
}
.open-status .open-label,
.open-status .open-sub {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.open-status--open {
  background: rgba(74, 160, 80, 0.12);
  border-color: rgba(74, 160, 80, 0.35);
}
.open-status--closed {
  background: rgba(180, 60, 60, 0.1);
  border-color: rgba(180, 60, 60, 0.28);
}
.site-nav:not(.is-scrolled) .open-status--open {
  background: rgba(74, 160, 80, 0.18);
  border-color: rgba(100, 200, 100, 0.4);
}
.site-nav:not(.is-scrolled) .open-status--closed {
  background: rgba(180, 60, 60, 0.18);
  border-color: rgba(220, 100, 100, 0.4);
}
.open-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.open-dot--open {
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
  animation: openPulse 2.4s ease-in-out infinite;
}
.open-dot--closed {
  background: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.2);
}
@keyframes openPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.05); }
}
.open-text {
  display: flex;
  flex-direction: column !important;
  line-height: 1;
  gap: 3px;
}
.open-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.open-status--open .open-label  { color: #2e7d32; }
.open-status--closed .open-label { color: #c62828; }
.site-nav:not(.is-scrolled) .open-status--open .open-label  { color: #a5d6a7; }
.site-nav:not(.is-scrolled) .open-status--closed .open-label { color: #ef9a9a; }
.site-nav:not(.is-scrolled) .open-status--open.open-label  { color: #2e7d32; }
.open-sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-500);
}
.site-nav:not(.is-scrolled) .open-sub { color: rgba(245, 237, 220, 0.65); }

/* Print for menu */
@media print {
  .site-nav, .hero, .section--summer, .section--winter, .section--contact, .site-footer, .menu-tabs, .menu-foot { display: none !important; }
  body { background: white; }
  .section--menu { padding: 0; background: white; }
  .menu-card { border: none; box-shadow: none; }
  .menu-panel { padding: 20px; }
}

/* =========================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================= */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}
.legal-nav {
  background: rgba(250, 244, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 82, 51, 0.12);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.legal-nav__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.legal-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown-700);
}
.legal-nav__brand img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.legal-nav__back {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brown-500);
  transition: color 0.2s;
}
.legal-nav__back:hover { color: var(--gold-dim); }

.legal-main {
  min-height: calc(100vh - 200px);
  padding: 80px 40px 120px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content .kicker { margin-bottom: 24px; }
.legal-content h1 {
  margin: 0 0 60px;
}

.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--brown-700);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.legal-section p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--brown-600);
  font-size: 16px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section p strong { color: var(--brown-700); font-weight: 600; }
.legal-section a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--brown-700); }
.legal-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--brown-600);
  font-size: 16px;
  line-height: 1.7;
}
.legal-section ul li { margin-bottom: 4px; }

.legal-intro {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--brown-700);
  padding: 24px 28px;
  background: rgba(216, 179, 74, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  margin: 0 !important;
}

.legal-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px 24px;
  font-size: 16px;
}
.legal-dl dt {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-500);
  padding-top: 4px;
}
.legal-dl dd {
  margin: 0;
  font-family: var(--ff-display);
  color: var(--brown-700);
  font-size: 18px;
}

.legal-links {
  margin-top: 80px !important;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 82, 51, 0.18);
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.legal-links a {
  color: var(--gold-dim) !important;
  text-decoration: none !important;
}
.legal-links a:hover { color: var(--brown-700) !important; }

@media (max-width: 720px) {
  .legal-nav__inner { padding: 0 20px; }
  .legal-main { padding: 48px 20px 80px; }
  .legal-content h1 { margin-bottom: 40px; }
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-dl dd { margin-bottom: 16px; }
}

/* =========================
   ACCESSIBILITY: Reduced Motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-line { animation: none; }
  .open-dot--open { animation: none; }
  .call-dot { animation: none; }
}

/* =========================
   REVIEWS SECTION
   ========================= */
.section--reviews {
  background: var(--paper);
  padding: 100px 40px;
  max-width: none;
}
.reviews-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.reviews-inner .kicker {
  margin-bottom: 28px;
}
.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 28px 40px;
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.reviews-stars {
  display: inline-flex;
  gap: 3px;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0;
}
.reviews-star-half {
  position: relative;
  background: linear-gradient(90deg, var(--gold) 70%, rgba(201,162,39,0.25) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-score-text {
  text-align: left;
}
.reviews-score-big {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 32px;
  color: var(--brown-700);
  line-height: 1;
  letter-spacing: -0.01em;
}
.reviews-score-big span {
  font-size: 18px;
  color: var(--brown-500);
  font-style: normal;
  margin-left: 4px;
}
.reviews-score-sub {
  margin: 4px 0 0;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-500);
}
.reviews-lead {
  margin: 0 auto 28px;
  max-width: 520px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--brown-600);
  text-wrap: pretty;
}
.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--brown-800);
  color: var(--cream);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.reviews-cta:hover { background: var(--gold); color: var(--brown-900); }

@media (max-width: 640px) {
  .section--reviews { padding: 60px 20px; }
  .reviews-score { flex-direction: column; gap: 12px; padding: 24px 28px; }
  .reviews-score-text { text-align: center; }
  .reviews-lead { font-size: 17px; }
}

/* =========================
   FOOTER SUSTAINABILITY BAND
   ========================= */
.footer-sustain {
  background: rgba(216, 179, 74, 0.08);
  border-bottom: 1px solid rgba(216, 179, 74, 0.15);
  padding: 24px 40px;
}
.footer-sustain-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-sustain-icon {
  flex-shrink: 0;
  color: var(--gold-soft);
  display: flex;
}
.footer-sustain-text {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.55;
}
.footer-sustain-text strong {
  color: var(--gold-soft);
  font-weight: 500;
}
@media (max-width: 640px) {
  .footer-sustain { padding: 20px 20px; }
  .footer-sustain-inner { gap: 14px; }
  .footer-sustain-text { font-size: 13px; }
}

/* =========================
   HOURS-TABLE INLINE HINT
   ========================= */
.hours-note-inline {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-500);
  margin-left: 6px;
  opacity: 0.8;
}
@media (max-width: 640px) {
  .hours-note-inline { display: block; margin-left: 0; margin-top: 2px; font-size: 9px; }
}

/* =========================
   RESPONSIVE – XS (sehr schmale Screens)
   ========================= */
@media (max-width: 400px) {
  .brand-wordmark { display: none; }
  .open-status { max-width: 150px; padding: 5px 8px; }
  .open-sub { display: none; }
  .season-toggle__btn { padding: 4px 8px; }
  .season-toggle__btn span:not(.season-toggle__icon) { display: none; }
}

/* =========================
   HOURS – PLATZHALTER
   ========================= */
.hours-note--placeholder {
  padding: 16px 0 4px;
  color: var(--brown-600) !important;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px !important;
  line-height: 1.5;
}

/* =========================
   COOKIE BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 200;
  background: var(--brown-800);
  color: var(--cream);
  border: 1px solid rgba(216, 179, 74, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 24px 28px;
  animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
}
.cookie-banner__text strong {
  color: var(--gold-soft);
  font-weight: 500;
}
.cookie-banner__text a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookie-banner__text a:hover { color: var(--cream); }
.cookie-banner__buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 18px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn--decline {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid rgba(245, 237, 220, 0.3);
}
.cookie-btn--decline:hover {
  color: var(--cream);
  border-color: var(--cream);
}
.cookie-btn--accept {
  background: var(--gold);
  color: var(--brown-900);
  border: 0;
  font-weight: 500;
}
.cookie-btn--accept:hover { background: var(--gold-soft); }

@media (max-width: 640px) {
  .cookie-banner { padding: 20px; bottom: 12px; left: 12px; right: 12px; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 16px; }
  .cookie-banner__buttons { flex-direction: row; justify-content: flex-end; }
  .cookie-banner__text { font-size: 13px; }
}

/* =========================
   MAP CONSENT PLATZHALTER
   ========================= */
.map-consent {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(122, 82, 51, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #e8dcc0 0%, #d9cfb4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}
.map-consent__pin {
  color: var(--gold-dim);
  opacity: 0.6;
}
.map-consent__text {
  margin: 0;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--brown-600);
  font-family: var(--ff-display);
  font-style: italic;
}
.map-consent__btn {
  padding: 10px 22px;
  background: var(--brown-800);
  color: var(--cream);
  border: 0;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.map-consent__btn:hover { background: var(--gold); color: var(--brown-900); }
