/* ── RESET & BASE ── */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:'Inter',sans-serif;background:#fff;color:#1a1a1a;overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
img{display:block;max-width:100%;}

/* ── COLOURS ── */
:root{
  --navy:#1a3d1a;
  --navy-light:#2d8c2a;
  --gold:#c89a3e;
  --gold-light:#e8c06a;
  --cream:#f8f5f0;
  --warm:#f2ede6;
  --border:#e5e0d8;
  --text:#1a1a1a;
  --muted:#6b6560;
  --red:#c84040;
}

/* ── TOP INFO BAR ── */
.top-bar{background:var(--navy);color:#fff;font-size:0.72rem;letter-spacing:0.08em;height:38px;}
/* Content boxed to the same 1200px width as the rest of the page, instead of
   running edge-to-edge — the colored bar itself stays full width. */
.top-bar-inner{max-width:1200px;margin:0 auto;height:100%;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;}
.top-bar-left{display:flex;gap:2rem;align-items:center;}
.top-bar a{color:rgba(255,255,255,0.75);transition:color 0.2s;}
.top-bar a:hover{color:#fff;}
.top-bar-right{display:flex;gap:1.5rem;align-items:center;}
.status-dot{width:7px;height:7px;border-radius:50%;background:#4caf50;display:inline-block;margin-right:5px;}
.status-dot.closed{background:var(--red);}
.status-open{color:#a8d5a2;font-weight:500;}
.status-open.closed{color:#f2b0b0;}

/* ── NAV ── */
#mainnav{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:200;height:64px;}
/* Same boxed-content pattern as .top-bar-inner above. */
.nav-inner{max-width:1200px;margin:0 auto;height:100%;display:flex;align-items:center;padding:0 2.5rem;gap:2rem;}
.nav-logo{display:flex;align-items:center;}

.nav-links{display:flex;gap:2rem;list-style:none;margin-left:2rem;}
.nav-links a{font-size:0.78rem;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);transition:color 0.2s;}
.nav-links a:hover,.nav-links a.active{color:var(--navy);}
.nav-right{display:flex;gap:0.75rem;align-items:center;}
.btn-sm{padding:0.5rem 1.2rem;font-family:'Inter',sans-serif;font-size:0.73rem;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;cursor:pointer;transition:all 0.2s;border:none;}
.btn-outline{background:transparent;border:1.5px solid var(--navy);color:var(--navy);}
.btn-outline:hover{background:var(--navy);color:#fff;}
.btn-filled{background:var(--navy);color:#fff;}
.btn-filled:hover{background:var(--navy-light);}
.btn-gold{background:var(--gold);color:#fff;}
.btn-gold:hover{background:var(--gold-light);color:var(--navy);}

/* .hi-logo-wrap layout moved here from an inline style attribute — the inline
   style was beating the @media(max-width:640px) rule that hides it on phones. */
.hi-logo-wrap{display:flex;align-items:center;gap:1rem;margin-left:auto;border-left:1px solid var(--border);padding-left:1.5rem;}

/* Hamburger button: hidden by default, shown only under the 900px breakpoint
   below, where nav-links and the sidebar both disappear with no replacement
   in the reference file. Not present in the source — added per site owner. */
.nav-hamburger{display:none;background:transparent;border:1.5px solid var(--navy);color:var(--navy);width:40px;height:40px;align-items:center;justify-content:center;cursor:pointer;font-size:1.2rem;line-height:1;flex-shrink:0;}

/* ── HERO SLIDER (homepage only) ──
   Full-bleed image carousel that replaced the old dark-green location info
   bar. Slides are stacked absolutely and cross-fade via opacity/.is-active;
   nav (arrows + dots) and autoplay are wired up in main.js. */
.hero-slider{position:relative;width:100%;height:82vh;min-height:520px;max-height:760px;overflow:hidden;background:var(--navy);}
.hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity 1s ease;z-index:1;}
.hero-slide.is-active{opacity:1;visibility:visible;z-index:2;}
.hero-slide-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.hero-slide-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,20,10,0.82) 0%,rgba(10,20,10,0.68) 35%,rgba(10,20,10,0.45) 55%,rgba(10,20,10,0.2) 75%,rgba(10,20,10,0) 92%);}
.hero-slide-content{position:relative;z-index:3;max-width:1200px;height:100%;margin:0 auto;padding:0 2.5rem;display:flex;flex-direction:column;justify-content:center;}
.hero-eyebrow{font-family:'Libre Baskerville',serif;font-size:45px;font-weight:700;letter-spacing:0.04em;text-transform:uppercase;color:#fff;margin-bottom:1.25rem;max-width:760px;line-height:1.1;}
.hero-eyebrow-small{display:block;font-size:22px;font-weight:600;color:var(--gold-light);letter-spacing:0.08em;margin-bottom:0;line-height:0.2;}
.hero-address{font-size:1.15rem;color:rgba(255,255,255,0.8);margin-bottom:0.5rem;}
.hero-address a{color:inherit;text-decoration:none;}
.hero-address a:hover{color:#fff;text-decoration:underline;}
.hero-phone{font-size:1.65rem;font-weight:700;color:#fff;margin-bottom:2.25rem;}
.hero-phone a{color:inherit;text-decoration:none;}
.hero-phone a:hover{color:var(--gold-light);}
.hero-actions{display:flex;gap:1.1rem;flex-wrap:wrap;}
.hero-actions .btn-sm{padding:1.05rem 2.4rem;font-size:0.92rem;letter-spacing:0.12em;}

.hero-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.4);color:#fff;font-size:1.2rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background 0.2s,border-color 0.2s;}
.hero-arrow:hover{background:rgba(255,255,255,0.3);border-color:rgba(255,255,255,0.7);}
.hero-arrow-prev{left:1.5rem;}
.hero-arrow-next{right:1.5rem;}

.hero-dots{position:absolute;bottom:1.75rem;left:50%;transform:translateX(-50%);z-index:4;display:flex;gap:0.6rem;}
.hero-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.4);border:none;padding:0;cursor:pointer;transition:background 0.2s,transform 0.2s;}
.hero-dot:hover{background:rgba(255,255,255,0.7);}
.hero-dot.is-active{background:var(--gold);transform:scale(1.25);}

@media(max-width:900px){
  .hero-slider{height:70vh;min-height:460px;}
  .hero-slide-content{padding:0 1.75rem;}
  .hero-eyebrow{font-size:1.1rem;margin-bottom:1rem;}
  .hero-address{font-size:1rem;}
  .hero-phone{font-size:1.4rem;margin-bottom:1.75rem;}
  .hero-actions .btn-sm{padding:0.9rem 2rem;font-size:0.85rem;}
  .hero-arrow{width:42px;height:42px;font-size:1rem;}
  .hero-arrow-prev{left:1rem;}
  .hero-arrow-next{right:1rem;}
}
@media(max-width:600px){
  .hero-slider{height:auto;min-height:580px;}
  .hero-slide-content{padding:0 1.25rem;}
  .hero-eyebrow{font-size:0.95rem;margin-bottom:0.8rem;}
  .hero-address{font-size:0.9rem;}
  .hero-phone{font-size:1.2rem;margin-bottom:1.5rem;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-actions .btn-sm{text-align:center;padding:0.85rem 1.5rem;font-size:0.8rem;}
  .hero-arrow{display:none;}
  .hero-dots{bottom:1.1rem;}
}
@media(prefers-reduced-motion:reduce){
  .hero-slide{transition:none;}
}
/* ── HOURS CARD (moved into the footer's Hours column) ── */
.loc-status-box{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.15);padding:1.25rem 1.5rem;width:100%;box-sizing:border-box;}
.loc-status-title{font-size:0.72rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#fff;margin-bottom:0.75rem;}
.loc-open-badge{display:flex;align-items:center;gap:0.5rem;margin-bottom:0.85rem;}
.loc-open-badge .dot{width:8px;height:8px;border-radius:50%;background:#4caf50;}
.loc-open-badge .dot.closed{background:var(--red);}
.loc-open-badge .label{font-size:0.85rem;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;}
.loc-open-badge .label.closed{color:#f2b0b0;}
.loc-hours-row{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;font-size:0.78rem;padding:0.32rem 0;border-bottom:1px solid rgba(255,255,255,0.07);}
.loc-hours-row:last-child{border-bottom:none;}
.loc-hours-row .day{color:rgba(255,255,255,0.8);}
.loc-hours-row .time{color:#fff;}
.loc-hours-row.today .day,.loc-hours-row.today .time{color:var(--gold);}
.amenities{display:flex;gap:0.75rem;flex-wrap:nowrap;overflow-x:auto;margin-top:1.5rem;scrollbar-width:none;-ms-overflow-style:none;}
.amenities::-webkit-scrollbar{display:none;}
.amenity{font-size:0.6rem;letter-spacing:0.1em;text-transform:uppercase;color:#fff;display:flex;align-items:center;gap:0.35rem;flex-shrink:0;white-space:nowrap;}
.amenity::before{content:'✓';color:var(--gold);font-size:0.75rem;}

/* ── MENU HEADING ──
   Plain section heading that replaced the gradient PHOTO BAND banner — same
   copy/typography, just sitting on the normal page background now instead
   of the green-to-black gradient. "Eclipses" keeps an accent-green highlight,
   recolored from the old pastel #a8e6a3 (illegible on white) to the site's
   brand green so it stays readable here. */
.menu-heading{font-family:'Libre Baskerville',serif;font-size:clamp(1.5rem,3vw,2.4rem);font-weight:700;font-style:normal;line-height:1.25;text-align:left;color:var(--text);max-width:700px;margin:3rem 0 2rem;}
.menu-heading em{color:var(--navy-light);font-style:normal;}

@media(max-width:600px){
  .menu-heading{margin:2rem 0 1.5rem;}
}
/* ── MAIN LAYOUT ── */
.page-body{max-width:1200px;margin:0 auto;min-height:600px;}

/* ── MENU CONTENT ── */
.menu-content{padding:2.5rem 2.5rem 4rem;}

/* ── FILTER BAR ── */
.filter-bar{display:flex;align-items:center;gap:0.75rem;margin-bottom:2.5rem;flex-wrap:wrap;}
.filter-label{font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);font-weight:600;}
.filter-btn{background:transparent;border:1px solid var(--border);color:var(--muted);padding:0.4rem 1rem;font-family:'Inter',sans-serif;font-size:0.72rem;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;cursor:pointer;transition:all 0.2s;border-radius:2px;}
.filter-btn:hover,.filter-btn.active{background:var(--navy);border-color:var(--navy);color:#fff;}
.filter-count{background:var(--gold);color:#fff;border-radius:50%;width:18px;height:18px;font-size:0.65rem;display:inline-flex;align-items:center;justify-content:center;font-weight:600;}

/* ── MENU SECTIONS ── */
.menu-section{margin-bottom:3.5rem;scroll-margin-top:80px;}
.menu-section-title{font-family:'Libre Baskerville',serif;font-size:1.6rem;font-weight:700;color:var(--navy);margin-bottom:0.5rem;padding-bottom:0.8rem;border-bottom:2px solid var(--navy);}
.menu-section-subtitle{font-size:0.8rem;color:var(--muted);margin-bottom:1.5rem;font-style:normal;line-height:1.6;}
.menu-note-box{background:var(--warm);border-left:3px solid var(--gold);padding:0.8rem 1rem;font-size:0.78rem;color:var(--muted);margin-bottom:1.5rem;line-height:1.7;}

/* ── SHARED SUBHEAD (wine varietal labels, beer serving-size groups) ── */
.menu-subhead{font-family:'Inter',sans-serif;font-size:0.72rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;color:var(--navy);margin:1.75rem 0 0.5rem;}
.menu-subhead:first-child{margin-top:0;}
.menu-subhead small{font-weight:500;letter-spacing:0.05em;color:var(--muted);text-transform:none;}

/* ── WINE LIST ── */
.wine-group{margin-bottom:0.25rem;}
.wine-row{display:flex;flex-direction:column;align-items:flex-start;gap:0.6rem;padding:0.85rem 0;border-bottom:1px solid var(--border);}
.wine-row:last-child{border-bottom:none;}
.wine-name{font-family:'Libre Baskerville',serif;font-size:0.95rem;font-weight:400;color:var(--navy);}
.wine-prices{display:flex;gap:1.5rem;width:100%;}
.wine-price{text-align:left;}
.wine-price-label{font-size:0.58rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);margin-bottom:0.15rem;}

/* ── HOMEPAGE LIQUOR TAB OVERRIDES (#menu-liquor only) ──
   Mirrors the /liquor-menu/ page styling: smaller section titles/subheads,
   medium-weight wine/dish names, and a working wine-group divider + hover
   state (the base .wine-row border above never shows on either page since
   every wine-group holds exactly one row, making it always :last-child). */
#menu-liquor .menu-section-title{font-size:1rem;}
#menu-liquor .menu-subhead{font-size:0.9rem;}
#menu-liquor .dish-name{font-weight:500;}
#menu-liquor .wine-name{font-weight:500;}
#menu-liquor .wine-group{border-bottom:1px solid var(--border);}
#menu-liquor .wine-group:last-child{border-bottom:none;}
#menu-liquor .wine-row{border-bottom:none;cursor:pointer;transition:background 0.15s;}
#menu-liquor .wine-row:hover{background:var(--cream);margin:0 -0.8rem;padding-left:0.8rem;padding-right:0.8rem;}
.wine-price-value{font-family:'Libre Baskerville',serif;font-weight:700;color:var(--gold);font-size:0.95rem;}
@media(min-width:768px){
  .wine-row{flex-direction:row;align-items:center;justify-content:space-between;gap:1rem;}
  .wine-prices{width:auto;flex-shrink:0;gap:2rem;}
}

/* Small muted add-on line under a dish description */
.dish-addon{font-size:0.72rem;color:var(--muted);font-style:normal;margin-top:0.35rem;}

/* ── DISH CARDS ── */
.dishes{display:flex;flex-direction:column;gap:0;}
.dish{display:grid;grid-template-columns:1fr auto;gap:1rem;padding:1.1rem 0;border-bottom:1px solid var(--border);transition:background 0.15s;cursor:pointer;align-items:start;}
.dish:last-child{border-bottom:none;}
.dish:hover{background:var(--cream);margin:0 -0.8rem;padding-left:0.8rem;padding-right:0.8rem;}
.dish-left{}
.dish-name{font-family:'Libre Baskerville',serif;font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:0.25rem;display:flex;align-items:center;gap:0.5rem;flex-wrap:wrap;}
.dish-desc{font-size:0.82rem;color:var(--muted);line-height:1.65;max-width:560px;}
.dish-tags{display:flex;gap:0.4rem;margin-top:0.5rem;flex-wrap:wrap;}
.tag{font-size:0.6rem;letter-spacing:0.15em;text-transform:uppercase;padding:0.2rem 0.55rem;border-radius:1px;font-weight:600;}
.tag-veg{background:#e8f5e9;color:#2e7d32;border:1px solid #c8e6c9;}
.tag-gf{background:#fff3e0;color:#e65100;border:1px solid #ffe0b2;}
.tag-cab{background:#e8f5e9;color:#1b5e20;border:1px solid #a5d6a7;}
.tag-sig{background:#e3f2fd;color:#1565c0;border:1px solid #bbdefb;}
.tag-new{background:#f3e5f5;color:#6a1b9a;border:1px solid #e1bee7;}
.tag-spicy{background:#ffebee;color:#b71c1c;border:1px solid #ffcdd2;}
.dish-right{text-align:right;flex-shrink:0;}
.dish-price{font-family:'Libre Baskerville',serif;font-size:1.1rem;font-weight:700;color:var(--navy);}

/* ── DESSERT SHOWCASE (homepage Dessert tab) ── */
.dessert-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:1.75rem;margin:1rem 0 2.5rem;}
.dessert-card{background:linear-gradient(180deg,var(--cream) 0%,var(--warm) 100%);border:1px solid var(--border);padding:1.75rem 1.5rem 1.5rem;text-align:center;transition:transform 0.25s ease,box-shadow 0.25s ease;}
.dessert-card:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(26,61,26,0.12);}
.dessert-card-img-wrap{height:200px;width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;}
.dessert-card-img-wrap img{width:100%;height:100%;object-fit:cover;filter:drop-shadow(0 12px 20px rgba(26,61,26,0.2));}
.dessert-card-badge{display:inline-block;font-size:0.58rem;letter-spacing:0.12em;text-transform:uppercase;color:#fff;background:var(--gold);padding:0.2rem 0.6rem;margin-bottom:0.7rem;font-weight:600;}
.dessert-card-name{font-family:'Libre Baskerville',serif;font-size:1.15rem;font-weight:700;color:var(--navy);margin-bottom:0.6rem;}
.dessert-card-desc{font-size:0.83rem;color:var(--muted);line-height:1.65;text-align:left;}
@media(max-width:640px){
  .dessert-gallery{grid-template-columns:1fr;}
}
.dish-price-note{font-size:0.7rem;color:var(--muted);margin-top:0.15rem;}
.dish-badge{background:var(--gold);color:#fff;font-size:0.58rem;letter-spacing:0.15em;text-transform:uppercase;padding:0.2rem 0.5rem;font-weight:600;white-space:nowrap;}

/* 2-col dishes for denser sections */
.dishes-2col{display:grid;grid-template-columns:1fr 1fr;gap:0 2rem;}
.dishes-2col .dish{border-bottom:1px solid var(--border);}

/* ── SPECIAL PROMO CARD ── */
.promo-card{background:var(--navy);color:#fff;padding:2rem;margin-bottom:2rem;display:grid;grid-template-columns:1fr auto;gap:1.5rem;align-items:center;}
.promo-card h3{font-family:'Libre Baskerville',serif;font-size:1.3rem;font-weight:400;font-style:normal;margin-bottom:0.4rem;}
.promo-card p{font-size:0.82rem;color:rgba(255,255,255,0.65);line-height:1.6;}
.promo-card .big-icon{font-size:3.5rem;opacity:0.7;}

/* ── RESERVATION STRIP ── */
.reserve-strip{background:var(--warm);border:1px solid var(--border);padding:2rem;margin-bottom:3rem;display:grid;grid-template-columns:1fr auto;gap:2rem;align-items:center;}
.reserve-strip h3{font-family:'Libre Baskerville',serif;font-size:1.4rem;margin-bottom:0.4rem;}
.reserve-strip p{font-size:0.83rem;color:var(--muted);line-height:1.6;}

/* ── RESERVATION FORM ── */
.res-form{background:var(--cream);border:1px solid var(--border);padding:2rem;margin-bottom:3rem;}
.res-form h3{font-family:'Libre Baskerville',serif;font-size:1.5rem;margin-bottom:0.4rem;}
.res-form .subtitle{font-size:0.8rem;color:var(--muted);margin-bottom:1.5rem;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.9rem;margin-bottom:0.9rem;}
.fg{display:flex;flex-direction:column;gap:0.35rem;}
.fg label{font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);font-weight:600;}
.fg input,.fg select,.fg textarea{width:100%;background:#fff;border:1px solid var(--border);color:var(--text);padding:0.65rem 0.9rem;font-family:'Inter',sans-serif;font-size:0.88rem;outline:none;transition:border-color 0.2s;-webkit-appearance:none;appearance:none;border-radius:2px;}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--navy);}
.fg input::placeholder,.fg textarea::placeholder{color:#bbb;}
.fg select option{background:#fff;}
.btn-submit{background:var(--navy);color:#fff;border:none;padding:0.9rem 2.5rem;font-family:'Inter',sans-serif;font-size:0.8rem;font-weight:600;letter-spacing:0.15em;text-transform:uppercase;cursor:pointer;transition:background 0.2s;margin-top:0.5rem;}
.btn-submit:hover{background:var(--navy-light);}
.form-success{display:none;text-align:center;padding:2rem;}
.form-success .check{font-size:3rem;margin-bottom:0.9rem;}
.form-success h4{font-family:'Libre Baskerville',serif;font-size:1.5rem;color:var(--navy);margin-bottom:0.5rem;}
.form-success p{font-size:0.85rem;color:var(--muted);line-height:1.8;}
.btn-reset{background:transparent;border:1px solid var(--border);color:var(--muted);padding:0.6rem 1.5rem;font-family:'Inter',sans-serif;font-size:0.75rem;letter-spacing:0.12em;text-transform:uppercase;cursor:pointer;margin-top:1rem;transition:all 0.2s;}
.btn-reset:hover{border-color:var(--navy);color:var(--navy);}

/* ── HOME GALLERY (between reservation form and contact strip) ── */
.home-gallery{background:var(--cream);border:1px solid var(--border);padding:2rem;margin-bottom:1.5rem;}
.home-gallery-carousel{position:relative;}
.home-gallery-track{display:flex;gap:1.25rem;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none;}
.home-gallery-track::-webkit-scrollbar{display:none;}
.home-gallery-item{flex:0 0 calc((100% - 2.5rem) / 3);scroll-snap-align:start;aspect-ratio:4/3;overflow:hidden;border-radius:4px;box-shadow:0 4px 14px rgba(0,0,0,0.08);}
.home-gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.35s ease;}
.home-gallery-item:hover img{transform:scale(1.06);}
.gallery-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;background:rgba(10,20,10,0.65);color:#fff;border:none;font-size:1rem;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;transition:background 0.2s ease;padding:0;}
.gallery-arrow:hover{background:rgba(10,20,10,0.85);}
.gallery-arrow-prev{left:-14px;}
.gallery-arrow-next{right:-14px;}
.home-gallery-dots{display:flex;justify-content:center;gap:0.5rem;margin-top:1.25rem;}
.gallery-dot{width:8px;height:8px;border-radius:50%;background:var(--border);border:none;padding:0;cursor:pointer;transition:background 0.2s ease,transform 0.2s ease;}
.gallery-dot.is-active{background:var(--navy);transform:scale(1.25);}
@media(max-width:767px){
	.home-gallery-item{flex:0 0 100%;}
	.gallery-arrow-prev{left:-8px;}
	.gallery-arrow-next{right:-8px;}
}

/* ── DELIVERY SECTION ── */
.delivery-section{background:var(--navy);color:#fff;padding:2rem;margin-bottom:3rem;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;}
/* Sticky top-bar (38px, desktop only) + nav (64px) so #delivery doesn't land under the fixed/sticky header when linked to from another page. */
#delivery{scroll-margin-top:102px;}
.delivery-section h3{font-family:'Libre Baskerville',serif;font-size:1.3rem;font-weight:700;font-style:normal;margin-bottom:0.3rem;}
.delivery-section p{font-size:0.82rem;color:rgba(255,255,255,0.65);}
.delivery-btns{display:flex;gap:0.75rem;flex-shrink:0;flex-wrap:wrap;}
.btn-del{padding:0.7rem 1.5rem;font-family:'Inter',sans-serif;font-size:0.75rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;cursor:pointer;transition:all 0.2s;text-decoration:none;display:inline-block;}
.btn-del-white{background:#fff;color:var(--navy);}
.btn-del-white:hover{background:var(--cream);}
.btn-del-ghost{background:transparent;border:1px solid rgba(255,255,255,0.35);color:#fff;}
.btn-del-ghost:hover{border-color:#fff;}

/* ── MODAL ── */
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:500;display:none;align-items:center;justify-content:center;}
.modal-overlay.open{display:flex;}
.modal{background:#fff;width:90%;max-width:500px;padding:2.5rem;position:relative;animation:mIn 0.25s ease;max-height:90vh;overflow-y:auto;}
@keyframes mIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.modal-close{position:absolute;top:1rem;right:1.2rem;background:transparent;border:none;font-size:1.5rem;cursor:pointer;color:var(--muted);line-height:1;}
.modal-close:hover{color:var(--text);}
.modal-dish-name{font-family:'Libre Baskerville',serif;font-size:1.6rem;font-weight:700;margin-bottom:0.4rem;color:var(--navy);}
.modal-dish-desc{font-size:0.88rem;color:var(--muted);line-height:1.75;margin-bottom:1.2rem;}
.modal-dish-meta{display:grid;grid-template-columns:1fr 1fr;gap:1rem;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:1rem 0;margin-bottom:1.2rem;}
.mdm-label{font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);margin-bottom:0.25rem;}
.mdm-val{font-family:'Libre Baskerville',serif;font-size:1.1rem;color:var(--navy);}
.mdm-val.sm{font-size:0.85rem;font-family:'Inter',sans-serif;color:var(--muted);}

/* ── TOAST ── */
.toast{position:fixed;bottom:1.5rem;right:1.5rem;z-index:600;background:var(--navy);color:#fff;border-left:3px solid var(--gold);padding:1rem 1.4rem;max-width:300px;transform:translateY(80px);opacity:0;transition:all 0.3s;}
.toast.show{transform:translateY(0);opacity:1;}
.toast-title{font-size:0.8rem;font-weight:600;margin-bottom:0.2rem;}
.toast-msg{font-size:0.73rem;color:rgba(255,255,255,0.7);line-height:1.5;}

/* ── BACK TO TOP ── */
.back-to-top{position:fixed;bottom:1.75rem;right:1.75rem;width:44px;height:44px;border-radius:50%;background:var(--navy);color:#fff;border:1px solid rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(10px);transition:opacity 0.25s ease,transform 0.25s ease,background 0.2s ease,border-color 0.2s ease;z-index:9999;}
.back-to-top svg{width:20px;height:20px;pointer-events:none;}
.back-to-top.show{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);}
.back-to-top:hover{background:var(--gold);border-color:var(--gold);}
@media(max-width:640px){
  .back-to-top{width:40px;height:40px;bottom:1.25rem;right:1.25rem;}
  .back-to-top svg{width:18px;height:18px;}
}

/* ── FOOTER ── */
footer{background:var(--navy);color:#fff;padding:3.5rem 2.5rem 2rem;}
.footer-inner{max-width:1200px;margin:0 auto;}
.footer-grid{display:grid;grid-template-columns:1.2fr 0.9fr 1.5fr 1fr;gap:2.5rem;margin-bottom:3rem;}
.footer-brand{display:block;}

.footer-brand-desc{font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.8;max-width:230px;}
.footer-h{font-family:'Libre Baskerville',serif;font-size:0.95rem;letter-spacing:0.02em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;font-weight:700;}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:0.55rem;}
.footer-links a{font-size:0.8rem;color:rgba(255,255,255,0.55);transition:color 0.2s;}
.footer-icon{display:inline-flex;align-items:center;justify-content:center;width:0.85em;height:0.85em;margin-right:0.4em;color:#fff;vertical-align:-0.08em;}
.footer-icon svg{width:100%;height:100%;}
.footer-links a:hover{color:#fff;}
.social-row{display:flex;gap:0.6rem;margin-top:0.9rem;}
.soc{width:36px;height:36px;border:1px solid rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.6);transition:all 0.2s;text-decoration:none;}
.soc svg{width:17px;height:17px;display:block;}
.soc:hover{border-color:var(--gold);color:var(--gold);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:1.5rem;display:flex;justify-content:space-between;font-size:0.7rem;color:rgba(255,255,255,0.4);flex-wrap:wrap;gap:0.5rem;}
.footer-bottom a{color:rgba(255,255,255,0.4);}
.footer-bottom a:hover{color:rgba(255,255,255,0.8);}

/* ── SCROLL REVEAL (progressive enhancement; see main.js) ── */
.reveal-init{opacity:0;transform:translateY(10px);transition:opacity 0.4s ease,transform 0.4s ease;}
.reveal-init.is-visible{opacity:1;transform:translateY(0);}

@media(prefers-reduced-motion:reduce){
  .reveal-init{opacity:1;transform:none;transition:none;}
}

/* ── CAB BADGE ── */
.cab-notice{display:inline-flex;align-items:center;gap:0.5rem;background:#e8f5e9;color:#1b5e20;border:1px solid #a5d6a7;padding:0.4rem 0.9rem;font-size:0.68rem;letter-spacing:0.15em;text-transform:uppercase;font-weight:600;margin-bottom:1rem;}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .top-bar{display:none;}
  #delivery{scroll-margin-top:88px;}
  #mainnav{height:auto;min-height:64px;}
  .nav-inner{padding:0.6rem 1rem;flex-wrap:wrap;gap:0.5rem;height:auto;}
  .nav-links{display:none;}
  .loc-hero-inner{grid-template-columns:1fr;}
  .loc-status-box{display:block;min-width:unset;width:100%;margin-top:1.5rem;}
  .menu-content{padding:1rem;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem;}
  .dishes-2col{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .promo-card{grid-template-columns:1fr;}
  .reserve-strip{grid-template-columns:1fr;}
  .home-gallery{padding:1.5rem;}
  .delivery-section{flex-direction:column;align-items:flex-start;gap:1rem;}
  .delivery-btns{flex-direction:column;width:100%;}
  .delivery-btns .btn-del{width:100%;justify-content:center;}
  .loc-actions{flex-wrap:wrap;gap:0.5rem;}
  .loc-actions a{flex:1;min-width:140px;text-align:center;padding:0.6rem 1rem;}
  .amenities{flex-wrap:nowrap;gap:0.5rem;}
  .loc-hero{padding:2rem 1.2rem 2rem;}
  .loc-hero h1{font-size:clamp(1.8rem,7vw,3rem);}
  .loc-eyebrow{font-size:0.68rem;}
  .loc-phone a,.loc-address a{font-size:0.82rem;}
  section{padding:3rem 1.2rem;}
  #reserve{padding:3rem 1.2rem;grid-template-columns:1fr;gap:2rem;}
  #catering{padding:3rem 1.2rem;}
  .catf{grid-template-columns:1fr;}
  .reserve-info p{font-size:0.85rem;}
  .hrs{overflow-x:auto;}
  .fbox{padding:1.5rem 1rem;}
}

@media(max-width:640px){
  /* Fixes horizontal overflow: .menu-content is a CSS Grid item (via
     .page-body{grid-template-columns:1fr}) and grid items default to
     min-width:auto, which sizes the track to the content's min-content
     width instead of the viewport — here driven by .menu-tabs-wrap's
     unwrapped (white-space:nowrap) tab buttons. min-width:0 lets the
     track shrink to 100% so .menu-tabs-wrap's own overflow-x:auto can
     do its job instead of blowing out the whole page. Scoped to this
     query only — tablet/desktop use the two-column grid and don't hit
     this content, so they're intentionally left untouched. */
  .menu-content{min-width:0;}

  /* Mobile nav: logo + hamburger row */
  #mainnav{position:fixed;top:0;left:0;right:0;z-index:200;background:#fff;border-bottom:1px solid var(--border);height:60px;}
  #delivery{scroll-margin-top:60px;}
  .nav-inner{padding:0.7rem 1rem;justify-content:space-between;flex-wrap:nowrap;height:100%;}
  .nav-logo img{height:32px;}
  .nav-right{display:none;}
  .hi-logo-wrap{display:none;}

  /* Mobile menu tabs: all 5 categories visible at once, no horizontal scroll */
  .menu-tabs-wrap{overflow-x:visible;-webkit-overflow-scrolling:touch;white-space:normal;margin-bottom:1.5rem;}
  .menu-tabs-wrap > div{display:flex!important;flex-wrap:wrap!important;white-space:normal!important;}
  .menu-tabs-wrap button{display:flex!important;flex:1 1 33.333%;min-width:0;align-items:center;justify-content:center;text-align:center;padding:0.55rem 0.35rem!important;font-size:0.62rem!important;letter-spacing:0.05em!important;white-space:normal!important;line-height:1.3;}
  .menu-tabs-wrap button:nth-child(3n+1){border-left:none!important;}
  .menu-tabs-wrap button:nth-child(-n+3){border-bottom:1px solid var(--navy)!important;}

  /* Hero section */
  .loc-hero{padding:1.5rem 1rem 1.5rem;}
  .loc-hero-inner{gap:1rem;}
  .loc-status-box{padding:1rem;}
  .loc-hours-row{font-size:0.75rem;}
  .amenities{display:none;}

  /* Menu content */
  .menu-content{padding:0.8rem;}
  .menu-section-title{font-size:1.3rem;}
  .dish{padding:0.9rem 0;}
  .dish-name{font-size:0.92rem;}
  .dish-desc{font-size:0.75rem;}
  .dish-price{font-size:1rem;}
  .dish-badge{font-size:0.52rem;padding:0.15rem 0.4rem;position:static;display:inline-block;margin-bottom:0.3rem;}
  .dish:hover{margin:0;padding-left:0;padding-right:0;background:transparent;}

  /* Delivery section */
  #delivery{padding:2rem 1rem;}
  #delivery h2{font-size:1.3rem;}
  .delivery-btns{gap:0.6rem;}

  /* Form */
  .res-form{padding:1.2rem 1rem;}
  .fg input,.fg select,.fg textarea{font-size:0.95rem;padding:0.7rem 0.8rem;}
  .btn-submit{padding:0.85rem;}

  /* Home gallery: reduce padding (single-column handled by the carousel's own breakpoint) */
  .home-gallery{padding:1.2rem 1rem;}

  /* Footer */
  .footer-grid{grid-template-columns:1fr;gap:1.5rem;}
  footer{padding:2.5rem 1rem 1.5rem;}
  .footer-bottom{flex-direction:column;gap:0.4rem;font-size:0.65rem;}

  /* Reserve section contact strip */
  #reserve > div:last-child > div:last-child > div:last-child{display:none;}
  .reserve-contact-strip{grid-template-columns:1fr!important;}

  /* Promo card */
  .promo-card{padding:1.2rem;}
  .promo-card h3{font-size:1.1rem;}
  .promo-card .big-icon{font-size:2.5rem;}

  /* Menu note */
  .menu-note-box{font-size:0.72rem;padding:0.7rem 0.8rem;}
}

/* Touch-friendly dish tap highlight on mobile */
@media(hover:none){
  .dish:active{background:var(--cream);transition:none;}
  .dish:hover{margin:0!important;padding-left:0!important;padding-right:0!important;background:transparent!important;}
}

/* ══════════════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER — added for the WordPress build (not in the source
   file). The reference file's CSS had a comment referencing a "hamburger
   row" but the button and its JS were never actually built, and the
   sidebar (menu categories) simply vanished at 900px with no replacement.
   This turns the existing sidebar into a slide-in drawer under 900px,
   toggled by the hamburger button added to the nav in header.php.
   ══════════════════════════════════════════════════════════════════════ */

/* Fixed nav sits under the WordPress admin toolbar (also fixed at top:0)
   for logged-in users unless offset — only affects admins, not visitors. */
body.admin-bar nav#mainnav{top:32px;}
@media screen and (max-width:782px){
  body.admin-bar nav#mainnav{top:46px;}
}

@media(max-width:900px){
  .nav-hamburger{display:flex;}

  /* Hamburger now reveals the existing header nav links (Menu, Reservations,
     Meeting & Events, About) as a simple dropdown, replacing the old
     categories sidebar it used to open — that sidebar has been removed. */
  .nav-links.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-left:0;
    gap:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:0.5rem 0;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    z-index:150;
  }
  .nav-links.open li{width:100%;}
  .nav-links.open a{display:block;padding:0.75rem 1.5rem;}
}
