:root {
  --color-terracotta: #c1554c;
  --color-terracotta-dark: #96382f;
  --color-terracotta-light: #d97b6f;
  --color-charcoal: #1c1714;
  --color-charcoal-soft: #241d19;
  --color-cream: #faf5ee;
  --color-cream-dim: #f1e6d8;
  --color-gold: #cf9d4e;
  --color-gold-light: #e6c078;
  --color-white: #ffffff;
  --color-muted: #6f6156;
  --color-muted-light: rgba(255, 255, 255, 0.68);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius: 14px;
  --radius-sm: 8px;
  --container-w: 1200px;
  --header-h: 78px;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* Thin gold rule — decorative spice-motif divider */
.gold-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-terracotta-light));
  margin: 0 0 var(--space-md);
  border: none;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.9em;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta-light), var(--color-terracotta));
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(150, 56, 47, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(150, 56, 47, 0.4); }
.btn-secondary {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn-secondary:hover { background: var(--color-gold); color: var(--color-charcoal); }
.btn-lg { padding: 1.05em 2.2em; font-size: 1rem; }

.hero .btn-secondary { border-color: var(--color-white); color: var(--color-white); }
.hero .btn-secondary:hover { background: var(--color-white); color: var(--color-charcoal); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
}
.site-header-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled .site-header-bg {
  background: rgba(28, 23, 20, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  color: var(--color-white);
}
.logo-accent { color: var(--color-gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 101;
}
.nav-toggle .bar {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.main-nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
}
.main-nav .nav-links li { display: flex; align-items: center; }

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  color: var(--color-white);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta-row { margin-left: var(--space-2xs); }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4em 0.85em;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.lang-btn[aria-pressed="true"] {
  background: var(--color-gold);
  color: var(--color-charcoal);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(15, 11, 9, 0.55), rgba(15, 11, 9, 0.75)),
    radial-gradient(circle at 20% 25%, rgba(193, 85, 76, 0.35), transparent 50%),
    linear-gradient(135deg, #2a1512, #1c1714 60%);
}
.hero-motif {
  position: absolute;
  width: 260px;
  height: 260px;
  color: rgba(207, 157, 78, 0.18);
  z-index: -1;
  pointer-events: none;
}
.hero-motif-1 { top: -60px; right: -60px; }
.hero-motif-2 { bottom: -40px; left: -50px; width: 200px; height: 200px; }

.hero-content {
  color: var(--color-white);
  max-width: 760px;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.badge {
  display: inline-block;
  background: rgba(207, 157, 78, 0.16);
  border: 1px solid rgba(207, 157, 78, 0.5);
  color: var(--color-gold-light);
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 18ch;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.88);
  margin: var(--space-md) 0 var(--space-lg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.hero-actions .btn { flex: 0 1 auto; }

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.hero-scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold-light);
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ============ SECTION HEADINGS ============ */
.eyebrow {
  display: inline-block;
  color: var(--color-terracotta);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: var(--space-2xs);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}
.section-sub {
  color: var(--color-muted);
  max-width: 60ch;
  font-size: 1.05rem;
}
.section-heading { margin-bottom: var(--space-xl); }

.on-dark .eyebrow { color: var(--color-gold-light); }
.on-dark .section-title { color: var(--color-white); }
.on-dark .section-sub { color: rgba(255, 255, 255, 0.72); }

/* ============ ABOUT ============ */
.about { padding: var(--space-2xl) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-media {
  position: relative;
  display: grid;
  gap: var(--space-md);
}
.about-photo-placeholder {
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--color-terracotta-light), var(--color-terracotta-dark));
  color: var(--color-white);
  text-align: center;
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.35;
}
.about-photo-small { min-height: 160px; max-width: 60%; margin-left: auto; background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)); }
.placeholder-icon { font-size: 3rem; position: relative; z-index: 1; }
.placeholder-label { position: relative; z-index: 1; font-weight: 700; font-family: var(--font-display); }
.placeholder-label small { font-weight: 500; font-family: var(--font-body); opacity: 0.85; display: block; margin-top: 0.3em; }

.about-copy p { color: var(--color-charcoal); }
.link-arrow {
  display: inline-block;
  margin-top: var(--space-2xs);
  font-weight: 700;
  color: var(--color-terracotta);
  transition: transform 0.2s ease;
}
.link-arrow:hover { transform: translateX(4px); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--color-cream-dim);
  border: 1px solid rgba(193, 85, 76, 0.2);
  color: var(--color-terracotta-dark);
  padding: 0.55em 1em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ============ HAPPY HOUR STRIP ============ */
.highlight-strip {
  background: linear-gradient(120deg, var(--color-terracotta-dark), var(--color-terracotta) 60%, var(--color-terracotta-dark));
  color: var(--color-white);
  padding: var(--space-md) 0;
}
.highlight-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  text-align: center;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 1.05rem;
}
.highlight-item .icon { font-size: 1.3rem; }
.highlight-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.35);
}

/* ============ MENU ============ */
.menu-section {
  padding: var(--space-2xl) 0;
  background: var(--color-charcoal);
}
.menu-actions {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.menu-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.55em 1.2em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu-tab:hover { border-color: var(--color-gold); color: var(--color-white); }
.menu-tab[aria-selected="true"] {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-charcoal);
}

.menu-panel {
  max-width: 820px;
  margin: 0 auto;
}
.menu-panel[hidden] { display: none; }

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}
.menu-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--space-sm);
  row-gap: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--space-md);
}
.item-name { color: var(--color-white); font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; }
.item-price { color: var(--color-gold-light); font-weight: 700; white-space: nowrap; }
.item-desc { grid-column: 1 / -1; color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; }

.menu-footnote {
  text-align: center;
  margin-top: var(--space-xl);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ============ EVENTS ============ */
.events { padding: var(--space-2xl) 0; }
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.events-media .about-photo-placeholder {
  min-height: 420px;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
}
.events-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: var(--space-md) 0;
}
.event-type-pill {
  background: var(--color-cream-dim);
  border: 1px solid rgba(193, 85, 76, 0.2);
  color: var(--color-terracotta-dark);
  padding: 0.5em 1em;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}
.events-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.events-group-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: 0 8px 24px rgba(28, 23, 20, 0.08);
}
.events-group-card h3 {
  font-size: 1.15rem;
  color: var(--color-terracotta-dark);
  margin-bottom: 0.4em;
}
.events-group-card p { color: var(--color-muted); font-size: 0.95rem; }

/* ============ GALLERY ============ */
.gallery { padding: var(--space-2xl) 0; background: var(--color-cream-dim); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  padding: var(--space-sm);
  background: linear-gradient(145deg, hsl(var(--tile-hue) 60% 42%), hsl(var(--tile-hue) 55% 24%));
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.25) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.3;
}
.gallery-item .placeholder-icon { font-size: 2.4rem; }
.gallery-item .placeholder-label { font-size: 0.95rem; position: relative; z-index: 1; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(28,23,20,0.3); }

.gallery-note {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ============ CONTACT ============ */
.contact { padding: var(--space-2xl) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-list {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}
.contact-list li { display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex: none; }
.contact-list strong { display: block; color: var(--color-terracotta-dark); margin-bottom: 0.2em; }
.contact-list a:hover { text-decoration: underline; }

.contact-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 30px rgba(28, 23, 20, 0.12);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-charcoal-soft);
  color: var(--color-cream-dim);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { color: var(--color-white); margin-bottom: var(--space-sm); }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-links h3, .footer-contact h3 {
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6em; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.72); }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-gold-light); }
.footer-contact p { color: rgba(255,255,255,0.72); margin-bottom: 0.5em; }

.social-row { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.social-icon:hover { background: var(--color-gold); color: var(--color-charcoal); transform: translateY(-3px); }

.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.footer-legal a:hover { color: var(--color-gold-light); text-decoration: underline; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 11, 9, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.lightbox-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--color-terracotta-light), var(--color-terracotta-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: var(--space-md);
}
.lightbox-caption { color: var(--color-white); font-size: 1.05rem; }
.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .events-groups { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-charcoal);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md);
  }

  .main-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav .nav-links li { display: block; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem var(--space-2xs);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    -webkit-tap-highlight-color: rgba(207, 157, 78, 0.25);
  }
  .nav-link::after { display: none; }
  .nav-cta-row { margin: var(--space-md) 0 0; }
  .nav-cta-row .btn { width: 100%; }

  .lang-toggle { margin-top: var(--space-md); align-self: flex-start; }

  .nav-toggle .bar { background: var(--color-white) !important; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .highlight-strip-inner { flex-direction: column; gap: var(--space-sm); }
  .highlight-divider { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .footer-legal { justify-content: center; }
  .social-row { justify-content: center; }
  .contact-list li { text-align: left; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items li { grid-template-columns: 1fr; }
  .item-price { justify-self: start; }
}
