/* ======================================================
   BEKA — Shared Stylesheet
   Used by: index.html, about.html, menu.html, wine.html, reservations.html
   ====================================================== */

:root{
  --cream:        #15110B;
  --cream-2:      #1C1610;
  --charcoal:     #F4EEE0;
  --charcoal-70:  rgba(244,238,224,.72);
  --gold:         #C9A45C;
  --gold-light:   #EAD39B;
  --gold-deep:    #B4924F;
  --gold-oncream: #8C6C33;
  --terracotta:   #8C6C33;
  --terracotta-dk:#6E5427;
  --line:         rgba(201,164,92,.2);
  --line-soft:    rgba(201,164,92,.28);
  --panel-light:      #F6F0E4;
  --panel-light-ink:  #2A241C;
  --panel-light-ink-70: rgba(42,36,28,.72);
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Cormorant Garamond', Georgia, serif;
  --label:   'Jost', Helvetica, Arial, sans-serif;
  --maxw: 1240px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{ font-family: var(--display); font-weight:600; margin:0; color: var(--charcoal); }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background: var(--gold-light); color: var(--charcoal); }

.wrap{ max-width: var(--maxw); margin:0 auto; padding: 0 48px; }
.eyebrow{
  font-family: var(--label);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display:flex; align-items:center; gap:12px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background: var(--gold); display:inline-block; }

.vine-divider{ display:flex; justify-content:center; margin: 0 auto; width:100%; }
.vine-divider svg{ width:220px; height:22px; color: var(--gold); }

.btn{
  font-family: var(--label);
  font-size: 12.5px;
  letter-spacing:.16em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  display:inline-block;
  border:1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-solid{ background: var(--terracotta); color: var(--cream-2); }
.btn-solid:hover{ background: var(--terracotta-dk); }
.btn-outline{ border-color: rgba(255,255,255,.55); color:#fff; }
.btn-outline:hover{ border-color:#fff; background: rgba(255,255,255,.08); }
.btn-outline-dark{ border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline-dark:hover{ background: var(--charcoal); color: var(--cream); }
.btn-gold{ background: var(--gold); color: var(--cream-2); }
.btn-gold:hover{ background: var(--gold-deep); }

/* ===== Nav ===== */
#nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 22px 0;
  background: var(--panel-light);
  border-bottom: 1px solid rgba(42,36,28,.12);
  transition: padding .3s ease, box-shadow .3s ease;
}
#nav.solid{ padding: 14px 0; box-shadow: 0 6px 24px rgba(0,0,0,.12); }
#nav .wrap{ display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap:24px; max-width:none; padding: 0 48px; }
.logo{ justify-self:start; display:flex; align-items:center; gap:16px; }
.nav-links{ justify-self:center; }
.nav-cta{ justify-self:end; }
.logo-img{ height:54px; width:auto; display:block; transition: height .3s ease; }
#nav.solid .logo-img{ height:46px; }
.logo-divider{ width:1px; align-self:stretch; background: rgba(140,108,51,.35); transition: all .3s ease; }
.logo-sub{ font-family: var(--label); font-size:10.5px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color: var(--panel-light-ink); line-height:1.6; }
.logo .mark{ font-family: var(--display); font-weight:700; font-size:26px; letter-spacing:.14em; color: var(--gold-oncream); font-style:italic; }
.logo .sub{ font-family: var(--label); font-size:9px; letter-spacing:.32em; text-transform:uppercase; color: var(--panel-light-ink-70); margin-top:5px; }

.nav-links{ display:flex; gap:36px; list-style:none; margin:0; padding:0; }
.nav-links a{ font-family: var(--label); font-weight:600; font-size:13.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--panel-light-ink); position:relative; padding-bottom:4px; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background: var(--gold-oncream); transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--terracotta-dk); }

.nav-cta{ display:flex; align-items:center; gap:22px; margin-left:auto; }
.nav-phone{
  font-family: var(--label); font-size:17px; letter-spacing:.04em;
  color: var(--panel-light-ink); white-space:nowrap; transition: color .2s ease;
}
.nav-phone:hover{ color: var(--terracotta-dk); }
.nav-book-btn{
  font-family: var(--label); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  padding: 14px 30px; border-radius:999px; background: var(--terracotta); color:#fff;
  box-shadow: 0 6px 18px rgba(140,108,51,.4);
  transition: all .25s ease;
}
.nav-book-btn:hover{ background: var(--terracotta-dk); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(140,108,51,.5); }
.nav-burger{ display:none; background:none; border:none; padding:4px; }
.nav-burger span{ display:block; width:24px; height:1.5px; background: var(--panel-light-ink); margin:6px 0; }

.mobile-drawer{
  position:fixed; inset:0; background: rgba(20,16,10,.97); z-index:600;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:30px;
  opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.mobile-drawer.open{ opacity:1; pointer-events:auto; }
.mobile-drawer a{ font-family: var(--display); font-size:28px; color: var(--gold-light); }
.mobile-drawer .close-x{ position:absolute; top:26px; right:28px; font-size:26px; color:var(--gold-light); background:none; border:none; }

/* ===== Page header (non-home pages) ===== */
.page-header{
  padding: 190px 0 90px; background: var(--panel-light); color: var(--panel-light-ink); text-align:center;
}
.page-header .eyebrow{ justify-content:center; color: var(--gold-oncream); }
.page-header .eyebrow::before{ background: var(--gold-oncream); }
.page-header h1{ margin-top:18px; font-size: clamp(38px,5vw,58px); color: var(--terracotta-dk); text-transform:uppercase; }
.page-header p{ margin-top:18px; max-width:560px; margin-left:auto; margin-right:auto; color: var(--panel-light-ink-70); font-size:19px; }

.wine-page-header{
  background:
    linear-gradient(180deg, rgba(21,17,11,.82), rgba(21,17,11,.93)),
    url('images/WinesRedWhiteAmber.png') center 35% / cover no-repeat;
  color: var(--charcoal);
}
.wine-page-header .eyebrow{ color: var(--gold-light); }
.wine-page-header .eyebrow::before{ background: var(--gold-light); }
.wine-page-header h1{ color: var(--gold-light); }
.wine-page-header p{ color: var(--charcoal-70); }

/* ===== Hero (home only) ===== */
.hero-split{ display:grid; grid-template-columns: 40% 60%; min-height: 100vh; background: var(--cream); }
.hero-panel{ position:relative; padding: 190px 60px 70px; display:flex; flex-direction:column; justify-content:space-between; }
.hero-copy .eyebrow{ color: var(--gold-light); font-size:13px; }
.hero-copy .eyebrow::before{ background: var(--gold-light); }
.hero-rule{ height:1px; background: rgba(244,238,224,.22); margin: 26px 0 34px; }
.hero-copy h1{ color: var(--gold-light); font-weight:700; text-transform:uppercase; font-size: clamp(38px, 4.2vw, 58px); line-height:1.05; letter-spacing:.01em; }
.hero-copy .hero-lead{ color: var(--gold-light); font-weight:700; font-size: clamp(30px, 3.4vw, 42px); line-height:1.15; letter-spacing:.005em; }
.hero-copy .hero-desc{ color: var(--charcoal-70); font-weight:500; font-size:18px; line-height:1.7; margin-top:26px; max-width:440px; font-style:normal; }
.hero-copy .hero-desc p{ margin-bottom:18px; }
.hero-copy .hero-desc p:last-child{ margin-bottom:0; }
.hero-cta{ align-self:flex-start; margin-top:40px; background: var(--gold); color: var(--cream-2); }
.hero-cta:hover{ background: var(--gold-light); }
.hero-photo{ position:relative; overflow:hidden; }
.hero-photo-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
  opacity:0; transition: opacity 1.2s ease;
}
.hero-photo-img.active{ opacity:1; z-index:1; }
.hero-photo-img.zoom-out-slight{ transform: scale(.9); transform-origin: center; }

section{ padding: 130px 0; }
#home-menu-intro{ padding-bottom: 10px; }
#home-menu-intro .section-head{ margin-bottom: 0; }
.home-menu-eyebrow{ font-size: clamp(34px, 4vw, 52px); font-family: var(--display); font-weight:600; font-style:italic; letter-spacing:normal; text-transform:none; }
.section-head{ max-width: 720px; margin-bottom: 64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(30px, 3.8vw, 44px); margin-top:18px; }
.section-head h2 em{ color: var(--terracotta); font-style:italic; font-weight:500; }
.section-head p{ margin-top:20px; font-size:19px; color: var(--charcoal-70); max-width:560px; }
.section-head.center p{ margin-left:auto; margin-right:auto; }

/* ===== About ===== */
#about-content{ background: var(--cream-2); }
.about-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap:76px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius: 4px; width:100%; height:560px; object-fit:cover; }
.about-media .frame{ position:absolute; top:24px; left:24px; right:-24px; bottom:-24px; border: 1px solid var(--gold); border-radius:4px; z-index:-1; }
.about-copy p{ font-size:19px; color: var(--charcoal-70); margin-bottom:20px; }
.about-copy p:last-of-type{ margin-bottom:0; }
.about-copy .lede{ font-size:24px; font-style:italic; color: var(--charcoal); font-family: var(--body); margin-bottom:26px; }

.stat-strip{ margin-top: 56px; padding-top: 44px; border-top:1px solid var(--line); display:grid; grid-template-columns: repeat(3,1fr); gap:36px; }
.stat-strip .stat h3{ font-size: 40px; color: var(--gold-deep); font-weight:700; }
.stat-strip .stat span{ display:block; margin-top:8px; font-family: var(--label); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--charcoal-70); }

.cellar-note{
  margin-top: 90px; display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center;
  background: var(--panel-light); color: var(--panel-light-ink); border-radius:6px; padding: 56px;
}
.cellar-note h3{ color: var(--gold-oncream); font-size:30px; }
.cellar-note h3 em{ color: var(--terracotta-dk); font-style:italic; }
.cellar-note p{ color: var(--panel-light-ink-70); margin-top:18px; font-size:18px; }
.cellar-note .grapes{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
.grape-pill{ font-family: var(--label); font-size:11px; letter-spacing:.08em; text-transform:uppercase; border:1px solid rgba(140,108,51,.4); color: var(--gold-oncream); padding:8px 16px; border-radius:999px; }
.cellar-media img{ width:100%; height:320px; object-fit:cover; border-radius:4px; }

.about-gallery-strip{ display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:90px; }
.about-gallery-strip img{ width:100%; height:280px; object-fit:cover; border-radius:4px; }

/* ===== Explore split ("Taste the Tradition") — home only ===== */
.explore-split{ display:grid; grid-template-columns:34% 66%; background:var(--cream); min-height:640px; }
.explore-left{ display:flex; flex-direction:column; justify-content:center; padding:80px 60px; }
.explore-rule{ width:100%; max-width:480px; height:1px; background:rgba(244,238,224,.3); margin-bottom:40px; }
.explore-title{ font-family:var(--display); text-transform:uppercase; font-weight:600; font-size:clamp(34px,4vw,52px); color:var(--charcoal); line-height:1.05; }

.explore-right{ position:relative; display:flex; align-items:center; overflow:hidden; padding-right:80px; }
.explore-track{ display:flex; width:100%; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
.explore-track::-webkit-scrollbar{ display:none; }
.explore-card{ scroll-snap-align:start; flex:0 0 33.333%; min-width:280px; background:var(--terracotta); padding:40px 34px; display:flex; flex-direction:column; justify-content:space-between; min-height:560px; border-right:1px solid rgba(21,17,11,.15); transition:background .3s ease; }
.explore-card:hover{ background:var(--terracotta-dk); }
.ec-eyebrow{ font-family:var(--label); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light); font-weight:600; }
.ec-icon{ width:64px; height:64px; align-self:flex-end; margin:40px 0; color:var(--charcoal); opacity:.75; }
.ec-content h3{ font-size:22px; color:var(--charcoal); }
.ec-content p{ margin-top:10px; font-size:15.5px; color:rgba(244,238,224,.85); line-height:1.5; }


.explore-dots{ position:absolute; left:34px; bottom:24px; display:flex; gap:8px; z-index:5; }
.explore-dot{ width:7px; height:7px; border-radius:50%; background:rgba(244,238,224,.35); cursor:pointer; border:none; padding:0; }
.explore-dot.active{ background:var(--gold-light); width:20px; border-radius:4px; transition:width .25s ease; }

/* ===== Reviews (rotating, on Home + About) ===== */
#reviews{ background: var(--cream-2); }
.reviews-badge{ display:flex; align-items:center; gap:18px; margin-top:8px; flex-wrap:wrap; justify-content:center; }
.reviews-badge .stars{ color: var(--gold); font-size:20px; letter-spacing:2px; }
.reviews-badge .rb-text{ font-family: var(--label); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--charcoal-70); }

.reviews-carousel{ position:relative; max-width:820px; margin: 56px auto 0; overflow:hidden; }
.reviews-track{ display:flex; transition: transform .5s ease; }
.review-card{ flex:0 0 100%; text-align:center; padding: 0 24px; display:block; cursor:pointer; transition: opacity .2s ease; }
.review-card:hover{ opacity:.82; }
.review-card:hover blockquote{ text-decoration: underline; text-decoration-color: rgba(201,164,92,.4); text-underline-offset: 4px; }
.review-card .stars{ color: var(--gold); font-size:17px; letter-spacing:2px; }
.review-card blockquote{ margin: 22px 0 0; font-size:24px; font-style:italic; color: var(--charcoal); line-height:1.5; }
.review-card .rc-author{ margin-top:22px; font-family: var(--label); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold-deep); }
.reviews-dots{ display:flex; justify-content:center; gap:8px; margin-top:34px; }
.reviews-dots .explore-dot{ background: rgba(244,238,224,.25); }
.reviews-dots .explore-dot.active{ background: var(--gold); }
.reviews-source-note{ text-align:center; margin-top:20px; font-family: var(--label); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold-deep); opacity:.8; }

/* ===== Gallery ===== */
#gallery{ background: var(--cream-2); }
.gallery-grid{ display:grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap:14px; }
.g-item{ position:relative; overflow:hidden; border-radius:4px; grid-column: span 2; grid-row: span 2; }
.g-item.wide{ grid-column: span 4; }
.g-item.tall{ grid-row: span 3; }
.g-item img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.g-item:hover img{ transform: scale(1.07); }
.gallery-more{ text-align:center; margin-top:48px; }

/* ===== Menu / Wine pages: image + list sections ===== */
#menu-sections{ background: var(--cream); }
.menu-section{ display:grid; grid-template-columns: .9fr 1.1fr; gap:64px; align-items:start; padding: 90px 0; border-bottom:1px solid var(--line); }
.menu-section:last-child{ border-bottom:none; }
.menu-section:nth-child(even) .menu-section-image{ order:2; }
.menu-section-image img{ width:100%; height:540px; object-fit:cover; border-radius:6px; position:sticky; top:120px; }
.menu-section-head{ margin-bottom:34px; }
.menu-section-head .eyebrow{
  font-family: var(--display); font-weight:600; font-style:italic;
  font-size: clamp(30px, 3.4vw, 40px); letter-spacing:normal; text-transform:none;
  color: var(--gold-deep); gap:16px;
}
.menu-section-head .eyebrow::before{ width:34px; background: var(--gold-deep); }
.menu-section-head p{ margin-top:16px; color: var(--charcoal-70); font-size:17px; font-style:italic; }

.menu-item{ padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child{ border-bottom:none; }
.menu-item-row{ display:flex; align-items:baseline; gap:14px; }
.menu-item-row h4{ font-size:21px; font-weight:600; white-space:nowrap; }
.dots{ flex:1; border-bottom: 1px dotted rgba(244,238,224,.28); transform: translateY(-5px); }
.price{ font-family: var(--label); font-size:15px; color: var(--gold-deep); font-weight:600; }
.price-dual{ font-family: var(--label); font-size:12.5px; color: var(--gold-deep); font-weight:600; white-space:nowrap; letter-spacing:.02em; }
.flight-callout{
  margin-top:28px; padding:22px 0; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.flight-callout h4{ font-size:19px; color: var(--gold-light); font-style:italic; font-weight:500; }
.flight-callout p{ margin-top:6px; color: var(--charcoal-70); font-size:14.5px; }
.flight-callout .price{ font-size:22px; }
.menu-item .desc{ margin-top:8px; color: var(--charcoal-70); font-size:16.5px; line-height:1.5; }
.menu-item.feature{ background: rgba(201,164,92,.08); border: 1px solid var(--line-soft); border-radius:6px; padding:26px; border-bottom:none; }
.menu-item.feature h4{ font-size:24px; color: var(--gold-light); }
.menu-item.feature .price{ font-size:17px; }
.menu-item.feature .desc{ color: var(--charcoal-70); }

.menu-subhead{ font-family: var(--label); font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-deep); margin: 24px 0 4px; padding-top:14px; border-top:1px solid var(--line); }
.menu-subhead:first-child{ border-top:none; padding-top:0; margin-top:0; }

.menu-jump-scope{ position:relative; }
.menu-jump{ display:flex; flex-wrap:wrap; gap: 10px 28px; padding: 34px 0; border-bottom:1px solid var(--line); position:sticky; top:82px; background:var(--cream); z-index:20; }
#nav.solid ~ * .menu-jump, .menu-jump{ top:70px; }
.menu-jump a{ font-family: var(--label); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--charcoal-70); }
.menu-jump a:hover{ color: var(--terracotta); }

/* ===== Reservations ===== */
#reservations-section{ background: var(--cream); color: #fff; }
#reservations-section .eyebrow{ color: var(--gold-light);}
#reservations-section .eyebrow::before{ background: var(--gold-light); }
#reservations-section .section-head h2{ color: #fff; }
#reservations-section .section-head p{ color: rgba(255,255,255,.72); }

.res-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:70px; align-items:start; }

.ot-panel{ background: #F3E3C4; border: 1px solid var(--gold); box-shadow: 0 20px 55px rgba(0,0,0,.35), 0 0 0 1px rgba(201,164,92,.15); border-radius:8px; padding: 20px; min-height: 540px; display:flex; flex-direction:column; }
.ot-panel .ot-fallback{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding: 60px 34px; color: var(--panel-light-ink); }
.ot-panel .ot-fallback h4{ font-size:24px; margin-bottom:12px; }
.ot-panel .ot-fallback p{ color: var(--panel-light-ink-70); margin-bottom:26px; max-width:360px; }
#ot-widget-container{ width:100%; min-height:540px; flex:1; display:flex; align-items:center; justify-content:center; position: relative; }
#ot-widget-container > *{ position: relative !important; top: auto !important; left: auto !important; float: none !important; margin: 35px 0 0 115px !important; }
#ot-widget-container iframe{ width: 400px !important; max-width:100%; }

.res-info{ display:flex; flex-direction:column; gap:34px; }
.info-block h4{ font-family: var(--label); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-light); margin-bottom:10px; }
.info-block p, .info-block a{ font-size:19px; color: rgba(255,255,255,.88); }
.hours-row{ display:flex; justify-content:space-between; max-width:320px; padding:6px 0; font-size:17px; color: rgba(255,255,255,.82); border-bottom:1px solid rgba(217,189,134,.18); }
.map-embed{ border-radius:6px; overflow:hidden; margin-top:6px; border:1px solid rgba(217,189,134,.25); }
.map-embed iframe{ width:100%; height:200px; border:0; filter: grayscale(.3) sepia(.15); }

/* ===== Footer (on every page) ===== */
footer{ background: #1E1912; color: rgba(246,240,228,.6); padding: 70px 0 30px; }
.footer-top-row{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; padding-bottom:44px; }
.footer-brand .logo .mark{ color: var(--gold-light); font-size:28px; }
.footer-brand .logo .sub{ color: rgba(246,240,228,.55); }
.footer-brand p{ margin-top:18px; max-width:280px; font-size:15px; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(217,189,134,.3);
  display:flex; align-items:center; justify-content:center; color: var(--gold-light);
  transition: all .2s ease;
}
.footer-social a:hover{ background: var(--gold-light); color: var(--cream-2); }
.footer-social svg{ width:17px; height:17px; }

.footer-cols{ display:grid; grid-template-columns: repeat(3, auto); gap:56px; }
.footer-col h5{ font-family: var(--label); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-light); margin-bottom:16px; }
.footer-col p, .footer-col a{ font-size:15px; color: rgba(246,240,228,.65); display:block; margin-bottom:9px; }
.footer-col a:hover{ color: var(--gold-light); }

.footer-menu-links{ padding: 34px 0; border-top:1px solid rgba(217,189,134,.15); border-bottom:1px solid rgba(217,189,134,.15); display:flex; flex-wrap:wrap; gap: 10px 30px; }
.footer-menu-links a{ font-family: var(--label); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: rgba(246,240,228,.6); }
.footer-menu-links a:hover{ color: var(--gold-light); }

.footer-bottom{ display:flex; justify-content:space-between; padding-top:26px; font-family: var(--label); font-size:11.5px; letter-spacing:.04em; flex-wrap:wrap; gap:12px; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .about-grid, .res-grid, .cellar-note, .menu-section{ grid-template-columns: 1fr; }
  .menu-section:nth-child(even) .menu-section-image{ order:0; }
  .menu-section-image img{ height:320px; position:static; }
  .about-media img{ height:400px; }
  .about-media .frame{ display:none; }
  .stat-strip{ grid-template-columns: repeat(3,1fr); gap:20px; }
  .gallery-grid{ grid-template-columns: repeat(4,1fr); grid-auto-rows: 110px; }
  .g-item.wide{ grid-column: span 4; }
  .hero-split{ grid-template-columns: 1fr; }
  .hero-photo{ height:50vh; order:-1; }
  .hero-panel{ padding: 60px 40px 50px; }
  .explore-split{ grid-template-columns:1fr; }
  .explore-left{ padding:60px 24px 40px; }
  .explore-card{ flex-basis:85%; min-height:480px; }
  .footer-top-row{ flex-direction:column; }
  .footer-cols{ grid-template-columns: 1fr 1fr; gap:30px; }
}
@media (max-width: 720px){
  .wrap{ padding: 0 24px; }
  #nav .wrap{ padding: 0 24px; display:flex; justify-content:space-between; align-items:center; }
  .nav-links, .nav-cta .nav-book-btn, .nav-cta .nav-phone{ display:none; }
  .nav-burger{ display:block; }
  .hero-panel{ padding: 50px 24px 40px; }
  section{ padding: 84px 0; }
  .page-header{ padding: 150px 0 60px; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }
  .g-item, .g-item.wide, .g-item.tall{ grid-column: span 2; grid-row: span 2; }
  .cellar-note{ padding: 34px 24px; }
  .review-card blockquote{ font-size:20px; }
  .footer-cols{ grid-template-columns: 1fr; }

  /* Taste the Tradition — fit properly on mobile, hint that it's swipeable */
  .explore-split{ min-height:auto; }
  .explore-right{ padding-left:24px; padding-right:24px; }
  .explore-card{ flex-basis:80%; min-height:420px; }
  .explore-left{ padding:50px 24px 30px; }

  /* Menu jump nav — clean horizontally-scrollable pill strip instead of wrapped text */
  .menu-jump{ flex-wrap:nowrap; overflow-x:auto; scrollbar-width:none; gap:10px; padding:18px 0; }
  .menu-jump::-webkit-scrollbar{ display:none; }
  .menu-jump a{
    white-space:nowrap; flex:0 0 auto; padding:9px 16px;
    border:1px solid var(--line-soft); border-radius:999px; font-size:11px;
  }

  /* Reservation calendar — the desktop offset shoves it way off-center on narrow screens, so center it properly here instead */
  #ot-widget-container > *{ margin: 0 auto 0 26px !important; }
}

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

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}