@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,700;1,6..96,400;1,6..96,700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Cinzel:wght@400;600&display=swap');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  /* Scroll animation palette */
  --film-dark: #0a0705;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.35);

  /* Site luxury palette */
  --ink:        #0f0a06;
  --mahogany:   #1c100a;
  --walnut:     #2a1a0f;
  --leather:    #3d2410;
  --amber:      #b8722a;
  --gold-warm:  #c9922a;
  --gold-bright:#e8b84b;
  --ivory:      #f5ead8;
  --ivory-dim:  #d4c4a8;
  --cream:      #ede0c8;
  --parchment:  #f9f3e8;
  --rule:       rgba(201,146,42,0.3);
  --rule-bright:rgba(232,184,75,0.6);
}

html { scroll-behavior: auto; }

body {
  background: var(--film-dark);
  color: var(--ivory);
  font-family: 'EB Garamond', serif;
  overflow-x: hidden;
  cursor: default;
}

/* ══════════════════════════════════════
   SCROLL ANIMATION
══════════════════════════════════════ */
#scroll-driver { height: 200vh; position: relative; }

#sticky-stage {
  position: sticky; top: 0; left: 0;
  width: 100vw; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

canvas#film { display: block; max-width: 100%; max-height: 100%; }

#vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(5,3,2,.65) 100%);
}

#grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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;
}

#brand {
  position: absolute; top: 2.5rem; left: 50%; transform: translateX(-50%);
  text-align: center; pointer-events: none;
  opacity: 0; animation: brand-in 1.5s ease .6s forwards;
}
#brand h1 {
  font-family: 'Cinzel', serif; font-size: clamp(.85rem,1.8vw,1.2rem);
  font-weight: 600; letter-spacing: .6em; color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(232,184,75,.5);
}
#brand .tagline {
  font-family: 'EB Garamond', serif; font-size: .7rem; font-style: italic;
  letter-spacing: .25em; color: rgba(245,234,216,.35); margin-top: .4rem;
}
@keyframes brand-in {
  from{opacity:0;transform:translateX(-50%) translateY(-8px)}
  to{opacity:1;transform:translateX(-50%) translateY(0)}
}

#hud {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; padding-bottom: 2.8rem;
}
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 1; transition: opacity .8s ease; }
.scroll-cue.hidden { opacity: 0; }
.scroll-cue span {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold); opacity: .7;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: arrow-pulse 2.4s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%,100%{opacity:.3;transform:translateY(0)}
  50%{opacity:.9;transform:translateY(5px)}
}

#progress-bar {
  position: absolute; bottom: 0; left: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
  width: 0%; pointer-events: none;
}
#frame-counter { display: none; }

/* ══════════════════════════════════════
   LOADER
══════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--film-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transition: opacity 1s ease, visibility 1s ease;
}
#loader.done { opacity: 0; visibility: hidden; }

.loader-emblem {
  width: 64px; height: 64px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.loader-emblem::before,.loader-emblem::after {
  content: '';  position: absolute;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  animation: ring-spin 3s linear infinite;
}
.loader-emblem::before { width: 64px; height: 64px; }
.loader-emblem::after  { width: 48px; height: 48px; animation-direction: reverse; animation-duration: 2s; }
.loader-emblem svg { position: relative; z-index: 1; }
@keyframes ring-spin { to{transform:rotate(360deg)} }

.loader-title {
  font-family: 'Cinzel', serif; font-size: clamp(1.2rem,3.5vw,2rem);
  letter-spacing: .7em; color: var(--gold-bright);
  text-shadow: 0 0 50px rgba(232,184,75,.4);
}
.loader-rule {
  width: min(200px,50vw); height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.loader-bar-track {
  width: min(240px,55vw); height: 1px;
  background: rgba(201,168,76,.12); position: relative; overflow: hidden;
}
.loader-bar-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
  transition: width .12s linear;
}
.loader-pct {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .5em;
  color: rgba(201,168,76,.5); text-transform: uppercase;
}

/* ══════════════════════════════════════
   BRIDGE
══════════════════════════════════════ */
.film-to-site {
  height: 160px;
  background: linear-gradient(to bottom, #0a0705, var(--mahogany));
  position: relative;
}
.film-to-site::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
}

/* ══════════════════════════════════════
   SITE — BASE
══════════════════════════════════════ */
#site {
  background: var(--mahogany);
  color: var(--ivory);
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  position: relative;
}

/* Subtle linen texture overlay on entire site */
#site::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

#site > * { position: relative; z-index: 1; }

.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 1.5rem;
}
@media(min-width:1024px){.container{padding:0 3rem;}}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── DECORATIVE ELEMENTS ── */
.gold-rule {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 0 auto;
}
.gold-rule::before,.gold-rule::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--rule-bright));
}
.gold-rule::after {
  background: linear-gradient(to left, transparent, var(--rule-bright));
}
.gold-rule-diamond {
  width: 6px; height: 6px;
  background: var(--gold-bright); transform: rotate(45deg);
  flex-shrink: 0;
}

.section-numeral {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .5em;
  text-transform: uppercase; color: var(--amber); opacity: .7;
  display: block; margin-bottom: .5rem;
}
.section-title-luxury {
  font-family: 'Bodoni Moda', serif; font-size: clamp(2.2rem,5vw,4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: .02em;
  color: var(--ivory);
}
.section-title-luxury em {
  font-style: italic; color: var(--gold-bright);
}
.section-sub {
  font-family: 'EB Garamond', serif; font-size: 1.1rem; font-style: italic;
  color: var(--ivory-dim); line-height: 1.8; max-width: 560px;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: all .6s ease;
  /* Hidden until scroll animation completes */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}
#navbar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#navbar.scrolled {
  background: rgba(15,10,6,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 2rem;
}
@media(min-width:1024px){.nav-inner{padding:0 3rem;}}

.nav-logo {
  font-family: 'Cinzel', serif; font-size: clamp(1rem,1.8vw,1.3rem);
  font-weight: 600; letter-spacing: .4em; color: var(--gold-bright);
  background: none; border: none; cursor: pointer;
  text-shadow: 0 0 30px rgba(232,184,75,.3);
  transition: text-shadow .3s;
}
.nav-logo:hover { text-shadow: 0 0 40px rgba(232,184,75,.6); }

.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media(min-width:768px){.nav-links{display:flex;}}

.nav-link {
  font-family: 'Cinzel', serif; font-size: .58rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ivory-dim);
  background: none; border: none; cursor: pointer; transition: color .3s;
  position: relative; padding-bottom: .2rem;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold-bright); transition: width .4s ease;
}
.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after { width: 100%; }

.nav-reserve {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .25em;
  text-transform: uppercase; padding: .6rem 1.6rem;
  border: 1px solid var(--gold-bright); color: var(--gold-bright);
  background: transparent; cursor: pointer;
  transition: all .4s ease;
}
.nav-reserve:hover {
  background: var(--gold-bright); color: var(--ink);
}

.nav-hamburger { display: flex; background: none; border: none; color: var(--ivory); padding: .5rem; cursor: pointer; }
@media(min-width:768px){.nav-hamburger{display:none;}}

.mobile-menu {
  display: none; flex-direction: column; gap: .5rem;
  background: rgba(15,10,6,.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--rule);
  padding: 2rem; 
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ivory-dim);
  background: none; border: none; cursor: pointer; text-align: left;
  padding: .7rem 0; border-bottom: 1px solid rgba(201,146,42,.1);
  transition: color .3s;
}
.mobile-link:hover { color: var(--gold-bright); }
.mobile-reserve {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .25em;
  text-transform: uppercase; padding: .9rem;
  border: 1px solid var(--gold-bright); color: var(--gold-bright);
  background: transparent; cursor: pointer; margin-top: .75rem; text-align: center;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,7,5,.75) 0%,
    rgba(10,7,5,.45) 40%,
    rgba(28,16,10,.7) 75%,
    var(--mahogany) 100%
  );
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 1.5rem;
  max-width: 820px;
}
.hero-pre {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .6em;
  text-transform: uppercase; color: var(--amber); opacity: .9; margin-bottom: 1.8rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-pre::before,.hero-pre::after {
  content: ''; width: 40px; height: 1px; background: var(--amber); opacity: .6;
}
.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(4rem,14vw,11rem);
  font-weight: 400; letter-spacing: .08em; line-height: .9;
  color: var(--ivory);
  text-shadow: 0 4px 60px rgba(10,7,5,.8);
  margin-bottom: 1.5rem;
}
.hero-title span { display: block; font-size: .38em; font-style: italic; letter-spacing: .2em; color: var(--gold-bright); margin-top: .3rem; }
.hero-tagline {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: clamp(1rem,2vw,1.3rem); color: var(--ivory-dim);
  letter-spacing: .04em; line-height: 1.7;
  max-width: 500px; margin: 0 auto 3rem;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media(min-width:480px){.hero-actions{flex-direction:row;justify-content:center;}}

.btn-gold {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; padding: 1rem 2.5rem;
  background: var(--gold-bright); color: var(--ink);
  border: none; cursor: pointer; transition: all .4s ease;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15); transform: translateX(-100%) skewX(-15deg);
  transition: transform .4s ease;
}
.btn-gold:hover::before { transform: translateX(110%) skewX(-15deg); }
.btn-gold:hover { box-shadow: 0 0 40px rgba(232,184,75,.4); }

.btn-ghost {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; padding: 1rem 2.5rem;
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(245,234,216,.3); cursor: pointer; transition: all .4s ease;
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  background: none; border: none; cursor: pointer; color: var(--ivory-dim);
  opacity: .6; transition: opacity .3s; animation: hero-bob 3s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span { font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .4em; text-transform: uppercase; }
@keyframes hero-bob{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section {
  padding: 7rem 0;
  position: relative;
}
@media(min-width:768px){.section{padding:9rem 0;}}

.section-header { text-align: center; margin-bottom: 5rem; }
.section-header .gold-rule { margin-top: 2rem; max-width: 480px; }

/* ══════════════════════════════════════
   SIGNATURE (feature intro)
══════════════════════════════════════ */
#signature {
  background: var(--mahogany);
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.signature-grid {
  display: grid; grid-template-columns: 1fr;
  max-width: 1000px; margin: 0 auto;
}
@media(min-width:768px){ .signature-grid{ grid-template-columns: 1fr 1px 1fr 1px 1fr; } }
.signature-divider {
  display: none;
  background: linear-gradient(to bottom, transparent, var(--rule-bright), transparent);
  width: 1px; align-self: stretch; min-height: 160px;
}
@media(min-width:768px){ .signature-divider{ display: block; } }
.signature-block {
  text-align: center; padding: 3rem 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.signature-icon { color: var(--gold-bright); opacity: .75; }
.signature-label {
  font-family: 'Cinzel', serif; font-size: .58rem; letter-spacing: .45em;
  text-transform: uppercase; color: var(--amber);
}
.signature-text {
  font-family: 'EB Garamond', serif; font-size: 1rem;
  color: var(--ivory-dim); line-height: 1.85;
  width: 100%; max-width: 260px;
  word-break: normal; overflow-wrap: normal; hyphens: none;
}

/* ══════════════════════════════════════
   EVENTS
══════════════════════════════════════ */
#events { background: var(--ink); }
#events::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,114,42,.08) 0%, transparent 60%);
}

.events-list { display: flex; flex-direction: column; gap: 0; }
.event-item {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0; gap: 1.5rem;
  transition: background .3s;
  cursor: default;
}
@media(min-width:768px){
  .event-item{
    grid-template-columns: 120px 1fr auto;
    align-items: center; gap: 3rem;
  }
}
.event-item:last-child { border-bottom: 1px solid var(--rule); }
.event-item:hover { background: rgba(184,114,42,.04); }

.event-date-block { text-align: center; }
.event-day {
  font-family: 'Bodoni Moda', serif; font-size: 2.8rem; font-weight: 400;
  color: var(--gold-bright); line-height: 1;
}
.event-month {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--amber); margin-top: .2rem;
}
.event-info { }
.event-cat-tag {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .5rem;
}
.event-title {
  font-family: 'Bodoni Moda', serif; font-size: clamp(1.3rem,2.5vw,1.8rem);
  font-weight: 400; color: var(--ivory); margin-bottom: .5rem; line-height: 1.2;
}
.event-artist {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: .95rem; color: var(--gold-bright); margin-bottom: .6rem;
}
.event-desc {
  font-size: .95rem; color: var(--ivory-dim); line-height: 1.7;
  max-width: 560px;
}
.event-meta {
  text-align: right; flex-shrink: 0;
}
.event-price-big {
  font-family: 'Bodoni Moda', serif; font-size: 1.6rem; font-weight: 400;
  color: var(--gold-bright); white-space: nowrap;
}
.event-price-label {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ivory-dim); margin-top: .2rem;
}
.event-time-tag {
  font-family: 'EB Garamond', serif; font-size: .85rem; font-style: italic;
  color: var(--ivory-dim); margin-top: .5rem;
}

/* ══════════════════════════════════════
   MENU
══════════════════════════════════════ */
#menu { background: var(--mahogany); }
#menu::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(184,114,42,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(184,114,42,.05) 0%, transparent 50%);
}

.menu-category-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem; margin-bottom: 4rem;
  border-bottom: 1px solid var(--rule); padding-bottom: 2rem;
}
.menu-cat-btn {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .3em;
  text-transform: uppercase; padding: .5rem 1.2rem;
  background: none; border: 1px solid transparent;
  color: var(--ivory-dim); cursor: pointer; transition: all .3s;
}
.menu-cat-btn:hover { color: var(--ivory); border-color: var(--rule); }
.menu-cat-btn.active {
  color: var(--gold-bright); border-color: var(--gold-bright);
  background: rgba(232,184,75,.06);
}

.menu-section-title {
  font-family: 'Bodoni Moda', serif; font-size: clamp(1.5rem,3vw,2.5rem);
  font-weight: 400; font-style: italic; color: var(--gold-bright);
  text-align: center; margin-bottom: .75rem;
}
.menu-section-desc {
  text-align: center; font-style: italic; color: var(--ivory-dim);
  font-size: .95rem; margin-bottom: 3rem;
}

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media(min-width:768px){.menu-grid{grid-template-columns:1fr 1fr;}}

.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem; padding: 1.6rem 0;
  border-bottom: 1px solid rgba(201,146,42,.12);
}
.menu-item:nth-child(odd) { padding-right: 2rem; }
.menu-item:nth-child(even) { padding-left: 2rem; }
@media(max-width:767px){ .menu-item:nth-child(n){ padding: 1.4rem 0;} }

.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: 'Bodoni Moda', serif; font-size: 1.1rem; font-weight: 400;
  color: var(--ivory); margin-bottom: .3rem; line-height: 1.2;
}
.menu-item-badge {
  font-family: 'Cinzel', serif; font-size: .45rem; letter-spacing: .2em;
  text-transform: uppercase; padding: .15rem .5rem;
  border: 1px solid var(--gold-bright); color: var(--gold-bright);
  margin-left: .6rem; vertical-align: middle;
}
.menu-item-desc { font-size: .9rem; font-style: italic; color: var(--ivory-dim); line-height: 1.6; }
.menu-item-price {
  font-family: 'Bodoni Moda', serif; font-size: 1.1rem; font-weight: 400;
  color: var(--gold-bright); flex-shrink: 0; white-space: nowrap;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel-inner { max-width: 900px; margin: 0 auto; }

/* ══════════════════════════════════════
   GALLERY — Editorial masonry feel
══════════════════════════════════════ */
#gallery { background: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: .75rem;
}
@media(min-width:768px){
  .gallery-grid{ gap: 1rem; grid-template-columns: repeat(12, 1fr); }
  .gallery-item:nth-child(1){ grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(2){ grid-column: span 7; }
  .gallery-item:nth-child(3){ grid-column: span 4; }
  .gallery-item:nth-child(4){ grid-column: span 3; }
  .gallery-item:nth-child(5){ grid-column: span 5; }
  .gallery-item:nth-child(6){ grid-column: span 4; grid-row: span 1; }
}

.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--walnut);
}
@media(min-width:768px){
  .gallery-item:nth-child(1){ aspect-ratio: unset; min-height: 520px; }
  .gallery-item:nth-child(2){ aspect-ratio: 16/9; }
  .gallery-item:nth-child(3),.gallery-item:nth-child(4){ aspect-ratio: 4/3; }
  .gallery-item:nth-child(5){ aspect-ratio: 3/2; }
  .gallery-item:nth-child(6){ aspect-ratio: 5/3; }
}

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .6s ease;
  filter: brightness(.85) saturate(.9);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,5,.85) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold-bright);
}

/* Gold frame border on hover */
.gallery-item::after {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid transparent; transition: border-color .4s;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(232,184,75,.3); }

.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(5,3,2,.96); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 88vh; object-fit: contain;
  transform: scale(.95); transition: transform .4s;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: 1px solid rgba(245,234,216,.2); color: var(--ivory-dim);
  width: 42px; height: 42px; font-size: 1rem; cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about { background: var(--mahogany); }

.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start;
}
@media(min-width:1024px){ .about-grid{ grid-template-columns: 1fr 1fr; } }

.about-img-frame {
  position: relative; padding-bottom: 4rem;
}
.about-img-main {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,16,10,.6) 100%);
}
/* Gold corner brackets */
.about-img-main::after {
  content: ''; position: absolute; inset: 12px; z-index: 2;
  border: 1px solid rgba(232,184,75,.2); pointer-events: none;
}
.about-img-accent {
  position: absolute; bottom: 0; right: -1.5rem;
  width: 55%; aspect-ratio: 4/3; overflow: hidden;
  border: 3px solid var(--mahogany);
  box-shadow: 0 8px 40px rgba(5,3,2,.6);
}
@media(max-width:767px){.about-img-accent{right:0;}}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-text-block { padding-top: 1.5rem; }
.about-lead {
  font-family: 'Bodoni Moda', serif; font-size: clamp(1.2rem,2vw,1.7rem);
  font-style: italic; color: var(--gold-bright); line-height: 1.4;
  margin-bottom: 2rem;
}
.about-body {
  font-size: 1.05rem; color: var(--ivory-dim); line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin: 3rem 0;
  border-top: 1px solid var(--rule); padding-top: 2.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bodoni Moda', serif; font-size: clamp(2rem,4vw,3rem);
  font-weight: 400; color: var(--gold-bright); line-height: 1;
}
.stat-label {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--ivory-dim); margin-top: .5rem;
}

/* ══════════════════════════════════════
   RESERVATIONS
══════════════════════════════════════ */
#reservations {
  background: var(--ink);
  background-image: radial-gradient(ellipse at 50% 100%, rgba(184,114,42,.1) 0%, transparent 60%);
}

.res-wrapper { max-width: 860px; margin: 0 auto; }

.table-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-bottom: 3.5rem;
  background: var(--rule);
}
@media(max-width:600px){.table-cards{grid-template-columns:1fr;}}

.table-card {
  background: var(--ink); padding: 1.8rem;
  cursor: pointer; transition: background .3s;
  text-align: center;
}
.table-card:hover { background: rgba(184,114,42,.06); }
.table-card.selected { background: rgba(232,184,75,.08); }
.table-card-name {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ivory-dim); margin-bottom: .5rem;
  transition: color .3s;
}
.table-card.selected .table-card-name { color: var(--gold-bright); }
.table-card-price {
  font-family: 'Bodoni Moda', serif; font-size: 1.4rem; font-weight: 400;
  color: var(--gold-bright); margin-bottom: .5rem;
}
.table-card-desc {
  font-size: .85rem; font-style: italic; color: var(--ivory-dim); line-height: 1.5;
}
.table-card-indicator {
  width: 20px; height: 1px; background: transparent;
  margin: 1rem auto 0; transition: background .3s;
}
.table-card.selected .table-card-indicator { background: var(--gold-bright); }

.res-form-paper {
  border: 1px solid var(--rule);
  padding: 3rem 2.5rem;
  position: relative;
}
.res-form-paper::before {
  content: ''; position: absolute;
  top: 1rem; left: 1rem; right: 1rem; bottom: 1rem;
  border: 1px solid rgba(201,146,42,.08);
  pointer-events: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media(max-width:560px){.form-row{grid-template-columns:1fr;}}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-family: 'Cinzel', serif; font-size: .55rem;
  letter-spacing: .35em; text-transform: uppercase; color: var(--amber);
  margin-bottom: .6rem;
}
.form-input {
  width: 100%; padding: .75rem 0; 
  background: transparent; border: none; border-bottom: 1px solid var(--rule);
  color: var(--ivory); font-family: 'EB Garamond', serif; font-size: 1rem;
  transition: border-color .3s; outline: none;
}
.form-input:focus { border-bottom-color: var(--gold-bright); }
.form-input::placeholder { color: rgba(212,196,168,.3); font-style: italic; }
textarea.form-input { resize: none; padding-top: .5rem; }
input[type=date].form-input { color-scheme: dark; }

.party-slider-wrap { display: flex; align-items: center; gap: 1.5rem; }
.party-slider-wrap input[type=range] { flex: 1; accent-color: var(--gold-bright); }
.party-num {
  font-family: 'Bodoni Moda', serif; font-size: 1.6rem; color: var(--gold-bright);
  width: 2.5rem; text-align: center;
}

.form-submit {
  width: 100%; padding: 1.1rem;
  background: var(--gold-bright); color: var(--ink);
  border: none; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .35em;
  text-transform: uppercase; transition: all .4s; position: relative; overflow: hidden;
  margin-top: .5rem;
}
.form-submit::before {
  content:''; position:absolute; inset:0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-15deg); transition: transform .4s;
}
.form-submit:hover::before { transform: translateX(110%) skewX(-15deg); }
.form-submit:hover { box-shadow: 0 0 40px rgba(232,184,75,.3); }

.res-success {
  text-align: center; padding: 5rem 2rem;
  border: 1px solid var(--rule); display: none; max-width: 540px; margin: 0 auto;
}
.res-success.show { display: block; }
.res-success-icon { color: var(--gold-bright); margin-bottom: 1.5rem; }
.res-success-title {
  font-family: 'Bodoni Moda', serif; font-size: 2rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 1rem;
}
.res-success-msg { font-style: italic; color: var(--ivory-dim); line-height: 1.7; margin-bottom: 2rem; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { background: var(--mahogany); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media(min-width:1024px){.contact-grid{grid-template-columns:1fr 1fr;}}

.contact-details { }
.contact-intro {
  font-family: 'Bodoni Moda', serif; font-size: 1.3rem; font-style: italic;
  color: var(--gold-bright); line-height: 1.6; margin-bottom: 3rem;
}
.contact-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 1px solid rgba(201,146,42,.12);
}
.contact-item:first-of-type { border-top: 1px solid rgba(201,146,42,.12); }
.contact-icon { color: var(--amber); flex-shrink: 0; margin-top: .15rem; }
.contact-label {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .3rem;
}
.contact-value { font-size: 1rem; color: var(--ivory); margin-bottom: .15rem; }
.contact-detail { font-size: .85rem; font-style: italic; color: var(--ivory-dim); }

.socials-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.socials-label {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ivory-dim);
}
.social-btn {
  width: 42px; height: 42px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-dim); cursor: pointer; background: none; transition: all .3s;
}
.social-btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.map-frame {
  border: 1px solid var(--rule); padding: .75rem;
  height: 420px;
}
.map-inner {
  width: 100%; height: 100%;
  background: var(--walnut); display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 1.2rem;
  position: relative; overflow: hidden;
}
.map-inner::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(201,146,42,.15);
}
.map-pin { color: var(--gold-bright); opacity: .6; }
.map-address {
  text-align: center; font-family: 'EB Garamond', serif; font-style: italic;
  color: var(--ivory-dim); font-size: .95rem; line-height: 1.7; position: relative;
}
.map-name {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: .5rem;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  padding: 5rem 0 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
@media(min-width:768px){.footer-top{grid-template-columns:2fr 1fr 1fr;}}

.footer-brand-logo {
  font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 600;
  letter-spacing: .4em; color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(232,184,75,.25); margin-bottom: 1rem;
}
.footer-brand-tagline {
  font-style: italic; color: var(--ivory-dim); font-size: .95rem;
  line-height: 1.7; max-width: 300px; margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: .75rem; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-dim); cursor: pointer; background: none; transition: all .3s;
}
.footer-social:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.footer-col-title {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-link {
  font-size: .95rem; color: var(--ivory-dim); background: none; border: none;
  cursor: pointer; text-align: left; transition: color .3s; font-family: 'EB Garamond', serif;
}
.footer-link:hover { color: var(--gold-bright); }
.footer-info p { font-size: .9rem; color: var(--ivory-dim); line-height: 1.8; }

.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(201,146,42,.15);
  display: flex; flex-direction: column; gap: .5rem;
  align-items: center; text-align: center;
}
@media(min-width:640px){.footer-bottom{flex-direction:row;justify-content:space-between;text-align:left;}}
.footer-copy,.footer-legal {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(212,196,168,.35);
}

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--leather); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

input[type=date]::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(1) saturate(.5); }
