/* ═══════════════════════════════════════════════════════
   HOUSE OF CHETTINAD — Global Stylesheet
   houseofchettinad.com
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500&display=swap');

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --c:    #6B1530;   /* crimson */
  --cd:   #3E0C1C;   /* crimson dark */
  --cdd:  #250710;   /* crimson deepest */
  --g:    #C4933A;   /* gold */
  --gl:   #E8C97A;   /* gold light */
  --gll:  #F5E4B2;   /* gold lightest */
  --cr:   #FAF7F2;   /* cream */
  --crd:  #F0EAE0;   /* cream dark */
  --ink:  #1A0F08;
  --inkm: #4A3828;
  --inkl: #8A7060;
  --bdr:  rgba(196,147,58,0.18);
  --bdrm: rgba(196,147,58,0.35);
  --w:    #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --max: 1140px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cr); color: var(--ink); font-weight: 300; line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
.serif   { font-family: var(--font-display); }
.eyebrow { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; }
.label   { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; }

/* ── LAYOUT ──────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-gold {
  background: var(--g); color: var(--cdd);
  border: 1px solid var(--g);
}
.btn-gold:hover { background: var(--gl); border-color: var(--gl); }
.btn-outline {
  background: transparent; color: var(--w);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--w); }
.btn-outline-dark {
  background: transparent; color: var(--c);
  border: 1px solid var(--c);
}
.btn-outline-dark:hover { background: var(--c); color: var(--w); }
.btn-arrow::after { content: '→'; font-size: 0.9em; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── DIVIDER ─────────────────────────────────────────── */
.rule { width: 48px; height: 1px; background: var(--g); opacity: 0.6; }
.rule-full { width: 100%; height: 1px; background: var(--bdr); }

/* ── BADGE ───────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 2px 7px; border-radius: 3px; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.03em; }
.badge-v   { background:#f1f8e9; color:#558b2f; }
.badge-vg  { background:#e8f5e9; color:#2e7d32; }
.badge-gf  { background:#e3f2fd; color:#1565c0; }
.badge-hoc { background:var(--cdd); color:var(--gl); }
.badge-sp  { background:#fbe9e7; color:#bf360c; }
.badge-sh  { background:#e0f7fa; color:#00695c; }

/* ── REVEAL ANIMATION ────────────────────────────────── */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-l { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-r { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
/* JS adds .js-animate class to body, then elements start hidden for animation */
.js-animate .reveal { opacity: 0; transform: translateY(16px); }
.js-animate .reveal.in { opacity: 1; transform: none; }
.js-animate .reveal-l { opacity: 0; transform: translateX(-20px); }
.js-animate .reveal-l.in { opacity: 1; transform: none; }
.js-animate .reveal-r { opacity: 0; transform: translateX(20px); }
.js-animate .reveal-r.in { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  background: rgba(38,8,18,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,147,58,0.2);
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
}
/* Homepage only: start transparent over hero, become solid on scroll */
body.nav-hero #nav {
  background: linear-gradient(to bottom, rgba(18,3,8,0.72) 0%, transparent 100%);
  box-shadow: none;
}
body.nav-hero #nav.scrolled {
  background: rgba(38,8,18,0.97);
  box-shadow: 0 1px 0 rgba(196,147,58,0.2);
}
#nav.scrolled {
  background: rgba(38,8,18,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,147,58,0.2);
  height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--w); letter-spacing: 0.02em; line-height: 1.1; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 38px; height: 30px; object-fit: contain; flex-shrink: 0; display: block;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--font-display); font-weight: 500; color: var(--w); display: flex; flex-direction: column; align-items: center; line-height: 1; font-size: 1.15rem; }
.nav-logo-of { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.1em; opacity: 0.82; display: block; line-height: 1.4; font-family: var(--font-display); }
.nav-logo-sub { display: none; }
/* Footer logo — text only, inline style */
.footer-brand .nav-logo { gap: 0; }
.footer-brand .nav-logo-img { display: none; }
.footer-brand .nav-logo-name { flex-direction: row; align-items: baseline; gap: 0.3rem; font-size: 1.35rem; }
.footer-brand .nav-logo-of { font-size: 1rem; opacity: 1; line-height: 1; }
@media(max-width:768px){
  .nav-logo-img { width: 30px; height: 24px; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-of { font-size: 0.52rem; }
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); padding: 0.5rem 0.85rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gl); }
.nav-links a.active { color: var(--gl); }
.nav-cta {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--g); color: var(--cdd);
  padding: 0.5rem 1.1rem; border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gl); }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-mobile-btn span { display: block; width: 22px; height: 1.5px; background: var(--w); transition: all 0.25s; }
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 1001;
  background: var(--cdd); flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
  overflow-y: auto; padding: 3.5rem 2rem 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: var(--font-display); font-size: 1.6rem; color: var(--w); padding: 0.1rem 0; }
.nav-drawer a:hover { color: var(--gl); }
.nav-drawer-close { position: absolute; top: 1.25rem; right: 1.75rem; font-size: 1.5rem; color: var(--w); background: none; border: none; cursor: pointer; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; padding: 6rem 1.5rem 4rem; max-width: 820px; }
.hero-eyebrow { color: var(--gl); margin-bottom: 1.2rem; opacity: 0.9; }
.hero-title { font-size: clamp(3rem, 8vw, 6.5rem); color: var(--w); margin-bottom: 1rem; text-shadow: 0 2px 24px rgba(18,3,8,0.6); line-height: 1.08; }
.hero-title-row { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 1.25rem; }
.hero-logo { width: auto; height: clamp(160px, 22vw, 300px); object-fit: contain; filter: drop-shadow(0 2px 16px rgba(18,3,8,0.6)); flex-shrink: 0; }
.hero-title-stack { display: flex; flex-direction: column; align-items: center; text-align: center; margin: 0; padding: 0; }
.hero-title-top { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; color: var(--w); letter-spacing: 0.04em; line-height: 1.2; text-shadow: 0 1px 12px rgba(18,3,8,0.7); display: block; }
.hero-title-main { font-family: var(--font-display); font-size: clamp(4.5rem, 12vw, 10rem); font-weight: 400; color: var(--w); letter-spacing: -0.01em; line-height: 1.0; text-shadow: 0 2px 24px rgba(18,3,8,0.7); display: block; margin-top: -0.05em; }
.hero-brand { display: none; }
@media(max-width:600px){ .hero-logo { height: clamp(100px, 28vw, 140px); } .hero-title-row { gap: 1rem; } .hero-title-top { font-size: 1.6rem; } .hero-title-main { font-size: clamp(3.2rem, 14vw, 5rem); } }
.hero-sub { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--gl); margin-bottom: 2.5rem; letter-spacing: 0.04em; text-shadow: 0 1px 8px rgba(18,3,8,0.8); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; animation: bounce 2.5s ease-in-out infinite; }
.hero-scroll svg { width: 16px; height: 16px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes section-flash { 0%{background:var(--cdd)} 30%{background:rgba(196,147,58,0.18)} 100%{background:var(--cdd)} }

/* ── SECTION SPACING ─────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--cd); color: var(--w); }
.section-deepest { background: var(--cdd); color: var(--w); }
.section-cream { background: var(--crd); }

/* ── SECTION HEADER ──────────────────────────────────── */
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head .eyebrow { color: var(--g); margin-bottom: 0.75rem; display: block; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); color: inherit; line-height: 1.1; }
.section-dark .section-head h2,
.section-deepest .section-head h2 { color: var(--w); }
.section-head p { margin-top: 1rem; font-size: 1rem; color: var(--inkl); max-width: 540px; line-height: 1.75; }
.section-dark .section-head p,
.section-deepest .section-head p { color: rgba(255,255,255,0.6); }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ── FEATURE GRID ────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.feature-card:hover img { transform: scale(1.06); }
.feature-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,3,8,0.97) 0%, rgba(18,3,8,0.4) 55%, rgba(18,3,8,0.1) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem 1.5rem; }
.feature-card-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gl); margin-bottom: 0.4rem; }
.feature-card-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--w); line-height: 1.2; margin-bottom: 0.4rem; }
.feature-card-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--gl); }

/* ── STORY SPLIT ─────────────────────────────────────── */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.story-img { position: relative; overflow: hidden; min-height: 560px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-body { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; background: var(--cd); }
.story-body h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--w); margin: 1rem 0 1.5rem; }
.story-body p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 1.25rem; }
.story-body .rule { margin: 0.5rem 0 1.5rem; }

/* ── SIGNATURE DISHES ────────────────────────────────── */
.dishes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--bdr); border: 1px solid var(--bdr); }
.dish-card { background: var(--cr); padding: 2rem; transition: background 0.25s; }
.dish-card:hover { background: var(--crd); }
.dish-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.dish-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); line-height: 1.3; max-width: 260px; }
.dish-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--c); font-weight: 500; white-space: nowrap; }
.dish-badges { display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 0.5rem; }
.dish-desc { font-size: 0.82rem; color: var(--inkm); line-height: 1.6; }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--bdrm); border-bottom: 1px solid var(--bdrm); }
.stat-item { padding: 2.5rem 1rem; text-align: center; border-right: 1px solid var(--bdrm); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3rem; color: var(--gl); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card { background: var(--cr); border: 1px solid var(--bdr); border-radius: 2px; padding: 2rem; display: flex; flex-direction: column; }
.review-stars { color: var(--g); font-size: 1rem; margin-bottom: 0.85rem; letter-spacing: 2px; }
.review-text { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.review-author { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.2rem; }
.review-platform { font-size: 0.68rem; color: var(--inkl); letter-spacing: 0.05em; }
.review-platform { font-size: 0.65rem; color: var(--inkl); margin-top: 0.25rem; }

/* ── PRESS ───────────────────────────────────────────── */
.press-strip { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2.5rem 0; opacity: 0.55; }
.press-item { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em; color: var(--w); }

/* ── EXPERIENCE BLOCKS ───────────────────────────────── */
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.exp-block { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid var(--bdr); }
.exp-icon { font-size: 2rem; margin-bottom: 1.25rem; opacity: 0.8; }
.exp-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 0.75rem; }
.exp-desc { font-size: 0.83rem; color: var(--inkm); line-height: 1.7; }

/* ── HOURS / INFO GRID ───────────────────────────────── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.info-block { padding: 3rem 2.5rem; border-right: 1px solid var(--bdrm); }
.info-block:last-child { border-right: none; }
.info-block h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--gl); margin-bottom: 1.25rem; }
.info-row { display: grid; grid-template-columns: 110px 1fr; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 1rem; }
.info-row:last-child { border-bottom: none; }
.info-day { color: rgba(255,255,255,0.55); font-size: 0.92rem; white-space: nowrap; }
.info-time { color: rgba(255,255,255,0.88); font-weight: 400; font-size: 0.92rem; }
.info-address { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.9; }
.info-address a { color: var(--gl); }
.info-address strong { display: block; color: var(--w); font-weight: 400; margin-bottom: 0.5rem; }

/* ── MAP EMBED ───────────────────────────────────────── */
.map-wrap { position: relative; height: 340px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) contrast(0.95); }

/* ── FOOTER ──────────────────────────────────────────── */
#footer { background: var(--cdd); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--g); color: var(--gl); }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--g); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.93rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gl); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
.footer-seo { font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: 600px; line-height: 1.6; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero { position: relative; height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,3,8,0.92) 0%, rgba(18,3,8,0.6) 50%, rgba(18,3,8,0.35) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 3rem 4rem 3.5rem; }
.page-hero-content .eyebrow { color: var(--gl); margin-bottom: 0.75rem; display: block; }
.page-hero-content h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--w); line-height: 1.05; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.page-hero-content p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--gl); margin-top: 0.5rem; }

/* ── MENU PAGE ───────────────────────────────────────── */
.menu-nav-sticky {
  position: sticky; top: 60px; z-index: 90;
  background: rgba(250,247,242,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bdr);
  overflow-x: auto; white-space: nowrap; scrollbar-width: none;
}
.menu-nav-sticky::-webkit-scrollbar { display: none; }
.menu-nav-inner { display: inline-flex; padding: 0 1rem; }
.menu-tab { display: inline-block; padding: 0.85rem 1rem; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--inkl); border-bottom: 2px solid transparent; transition: all 0.2s; border-radius: 0; }
.menu-tab:hover { color: var(--c); border-bottom-color: var(--g); }
.menu-tab.active { 
  color: var(--cdd); 
  background: var(--g); 
  border-bottom: 2px solid var(--g);
  font-weight: 700; 
  font-size: 0.72rem; 
  letter-spacing: 0.08em;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  margin: 0.35rem 0.15rem;
}
.menu-section-wrap { scroll-margin-top: 130px; }

/* Clean text section header — replaces banner images */
.menu-section-banner { position: relative; margin: 2.5rem 0 0.5rem; padding: 1.5rem 0 1.1rem; border-top: 2px solid var(--bdr); display: flex; flex-direction: column; gap: 0.2rem; background: none; height: auto; border-radius: 0; overflow: visible; }
.menu-section-banner img { display: none; }
.menu-section-banner:hover img { transform: none; }
.menu-banner-overlay { position: static; background: none; display: flex; flex-direction: column; padding: 0; }
.menu-banner-text .eyebrow { color: var(--g); display: block; margin-bottom: 0.35rem; font-size: 0.62rem; letter-spacing: 0.28em; }
.menu-banner-text h3 { font-family: var(--font-display); font-size: 2.4rem; color: var(--cd); line-height: 1.05; text-shadow: none; font-weight: 400; }
.menu-banner-text p { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--inkl); margin-top: 0.2rem; opacity: 1; }
/* ── Dark styled banner — rich crimson-deepest with gold accent ── */
.menu-section-banner.dark-banner { border-top: none; padding: 0; margin: 2.5rem 0 0; border-radius: 3px; overflow: hidden; background: var(--cdd); border-left: 5px solid var(--g); }
.menu-section-banner.dark-banner img { display: none; }
.menu-section-banner.dark-banner .menu-banner-overlay { position: static; background: none; padding: 1.2rem 2rem 1.1rem; border-left: none; flex-direction: column; justify-content: center; }
.menu-section-banner.dark-banner .menu-banner-text h3 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--w); font-weight: 600; line-height: 1.05; margin: 0 0 0.3rem; letter-spacing: -.01em; }
.menu-section-banner.dark-banner .menu-banner-text p { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--gl); opacity: 0.85; margin: 0; }
@media(max-width:600px) { .menu-section-banner.dark-banner .menu-banner-overlay { padding: 0.7rem 1.25rem 0.65rem; } }
.menu-featured {
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  border-radius: 4px; border: 1px solid var(--bdrm); margin: 1rem 0 0.5rem;
  background: var(--cdd);
}
.menu-featured img { width: 100%; height: 220px; object-fit: cover; }
.menu-featured-body { padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.menu-featured-body .eyebrow { color: var(--g); display: block; margin-bottom: 0.5rem; }
.menu-featured-body h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--w); margin-bottom: 0.6rem; line-height: 1.25; }
.menu-featured-body p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0.75rem; }
.menu-featured-body .price { font-family: var(--font-display); font-size: 1.65rem; color: var(--gl); font-weight: 400; }
.menu-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.menu-item { display: flex; gap: 0.85rem; padding: 1.25rem 0.5rem 1.25rem 0; border-bottom: 1px solid rgba(196,147,58,0.1); align-items: flex-start; }
.menu-item:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid rgba(196,147,58,0.1); }
.menu-item-thumb { width: 76px; height: 76px; border-radius: 3px; object-fit: cover; flex-shrink: 0; background: var(--crd); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-top { display: flex; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.3rem; }
.menu-item-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.menu-item-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--c); white-space: nowrap; flex-shrink: 0; }
.menu-item-desc { font-size: 0.95rem; color: var(--inkm); line-height: 1.65; }
.menu-item-note { font-size: 0.8rem; color: var(--inkl); font-style: italic; margin-top: 0.25rem; }
.menu-subsection { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--g); padding: 1.5rem 0 0.5rem; border-bottom: 1px solid var(--bdr); margin-bottom: 0.25rem; }

/* ── HH GRID ─────────────────────────────────────────── */
.hh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
.hh-card { background: var(--cdd); border: 1px solid var(--bdrm); border-radius: 3px; padding: 1.25rem 1.5rem; text-align: center; }
.hh-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gl); margin-bottom: 0.3rem; }
.hh-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.hh-deal { margin-top: 0.5rem; font-size: 0.8rem; font-weight: 400; color: var(--gl); }

/* ── CATERING ────────────────────────────────────────── */
.catering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.catering-card { position: relative; overflow: hidden; }
.catering-card img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s var(--ease); }
.catering-card:hover img { transform: scale(1.04); }
/* ── Catering Options (Menu + Packages side by side) ── */
.catering-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.catering-option-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,147,58,0.2); border-radius: 4px; padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.3s, background 0.3s; }
.catering-option-card:hover { border-color: rgba(196,147,58,0.5); background: rgba(255,255,255,0.07); }
.catering-option-icon { font-size: 2rem; line-height: 1; }
.catering-option-card h3 { font-family: var(--font-display); font-size: 1.65rem; color: var(--w); line-height: 1.2; }
.catering-option-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.catering-option-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.catering-option-list li { font-size: 0.82rem; color: rgba(255,255,255,0.7); padding-left: 1.25rem; position: relative; line-height: 1.5; }
.catering-option-list li::before { content: '✦'; position: absolute; left: 0; color: var(--g); font-size: 0.5rem; top: 0.3rem; }
@media(max-width:768px){ .catering-options-grid { grid-template-columns: 1fr; } }
.catering-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,3,8,0.97) 0%, rgba(18,3,8,0.75) 50%, rgba(18,3,8,0.35) 100%); display: flex; align-items: flex-end; padding: 2rem; }
.catering-text h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--w); margin-bottom: 0.4rem; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
.catering-text p { font-size: 0.78rem; color: rgba(255,255,255,0.85); line-height: 1.6; text-shadow: 0 1px 4px rgba(0,0,0,0.9); }
/* ── Event Package Cards ── */
.cater-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cater-pkg-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,147,58,0.2); border-radius: 4px; padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; transition: border-color 0.3s; }
.cater-pkg-card:hover { border-color: rgba(196,147,58,0.45); }
.cater-pkg-featured { background: rgba(196,147,58,0.08); border-color: rgba(196,147,58,0.45); }
.cater-pkg-badge { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--g); display: inline-block; }
.cater-pkg-popular { background: var(--g); color: var(--cdd); padding: 3px 10px; border-radius: 2px; }
.cater-pkg-card h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--w); line-height: 1.2; }
.cater-pkg-card > p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.cater-pkg-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; border-top: 1px solid rgba(196,147,58,0.15); padding-top: 1rem; }
.cater-pkg-card li { font-size: 0.8rem; color: rgba(255,255,255,0.7); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.cater-pkg-card li::before { content: '✦'; position: absolute; left: 0; color: var(--g); font-size: 0.45rem; top: 0.35rem; }
.cater-pkg-custom { text-align: center; margin-top: 2rem; padding: 1.5rem 2rem; border: 1px dashed rgba(196,147,58,0.25); border-radius: 4px; }
.cater-pkg-custom p { font-family: var(--font-display); font-size: 1.2rem; color: var(--w); margin-bottom: 0.4rem; }
.cater-pkg-custom span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
@media(max-width:900px){ .cater-menu-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:768px){ .cater-pkg-grid { grid-template-columns: 1fr; } .cater-menu-grid { grid-template-columns: 1fr; } }
.catering-form { background: var(--crd); border: 1px solid var(--bdr); border-radius: 3px; padding: 2.5rem; }
.catering-form h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--inkl); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 0.9rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  background: var(--w); border: 1px solid var(--bdr); border-radius: 2px; color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--g); }
.form-group textarea { min-height: 100px; resize: vertical; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); margin: 0.75rem 0 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { width: 36px; height: 36px; background: var(--crd); border: 1px solid var(--bdr); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--inkl); margin-bottom: 0.25rem; }
.contact-detail-text span { font-size: 0.88rem; color: var(--inkm); line-height: 1.6; }
.contact-detail-text a { color: var(--c); }

/* ── NOTICE BAR ──────────────────────────────────────── */
.notice { background: #fffbf0; border: 1px solid rgba(196,147,58,0.25); border-radius: 3px; padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--inkm); display: flex; gap: 0.5rem; margin: 1.25rem 0; }
.notice::before { content: '✦'; color: var(--g); flex-shrink: 0; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { aspect-ratio: 16/9; }
  .story-split { grid-template-columns: 1fr; }
  .story-img { min-height: 300px; }
  .story-body { padding: 3rem 2rem; }
  .dishes-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-block { border-right: none; border-bottom: 1px solid var(--bdrm); }
  .info-block:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
  .menu-featured { grid-template-columns: 1fr; }
  .hh-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .wrap { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .page-hero-content { padding: 2rem 1.5rem 2.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
}

/* ── MOBILE UX ENHANCEMENTS (600px and below) ────────── */
/* All rules below are mobile-only — zero impact on desktop */
@media (max-width: 600px) {

  /* 1. Menu tab bar — fade right edge to signal more tabs exist */
  .menu-nav-sticky {
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
    mask-image: linear-gradient(to right, black 75%, transparent 100%);
    top: 56px; /* tighter on mobile nav */
  }

  /* 2. Larger touch targets on menu tabs — 44px minimum (Apple HIG) */
  .menu-tab {
    padding: 0.95rem 1.1rem;
    font-size: 0.62rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* 3. Active tab — solid gold pill, dark text, unmissable on phone */
  .menu-tab.active {
    background: var(--g);
    color: var(--cdd);
    font-weight: 700;
    font-size: 0.68rem;
    border-radius: 3px;
    border-bottom: 2px solid var(--g);
    padding: 0.55rem 1.1rem;
    margin: 0.3rem 0.15rem;
  }

  /* 4. Float CTA — stays bottom-right on mobile */
  #float-cta {
    bottom: 1.1rem;
    right: 1.1rem;
    left: auto;
    align-items: flex-end;
  }

  /* 5. Menu section banners — shorter on mobile, less scroll fatigue */
  .menu-section-banner.dark-banner {
    min-height: 80px;
    margin: 2rem 0 0;
    border-left: 5px solid var(--g);
    border-radius: 3px;
  }
  .menu-section-banner.dark-banner .menu-banner-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .menu-section-banner.dark-banner .menu-banner-overlay {
    padding: 1rem 1.25rem 0.9rem;
    border-left: none;
  }

  /* 6. Menu items — better spacing and readability on small screens */
  .menu-item {
    padding: 1rem 0;
    gap: 0.65rem;
  }
  .menu-item-name {
    font-size: 1rem;
    line-height: 1.3;
  }
  .menu-item-price {
    font-size: 1rem;
    white-space: nowrap;
  }
  .menu-item-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* 7. Menu item thumb — smaller on mobile, saves horizontal space */
  .menu-item-thumb {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  .menu-item-thumb-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  /* 8. Notice bar — compact on mobile */
  .notice {
    font-size: 0.72rem;
    padding: 0.55rem 0.85rem;
    line-height: 1.5;
  }

  /* 9. Hero actions — stack buttons vertically on small screens */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* 10. Page hero — compact on mobile */
  .page-hero {
    height: 240px;
  }
  .page-hero-content {
    padding: 1.5rem 1.25rem 2rem;
  }
  .page-hero-content h1 {
    font-size: 2.2rem;
  }
  .page-hero-content p {
    font-size: 0.9rem;
  }

  /* 11. Menu subsection headers — tighter */
  .menu-subsection {
    font-size: 0.6rem;
    padding: 0.65rem 1rem;
    letter-spacing: 0.2em;
  }

  /* 12. Section headings scale down */
  .section-head h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  /* 13. Wrap padding — tighter on phones */
  .wrap {
    padding: 0 1rem;
  }

  /* 14. Footer — readable on small screens */
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  /* 15. Review cards */
  .review-card {
    padding: 1.25rem;
  }
  .review-text {
    font-size: 0.88rem;
  }

  /* 16. Badges — slightly smaller on mobile */
  .badge {
    font-size: 0.5rem;
    padding: 1px 4px;
  }

  /* 17. Menu scroll-margin — account for mobile nav height */
  .menu-section-wrap {
    scroll-margin-top: 110px;
  }

  /* 18. Star dishes grid — single column on phones */
  .star-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* 19. Bar cocktail grid — single column on phones */
  .cocktail-grid {
    grid-template-columns: 1fr;
  }
  .cc-category {
    grid-column: 1;
  }

  /* 20. Happy Hour banner — more compact text on phones */
  #hh-sticky-bar {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    line-height: 1.5;
  }

  /* 21. Wine-beer grid — stack on mobile */
  .wine-beer-grid {
    grid-template-columns: 1fr;
  }

  /* 22. Snacks grid — single column */
  .snacks-grid {
    grid-template-columns: 1fr;
  }

  /* 23. Spirit grid — 2 col on phones */
  .spirit-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* 24. Cocktail featured — stack on mobile */
  .cocktail-featured {
    grid-template-columns: 1fr;
  }
  .cocktail-featured-img {
    min-height: 260px;
  }
  .cocktail-featured-body {
    padding: 2rem 1.5rem;
  }

  /* 25. Catering package grid — single column */
  .cater-pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ACCESSIBILITY FONT SIZE WIDGET — floats bottom-right with page ── */
#a11y-widget{display:flex;align-items:center;gap:2px;background:rgba(14,2,5,0.9);border:1px solid rgba(196,147,58,.3);border-radius:50px;padding:4px 10px;box-shadow:0 2px 10px rgba(0,0,0,.3);}
#a11y-widget .a11y-btn{background:none;border:none;color:rgba(255,255,255,.6);cursor:pointer;font-family:inherit;font-size:.95rem;font-weight:700;width:26px;height:26px;border-radius:50%;display:flex;align-items:center;justify-content:center;line-height:1;transition:color .2s,background .2s;padding:0;}
#a11y-widget .a11y-btn:hover{color:#fff;background:rgba(196,147,58,.15);}
#a11y-widget .a11y-btn.active{background:rgba(196,147,58,.2);color:#c4933a;}
#a11y-widget .a11y-sep{width:1px;height:14px;background:rgba(255,255,255,.15);margin:0 2px;}

/* ── MOBILE NAV — ensure home icon/logo always visible ── */
@media(max-width:900px){
  .nav-logo{z-index:1002;position:relative;}
  #nav{padding:0 1rem;}
}
