/* ============ Tokens ============ */
:root {
  --maroon: #6b1d1d;
  --maroon-dark: #4e1414;
  --saffron: #e8862e;
  --gold: #d4a23a;
  --cream: #fbf6ee;
  --cream-2: #f3e9d9;
  --ink: #241a16;
  --ink-soft: #5c4f48;
  --line: rgba(36, 26, 22, 0.12);
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(78, 20, 20, 0.12);
  --shadow-lg: 0 24px 60px rgba(78, 20, 20, 0.18);
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.05; margin: 0; font-weight: 700; letter-spacing: -0.01em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */
.btn {
  --pad-y: 11px; --pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--maroon); color: #fff; }
.btn-primary:hover { background: var(--maroon-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream-2); }
.btn-lg { --pad-y: 15px; --pad-x: 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
  color: #fff; display: grid; place-items: center; font-size: 0.95rem; letter-spacing: .5px;
  box-shadow: var(--shadow);
}
.brand-text { font-size: 1.35rem; color: var(--maroon); }
.nav-desktop { display: none; gap: 28px; }
.nav-desktop a { font-weight: 600; font-size: 0.97rem; color: var(--ink); position: relative; padding: 4px 0; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--saffron); transition: width .25s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a.active { color: var(--maroon); }
.nav-cta { display: none; gap: 10px; align-items: center; }

.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 0;
}
.hamburger span { height: 2.5px; width: 24px; background: var(--maroon); border-radius: 2px; margin: 0 auto; transition: transform .25s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--header-h); right: 0; left: 0; z-index: 99;
  background: var(--cream); border-bottom: 1px solid var(--line);
  transform: translateY(-120%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 14px 20px 22px; gap: 4px; }
.mobile-menu nav a { padding: 13px 6px; font-weight: 600; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
.mobile-menu nav a.mm-call { color: var(--maroon); }
.mobile-menu .btn-block { margin-top: 14px; }
.scrim { position: fixed; inset: 0; background: rgba(36,26,22,.4); z-index: 98; }

/* ============ Hero ============ */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(40,12,12,.55), rgba(40,12,12,.78)),
    linear-gradient(135deg, var(--maroon-dark), var(--maroon) 55%, #8a2b1a),
    url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1600&q=80");
  background-size: cover; background-position: center; background-blend-mode: multiply, normal, overlay;
}
.hero-inner { padding: clamp(64px, 14vw, 130px) 20px clamp(54px, 10vw, 96px); text-align: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700;
  color: var(--gold); margin: 0 0 16px;
}
.eyebrow-dark { color: var(--saffron); }
.hero h1 { font-size: clamp(2.7rem, 11vw, 5.4rem); margin-bottom: 18px; text-shadow: 0 4px 30px rgba(0,0,0,.3); }
.hero-sub { max-width: 560px; margin: 0 auto 30px; font-size: clamp(1rem, 3.6vw, 1.18rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center;
  padding: 0; margin: 38px 0 0; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.82); font-weight: 600;
}
.hero-badges li { position: relative; }
.hero-badges li:not(:last-child)::after { content: "·"; position: absolute; right: -13px; color: var(--gold); }

/* ============ Marquee strip ============ */
.strip { background: var(--ink); color: var(--cream); overflow: hidden; padding: 12px 0; }
.strip-track {
  display: inline-flex; gap: 26px; white-space: nowrap; font-family: var(--serif);
  font-size: 1.25rem; align-items: center; animation: scroll 26s linear infinite;
}
.strip-track span:nth-child(even) { color: var(--saffron); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ============ About ============ */
.about { padding: clamp(56px, 9vw, 110px) 0; }
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-media {
  border-radius: var(--radius); min-height: 280px; box-shadow: var(--shadow-lg);
  background:
    linear-gradient(160deg, rgba(107,29,29,.08), rgba(232,134,46,.12)),
    url("https://images.unsplash.com/photo-1631452180519-c014fe946bc7?auto=format&fit=crop&w=1000&q=80");
  background-size: cover; background-position: center;
}
.about-copy h2 { font-size: clamp(2rem, 7vw, 3.1rem); margin-bottom: 18px; color: var(--maroon); }
.about-copy p { color: var(--ink-soft); margin: 0 0 16px; max-width: 56ch; }
.about-stats { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 26px; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--serif); font-size: 2.2rem; color: var(--saffron); line-height: 1; }
.about-stats span { font-size: .85rem; color: var(--ink-soft); margin-top: 4px; }

/* ============ Section head ============ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(30px, 5vw, 52px); }
.section-head h2 { font-size: clamp(2rem, 7vw, 3.1rem); color: var(--maroon); margin-bottom: 14px; }
.section-head-light h2, .section-head-light .eyebrow { color: #fff; }
.section-head-light h2 { color: #fff; }
.section-sub { color: var(--ink-soft); margin: 0; }
.section-head-light .section-sub { color: rgba(255,255,255,.85); }

/* ============ Menu ============ */
.menu { padding: clamp(56px, 9vw, 110px) 0; background: var(--cream-2); }
.menu-tabs {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 4px 14px; margin: 0 -4px 30px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
  padding: 10px 18px; border-radius: 999px; font-family: var(--sans); font-weight: 600;
  font-size: .92rem; cursor: pointer; transition: all .2s ease; scroll-snap-align: start;
}
.chip:hover { border-color: var(--saffron); }
.chip.is-active { background: var(--maroon); color: #fff; border-color: var(--maroon); box-shadow: var(--shadow); }

.menu-cat h3 { font-size: 1.7rem; color: var(--maroon); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.dish-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.dish { display: flex; align-items: baseline; gap: 12px; }
.dish-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; }
.dish-name .veg {
  font-family: var(--sans); font-style: normal; font-size: .6rem; text-transform: uppercase;
  letter-spacing: .1em; color: #2e7d32; border: 1px solid #2e7d32; padding: 2px 5px; border-radius: 5px;
  vertical-align: middle; margin-left: 6px; font-weight: 700;
}
.dish-price {
  margin-left: auto; font-weight: 700; color: var(--maroon); font-size: 1.05rem; white-space: nowrap;
  position: relative; padding-left: 10px;
}
.dish > .dish-name { position: relative; }
.dish::before {
  content: ""; flex: 1; order: 1; border-bottom: 1.5px dotted var(--line); margin: 0 6px 5px;
}
.dish .dish-name { order: 0; }
.dish .dish-price { order: 2; margin-left: 0; padding-left: 0; }
.dish-desc { color: var(--ink-soft); font-size: .92rem; margin: 5px 0 0; max-width: 60ch; }

/* ============ Events ============ */
.events { padding: clamp(56px, 9vw, 110px) 0; background: linear-gradient(160deg, var(--maroon-dark), var(--maroon)); color: #fff; }
.event-cards { display: grid; gap: 22px; }
.event-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
  padding: 30px 26px; position: relative; backdrop-filter: blur(4px);
}
.event-card.featured { background: var(--cream); color: var(--ink); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.event-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.event-card.featured h3 { color: var(--maroon); }
.price-tag { font-size: 1rem; margin: 0 0 18px; opacity: .85; }
.price-tag strong { font-family: var(--serif); font-size: 2rem; color: var(--saffron); }
.event-card.featured .price-tag strong { color: var(--maroon); }
.event-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.event-card li { padding-left: 26px; position: relative; font-size: .95rem; }
.event-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.ribbon {
  position: absolute; top: 18px; right: 18px; background: var(--saffron); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 999px;
}

/* ============ Gallery ============ */
.gallery { padding: clamp(56px, 9vw, 110px) 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.g { border-radius: var(--radius-sm); min-height: 150px; background-size: cover; background-position: center; transition: transform .35s ease; }
.g:hover { transform: scale(1.02); }
.g1 { background-image: linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?auto=format&fit=crop&w=700&q=80"); }
.g2 { background-image: linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?auto=format&fit=crop&w=700&q=80"); }
.g3 { background-image: linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?auto=format&fit=crop&w=700&q=80"); }
.g4 { background-image: linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1565557623262-b51c2513a641?auto=format&fit=crop&w=700&q=80"); }
.g5 { background-image: linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1596797038530-2c107229654b?auto=format&fit=crop&w=700&q=80"); }
.g6 { background-image: linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1606491956689-2ea866880c84?auto=format&fit=crop&w=700&q=80"); }

/* ============ Visit + Book ============ */
.visit { padding: clamp(56px, 9vw, 110px) 0; background: var(--cream-2); }
.visit-grid { display: grid; gap: 36px; }
.visit-info h2 { font-size: clamp(2rem, 7vw, 3rem); color: var(--maroon); margin-bottom: 24px; }
.info-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 18px; }
.info-label { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--saffron); margin-bottom: 4px; }
.info-list a { font-size: 1.08rem; font-weight: 500; }
.info-list a:hover { color: var(--maroon); }
.hours table { border-collapse: collapse; width: 100%; max-width: 340px; margin-top: 6px; }
.hours th { text-align: left; font-weight: 700; padding: 6px 0; width: 40%; }
.hours td { padding: 6px 0; color: var(--ink-soft); }
.hours .closed td, .hours .closed th { color: var(--maroon); }

.book { background: var(--white); border-radius: var(--radius); padding: clamp(26px, 5vw, 40px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.book h3 { font-size: 1.9rem; color: var(--maroon); margin-bottom: 6px; }
.book-sub { color: var(--ink-soft); font-size: .92rem; margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
label .opt { font-weight: 400; color: var(--ink-soft); }
input, select, textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
  color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,134,46,.18); }
textarea { resize: vertical; }
.form-msg { margin: 14px 0 0; font-weight: 600; font-size: .92rem; min-height: 1.2em; }
.form-msg.ok { color: #2e7d32; }
.form-msg.err { color: var(--maroon); }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: var(--cream); padding: 54px 0 90px; }
.footer-grid { display: grid; gap: 28px; }
.brand-footer .brand-text { color: var(--cream); }
.footer-tag { color: rgba(251,246,238,.6); margin: 14px 0 0; max-width: 30ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-nav a { font-weight: 600; color: rgba(251,246,238,.85); }
.footer-nav a:hover { color: var(--saffron); }
.footer-contact { display: grid; gap: 8px; color: rgba(251,246,238,.7); font-size: .92rem; }
.footer-contact a:hover { color: var(--saffron); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(251,246,238,.14);
  font-size: .82rem; color: rgba(251,246,238,.55);
}

/* ============ Sticky mobile action bar ============ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,246,238,.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(78,20,20,.1);
}
.mb-btn { flex: 1; text-align: center; padding: 14px; border-radius: 12px; font-weight: 700; font-size: 1rem; }
.mb-call { background: var(--cream-2); color: var(--maroon); border: 1.5px solid var(--line); }
.mb-book { background: var(--maroon); color: #fff; }

/* ============ Responsive ============ */
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g { min-height: 200px; }
  .event-cards { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .about-grid { grid-template-columns: 1fr 1.1fr; }
  .visit-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .nav-desktop { display: flex; }
  .nav-cta { display: flex; }
  .hamburger { display: none; }
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 54px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .dish-list { grid-template-columns: 1fr 1fr; gap: 22px 48px; }
  .menu-cat h3 { grid-column: 1 / -1; }
}

@media (max-width: 380px) {
  .field-row { grid-template-columns: 1fr; }
}
