/*
 * DE NOVO — Italian Restaurant, Montclair NJ
 * Main Stylesheet
 *
 * FONT NOTE: 'Lattonya' specified in brand guidelines.
 * 'Cormorant Garamond' used as prototype substitute.
 * Replace with licensed Lattonya font for production.
 *
 * Typography: Montserrat (Primary) / Cormorant Garamond (Body)
 * Colors: Gold (#edc45a, #aa7b2b) / Black (#000) / Metallic Grey (#474543)
 */

/* ==========================================
   1. GOOGLE FONTS
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

/* ==========================================
   2. CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  /* Brand Colors */
  --gold-bright:    #edc45a;
  --gold-classic:   #aa7b2b;
  --gold-soft:      #e7bf5d;
  --gold-deep:      #9d6d21;
  --grey-metallic:  #474543;
  --black:          #000000;
  --black-warm:     #0c0b09;
  --black-card:     #0f0e0b;
  --black-section:  #121007;
  --white:          #ffffff;
  --white-85:       rgba(255, 255, 255, 0.85);
  --white-65:       rgba(255, 255, 255, 0.65);
  --white-40:       rgba(255, 255, 255, 0.40);
  --white-15:       rgba(255, 255, 255, 0.15);

  /* Gold RGBA */
  --gold-15:        rgba(237, 196, 90, 0.15);
  --gold-25:        rgba(237, 196, 90, 0.25);
  --gold-50:        rgba(237, 196, 90, 0.50);

  /* Typography */
  --font-primary:   'Montserrat', sans-serif;
  --font-secondary: 'Cormorant Garamond', serif;

  /* Layout */
  --nav-height:     88px;
  --nav-height-sm:  70px;
  --max-width:      1320px;
  --section-pad:    clamp(80px, 10vw, 140px);
  --section-pad-sm: clamp(60px, 8vw, 100px);

  /* Transitions */
  --ease-base:      0.3s ease;
  --ease-smooth:    0.55s cubic-bezier(0.25, 1, 0.5, 1);
  --ease-cinematic: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   3. RESET & BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ==========================================
   4. TYPOGRAPHY SYSTEM
   ========================================== */

/* Eyebrow / category labels */
.eyebrow {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
}

/* Display headline — hero usage */
.display-title {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* Section headline */
.section-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.section-title--gold {
  color: var(--gold-bright);
}

/* Subheading */
.section-subtitle {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--white-65);
  font-style: italic;
}

/* Body text */
.body-text {
  font-family: var(--font-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--white-85);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--white-85);
}

/* ==========================================
   5. UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold-bright); }
.text-muted  { color: var(--white-65); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }

.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* Gold rule decorative divider */
.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin: 0 auto;
}

.gold-rule--left {
  margin: 0;
}

/* Section header grouping */
.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header .eyebrow {
  margin-bottom: 1rem;
}

.section-header .gold-rule {
  margin-bottom: 1.5rem;
}

.section-header .section-subtitle {
  margin-top: 1.25rem;
  max-width: 600px;
}

.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   6. NAVIGATION
   ========================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--ease-smooth), border-color var(--ease-base),
              box-shadow var(--ease-base), height var(--ease-base);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.97);
  border-bottom-color: rgba(237, 196, 90, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  height: 72px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1;
}

.nav-logo__mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  transition: background-color var(--ease-base);
}

.nav-logo__mark:hover {
  background-color: var(--gold-bright);
  color: var(--black);
}

.nav-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo__name {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo__tagline {
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  font-style: italic;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-85);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--ease-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA Button */
.nav-cta {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  padding: 10px 22px;
  transition: background-color var(--ease-base), color var(--ease-base);
}

.nav-cta:hover {
  background-color: var(--gold-bright);
  color: var(--black);
}

/* Hamburger — Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--ease-smooth), opacity var(--ease-base), width var(--ease-base);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-smooth);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.nav-mobile__links a {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--ease-base);
}

.nav-mobile__links a:hover {
  color: var(--gold-bright);
}

.nav-mobile__cta {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  padding: 14px 36px;
  transition: background-color var(--ease-base), color var(--ease-base);
}

.nav-mobile__cta:hover {
  background-color: var(--gold-bright);
  color: var(--black);
}

/* ==========================================
   7. BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition: all var(--ease-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: translateX(-101%);
  transition: transform var(--ease-smooth);
  z-index: 0;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background-color: var(--gold-bright);
  color: var(--black);
  border: 1px solid var(--gold-bright);
}

.btn--primary::before {
  background: var(--gold-deep);
}

.btn--primary:hover {
  color: var(--white);
}

.btn--primary:hover::before {
  transform: translateX(0);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white-40);
}

.btn--outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn--gold-outline {
  background-color: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold-bright);
}

.btn--gold-outline::before {
  background: var(--gold-bright);
}

.btn--gold-outline:hover {
  color: var(--black);
}

.btn--gold-outline:hover::before {
  transform: translateX(0);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Arrow icon in buttons */
.btn .arrow {
  font-size: 1rem;
  transition: transform var(--ease-base);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================
   8. HERO — HOMEPAGE
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease;
  will-change: transform;
}

.hero--loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.7) 70%,
    rgba(0,0,0,0.9) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1000px;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--ease-cinematic) 0.3s, transform var(--ease-cinematic) 0.3s;
}

.hero__title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--ease-cinematic) 0.5s, transform var(--ease-cinematic) 0.5s;
}

.hero__subtitle {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--white-85);
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--ease-cinematic) 0.7s, transform var(--ease-cinematic) 0.7s;
}

.hero__divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin: 2rem auto;
  opacity: 0;
  transition: opacity var(--ease-cinematic) 0.9s;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--ease-cinematic) 1.1s, transform var(--ease-cinematic) 1.1s;
}

.hero--loaded .hero__eyebrow,
.hero--loaded .hero__title,
.hero--loaded .hero__subtitle,
.hero--loaded .hero__divider,
.hero--loaded .hero__cta {
  opacity: 1;
  transform: none;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--ease-cinematic) 1.4s;
}

.hero--loaded .hero__scroll {
  opacity: 1;
}

.hero__scroll span {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-65);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ==========================================
   9. PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  position: relative;
  height: clamp(380px, 55vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.85) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.page-hero__title {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.page-hero__subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--white-65);
  margin-top: 1rem;
}

.page-hero__breadcrumb {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

/* ==========================================
   10. SECTIONS — LAYOUT SYSTEM
   ========================================== */
.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background-color: var(--black);
}

.section--warm {
  background-color: var(--black-warm);
}

.section--card {
  background-color: var(--black-section);
}

.section--grey {
  background-color: var(--grey-metallic);
}

/* Split section — 50/50 image + text */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.section-split--reverse {
  direction: rtl;
}

.section-split--reverse > * {
  direction: ltr;
}

.section-split__media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.section-split__media img,
.section-split__media .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.section-split__media:hover img,
.section-split__media:hover .img-placeholder {
  transform: scale(1.04);
}

.section-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px);
}

/* ==========================================
   11. IMAGE PLACEHOLDER SYSTEM
   ========================================== */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1712 0%, #0d0c09 50%, #1c180f 100%);
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(237,196,90,0.08) 0%, transparent 70%);
}

/* Unsplash image wrapper */
.img-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-smooth);
}

.img-frame:hover img {
  transform: scale(1.05);
}

/* ==========================================
   12. CARDS
   ========================================== */
.card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid transparent;
  transition: border-color var(--ease-base), transform var(--ease-smooth),
              box-shadow var(--ease-smooth);
  overflow: hidden;
}

.card:hover {
  border-top-color: var(--gold-bright);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(237,196,90,0.08);
}

.card__media {
  height: 260px;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__body {
  padding: 2rem 1.75rem;
}

.card__eyebrow {
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card__text {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white-65);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 1.5rem;
  transition: gap var(--ease-base);
}

.card__link:hover {
  gap: 14px;
}

/* ==========================================
   13. GRID SYSTEMS
   ========================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ==========================================
   14. HOME INTRO SECTION
   ========================================== */
.home-intro {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.home-intro__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
}

.home-intro__text {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.85;
  color: var(--white-85);
  font-style: italic;
}

.home-intro__detail {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 2rem;
}

/* ==========================================
   15. MENU COMPONENTS
   ========================================== */
.menu-section {
  margin-bottom: clamp(50px, 8vw, 90px);
}

.menu-category {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.menu-category__label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
}

.menu-category__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(237,196,90,0.4), transparent);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--ease-base);
}

.menu-item:hover {
  border-bottom-color: rgba(237,196,90,0.2);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__name {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.menu-item__desc {
  font-family: var(--font-secondary);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--white-65);
  line-height: 1.6;
}

.menu-item__price {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Menu nav tabs */
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-65);
  padding: 1rem 1.75rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--ease-base), border-color var(--ease-base);
  cursor: pointer;
  white-space: nowrap;
  background: none;
}

.menu-tab:hover,
.menu-tab.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

/* ==========================================
   16. GALLERY
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-card);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--ease-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 2;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--ease-base), transform var(--ease-base);
}

.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Tall gallery items */
.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* Gallery aspect ratios */
.gallery-item:not(.gallery-item--tall) {
  aspect-ratio: 4/3;
}

.gallery-item--tall {
  /* height determined by 2 rows */
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-65);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  background: none;
  cursor: pointer;
  transition: all var(--ease-base);
}

.gallery-filter:hover,
.gallery-filter.active {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-smooth);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(237,196,90,0.1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--white);
  transition: border-color var(--ease-base), color var(--ease-base);
}

.lightbox__close:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--white);
  transition: all var(--ease-base);
}

.lightbox__nav:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ==========================================
   17. EVENTS
   ========================================== */
.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color var(--ease-base);
}

.event-card:last-child {
  border-bottom: none;
}

.event-card:hover {
  border-bottom-color: rgba(237,196,90,0.2);
}

.event-card__date {
  text-align: center;
  flex-shrink: 0;
}

.event-card__day {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-bright);
}

.event-card__month {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-65);
}

.event-card__info {}

.event-card__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.event-card__meta {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.event-card__desc {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-65);
  margin-bottom: 1rem;
}

/* Featured event grid cards */
.event-feat-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth);
}

.event-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(237,196,90,0.07);
}

.event-feat-card__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.event-feat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.event-feat-card:hover .event-feat-card__img img {
  transform: scale(1.06);
}

.event-feat-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-bright);
  color: var(--black);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.event-feat-card__body {
  padding: 1.75rem;
  border-top: 2px solid var(--gold-bright);
}

/* ==========================================
   18. CONTACT & FORMS
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 2.5rem;
}

.contact-info__label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  color: var(--white-85);
  line-height: 1.7;
}

.contact-info__value a {
  color: var(--white-85);
  transition: color var(--ease-base);
}

.contact-info__value a:hover {
  color: var(--gold-bright);
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-65);
  margin-bottom: 0.65rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color var(--ease-base), background-color var(--ease-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold-bright);
  background: rgba(255,255,255,0.06);
}

.form-control::placeholder {
  color: var(--white-40);
}

.form-control--textarea {
  resize: vertical;
  min-height: 130px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Select */
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23edc45a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control option {
  background: var(--black);
}

/* Hours table */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-row__day { color: var(--white-65); }
.hours-row__time { color: var(--white); }
.hours-row--today .hours-row__day,
.hours-row--today .hours-row__time { color: var(--gold-bright); }

/* Map */
.map-container {
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(237,196,90,0.12);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(70%) invert(90%) contrast(90%);
  mix-blend-mode: luminosity;
  opacity: 0.8;
}

/* ==========================================
   19. RESERVATIONS
   ========================================== */
.reservation-embed {
  background: var(--black-card);
  border: 1px solid rgba(237,196,90,0.1);
  padding: 3rem;
  margin-bottom: 3rem;
}

.reservation-embed iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

.reservation-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.reservation-info__item {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.reservation-info__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold-bright);
}

.reservation-info__title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reservation-info__text {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--white-65);
  line-height: 1.65;
}

/* ==========================================
   20. CTA BANNER
   ========================================== */
.cta-banner {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--white-65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ==========================================
   21. STATS / NUMBERS
   ========================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-65);
}

/* ==========================================
   22. TEAM CARDS
   ========================================== */
.team-card {
  text-align: center;
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(237,196,90,0.2);
  transition: border-color var(--ease-base);
}

.team-card:hover .team-card__photo {
  border-color: var(--gold-bright);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

/* ==========================================
   23. TIMELINE
   ========================================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-bright), rgba(237,196,90,0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.4rem;
  top: 0.25rem;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
}

.timeline-item__date {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.timeline-item__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.timeline-item__text {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--white-65);
  line-height: 1.7;
}

/* ==========================================
   24. FOOTER
   ========================================== */
.site-footer {
  background: var(--black-warm);
  border-top: 1px solid rgba(237,196,90,0.1);
}

.footer-main {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand__name {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand__tagline {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.footer-brand__desc {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--white-65);
  max-width: 280px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social__link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white-65);
  transition: all var(--ease-base);
  text-decoration: none;
}

.footer-social__link:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.footer-col__title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(237,196,90,0.15);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col__links a {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--white-65);
  transition: color var(--ease-base);
}

.footer-col__links a:hover {
  color: var(--gold-bright);
}

.footer-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--white-65);
}

.footer-hours__day { }
.footer-hours__time { color: var(--white-85); }

.footer-contact__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-contact__label {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.2rem;
}

.footer-contact__value {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--white-65);
}

.footer-contact__value a {
  color: var(--white-65);
  transition: color var(--ease-base);
}

.footer-contact__value a:hover {
  color: var(--gold-bright);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__copy,
.footer-bottom__links {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  color: var(--white-40);
  transition: color var(--ease-base);
}

.footer-bottom__links a:hover {
  color: var(--gold-bright);
}

/* ==========================================
   25. SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.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; }
.reveal--delay-5 { transition-delay: 0.5s; }

.reveal--left {
  transform: translateX(-32px);
}

.reveal--left.is-visible {
  transform: none;
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--right.is-visible {
  transform: none;
}

/* ==========================================
   26. THANK YOU PAGE
   ========================================== */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 20px;
  background: var(--black);
}

.thankyou__icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.5rem;
  color: var(--gold-bright);
}

/* ==========================================
   27. 404 PAGE
   ========================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 20px;
  background: var(--black);
}

.error-page__number {
  font-family: var(--font-primary);
  font-weight: 100;
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.85;
  color: rgba(237,196,90,0.1);
  margin-bottom: 0;
  letter-spacing: -0.05em;
}

/* ==========================================
   28. DECORATIVE ELEMENTS
   ========================================== */
.diamond-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.diamond-divider span {
  font-size: 0.4rem;
  color: var(--gold-bright);
}

.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}

.diamond-divider::after {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

/* Horizontal rule */
hr.hr-gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(237,196,90,0.4) 40%, rgba(237,196,90,0.4) 60%, transparent 100%);
  margin: 3rem 0;
}

/* ==========================================
   29. RESPONSIVE — TABLET (max 1024px)
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --nav-height: var(--nav-height-sm);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .reservation-info {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 0;
  }
}

/* ==========================================
   30. RESPONSIVE — MOBILE (max 768px)
   ========================================== */
@media (max-width: 768px) {
  .section-split {
    grid-template-columns: 1fr;
  }

  .section-split--reverse {
    direction: ltr;
  }

  .section-split__media {
    min-height: 320px;
  }

  .section-split__text {
    padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 40px);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }

  .event-card__day {
    font-size: 2.2rem;
  }

  .reservation-embed {
    padding: 1.5rem;
  }

  .map-container {
    height: 300px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-logo__tagline {
    display: none;
  }
}

/* ==========================================
   31. RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================== */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-tab {
    padding: 0.75rem 1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}
