/* ==========================================================================
   Restaurace U Lapáčků — BEM Stylesheet
   Aesthetic: Light editorial with black accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors — light theme, black accents */
  --color-bg-dark:        #ffffff;
  --color-bg-mid:         #f4f2ef;
  --color-bg-warm:        #e8e4de;
  --color-bg-light:       #ece8e2;
  --color-bg-cream:       #f8f6f2;
  --color-text-primary:   #0f0d0b;
  --color-text-soft:      #2e2a24;
  --color-text-light:     #1f1d1a;
  --color-text-muted:     #7a7268;
  --color-gold:           #1a1816;
  --color-gold-light:     #2d2926;
  --color-gold-dark:      #0d0c0a;
  --color-accent:         #4a4540;
  --color-gold-rgb:       26, 24, 22;
  --color-accent-rgb:     74, 69, 64;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Border radius — sharper corners for editorial feel */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);

  /* Transitions */
  --transition-fast:   0.18s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Readable by screen readers and search engines, invisible on screen.
   Used to give the hero h1 a brand + locality prefix. */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.65;
  overflow-x: clip;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal--delay-1 { transition-delay: 0.06s; }
.reveal--delay-2 { transition-delay: 0.12s; }
.reveal--delay-3 { transition-delay: 0.18s; }
.reveal--delay-4 { transition-delay: 0.24s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(1.25rem + env(safe-area-inset-top)) var(--space-md) 1.25rem;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: calc(0.75rem + env(safe-area-inset-top)) var(--space-md) 0.75rem;
  backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  opacity: 0.6;
  position: relative;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--color-gold);
  transition: right var(--transition-base);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { right: 0; }
.nav__link--cta {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  opacity: 1;
  font-size: 0.85rem;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.nav__toggle {
  display: none;
  color: var(--color-text-primary);
  padding: 0.25rem;
}
.nav__close {
  display: none;
}

/* Language toggle */
.nav__lang {
  position: relative;
  flex-shrink: 0;
}
.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  opacity: 0.65;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav__lang-btn:hover { opacity: 1; }
.nav__lang-btn svg { flex-shrink: 0; }
.nav__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 130px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(var(--color-gold-rgb),0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 200;
}
.nav__lang-dropdown--open { display: block; }
.nav__lang-option {
  display: block;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.nav__lang-option:hover { background: var(--color-bg-mid); }
.nav__lang-option--active {
  font-weight: 500;
  background: var(--color-bg-light);
}

@media (max-width: 768px) {
  /* No nav bar on mobile — just a floating hamburger in the top-right */
  .nav,
  .nav.nav--scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: calc(1rem + env(safe-area-inset-top)) 1rem 1rem;
  }
  .nav__inner { justify-content: flex-end; }
  .nav__logo  { display: none; }
  .nav__lang { margin-top: -10px; }
  .nav__lang-btn { padding-left: 0; padding-right: 0; flex-direction: row-reverse;}
  #navLangLabel { font-size: 0.9rem; }

  /* Floating hamburger circle */
  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 13, 11, 0.55);
    color: #f5f0e8;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    transition: background var(--transition-fast);
  }
  .nav__toggle:hover { background: rgba(15, 13, 11, 0.75); }

  .nav__close {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0.9rem;
    right: 0.9rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 13, 11, 0.55);
    color: #f5f0e8;
    cursor: pointer;
    z-index: 99;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: background var(--transition-fast);
  }
  body.nav-open .nav__close { display: flex; }
  body.nav-open .nav__toggle { visibility: hidden; }
  .nav__close:hover { background: rgba(15, 13, 11, 0.75); }

  /* Slide-in drawer from the right */
  .nav__links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.74);
    padding: 5rem var(--space-md) var(--space-md);
    gap: var(--space-sm);
    border-top: none;
    border-left: 1px solid rgba(var(--color-gold-rgb), 0.15);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.35s;
    z-index: 98;
    overflow-y: auto;
    backdrop-filter: blur(3px);
  }
  .nav__links.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav__link--cta { align-self: flex-start; }
  .nav__lang-dropdown { right: auto; left: 0; }
}

/* Backdrop when mobile drawer is open */
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 97;
}

/* Language button colour on transparent hero nav */
.nav:not(.nav--scrolled) .nav__lang-btn {
  color: #f5f0e8;
}

/* Nav overrides when floating over the dark hero (before any scroll) */
.nav:not(.nav--scrolled) .nav__link {
  color: #f5f0e8;
}
.nav:not(.nav--scrolled) .nav__link::after {
  background: #e8d9c4;
}
.nav:not(.nav--scrolled) .nav__link--cta {
  background: #e8d9c4;
  color: #0f0d0b;
}
.nav:not(.nav--scrolled) .nav__link--cta:hover {
  background: #f0e6d3;
  color: #0f0d0b;
}
.nav:not(.nav--scrolled) .nav__toggle {
  color: #f5f0e8;
}
/* Scrolled state: invert white logo back to dark for light nav background */
.nav--scrolled .nav__logo-img {
  filter: invert(1);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: #414141;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-lg) + 80px) var(--space-md) var(--space-lg);
}
.hero__bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Real interior photo — replaces the old tiled-logo repeating pattern */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  transform-origin: 65% 55%;
  z-index: 0;
  opacity: 0;
  /* Rest state = fully zoomed in, so a photo fading OUT holds its zoom
     (no snap-back) while the incoming photo zooms in from scale(1). */
  transform: scale(1.12);
  transition: opacity 3s ease;
}
.hero__photo.is-active {
  opacity: 1;
  z-index: 1;
}
/* Each photo slowly zooms in while it's the active slide → feels alive.
   linear keeps the zoom moving at a steady speed right up to the slide
   switch (ease-out decelerated to a near-stop before the transition);
   forwards lands on the rest scale, matching the fade-out state. */
@media (prefers-reduced-motion: no-preference) {
  .hero__photo.is-active {
    animation: hero-zoom-in 9s linear forwards;
  }
}
@keyframes hero-zoom-in {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
/* Scrim: dark on the LEFT (text area) -> photo visible on the RIGHT,
   plus a top band so the fixed nav stays legible and a bottom vignette. */
.hero__bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(20,18,16,0.92) 0%, rgba(20,18,16,0.72) 34%, rgba(20,18,16,0.34) 66%, rgba(20,18,16,0.12) 100%),
    linear-gradient(180deg, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0) 22%),
    linear-gradient(0deg, rgba(20,18,16,0.45) 0%, rgba(20,18,16,0) 28%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}
.hero__content {
  max-width: 720px;
}
.hero__logo {
  /* Only shown on phone screens — see the max-width: 600px block below. */
  display: none;
  width: clamp(180px, 60vw, 260px);
  height: auto;
  margin: 0 auto var(--space-md);
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f0e8;
  margin-bottom: var(--space-sm);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #f5f0e8;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}
.hero__title em {
  color: #c9a882;
  font-style: italic;
  font-weight: 700;
}
.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: #f5f0e8;
  max-width: 480px;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.hero__btn--primary {
  background: #e8d9c4;
  color: #0f0d0b;
}
.hero__btn--primary:hover {
  background: #f0e6d3;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 217, 196, 0.2);
}
.hero__btn--secondary {
  background: transparent;
  color: #e8d9c4;
  border: 1px solid rgba(232, 217, 196, 0.35);
}
.hero__btn--secondary:hover {
  border-color: #e8d9c4;
  color: #e8d9c4;
  transform: translateY(-2px);
}
.hero__btn--secondary:hover .hero__btn-arrow {
  transform: translateX(4px);
}
.hero__btn-arrow { transition: transform var(--transition-fast); }
.hero__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #e8d9c4;
  border: 1px solid rgba(232, 217, 196, 0.35);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.hero__social:hover {
  border-color: #e8d9c4;
  background: rgba(232, 217, 196, 0.1);
  transform: translateY(-2px);
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(232, 217, 196, 0.5);
  letter-spacing: 0.04em;
}
.hero__badge svg { flex-shrink: 0; }

.important-info {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 100%;
  margin: 0 0 var(--space-md);
  padding: 0.7rem 1.05rem;
  background: rgba(226, 142, 60, 0.11);
  border: 1px solid rgba(226, 142, 60, 0.28);
  border-left: 3px solid #e28e3c;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: #f4ece0;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.important-info[hidden] { display: none; }
.important-info svg { flex-shrink: 0; width: 19px; height: 19px; stroke: #e6974a; }

/* Hero feature chips — frosted-glass pills (replace the old plate/cutlery visual) */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5f0e8;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232, 217, 196, 0.28);
  background: rgba(245, 240, 232, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #c9a882;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(232, 217, 196, 0.28);
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%        { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__subtitle { margin: 0 auto var(--space-md); }
  .hero__actions { justify-content: center; }
  .hero__badge { justify-content: center; }
  .hero__features { justify-content: center; }
  /* Single column overlaps more of the photo — uniform vertical darken keeps
     centred cream text legible across the full width. */
  .hero__bg-texture::after {
    background: linear-gradient(180deg, rgba(20,18,16,0.80) 0%, rgba(20,18,16,0.62) 100%);
  }
}

@media (max-width: 600px) {
  .hero { padding-top: calc(var(--space-lg) - 35px); }
  .hero__logo { display: block; margin-bottom: 0; }
}

/* --------------------------------------------------------------------------
   Marquee Strip
   -------------------------------------------------------------------------- */
.marquee-strip {
  background-color: #303030;
  overflow: hidden;
  padding: 0.75rem 0;
}
.marquee-strip__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}
.marquee-strip__item {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg-dark);
  padding: 0 1.5rem;
}
.marquee-strip__sep {
  color: var(--color-bg-dark);
  opacity: 0.35;
  font-size: 0.85rem;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-strip__track { animation: none; }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about {
  background: var(--color-bg-cream);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-primary);
  padding: var(--space-xl) var(--space-md);
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}
.about__title em {
  color: var(--color-gold-dark);
  font-style: italic;
  font-weight: 700;
}
.about__body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: var(--space-md);
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text-soft);
  font-weight: 500;
}
.about__feature-icon {
  flex-shrink: 0;
  color: var(--color-gold-dark);
  margin-top: 1px;
}

/* About visual */
.about__visual { display: flex; justify-content: center; }
.about__image-block {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.about__image-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}
.about__image-placeholder:hover { transform: scale(1.02); }
.about__image-placeholder svg { width: 100%; height: auto; }
.about__image-placeholder img { width: 100%; height: auto; display: block; }
.about__offset-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__offset-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.about__offset-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__features { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Menu
   -------------------------------------------------------------------------- */
.menu {
  background: var(--color-bg-cream);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}
.menu__bg-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.menu__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.menu__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.menu__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.menu__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}
.menu__title em {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 700;
}
.menu__subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  /* Subtitles are plain text on both paths (server-side [data-i18n] replacement
     and the JS tab swap via textContent), so a multi-line subtitle carries a
     literal newline instead of a <br> — pre-line renders it. */
  white-space: pre-line;
  /* The subtitle swaps per tab and the denní one is two lines while the others
     are one, so the box always reserves two lines — otherwise the tabs, the
     iframe and everything below jump when you switch tabs. Text stays centred
     in the reserved space so a one-line subtitle doesn't sit oddly high. */
  line-height: 1.5;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.menu__category {
  background: rgba(var(--color-accent-rgb),0.07);
  border: 1px solid rgba(var(--color-gold-rgb),0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.menu__category-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(var(--color-gold-rgb),0.15);
}
.menu__items { display: flex; flex-direction: column; gap: 0; }
.menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(var(--color-gold-rgb),0.1);
  transition: background var(--transition-fast);
}
.menu__item:last-child { border-bottom: none; }
.menu__item--featured .menu__item-name { color: var(--color-gold); }
.menu__item-info { flex: 1; }
.menu__item-name {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  margin-bottom: 0.15rem;
}
.menu__item-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-text-muted);
}
.menu__item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.menu__cta {
  text-align: center;
  background: rgba(var(--color-accent-rgb),0.07);
  border: 1px solid rgba(var(--color-gold-rgb),0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}
.menu__cta-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.menu__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.menu__cta-btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.menu__cta-btn svg { transition: transform var(--transition-fast); }
.menu__cta-btn:hover svg { transform: translateX(4px); }

.menu__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Menu type tabs */
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}
.menu__tab {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid rgba(var(--color-gold-rgb), 0.22);
  padding: 0.55em 1.4em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.menu__tab:hover {
  color: var(--color-gold);
  border-color: rgba(var(--color-gold-rgb), 0.55);
}
.menu__tab--active {
  color: var(--color-bg-dark);
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.menu__tab--active:hover {
  color: var(--color-bg-dark);
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* ---------------------------------------------------------------------------
 * Menu — machine- and screen-reader-facing copy. VISUALLY HIDDEN.
 *
 * Sighted visitors read the iframe above; this block is not for them. It has
 * to exist in the DOM anyway because the iframe serves neither search crawlers
 * (iframe content is not attributed to the parent page — without this the
 * homepage had ~720 words and zero dish names) nor screen readers (the iframe
 * is a fixed 794px A4 sheet that gets CSS-scaled, which is unusable with
 * assistive tech).
 *
 * Clipped, deliberately NOT display:none — the content stays in the
 * accessibility tree, so it is genuinely served rather than crawler-only.
 *
 * Everything below .menu__seo stays live, so the block is fully styled the
 * moment it is shown. To inspect it: add "is-revealed" to .menu__seo.
 * --------------------------------------------------------------------------- */
.menu__seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Escape hatch for inspecting the block — undoes every line above. */
.menu__seo.is-revealed {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  white-space: normal;
}

/* Links to the standalone menu pages. The footer carries visible copies of
   these, so hiding them here costs no crawl path. */
.menu__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  margin-bottom: var(--space-lg);
}
.menu__link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.35);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.menu__link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Text rendition of the current menus (crawlable + screen-reader friendly). */
.menu__text {
  max-width: 820px;
  margin: 0 auto var(--space-lg);
}
.menu__text-block {
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.18);
  padding: var(--space-sm) 0;
}
.menu__text-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.menu__text-heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: var(--space-sm) 0 0.4em;
}
.menu__text-list { list-style: none; }
.menu__text-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.3em 0;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  border-bottom: 1px dotted rgba(var(--color-gold-rgb), 0.15);
}
.menu__text-price { white-space: nowrap; color: var(--color-text-muted); }
.menu__text-link { margin-top: var(--space-sm); }
.menu__text-link a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Live menu iframe (replaces static .menu__grid) */
.menu__live {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  overflow-x: clip; /* clips the 794 px iframe when it is scaled below its layout width, without clipping the vertical box-shadow */
}
.menu__live-frame {
  width: 100%;
  max-width: 820px;
  /* Default aspect-ratio for polední menu. JS overrides inline on tab switch. */
  aspect-ratio: 210 / 297;
  border: 0;
  background: #fff;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .menu__grid { grid-template-columns: 1fr; }
  .menu__cta { padding: var(--space-md); }
  .menu__cta-row { flex-direction: column; }
  .menu__cta-btn { justify-content: center; }
  .menu__tabs { flex-wrap: wrap; gap: 6px; }
  .menu__tab { padding: 0.5em 1em; }
}

@media (max-width: 480px) {
  .menu__tabs { gap: 5px; }
  .menu__tab {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.5em 0.75em;
    flex: 1 1 auto;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */
.events {
  background: var(--color-bg-cream);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-primary);
  padding: var(--space-xl) var(--space-md);
}
.events__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.events__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.events__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}
.events__title em {
  color: var(--color-gold-dark);
  font-style: italic;
  font-weight: 700;
}
.events__body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.events__list { margin-bottom: var(--space-md); }
.events__list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  font-weight: 500;
  padding: 0.4rem 0;
}
.events__list-item svg { color: var(--color-gold-dark); flex-shrink: 0; }
.events__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.events__btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.events__btn svg { transition: transform var(--transition-fast); }
.events__btn:hover svg { transform: translateX(4px); }

/* Events visual */
.events__visual { position: relative; display: flex; justify-content: center; }
.events__card {
  border-radius: var(--radius-lg);
  max-width: 320px;
  width: 100%;
  aspect-ratio: 5 / 8;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: center;
}
.events__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.events__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.events__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
}
.events__card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.events__card-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}
.events__card-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color var(--transition-fast);
}
.events__card-link:hover { color: #d0d0d0; }

@media (max-width: 900px) {
  .events__inner { grid-template-columns: 1fr; }
  .events__visual { margin-top: var(--space-md); }
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery {
  background: var(--color-bg-cream);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) var(--space-md);
}
.gallery__inner { max-width: 1200px; margin: 0 auto; }
.gallery__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.gallery__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}
.gallery__title em {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 700;
}
.gallery__slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
  border: 0;
  background: #111;
  display: block;
}
.gallery__slideshow:focus-visible {
  outline: 2px solid rgba(var(--color-gold-rgb),0.85);
  outline-offset: 3px;
}
.gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  pointer-events: none;
  display: block;
}
.gallery__slide--active { opacity: 1; }
.gallery__slideshow-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.gallery__slideshow:hover .gallery__slideshow-hint,
.gallery__slideshow:focus-visible .gallery__slideshow-hint {
  opacity: 1;
  transform: translateY(0);
}
.gallery__dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 0.45rem;
  pointer-events: none;
}
.gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.4s ease, transform 0.4s ease;
}
.gallery__dot--active {
  background: #fff;
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   Lightbox (interior gallery)
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-md);
}
.lightbox[hidden] { display: none; }
.lightbox__image {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: #f3f0ea;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  padding: 0;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(0,0,0,0.7); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox__close,
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* --------------------------------------------------------------------------
   Important-notice modal
   -------------------------------------------------------------------------- */
.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(15, 13, 11, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.notice-modal.is-open { opacity: 1; }
.notice-modal[hidden] { display: none; }

.notice-modal__card {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: var(--color-bg-cream);
  border: 1px solid rgba(15, 13, 11, 0.08);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.6rem 2rem 2.1rem;
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.notice-modal.is-open .notice-modal__card { transform: translateY(0) scale(1); }

.notice-modal__logo {
  display: block;
  width: 138px;
  height: auto;
  margin: 0 auto 1.3rem;
}
.notice-modal__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 0.9rem;
}
.notice-modal__eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 0.7rem auto 0;
  background: var(--color-gold);
  opacity: 0.85;
}
.notice-modal__text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin-bottom: 1.7rem;
}
.notice-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.notice-modal__btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
.notice-modal__btn:focus { outline: none; }
.notice-modal__btn:focus-visible {
  outline: 2px solid rgba(var(--color-gold-rgb), 0.85);
  outline-offset: 3px;
}
.notice-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--color-text-muted);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.notice-modal__close:hover {
  background: rgba(15, 13, 11, 0.06);
  color: var(--color-text-primary);
}
.notice-modal__close:focus { outline: none; }
.notice-modal__close:focus-visible {
  outline: 2px solid rgba(var(--color-gold-rgb), 0.85);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .notice-modal,
  .notice-modal__card { transition: none; }
  .notice-modal__card { transform: none; }
}
@media (max-width: 480px) {
  .notice-modal__card { padding: 2.4rem 1.4rem 1.8rem; }
  .notice-modal__logo { width: 118px; }
  .notice-modal__text { font-size: 1.02rem; }
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews {
  background: var(--color-bg-cream);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) var(--space-md);
}
.reviews__inner { max-width: 1200px; margin: 0 auto; }
.reviews__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.reviews__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}
.reviews__title em {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 700;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.reviews__card {
  background: var(--color-bg-dark);
  border: 1px solid rgba(var(--color-gold-rgb),0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.reviews__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--color-gold-rgb),0.35);
}
.reviews__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}
.reviews__stars svg { fill: #c8953a; }
.reviews__quote {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.reviews__author {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact__pane { padding: var(--space-xl) var(--space-lg); display: flex; align-items: center; }
.contact__pane--light {
  background: var(--color-bg-cream);
  color: var(--color-text-primary);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contact__map {
  width: 100%;
  max-width: 440px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: var(--space-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact__pane--dark {
  background: var(--color-bg-cream);
  color: var(--color-text-primary);
}
.contact__details { max-width: 440px; width: 100%; }
.contact__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}
.contact__title em {
  color: var(--color-gold-dark);
  font-style: italic;
  font-weight: 700;
}
.contact__info { margin-bottom: var(--space-md); }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.55;
}
.contact__info-item:last-child { border-bottom: none; }
.contact__info-item a { color: var(--color-text-soft); font-weight: 500; transition: color var(--transition-fast); }
.contact__info-item a:hover { color: var(--color-gold-dark); }
.contact__info-icon {
  width: 36px;
  height: 36px;
  background: rgba(var(--color-gold-rgb),0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold-dark);
  margin-top: 0.1rem;
}
.contact__hours {
  background: rgba(var(--color-gold-rgb),0.07);
  border: 1px solid rgba(var(--color-gold-rgb),0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.contact__hours-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}
.contact__hours-table { width: 100%; font-size: 0.9rem; border-collapse: collapse; }
.contact__hours-table td { padding: 0.3rem 0; color: var(--color-text-soft); }
.contact__hours-table td:last-child { text-align: right; font-weight: 600; }

/* Form */
.contact__form-wrap { max-width: 440px; width: 100%; }
.contact__form-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}
.contact__form-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.contact__field { display: flex; flex-direction: column; gap: 0.35rem; }
.contact__field-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contact__field-input {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  outline: none;
}
.contact__field-input::placeholder { color: rgba(0,0,0,0.3); }
.contact__field-input:focus {
  border-color: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}
.contact__field-input--textarea { resize: vertical; min-height: 100px; }
.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 0.5rem;
}
.contact__submit:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}
.contact__submit:disabled,
.contact__submit.is-loading {
  cursor: progress;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}
.contact__submit:disabled:hover { background: var(--color-gold); }

.contact__field-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.55;
  margin-left: 0.25rem;
}

.contact__field-input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.18);
}

/* Honeypot: off-screen rather than display:none — some bots skip hidden fields. */
.contact__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__status {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 1.2em;
}
.contact__status--success { color: #2a7a4d; }
.contact__status--error { color: #c0392b; }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact__pane { padding: var(--space-lg) var(--space-md); }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-bg-dark);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-md);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__brand-logo {
  height: 80px;
  width: auto;
  display: block;
}
.footer__brand-tagline {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer__link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--color-text-primary); }
.footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(0,0,0,0.4);
  text-align: right;
}

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { text-align: left; }
}
