/* ════════════════════════════════════════════
   RISTORANTE RUSTICO — FULL STYLESHEET
   ════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: #FDF8F0;
  color: #2C2C1E;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── CSS VARIABLES ─── */
:root {
  --cream: #FDF8F0;
  --cream-dark: #F5EDD8;
  --gold: #C9A84C;
  --gold-light: #E8C86A;
  --terracotta: #C4714A;
  --terracotta-dark: #A35C38;
  --olive: #2C2C1E;
  --olive-mid: #5C5C40;
  --olive-light: #8C8C68;
  --white: #FFFDF9;
  --shadow: rgba(44, 44, 30, 0.08);
  --shadow-md: rgba(44, 44, 30, 0.14);
}

/* ─── GRAIN TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ════════════════════════════════════════════
   NAVIGATION — MODERN REDESIGN
   ════════════════════════════════════════════ */

/* ─── NAV BAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  background: rgba(253, 248, 240, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 0 rgba(201,168,76,0.15),
    0 4px 24px rgba(44,44,30,0.08);
  height: 64px;
}

/* Subpage nav (always visible bg) */
nav.subpage-nav {
  background: rgba(253, 248, 240, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 0 rgba(201,168,76,0.15),
    0 4px 24px rgba(44,44,30,0.08);
  height: 64px;
}

/* ─── LOGO ─── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  transition: all 0.35s ease;
  display: block;
}

nav.scrolled .nav-logo-img { height: 66px; }

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  transform: scale(1.02);
}

/* ─── NAV LINKS (Desktop) ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { display: flex; }

.nav-links a {
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-mid);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
}

/* Underline animation */
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-links a:not(.nav-cta):hover::after {
  width: calc(100% - 1.7rem);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--olive);
}

/* Active link state */
.nav-links a.active:not(.nav-cta) {
  color: var(--olive);
}
.nav-links a.active:not(.nav-cta)::after {
  width: calc(100% - 1.7rem);
  opacity: 0.6;
}

/* White text over hero */
nav:not(.scrolled):not(.subpage-nav) .nav-links a:not(.nav-cta) {
  color: rgba(255,253,249,0.8);
}
nav:not(.scrolled):not(.subpage-nav) .nav-links a:not(.nav-cta):hover {
  color: #fff;
}
nav:not(.scrolled):not(.subpage-nav) .nav-links a:not(.nav-cta)::after {
  background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,0.8));
}

/* ─── CTA BUTTON ─── */
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 3px !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(196,113,74,0.15);
  margin-left: 0.5rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--terracotta-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,113,74,0.3);
}

/* ─── NAV RIGHT (phone + hamburger) ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Phone icon */
.nav-phone {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}
.nav-phone:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: scale(1.05);
}
nav:not(.scrolled):not(.subpage-nav) .nav-phone {
  border-color: rgba(201,168,76,0.35);
  color: var(--gold-light);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 1001;
}
.hamburger:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}

.hamburger-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--olive);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

.hamburger-line-1 { top: 0; width: 22px; }
.hamburger-line-2 { top: 50%; transform: translateY(-50%); width: 16px; }
.hamburger-line-3 { bottom: 0; width: 19px; }

/* White hamburger over hero */
nav:not(.scrolled):not(.subpage-nav) .hamburger-line {
  background: rgba(255,253,249,0.9);
}

/* Open state */
.hamburger.open .hamburger-line-1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 22px;
}
.hamburger.open .hamburger-line-2 {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.hamburger.open .hamburger-line-3 {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 22px;
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 4, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(44,44,30,0.15);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  right: 0;
}

/* ─── MOBILE MENU HEADER ─── */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
}

.mobile-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  background: none;
  cursor: pointer;
  color: var(--olive-mid);
  transition: all 0.3s;
}
.mobile-close:hover {
  background: rgba(196,113,74,0.06);
  border-color: rgba(196,113,74,0.2);
  color: var(--terracotta);
  transform: rotate(90deg);
}

/* ─── MOBILE MENU BODY ─── */
.mobile-menu-body {
  flex: 1;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--i) * 0.06s + 0.15s);
}

.mobile-menu.open .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--olive);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: all 0.3s;
  position: relative;
}

.mobile-nav-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  margin-right: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--terracotta);
  padding-left: 0.5rem;
}

.mobile-nav-links a:hover::before {
  width: 18px;
  margin-right: 0.75rem;
}

/* ─── MOBILE CTA ─── */
.mobile-menu-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.5s;
}

.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(196,113,74,0.2);
}

.mobile-cta-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,113,74,0.3);
}

/* ─── MOBILE MENU FOOTER ─── */
.mobile-menu-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.55s;
}

.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
}

.mobile-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-light);
  text-decoration: none;
  transition: color 0.2s;
}
a.mobile-contact-item:hover { color: var(--terracotta); }
.mobile-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.mobile-menu-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--olive-light);
  opacity: 0.6;
}

/* ─── BODY LOCK ─── */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: flex; }
  nav { padding: 0 1.5rem; }
}

@media (max-width: 400px) {
  .mobile-menu { max-width: 100vw; width: 100vw; }
  .mobile-nav-links a { font-size: 1.3rem; }
  .nav-logo-img { height: 44px; }
  nav.scrolled .nav-logo-img { height: 40px; }
}

/* ════════════════════════════════════════════
   HERO — FULL HEIGHT (index.html)
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(28,26,18,0.78) 0%, rgba(28,26,18,0.52) 55%, rgba(180,90,50,0.32) 100%),
    url('../images/interior.jpg') center/cover no-repeat;
}

.hero-inner {
  text-align: center;
  max-width: 860px;
  padding: 8rem 2rem 6rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #FFFDF9;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.45s;
}
.hero-title em {
  font-style: italic;
  color: #E8A87C;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,253,249,0.8);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.65s;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}
.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
  cursor: pointer;
}
.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.6);
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(201,168,76,0.7);
  border-bottom: 1px solid rgba(201,168,76,0.7);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

/* ════════════════════════════════════════════
   PAGE HERO — SHORT (menu, gallery, contact)
   ════════════════════════════════════════════ */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(28,26,18,0.82) 0%, rgba(28,26,18,0.60) 55%, rgba(180,90,50,0.38) 100%),
    url('../images/interior.jpg') center/cover no-repeat;
  padding-top: 64px;
}

.page-hero .hero-inner {
  padding: 5rem 2rem 4rem;
}

.page-hero .hero-eyebrow {
  animation: none;
  opacity: 1;
}

.page-hero .hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  animation: none;
  opacity: 1;
  margin-bottom: 0.75rem;
}

.page-hero .hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 0;
  animation: none;
  opacity: 1;
}

/* ════════════════════════════════════════════
   GLOBAL SECTION & LAYOUT
   ════════════════════════════════════════════ */
section { position: relative; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--olive);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,113,74,0.3);
}

.btn-outline {
  background: transparent;
  color: rgba(255,253,249,0.9);
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(255,253,249,0.45);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── ORNAMENT DIVIDER ─── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 0;
}
.ornament-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4));
}
.ornament-line.right {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.4));
}

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about {
  background: var(--white);
  padding: 7rem 0 8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(44,44,30,0.18);
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(196,113,74,0.35);
}
.about-badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--olive-mid);
  margin-bottom: 1.5rem;
}
.about-content p strong {
  font-weight: 500;
  color: var(--olive);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.about-feature-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--olive-mid);
  padding-top: 0.5rem;
}

/* ════════════════════════════════════════════
   MENU
   ════════════════════════════════════════════ */
.menu {
  background: var(--cream);
  padding: 7rem 0 8rem;
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.menu-header .section-label {
  justify-content: center;
}
.menu-header .section-label::before { display: none; }
.menu-header .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.menu-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--olive-light);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  padding: 0.35rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(201,168,76,0.15);
}
.menu-tab {
  padding: 0.55rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--olive-light);
  border-radius: 2px;
  transition: all 0.25s;
  white-space: nowrap;
}
.menu-tab.active {
  background: var(--terracotta);
  color: var(--white);
}

.menu-panels { position: relative; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: 3px;
  padding: 1.75rem;
  border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--terracotta));
  transition: height 0.35s ease;
}
.menu-card:hover::before { height: 100%; }
.menu-card:hover {
  box-shadow: 0 8px 32px var(--shadow-md);
  transform: translateY(-3px);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--olive);
  line-height: 1.3;
  flex: 1;
  padding-right: 1rem;
}
.menu-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}
.menu-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--olive-light);
  line-height: 1.6;
}
.menu-card-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 1px;
  background: rgba(201,168,76,0.1);
  color: var(--olive-light);
  border: 1px solid rgba(201,168,76,0.2);
}
.tag.vegan {
  background: rgba(100,150,80,0.08);
  border-color: rgba(100,150,80,0.2);
  color: #5a8c4a;
}
.tag.gf {
  background: rgba(196,113,74,0.08);
  border-color: rgba(196,113,74,0.2);
  color: var(--terracotta);
}

.menu-footer {
  text-align: center;
  margin-top: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--olive-light);
}

/* ════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════ */
.gallery {
  background: var(--cream);
  padding: 7rem 0 8rem;
}

.gallery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.gallery-header .section-label {
  justify-content: center;
}
.gallery-header .section-label::before { display: none; }
.gallery-header .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.gallery-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--olive-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:not(.tall) img {
  aspect-ratio: 4/3;
  height: auto;
}
.gallery-item.tall img {
  height: 100%;
  min-height: 500px;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,18,0.82) 0%, rgba(28,26,18,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,253,249,0.95);
  line-height: 1.4;
}
.gallery-caption-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}

/* Full-width gallery row */
.gallery-full-width {
  margin-top: 1.2rem;
}
.gallery-full-width .gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  aspect-ratio: unset;
}

/* ════════════════════════════════════════════
   SERVICES STRIP
   ════════════════════════════════════════════ */
.services-strip {
  background:
    linear-gradient(rgba(28,20,14,0.78), rgba(28,20,14,0.78)),
    url('../images/drinks.jpg') center 40% / cover no-repeat;
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-item {
  text-align: center;
  color: rgba(255,253,249,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.service-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.75;
}

/* ════════════════════════════════════════════
   HOURS
   ════════════════════════════════════════════ */
.hours {
  background: var(--white);
  padding: 7rem 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hours-visual {
  position: relative;
  text-align: center;
}

.hours-clock {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, #FFFDF9, var(--cream));
}
.hours-clock::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
}

.hours-clock-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hours-clock-icon {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hours-clock-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-light);
}
.hours-clock-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--olive);
  margin-top: 0.3rem;
}

.hours-quote {
  margin-top: 2rem;
  text-align: center;
}
.hours-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--olive-light);
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.7;
}

.hours-table { width: 100%; }
/* ════════════════════════════════════════════
   IMAGE LIGHTBOX / MODAL
   ════════════════════════════════════════════ */

/* Cursor hint on gallery items */
.gallery-item {
  cursor: zoom-in;
}

/* ─── LIGHTBOX OVERLAY ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

/* Background backdrop */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── LIGHTBOX CONTAINER ─── */
.lightbox-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 92vh;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.open .lightbox-container {
  transform: scale(1) translateY(0);
}

/* ─── IMAGE WRAPPER ─── */
.lightbox-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.15),
    0 32px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.4);
}

.lightbox-img {
  display: block;
  max-width: 88vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}

.lightbox-img.loading {
  opacity: 0;
}

/* Loading spinner */
.lightbox-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,26,18,0.5);
}

.lightbox-spinner::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── CAPTION ─── */
.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.2s;
}

.lightbox.open .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,253,249,0.9);
  margin-bottom: 0.2rem;
}

.lightbox-caption-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,253,249,0.45);
}

/* Counter */
.lightbox-counter {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.3);
  margin-top: 0.4rem;
}

/* ─── CLOSE BUTTON ─── */
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9010;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,253,249,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.open .lightbox-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
  transform: scale(1.1) rotate(90deg) !important;
}

/* ─── NAV ARROWS ─── */
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9010;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,253,249,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.open .lightbox-prev,
.lightbox.open .lightbox-next {
  opacity: 1;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev:active { transform: translateY(-50%) scale(0.95) translateX(-3px); }
.lightbox-next:active { transform: translateY(-50%) scale(0.95) translateX(3px); }

/* Hide arrows if only one image */
.lightbox.single .lightbox-prev,
.lightbox.single .lightbox-next {
  display: none;
}

/* ─── THUMBNAIL STRIP ─── */
.lightbox-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 88vw;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.3s;
}

.lightbox.open .lightbox-thumbs {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  opacity: 0.45;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumb:hover {
  opacity: 0.75;
  border-color: rgba(201,168,76,0.3);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
}

/* ─── SWIPE HINT (mobile) ─── */
.lightbox-swipe-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.2);
  display: none;
}

@media (max-width: 768px) {
  .lightbox-swipe-hint { display: block; }
  .lightbox-prev, .lightbox-next { display: none; }
  .lightbox-img { max-width: 95vw; max-height: 70vh; }
  .lightbox-close { top: 1rem; right: 1rem; width: 38px; height: 38px; }
  .lightbox-thumb { width: 42px; height: 42px; }
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-mid);
    font-weight: 400;

}
.hours-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--olive);
  font-weight: 500;
}
.hours-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block { margin-bottom: 2rem; }

.contact-info-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--olive);
  line-height: 1.6;
}
.contact-info-value a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--terracotta-dark); }

.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%),
    linear-gradient(145deg, #EDE0CC, #E0CFAF);
  border-radius: 3px;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  position: relative;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.9;
}

.contact-map-caption {
  margin-top: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--olive-light);
  text-align: center;
}

.reserve-form {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 1.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-light);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--olive);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  margin-top: 1.25rem;
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.9rem;
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,113,74,0.25);
}

#form-msg {
  display: none;
  margin-top: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--terracotta);
  text-align: center;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer {
  background: var(--olive);
  color: rgba(255,253,249,0.7);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════ */

/* Base state — all hidden before reveal */
[data-reveal] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-duration: 2.5s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Delays via attribute */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }
[data-reveal-delay="7"] { transition-delay: 0.7s; }
[data-reveal-delay="8"] { transition-delay: 0.8s; }

/* Custom duration */
[data-reveal-duration="fast"]   { transition-duration: 1.2s; }
[data-reveal-duration="slow"]   { transition-duration: 1.8s; }
[data-reveal-duration="slower"] { transition-duration: 2.5s; }

/* ─── DIRECTIONS ─── */

/* Fade Up (default) */
[data-reveal="up"],
.reveal:not([data-reveal]) {
  transform: translateY(50px);
}

/* Fade Down */
[data-reveal="down"] {
  transform: translateY(-50px);
}

/* Fade Left */
[data-reveal="left"] {
  transform: translateX(60px);
}

/* Fade Right */
[data-reveal="right"] {
  transform: translateX(-60px);
}

/* Fade In (no movement) */
[data-reveal="fade"] {
  transform: none;
}

/* Zoom In */
[data-reveal="zoom"] {
  transform: scale(0.88);
  filter: blur(4px);
}

/* Zoom Up */
[data-reveal="zoom-up"] {
  transform: scale(0.92) translateY(40px);
}

/* Flip Up */
[data-reveal="flip"] {
  transform: perspective(800px) rotateX(12deg) translateY(30px);
  transform-origin: bottom center;
}

/* Slide Up (more dramatic) */
[data-reveal="slide-up"] {
  transform: translateY(80px);
}

/* Blur In */
[data-reveal="blur"] {
  transform: translateY(20px);
  filter: blur(8px);
}

/* Scale Rotate */
[data-reveal="rotate"] {
  transform: scale(0.9) rotate(-3deg);
}

/* ─── REVEALED STATE ─── */
[data-reveal].revealed,
.reveal.revealed,
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ─── LEGACY SUPPORT ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── STAGGERED CHILDREN ─── */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal-stagger].revealed > *:nth-child(1)  { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2)  { transition-delay: 0.10s; }
[data-reveal-stagger].revealed > *:nth-child(3)  { transition-delay: 0.15s; }
[data-reveal-stagger].revealed > *:nth-child(4)  { transition-delay: 0.20s; }
[data-reveal-stagger].revealed > *:nth-child(5)  { transition-delay: 0.25s; }
[data-reveal-stagger].revealed > *:nth-child(6)  { transition-delay: 0.30s; }
[data-reveal-stagger].revealed > *:nth-child(7)  { transition-delay: 0.35s; }
[data-reveal-stagger].revealed > *:nth-child(8)  { transition-delay: 0.40s; }
[data-reveal-stagger].revealed > *:nth-child(9)  { transition-delay: 0.45s; }
[data-reveal-stagger].revealed > *:nth-child(10) { transition-delay: 0.50s; }

[data-reveal-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo-svg,
.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  display: block;
  max-width: 200px;
}
.footer-brand .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,253,249,0.6);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,253,249,0.65);
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.footer-contact-item a {
  color: rgba(255,253,249,0.6);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-contact-hours {
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact-hours-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.footer-contact-hours-sub {
  padding-left: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.footer-copy { color: rgba(255,253,249,0.35); }
.footer-established {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
}

/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual { display: none; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .menu-tabs {
    overflow-x: auto;
    max-width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: 260px; height: auto; }
  .gallery-caption { opacity: 1; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 7rem 1.5rem 5rem; }
  .page-hero .hero-inner { padding: 4rem 1.5rem 3rem; }
  .section-inner { padding: 0 1.25rem; }

  .about,
  .menu,
  .gallery,
  .hours,
  .contact { padding: 5rem 0; }

  .services-strip { padding: 3rem 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hours-clock { width: 180px; height: 180px; }

  .menu-tabs { gap: 0; }
  .menu-tab { padding: 0.5rem 0.9rem; font-size: 0.68rem; }
}