/* ══════════════════════════════════════════════════
   Lumière — Fine Dining  |  style.css
   ══════════════════════════════════════════════════ */

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

:root {
  --gold:    #c9a96e;
  --gold-lt: #e2c99a;
  --gold-dk: #a07840;
  --dark:    #0e0d0b;
  --dark-2:  #1a1814;
  --dark-3:  #252220;
  --cream:   #f5f0e8;
  --text:    #d4c9b8;
  --text-lt: #ede5d8;
  --white:   #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --radius: 4px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

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

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── Typography ────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-lt);
}
h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.4rem; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  display: block;
}
.eyebrow.gold { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-top: .5rem; }

.gold-rule {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-rule.centered { margin: 1.5rem auto; }

/* ─── Buttons ───────────────────────────────────── */
.btn-gold, .btn-ghost, .btn-outline, .btn-outline-white {
  display: inline-block;
  position: relative;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: none;
  border: none;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
/* Shimmer sweep on hover */
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,169,110,.4); }

.btn-ghost {
  background: transparent;
  color: var(--text-lt);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--text-lt);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; text-align: center; }

/* ─── Scroll Progress ───────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-lt));
  width: 0%;
  z-index: 999;
  transition: width .08s linear;
}

/* ─── Custom Cursor ─────────────────────────────── */
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease),
              border-color .3s, opacity .3s;
  will-change: left, top;
}
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none) { #cursor-ring, #cursor-dot { display: none; } }

/* ─── Reveal Animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s !important; }

/* ─── Float ─────────────────────────────────────── */
.float-anim { animation: floatUp 4s ease-in-out infinite; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ─── NAV ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background .4s, padding .4s;
}
#navbar.scrolled {
  background: rgba(14,13,11,.93);
  backdrop-filter: blur(14px) saturate(1.2);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--gold-lt);
  margin-right: auto;
  cursor: none;
}
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  position: relative;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text); transition: color .25s;
  cursor: none;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: .75rem !important; padding: .65rem 1.6rem !important; cursor: none !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.burger span { display: block; width: 24px; height: 1px; background: var(--text-lt); transition: var(--transition); }

/* ─── HERO ──────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 10s var(--ease);
}
.hero-video.playing { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(14,13,11,.3) 0%,
    rgba(14,13,11,.5) 45%,
    rgba(14,13,11,.88) 100%);
}

/* Floating ornaments */
.hero-ornament {
  position: absolute; z-index: 2;
  animation: floatUp 7s ease-in-out infinite;
  pointer-events: none;
}
.ornament-tl { top: 10vh; left: 5vw; width: 110px; animation-delay: 0s; }
.ornament-br { bottom: 18vh; right: 5vw; width: 75px; animation-delay: -3.5s; }

.hero-content {
  position: relative; z-index: 3;
  max-width: 820px; padding: 0 1.5rem;
}
.hero-content .eyebrow {
  color: var(--gold);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-content h1 { color: var(--white); margin: .8rem 0 1.4rem; }
.hero-content h1 .line { display: block; overflow: hidden; }
.hero-content h1 .line span {
  display: inline-block;
  opacity: 0; transform: translateY(100%);
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 560px; margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.2s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  z-index: 3; color: rgba(255,255,255,.4);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.5); opacity: .4; }
}

/* ─── RIBBON ────────────────────────────────────── */
.ribbon {
  background: var(--gold);
  overflow: hidden;
  padding: .9rem 0;
  position: relative;
}
.ribbon-track {
  display: flex; gap: 2.5rem; align-items: center;
  animation: ribbonScroll 28s linear infinite;
  width: max-content;
}
.ribbon-track span {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); white-space: nowrap;
}
.ribbon-track .dot { opacity: .45; font-size: .5rem; }
@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ─────────────────────────────────────── */
#about { padding: 8rem 0; background: var(--dark-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-images { position: relative; padding-bottom: 2.5rem; }
.img-main {
  width: 82%; aspect-ratio: 3/4;
  overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 48%; aspect-ratio: 1;
  overflow: hidden; border-radius: var(--radius);
  border: 5px solid var(--dark-2);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.img-main img, .img-accent img { transition: transform .9s var(--ease); }
.img-main:hover img, .img-accent:hover img { transform: scale(1.04); }

.award-badge {
  position: absolute; top: 2rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: var(--dark);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,169,110,.4);
  z-index: 2;
}
.badge-num { font-size: 1.4rem; font-family: var(--font-serif); line-height: 1; }
.badge-label { font-size: .48rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; font-weight: 500; }

.about-text h2 { margin: .5rem 0 0; }
.about-text p { margin-bottom: 1.2rem; font-size: .95rem; }

.stats-row { display: flex; gap: 2rem; margin: 2.5rem 0; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-num::after { content: '+'; font-size: 1.6rem; }
.stat-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .3rem; }

/* ─── CHEF ──────────────────────────────────────── */
#chef { position: relative; padding: 8rem 0; text-align: center; overflow: hidden; }
.chef-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?w=1800&q=80');
  background-size: cover; background-position: center top;
}
.chef-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,13,11,.65), rgba(14,13,11,.88));
}
.chef-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.chef-content .eyebrow { color: var(--gold); }
.chef-content h2 { color: var(--white); margin: .5rem 0 1rem; font-size: clamp(2.5rem, 5vw, 5rem); }

.chef-ornament { display: flex; justify-content: center; margin: .6rem 0; }
.chef-ornament svg { width: 200px; }

.chef-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.2rem; color: rgba(255,255,255,.68);
  margin: 1.5rem 0 2.5rem; line-height: 1.7;
}

/* ─── MENU ──────────────────────────────────────── */
#menu { padding: 8rem 0; background: var(--dark); }

.menu-tabs {
  display: flex; justify-content: center;
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius); overflow: hidden;
  width: fit-content; margin: 0 auto 3rem;
}
.tab {
  padding: .8rem 2rem;
  background: none; border: none;
  color: var(--text);
  font-family: var(--font-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  cursor: none;
  transition: background .25s, color .25s;
  border-right: 1px solid rgba(201,169,110,.2);
}
.tab:last-child { border-right: none; }
.tab.active { background: var(--gold); color: var(--dark); }
.tab:not(.active):hover { background: rgba(201,169,110,.08); color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panelIn .4s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

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

.menu-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transform-style: preserve-3d;
  transition: box-shadow .4s;
  will-change: transform;
}
.menu-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.menu-card-img { height: 200px; overflow: hidden; position: relative; }
.menu-card-img img { transition: transform .7s var(--ease); }
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

/* Shimmer sweep */
.card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.07) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
}
.menu-card:hover .card-shine { animation: cardShimmer .65s var(--ease) forwards; }
@keyframes cardShimmer { from { transform: translateX(-100%); } to { transform: translateX(150%); } }

.menu-card-body { padding: 1.5rem; }
.menu-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .6rem; gap: 1rem; }
.menu-card-header h3 { font-size: 1.15rem; }
.price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); white-space: nowrap; margin-top: .1rem; }
.menu-card-body p { font-size: .85rem; line-height: 1.65; }
.tag {
  display: inline-block; margin-top: .8rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,110,.45);
  padding: .2rem .7rem; border-radius: 20px;
}

/* Wine list */
.wine-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.wine-category h3 {
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold);
  margin-bottom: 1.5rem; padding-bottom: .8rem;
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.wine-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.05); gap: 1rem;
  transition: background .2s;
}
.wine-item:hover { background: rgba(201,169,110,.03); }
.wine-item strong { color: var(--text-lt); font-weight: 400; font-size: .9rem; display: block; }
.wine-region { font-size: .78rem; color: var(--text); margin-top: .15rem; display: block; }
.wine-item .price { font-size: 1rem; flex-shrink: 0; }

/* ─── EXPERIENCE ────────────────────────────────── */
#experience { padding: 8rem 0; background: var(--dark-2); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.exp-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.04);
  transform-style: preserve-3d;
  transition: box-shadow .4s;
  will-change: transform;
}
.exp-card:hover { box-shadow: 0 30px 70px rgba(0,0,0,.6); }
.exp-img { height: 280px; overflow: hidden; position: relative; }
.exp-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,.5) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.exp-card:hover .exp-img::after { opacity: 1; }
.exp-img img { transition: transform .7s var(--ease); }
.exp-card:hover .exp-img img { transform: scale(1.06); }
.exp-body { padding: 2rem; }
.exp-icon { font-size: .8rem; color: var(--gold); margin-bottom: .8rem; }
.exp-body h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-lt); margin-bottom: .8rem; }
.exp-body p { font-size: .88rem; line-height: 1.75; margin-bottom: 1.2rem; }
.exp-link {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: .5rem;
  transition: gap .25s; cursor: none;
}
.exp-link:hover { gap: .9rem; }

/* ─── GALLERY ───────────────────────────────────── */
#gallery { padding: 8rem 0 0; background: var(--dark); }
.gallery-masonry {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px; gap: 5px; margin-top: 4rem;
}
.gal-item { position: relative; overflow: hidden; cursor: none; transition-delay: var(--delay, 0s); }
.gal-item.tall { grid-row: span 2; }
.gal-item img { transition: transform .8s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,.82) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.6rem;
  opacity: 0; transition: opacity .4s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--white); letter-spacing: .06em;
  transform: translateY(8px); transition: transform .35s .1s var(--ease);
}
.gal-item:hover .gal-overlay span { transform: none; }

/* ─── RESERVE ───────────────────────────────────── */
#reserve { position: relative; padding: 8rem 0; overflow: hidden; }
.reserve-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1800&q=80');
  background-size: cover; background-position: center;
}
.reserve-overlay { position: absolute; inset: 0; background: rgba(14,13,11,.9); }
.reserve-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.reserve-text .eyebrow { color: var(--gold); }
.reserve-text h2 { margin: .5rem 0 0; }
.reserve-text > p { font-size: .9rem; margin-bottom: 2.5rem; }
.reserve-info { display: flex; flex-direction: column; gap: 1rem; }
.info-item { display: flex; align-items: center; gap: .8rem; font-size: .88rem; }
.info-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }

.reserve-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.1);
  border-radius: var(--radius); padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.form-row { display: flex; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; flex: 1; margin-bottom: 1.2rem; }
.form-group label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(201,169,110,.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: .8rem 1rem;
  font-family: var(--font-sans); font-size: .9rem; color: var(--text-lt);
  transition: border-color .25s, background .25s;
  outline: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: rgba(201,169,110,.04);
}
.form-group select { cursor: none; }
.form-group select option { background: var(--dark-2); }

.form-success {
  display: none; flex-direction: column; align-items: center; gap: .8rem;
  padding: 1.5rem; text-align: center; color: var(--gold); margin-top: 1rem;
}
.form-success svg { width: 40px; height: 40px; }
.form-success p { font-size: .88rem; color: var(--text); }
.form-success.show { display: flex; animation: fadeUp .5s var(--ease); }

/* ─── FOOTER ────────────────────────────────────── */
footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.06); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding: 5rem 2rem 4rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-lt); margin-bottom: .3rem; }
.footer-tagline { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--text); transition: color .25s, transform .25s; display: block; cursor: none; }
.social-links a:hover { color: var(--gold); transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; }
.footer-links h4 {
  font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-links li { font-size: .85rem; }
.footer-links a { transition: color .25s, padding-left .25s; cursor: none; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem;
}
.footer-bottom a { transition: color .25s; cursor: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .reserve-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { display: none; }
  .menu-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .wine-list { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor-ring, #cursor-dot { display: none; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 64px;
    background: var(--dark-2); padding: 3rem 2rem; gap: 2rem; z-index: 99;
  }
  .nav-links.open a { font-size: 1.2rem; cursor: auto; }
  .menu-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gal-item.tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .menu-tabs { flex-wrap: wrap; }
  .form-row { flex-direction: column; }
  .stats-row { gap: 1.2rem; }
  .ornament-tl, .ornament-br { display: none; }
}
@media (max-width: 480px) {
  :root { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .reserve-form { padding: 1.5rem; }
}
