/* ============ FONTS (self-hosted variable fonts, no third-party requests) ============ */
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('../fonts/jost-variable.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('../fonts/cormorant-variable.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('../fonts/cormorant-italic.woff2') format('woff2'); }
@font-face { font-family: 'Parisienne'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/parisienne-regular.woff2') format('woff2'); }

/* ============ TOKENS ============ */
:root {
  --color-cream: #faf3e8;
  --color-cream-rgb: 250, 243, 232;
  --color-cream-deep: #f1e4d0;
  --color-marble: #dcd7cd;
  --color-espresso: #3a2a1e;
  --color-espresso-soft: #6b5a4c;
  /* Always-dark accent surface (buttons, footer, page-hero, reviews) —
     unlike --color-espresso this never inverts in dark mode, since these
     surfaces are meant to stay a dark espresso brown with light text on
     top regardless of the reader's color scheme. */
  --color-espresso-fixed: #3a2a1e;
  --color-gold: #b68a46;
  --color-gold-soft: #e4c98a;
  --color-rose: #c57b72;
  --color-white: #ffffff;

  --font-display: "Cormorant", Georgia, serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Parisienne", cursive;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;

  --shadow-soft: 0 20px 50px -20px rgba(58, 42, 30, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(58, 42, 30, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 260ms;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-cream: #1c1610;
    --color-cream-rgb: 28, 22, 16;
    --color-cream-deep: #241c14;
    --color-espresso: #f3e9db;
    --color-espresso-soft: #cabca9;
    --color-white: #2a2118;
    --color-marble: #3a2f24;
  }
}

/* ============ RESET ============ */
* { box-sizing: border-box; }
/* Lenis (JS) owns smooth scrolling now — native CSS smooth-scroll would
   fight it and cause visible lag/jank, so this stays "auto". The JS
   fallback path (no-Lenis) still requests smooth behavior explicitly
   via scrollTo({behavior:"smooth"}). */
html { scroll-behavior: auto; }
/* One-pager anchor targets: keep section headings clear of the fixed header
   when jumped to natively (the JS path applies its own matching offset). */
#story, #menu, #galerie, #bewertungen, #kontakt { scroll-margin-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-espresso);
  background: var(--color-cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
svg { fill: currentColor; }

/* language toggling */
html[data-lang="de"] [lang="en"] { display: none; }
html[data-lang="en"] [lang="de"] { display: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-espresso-fixed);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-rose);
  margin-bottom: var(--space-1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-espresso-fixed);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--color-gold); color: var(--color-espresso-fixed); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--color-espresso);
  border: 1.5px solid var(--color-espresso);
}
.btn-ghost:hover { background: var(--color-espresso-fixed); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  padding: 18px 0;
}
.site-header.is-scrolled {
  background: rgba(var(--color-cream-rgb), 0.97);
  box-shadow: 0 4px 24px rgba(58,42,30,0.1);
  padding: 10px 0;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--color-espresso);
}
.site-header:not(.is-scrolled) .brand { color: #fff; }
.brand-mark {
  display: inline-block;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(58,42,30,0.25);
}
.brand-name em { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.42em; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; opacity: 0.8; }

.main-nav {
  display: flex;
  gap: var(--space-3);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a {
  color: var(--color-espresso);
  position: relative;
  padding: 4px 0;
}
.site-header:not(.is-scrolled) .main-nav a { color: #fff; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transition: right var(--dur) var(--ease-out);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after, .main-nav a.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  color: var(--color-espresso);
}
.site-header:not(.is-scrolled) .lang-toggle { color: #fff; }
.lang-opt { opacity: 0.45; transition: opacity var(--dur); padding: 2px 3px;}
.lang-opt.is-active { opacity: 1; }
.lang-sep { opacity: 0.4; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  color: var(--color-espresso);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
  transform-origin: center;
}
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }

/* Hamburger → X, once the mobile menu is open */
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span { transition: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  color: #fff;
}
/* Sticky-image parallax: hero-parallax is scroll-tall, hero-sticky pins to the
   viewport for that whole range while GSAP scales it down and darkens it, and
   hero-content (the text overlay) scrolls/fades away over the first 100svh. */
.hero-parallax { position: relative; height: 180vh; }
.hero-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; z-index: 0; will-change: transform; }
.hero-sticky img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,24,15,0.55) 0%, rgba(35,24,15,0.25) 35%, rgba(35,24,15,0.78) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  height: 100svh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px var(--space-3) var(--space-6);
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax { height: 100svh; }
  .hero-sticky { position: relative; }
}
.hero .eyebrow { color: var(--color-gold-soft); }
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0 20px;
  text-wrap: balance;
}
.hero-sub {
  max-width: 560px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-4);
}
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero .btn-ghost:hover { background: #fff; color: var(--color-espresso-fixed); }

.rating-card {
  position: absolute;
  z-index: 2;
  right: var(--space-3);
  top: 130px;
  background: rgba(var(--color-cream-rgb), 0.98);
  color: var(--color-espresso);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: transform var(--dur) var(--ease-out);
  text-align: center;
}
.rating-card:hover { transform: translateY(-4px); }
.rating-stars { color: var(--color-gold); letter-spacing: 2px; font-size: 0.9rem; }
.rating-score { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--color-espresso); }
.rating-score small { font-size: 0.55em; font-weight: 500; color: var(--color-espresso-soft); }
.rating-count { font-size: 0.72rem; font-weight: 600; color: var(--color-espresso-soft); white-space: nowrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  border-radius: 3px;
  background: #fff;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ============ MARQUEE ============ */
.marquee { background: var(--color-gold-soft); color: var(--color-espresso-fixed); overflow: hidden; white-space: nowrap; padding: 14px 0; font-family: var(--font-display); font-style: italic; font-size: 0.92rem; border-top: 1px solid var(--color-marble); border-bottom: 1px solid var(--color-marble); }
.marquee-track { display: inline-flex; gap: 2rem; animation: marquee 90s linear infinite; padding-left: 2rem; }
.marquee span { display: inline-flex; align-items: center; gap: 2rem; }
.marquee span::after { content: "✿"; opacity: 0.6; font-size: 0.8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ STORY ============ */
.story { padding: var(--space-6) 0; position: relative; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
.story-media { position: relative; }
.story-media-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.story-media-main img { aspect-ratio: 4/5; object-fit: cover; }
.story-media-float {
  position: absolute;
  width: 46%;
  right: -8%;
  bottom: -10%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--color-cream);
}
.story-media-float img { aspect-ratio: 1/1; object-fit: cover; }
.story-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: var(--space-3); }
.story-text p { color: var(--color-espresso-soft); margin-bottom: var(--space-2); font-size: 1.05rem; }
.story-badges {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}
.badge {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  min-width: 130px;
}
.badge strong { font-family: var(--font-display); color: var(--color-espresso); font-size: 1.3rem; }
.badge span { font-size: 0.78rem; color: var(--color-espresso-soft); font-weight: 600; }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.section-lede { color: var(--color-espresso-soft); font-size: 1.08rem; }

/* ============ MENU ============ */
.menu { padding: var(--space-6) 0; background: var(--color-cream-deep); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.menu-card-media { aspect-ratio: 4/3; overflow: hidden; }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.menu-card:hover .menu-card-media img { transform: scale(1.06); }
.menu-card h3 { font-size: 1.15rem; padding: 18px 20px 6px; }
.menu-card p { padding: 0 20px 20px; color: var(--color-espresso-soft); font-size: 0.94rem; }
.menu-note { text-align: center; margin-top: var(--space-4); color: var(--color-espresso-soft); font-size: 0.92rem; font-style: italic; }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-espresso-fixed);
  color: #fff;
  padding: 168px 0 var(--space-5);
  text-align: center;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}
.page-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,24,15,0.62) 0%, rgba(35,24,15,0.55) 45%, rgba(35,24,15,0.85) 100%);
}
.page-hero .section-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--color-gold-soft); justify-content: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-top: 6px; }
.page-hero-lede {
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-media img { transform: none; }
}

/* ============ HOME HIGHLIGHTS ============ */
.highlights { padding: var(--space-6) 0; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.highlight-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.highlight-card-media { aspect-ratio: 4/3; overflow: hidden; }
.highlight-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.highlight-card:hover .highlight-card-media img { transform: scale(1.06); }
.highlight-card h3 { font-size: 1.05rem; padding: 16px 16px 4px; }
.highlight-card p { padding: 0 16px; color: var(--color-espresso-soft); font-size: 0.88rem; }
.highlight-link {
  display: block;
  margin: 12px 16px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* ============ ATELIER / GALLERY ============ */
.atelier { padding: var(--space-6) 0; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: var(--space-2);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  grid-row: span 1;
  cursor: zoom-in;
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(35,24,15,0.35));
  opacity: 0;
  transition: opacity var(--dur);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-note { text-align: center; margin-top: var(--space-3); font-size: 0.85rem; color: var(--color-espresso-soft); font-style: italic; }

/* ============ REVIEWS ============ */
.reviews { padding: var(--space-6) 0; background: var(--color-espresso-fixed); color: #fff; }
.reviews .eyebrow { color: var(--color-gold-soft); }
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-2);
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.reviews-score .rating-stars { color: var(--color-gold); font-size: 1.1rem; }
.reviews-score strong { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  margin: 0;
}
.testimonial p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.55; }
.testimonial footer { margin-top: var(--space-3); display: flex; flex-direction: column; gap: 4px; }
.testimonial .stars { color: var(--color-gold); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial cite { font-style: normal; font-weight: 700; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.reviews-cta { text-align: center; margin-top: var(--space-4); }
.reviews .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.reviews .btn-ghost:hover { background: #fff; color: var(--color-espresso-fixed); }

/* light variant: used on the standalone Bewertungen page, where the dark
   page-hero above already carries the score, so this section sits on cream */
.reviews--light { background: var(--color-cream); color: var(--color-espresso); }
.reviews--light .testimonial { background: var(--color-white); border-color: var(--color-marble); box-shadow: var(--shadow-card); }
.reviews--light .testimonial p { color: var(--color-espresso); }
.reviews--light .testimonial cite { color: var(--color-espresso-soft); }
.reviews--light .btn-ghost { color: var(--color-espresso); border-color: var(--color-espresso); }
.reviews--light .btn-ghost:hover { background: var(--color-espresso-fixed); color: #fff; }

/* ============ VISIT ============ */
.visit { padding: var(--space-6) 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: start;
}
.visit-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: var(--space-3); }
.visit-details { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.visit-details li { display: flex; gap: 14px; align-items: flex-start; }
.visit-details svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-rose); margin-top: 2px; }
.visit-details strong { display: block; font-size: 1.02rem; }
.visit-details span { color: var(--color-espresso-soft); font-size: 0.92rem; }
.visit-details a { font-weight: 700; color: var(--color-espresso); }
.visit-details a:hover { text-decoration: underline; }

.hours {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-4);
}
.hours h3 { font-size: 1.1rem; margin-bottom: 12px; }
.hours table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours tr { border-bottom: 1px solid var(--color-marble); }
.hours tr:last-child { border-bottom: none; }
.hours th, .hours td { text-align: left; padding: 7px 0; font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--color-espresso-soft); }
.hours td.closed { color: var(--color-rose); }
.hours tr.is-today { font-weight: 700; color: var(--color-espresso); }
.hours tr.is-today td { color: var(--color-espresso); }
.hours-status {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-block;
}
.hours-status.open { background: var(--color-gold-soft); color: var(--color-espresso-fixed); }
.hours-status.closed-now { background: #f3ddd6; color: var(--color-rose); }
.hours-note { margin-top: 10px; font-size: 0.78rem; color: var(--color-espresso-soft); font-style: italic; }
.placeholder { background: var(--color-gold-soft); color: var(--color-espresso-fixed); padding: 1px 7px; border-radius: 5px; font-style: italic; font-weight: 600; white-space: nowrap; }

.visit-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.visit-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--color-espresso-fixed); color: rgba(255,255,255,0.85); padding: var(--space-5) 0 var(--space-3); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-script); font-size: 1.5rem; color: #fff; }
.footer-nav { display: flex; gap: var(--space-3); flex-wrap: wrap; font-weight: 600; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--color-gold); }
.footer-social { display: flex; gap: 14px; }
.footer-social svg { width: 20px; height: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background var(--dur); }
.footer-social a:hover { background: var(--color-gold); color: var(--color-espresso-fixed); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding-top: var(--space-3); font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-legal a:hover { color: var(--color-gold); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(25,17,11,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-3);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 150px 0 var(--space-6); min-height: 60vh; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 0 var(--space-3); }
.legal-content h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: var(--space-2); }
.legal-content h2 { font-size: 1.3rem; margin-top: var(--space-5); margin-bottom: 10px; color: var(--color-espresso); }
.legal-content p, .legal-content li { color: var(--color-espresso-soft); margin-bottom: 14px; font-size: 1rem; }
.legal-content ul { padding-left: 1.2em; list-style: disc; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--color-espresso); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--color-espresso); }
.legal-intro-note { background: var(--color-cream-deep); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.9rem; font-style: italic; margin-bottom: var(--space-4); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .highlight-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: var(--space-3);
    gap: var(--space-2);
    box-shadow: 0 20px 30px -20px rgba(0,0,0,0.3);
  }
  .site-header.nav-open .main-nav a { color: var(--color-espresso); }

  .story-grid, .visit-grid, .testimonials { grid-template-columns: 1fr; }
  .story-media { margin-bottom: var(--space-5); }
  .story-media-float { width: 50%; right: 4%; bottom: -12%; }

  .hero-parallax { height: 150vh; }

  /* Compact horizontal badge: fits in the gap between the header and the
     eyebrow text instead of overlapping the hero CTAs further down. */
  .rating-card {
    top: 90px;
    bottom: auto;
    right: var(--space-2);
    flex-direction: row;
    align-items: baseline;
    gap: 7px;
    padding: 7px 12px;
  }
  .rating-card .rating-count { display: none; }
  .rating-card .rating-score { font-size: 1.25rem; }
  .hero-content { padding-top: 120px; }
}

@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .visit-map iframe { min-height: 320px; }
}
