:root {
  --cream: #fff7e8;
  --cream-2: #f7ead4;
  --flour: #fffdf8;
  --coffee: #442816;
  --coffee-2: #6f4327;
  --red: #b84845;
  --gold: #d8a24a;
  --muted: #745c4a;
  --dark: #20140d;
  --shadow: 0 24px 70px rgba(68, 40, 22, .18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #fff8ec 0%, #fffdf8 42%, #fff4e3 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }

.top-bar {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 10px 18px;
  background: var(--coffee);
  color: #fff3dc;
  font-size: 14px;
}
.top-bar p { margin: 0; }
.top-bar a { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.55); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 239, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(68, 40, 22, .1);
}
.nav-wrap {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--coffee); line-height: 1; }
.brand img { width: 70px; height: 50px; object-fit: contain; }
.brand span { font-family: 'Playfair Display', serif; font-size: 25px; }
.brand small { font-family: 'Poppins', sans-serif; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--coffee); font-weight: 600; }
.nav-links a { transition: color .2s ease, transform .2s ease; }
.nav-links a:hover { color: var(--red); transform: translateY(-1px); }
.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(184,72,69,.22);
}
.nav-toggle { display: none; background: var(--coffee); color: white; border: 0; border-radius: 12px; padding: 9px 12px; font-size: 22px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 78px;
  background:
    radial-gradient(circle at 85% 10%, rgba(216,162,74,.22), transparent 34%),
    linear-gradient(135deg, #fff8eb 0%, #fffdf8 58%, #f6e4ca 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 28px 28px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(184,72,69,.08);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr .85fr;
  gap: 54px;
  align-items: center;
}
.hero-content {
  color: var(--coffee);
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
}

.heritage-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 8px 15px 8px 9px;
  border: 1px solid rgba(216,162,74,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 12px 28px rgba(68,40,22,.08);
}
.heritage-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--coffee);
  color: #fff8eb;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.heritage-copy { display: grid; gap: 1px; text-align: left; }
.heritage-copy strong {
  color: var(--coffee);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.05;
}
.heritage-copy small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
}
.hero h1 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(44px, 6.4vw, 78px);
  max-width: 780px;
}
.hero-copy {
  max-width: 640px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  color: var(--muted);
  margin: 24px 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--red); color: #fff; box-shadow: 0 18px 38px rgba(184,72,69,.28); }
.btn.secondary {
  background: #fff;
  color: var(--coffee);
  border: 1px solid rgba(68,40,22,.16);
  box-shadow: 0 12px 28px rgba(68,40,22,.08);
}
.hero-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-mini-list span {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(68,40,22,.11);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(68,40,22,.07);
}
.hero-photo-card {
  position: relative;
  border-radius: 36px;
  padding: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(68,40,22,.12);
  box-shadow: var(--shadow);
}
.hero-photo-card img {
  width: 100%;
  aspect-ratio: 1 / .92;
  object-fit: cover;
  border-radius: 28px;
}
.hero-badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,249,237,.94);
  color: var(--coffee);
  box-shadow: 0 16px 38px rgba(32,20,13,.18);
}
.hero-badge strong { font-family: 'Playfair Display', serif; font-size: 22px; }
.hero-badge span { color: var(--muted); font-size: 13px; font-weight: 700; }

.intro-strip { padding: 72px 0 24px; }
.strip-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: end; }
h2 { font-size: clamp(36px, 5.3vw, 66px); margin: 0; color: var(--coffee); }
.about-copy { display: grid; gap: 16px; }
.strip-grid .about-copy > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.strip-grid .heritage-note {
  padding: 15px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(216,162,74,.10);
  font-size: 15px;
  line-height: 1.65;
}
.strip-grid .heritage-note strong { color: var(--coffee); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 54px 0 70px;
}
.feature-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(68, 40, 22, .1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(68, 40, 22, .08);
}
.icon { font-size: 34px; margin-bottom: 16px; }
.feature-card h3, .menu-card h3, .party-copy h3, .contact-card strong {
  margin: 0 0 10px;
  color: var(--coffee);
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}
.feature-card p { color: var(--muted); line-height: 1.65; margin: 0; }

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  padding: 64px 0 82px;
  align-items: center;
}
.split-copy p:not(.section-kicker), .party-copy p, .order-copy p { color: var(--muted); line-height: 1.8; font-size: 17px; }
.tick-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.tick-list li { position: relative; padding-left: 34px; color: var(--coffee); font-weight: 600; }
.tick-list li::before { content: '✓'; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; border-radius: 50%; background: #f2dcc5; color: var(--red); display: grid; place-items: center; font-weight: 900; }
.menu-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.menu-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(68, 40, 22, .11);
  box-shadow: var(--shadow);
}
.menu-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--coffee); color: #fff; font-weight: 800; margin-bottom: 20px; }
.menu-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.menu-card:nth-child(even) { transform: translateY(28px); background: var(--cream); }

.gallery-band { padding: 84px 0; background: var(--coffee); color: #fff; }
.gallery-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.gallery-head h2 { color: #fff5e6; max-width: 720px; }
.gallery-copy { max-width: 460px; color: rgba(255,245,230,.82); line-height: 1.7; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.gallery-card figcaption {
  padding: 12px 14px 15px;
  color: #fff5e6;
  font-size: 14px;
  font-weight: 700;
}

.party-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; padding: 92px 0; }
.party-image { position: relative; }
.party-image::before { content: ''; position: absolute; inset: 28px -24px -24px 28px; border-radius: 34px; background: var(--gold); opacity: .25; }
.party-image img { position: relative; aspect-ratio: 1 / .88; width: 100%; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.party-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.party-list span { border-radius: 999px; padding: 10px 14px; background: #fff; border: 1px solid rgba(68,40,22,.1); color: var(--coffee); font-weight: 700; }

.order-section { padding: 92px 0; background: linear-gradient(135deg, #fff2dd, #fffdf8); }
.order-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-card { background: var(--coffee); color: #fff7e6; border-radius: 24px; padding: 24px; margin-top: 28px; box-shadow: var(--shadow); }
.contact-card strong { color: #fff; font-size: 24px; }
.contact-card p { color: #fff0da !important; margin-bottom: 0; }
.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(68,40,22,.11);
  box-shadow: var(--shadow);
}
.order-form label { display: grid; gap: 8px; color: var(--coffee); font-weight: 700; }
.order-form input, .order-form select, .order-form textarea {
  width: 100%;
  border: 1px solid rgba(68,40,22,.16);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--dark);
  background: #fffaf2;
  outline: none;
}
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(184,72,69,.12); }
.full { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; margin: -2px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }


.location-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(216,162,74,.18), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(184,72,69,.10), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #fff7eb 48%, #fffdf8 100%);
}
.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(68,40,22,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(68,40,22,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.location-shell { position: relative; z-index: 1; }
.location-heading {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}
.location-heading h2 { margin-bottom: 14px; }
.location-heading p:not(.section-kicker) {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}
.location-panel {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 22px;
  align-items: stretch;
}
.map-card {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(68,40,22,.12);
  box-shadow: 0 32px 90px rgba(68,40,22,.16);
}
.map-card::after {
  content: '';
  position: absolute;
  inset: 28px -18px -18px 28px;
  border-radius: 38px;
  background: var(--coffee);
  opacity: .07;
  z-index: -1;
}
.map-wrap {
  height: 492px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(68,40,22,.10);
  background: #fff;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9) contrast(.98); }
.map-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,253,248,.94);
  border: 1px solid rgba(68,40,22,.11);
  box-shadow: 0 18px 50px rgba(68,40,22,.18);
  backdrop-filter: blur(12px);
}
.map-overlay span { color: var(--coffee); font-weight: 900; }
.map-overlay p { margin: 0; color: var(--muted); font-weight: 600; text-align: right; }
.visit-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 38px;
  background: linear-gradient(180deg, #432717 0%, #24150d 100%);
  color: #fff6e8;
  box-shadow: 0 32px 90px rgba(68,40,22,.18);
}
.location-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(216,162,74,.18);
  color: #ffd995;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 18px;
}
.visit-card h3 {
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.05;
  color: #fff;
}
.visit-list { display: grid; gap: 18px; }
.visit-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.visit-list strong { display: block; margin-bottom: 7px; color: #ffd995; }
.visit-list p { margin: 0; color: #f7e5cf; line-height: 1.65; }
.location-actions { display: grid; gap: 12px; margin-top: auto; padding-top: 26px; }
.location-actions .btn { width: 100%; justify-content: center; text-align: center; }
.visit-card .btn.secondary { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.visit-card .btn.secondary:hover { background: rgba(255,255,255,.14); }

.footer { background: #1d120c; color: #f9ead5; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo { width: 145px; margin-bottom: 16px; background: #fff7e8; border-radius: 18px; padding: 8px; }
.footer h3 { color: #fff; margin: 0 0 12px; font-family: 'Playfair Display', serif; font-size: 25px; }
.footer p { color: #ddc8af; line-height: 1.7; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding: 18px; text-align: center; }

.footer-credit { color: rgba(221,200,175,.72); }
.footer-credit a {
  color: #f0c77a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(240,199,122,.32);
  transition: color .2s ease, border-color .2s ease;
}
.footer-credit a:hover, .footer-credit a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.65);
}

.footer-admin-link {
  display: inline-block;
  margin-top: 6px;
  color: rgba(221,200,175,.65);
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-admin-link:hover, .footer-admin-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.45);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #1f9e54;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(31,158,84,.28);
}

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #fffaf1;
    border: 1px solid rgba(68,40,22,.12);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .feature-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid, .split-section, .party-section, .order-grid, .location-panel { grid-template-columns: 1fr; }
  .menu-card:nth-child(even) { transform: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-photo-card { max-width: 620px; }
}

@media (max-width: 640px) {
  .brand span { font-size: 21px; }
  .brand img { width: 58px; }
  .hero { padding: 48px 0 58px; }
  .hero h1 { font-size: 42px; }
  .hero-actions .btn, .btn { width: 100%; }
  .hero-badge { left: 22px; right: 22px; bottom: 22px; }
  .feature-grid, .menu-board, .footer-grid, .order-form { grid-template-columns: 1fr; }
  .gallery-head { display: block; }
  .gallery-copy { margin-top: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .gallery-card figcaption { font-size: 13px; padding: 10px 12px 12px; }
  .map-card-head, .location-actions { flex-direction: column; align-items: stretch; }
  .map-card-head h3 { font-size: 24px; }
  .map-card { min-height: 390px; }
  .map-wrap { height: 360px; }
  .map-overlay { position: static; margin-top: 12px; display: block; }
  .map-overlay p { text-align: left; margin-top: 5px; }
  .visit-card { padding: 26px; }
  .visit-card h3 { font-size: 30px; }
  .floating-whatsapp { left: 18px; right: 18px; text-align: center; }
}


/* =========================================================
   Interactive menu book + WhatsApp enquiry refresh
   ========================================================= */
.menu-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0 98px;
  background:
    radial-gradient(circle at 8% 10%, rgba(216,162,74,.18), transparent 28%),
    radial-gradient(circle at 94% 86%, rgba(184,72,69,.10), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff5e5 100%);
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(68,40,22,.065) .7px, transparent .7px);
  background-size: 18px 18px;
  opacity: .42;
}
.menu-section > .container { position: relative; z-index: 1; }
.menu-intro {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 30px;
}
.menu-intro-copy { max-width: 660px; justify-self: end; }
.menu-intro-copy > p:first-child { margin: 0; color: var(--muted); line-height: 1.8; font-size: 17px; }
.menu-note {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-left: 3px solid var(--gold);
  color: var(--coffee-2);
  background: rgba(255,255,255,.52);
  border-radius: 0 12px 12px 0;
  font-size: 13px;
  line-height: 1.55;
}
.menu-category-tabs {
  display: flex;
  gap: 9px;
  margin: 0 0 22px;
  overflow-x: auto;
  padding: 3px 2px 10px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.menu-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(68,40,22,.13);
  background: rgba(255,255,255,.72);
  color: var(--coffee);
  border-radius: 999px;
  padding: 11px 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.menu-tab:hover, .menu-tab.active {
  background: var(--coffee);
  color: #fff8e9;
  border-color: var(--coffee);
  box-shadow: 0 10px 24px rgba(68,40,22,.15);
}
.menu-book-shell { position: relative; padding: 0 60px; }
.menu-book {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 585px;
  border-radius: 32px;
  background: #3c2416;
  box-shadow: 0 36px 90px rgba(55,31,17,.24);
  overflow: hidden;
  isolation: isolate;
}
.menu-book::before {
  content: '';
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 22px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(40,22,12,.2), rgba(255,255,255,.18), rgba(40,22,12,.2));
  filter: blur(5px);
  opacity: .7;
  pointer-events: none;
}
.menu-page {
  display: none;
  min-width: 0;
  min-height: 585px;
  padding: 34px 42px 30px;
  background:
    linear-gradient(rgba(255,255,255,.22), rgba(255,255,255,.22)),
    repeating-linear-gradient(0deg, rgba(68,40,22,.018) 0, rgba(68,40,22,.018) 1px, transparent 1px, transparent 4px),
    #fffaf0;
  color: var(--coffee);
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  animation: menuPageIn .34s ease both;
}
.menu-page.is-active, .menu-page.is-next { display: flex; }
.menu-page.is-active { border-right: 1px solid rgba(68,40,22,.16); }
.menu-page.is-active::after,
.menu-page.is-next::after {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(68,40,22,.08);
  border-radius: 20px;
  pointer-events: none;
}
.menu-page.is-active { transform-origin: right center; }
.menu-page.is-next { transform-origin: left center; }
@keyframes menuPageIn {
  from { opacity: .45; transform: perspective(1100px) rotateY(2deg) translateY(5px); }
  to { opacity: 1; transform: perspective(1100px) rotateY(0) translateY(0); }
}
.page-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(68,40,22,.14);
  color: var(--coffee-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.page-topline span:first-child {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  letter-spacing: 0;
}
.menu-page-kicker {
  margin: 0 0 7px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
}
.menu-page h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
}
.page-lead { margin: 14px 0 22px; color: var(--muted); line-height: 1.65; font-size: 14px; max-width: 470px; }
.menu-items { display: grid; gap: 0; }
.menu-items > div {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-top: 1px dashed rgba(68,40,22,.18);
}
.menu-items strong { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--coffee); }
.menu-items span { color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.menu-enquire {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  padding: 14px 0 3px;
  border: 0;
  border-top: 1px solid rgba(68,40,22,.16);
  background: transparent;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}
.menu-enquire span { font-size: 20px; transition: transform .2s ease; }
.menu-enquire:hover span { transform: translateX(4px); }
.book-arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(68,40,22,.12);
  border-radius: 50%;
  background: #fff;
  color: var(--coffee);
  box-shadow: 0 14px 34px rgba(68,40,22,.15);
  font: 500 34px/1 Arial, sans-serif;
  cursor: pointer;
  transition: .2s ease;
}
.book-arrow:hover { background: var(--coffee); color: #fff; transform: translateY(-50%) scale(1.05); }
.book-arrow:disabled { opacity: .32; cursor: default; transform: translateY(-50%); }
.book-arrow.prev { left: 0; }
.book-arrow.next { right: 0; }
.book-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}
.book-progress { display: grid; gap: 8px; min-width: min(390px, 45vw); color: var(--muted); font-size: 12px; font-weight: 800; }
.book-progress-bar { height: 4px; overflow: hidden; border-radius: 999px; background: rgba(68,40,22,.12); }
.book-progress-bar i { display: block; width: 33.333%; height: 100%; border-radius: inherit; background: var(--red); transition: width .28s ease; }

/* WhatsApp enquiry */
.order-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(31,158,84,.09), transparent 29%),
    linear-gradient(135deg, #fff2dd 0%, #fffdf8 68%);
}
.order-section::after {
  content: '';
  position: absolute;
  width: 330px;
  height: 330px;
  left: -120px;
  bottom: -160px;
  border-radius: 50%;
  border: 55px solid rgba(216,162,74,.09);
}
.order-grid { position: relative; z-index: 1; grid-template-columns: .82fr 1.18fr; gap: 54px; }
.order-copy { position: sticky; top: 118px; }
.enquiry-steps { display: grid; gap: 15px; margin: 30px 0; }
.enquiry-steps > div { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.enquiry-steps > div > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coffee);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}
.enquiry-steps p { margin: 0 !important; font-size: 14px !important; line-height: 1.55 !important; }
.enquiry-steps strong { color: var(--coffee); }
.direct-whatsapp-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 16px;
  margin-top: 28px;
  border: 1px solid rgba(31,158,84,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 30px rgba(68,40,22,.07);
}
.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f9e54;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.wa-icon {
  display: block;
  width: 18px;
  height: 18px;
}
.whatsapp-mark .wa-icon {
  width: 22px;
  height: 22px;
}
.whatsapp-dot .wa-icon,
.floating-whatsapp span .wa-icon {
  width: 16px;
  height: 16px;
}
.direct-whatsapp-card strong { color: var(--coffee); font-size: 14px; }
.direct-whatsapp-card p { margin: 2px 0 0 !important; font-size: 12px !important; line-height: 1.4 !important; }
.direct-whatsapp-card a { color: #187941; font-weight: 900; font-size: 12px; white-space: nowrap; }
.enquiry-form { padding: 30px; gap: 17px; border-radius: 34px; background: rgba(255,255,255,.93); }
.form-heading span { color: #1f9e54; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
.form-heading h3 { margin: 4px 0 5px; color: var(--coffee); font-family: 'Playfair Display', serif; font-size: 30px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.enquiry-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.enquiry-type {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px !important;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(68,40,22,.13);
  border-radius: 16px;
  background: #fffaf2;
  cursor: pointer;
  transition: .18s ease;
}
.enquiry-type:hover { transform: translateY(-1px); border-color: rgba(31,158,84,.4); }
.enquiry-type.active { background: #f1fbf5; border-color: rgba(31,158,84,.65); box-shadow: 0 0 0 3px rgba(31,158,84,.07); }
.enquiry-type input { position: absolute; opacity: 0; pointer-events: none; }
.enquiry-icon { font-size: 22px; line-height: 1; }
.enquiry-type > span:last-child { display: grid; min-width: 0; }
.enquiry-type strong { color: var(--coffee); font-size: 12.5px; white-space: nowrap; }
.enquiry-type small { color: var(--muted); font-size: 9.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-lead-time {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(68,40,22,.12);
  border-radius: 16px;
  background: #fff7e8;
}
.order-lead-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
}
.order-lead-time strong { color: var(--coffee); font-size: 12.5px; }
.order-lead-time p { margin: 2px 0 0; color: var(--muted); font-size: 11.5px; line-height: 1.45; }
.order-lead-time b { color: var(--coffee-2); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 3px 0 -1px; color: var(--coffee-2); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.form-divider::before, .form-divider::after { content: ''; height: 1px; flex: 1; background: rgba(68,40,22,.11); }
.whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #1f9e54;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 17px 36px rgba(31,158,84,.22);
  transition: .2s ease;
}
.whatsapp-submit:hover { transform: translateY(-2px); background: #178a48; }
.whatsapp-dot { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.2); }
.enquiry-form .form-note { text-align: center; }
.floating-whatsapp { display: flex; align-items: center; gap: 8px; }
.floating-whatsapp span { display: inline-grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(255,255,255,.17); }

@media (max-width: 980px) {
  .menu-intro { grid-template-columns: 1fr; gap: 20px; }
  .menu-intro-copy { justify-self: start; }
  .menu-book-shell { padding: 0 52px; }
  .order-copy { position: static; }
  .order-grid { gap: 36px; }
}

@media (max-width: 760px) {
  .menu-section { padding: 70px 0 76px; overflow: visible; }
  .menu-book-shell { padding: 0; }
  .menu-book {
    grid-template-columns: 1fr;
    min-height: 0;
    height: 72vh;
    height: 72dvh;
    max-height: 680px;
    min-height: 500px;
    border-radius: 26px;
    touch-action: pan-y;
  }
  .menu-book::before { display: none; }
  .menu-page.is-next { display: none; }
  .menu-page.is-active {
    border-right: 0;
    min-height: 0;
    height: 100%;
    padding: 30px 27px 88px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    scrollbar-width: thin;
  }
  .book-arrow { top: auto; bottom: 18px; transform: none; width: 44px; height: 44px; z-index: 10; }
  .book-arrow:hover { transform: scale(1.04); }
  .book-arrow:disabled { transform: none; }
  .book-arrow.prev { left: 18px; }
  .book-arrow.next { right: 18px; }
  .menu-enquire { margin-bottom: 0; }
  .book-footer { align-items: stretch; flex-direction: column; }
  .book-progress { min-width: 0; width: 100%; }
  .book-footer .btn { width: 100%; }
  .enquiry-types { grid-template-columns: repeat(2, 1fr); }
  .direct-whatsapp-card { grid-template-columns: 44px 1fr; }
  .direct-whatsapp-card a { grid-column: 2; justify-self: start; }
}

@media (max-width: 520px) {
  .menu-category-tabs { margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
  .menu-page h3 { font-size: 38px; }
  .page-lead { font-size: 13px; }
  .menu-items strong { font-size: 17px; }
  .enquiry-form { padding: 22px 18px; border-radius: 26px; }
  .enquiry-types { gap: 8px; }
  .enquiry-type { padding: 10px; }
  .enquiry-icon { font-size: 19px; }
  .enquiry-type strong { font-size: 11.5px; }
  .floating-whatsapp { justify-content: center; }
}

/* Final mobile layout safeguards */
@media (max-width: 980px) {
  .order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 11px 14px;
    font-size: 12px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }
  .floating-whatsapp span {
    width: 32px;
    height: 32px;
    font-size: 9px;
  }
}

/* JSON-managed menu item pricing */
.menu-item-entry { display: grid; gap: 3px; padding: 13px 0; border-top: 1px dashed rgba(68,40,22,.18); }
.menu-item-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.menu-item-heading strong { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--coffee); }
.menu-item-heading b { flex: 0 0 auto; color: var(--red); font-size: 13px; font-weight: 900; }
.menu-item-entry > span { color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.menu-empty { padding: 18px 0; border-top: 1px dashed rgba(68,40,22,.18); color: var(--muted); font-size: 13px; font-style: italic; }
@media (max-width:520px){.menu-item-heading strong{font-size:17px}.menu-item-heading{gap:10px}.menu-item-heading b{font-size:12px}}

@media (max-width: 620px) {
  .heritage-mark { margin-bottom: 17px; padding-right: 13px; }
  .heritage-number { width: 42px; height: 42px; flex-basis: 42px; font-size: 22px; }
  .heritage-copy strong { font-size: 16px; }
}


/* =========================================================
   Cleaner mobile menu experience
   Desktop keeps the two-page book; phones use a simple card.
   ========================================================= */
.mobile-menu-picker { display: none; }
.book-arrow-text { display: none; }

@media (max-width: 760px) {
  .menu-section {
    padding: 54px 0 64px;
    overflow: visible;
  }

  .menu-intro {
    gap: 10px;
    margin-bottom: 20px;
  }
  .menu-intro h2 { font-size: 36px; line-height: 1.03; }
  .menu-intro-copy > p:first-child { font-size: 14px; line-height: 1.6; }
  .menu-note { display: none; }

  .mobile-menu-picker {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
  }
  .mobile-menu-picker label {
    color: var(--coffee-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-menu-select-wrap { position: relative; }
  .mobile-menu-select-wrap::after {
    content: '⌄';
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-55%);
    color: var(--coffee);
    font-size: 20px;
    font-weight: 900;
    pointer-events: none;
  }
  #mobileMenuSelect {
    width: 100%;
    min-height: 52px;
    padding: 0 48px 0 16px;
    border: 1px solid rgba(68,40,22,.16);
    border-radius: 15px;
    appearance: none;
    -webkit-appearance: none;
    background: #fffdf8;
    color: var(--coffee);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(68,40,22,.07);
  }

  .menu-category-tabs { display: none; }

  .menu-book-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
  }
  .menu-book {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    touch-action: pan-y;
  }
  .menu-book::before { display: none; }
  .menu-page.is-next { display: none; }
  .menu-page.is-active {
    display: flex;
    min-height: 0;
    height: auto;
    padding: 23px 20px 18px;
    overflow: visible;
    border: 1px solid rgba(68,40,22,.11);
    border-radius: 22px;
    background: #fffaf0;
    box-shadow: 0 15px 38px rgba(68,40,22,.10);
  }
  .menu-page.is-active::after { display: none; }
  .page-topline { display: none; }
  .menu-page-kicker {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: .16em;
  }
  .menu-page h3 {
    font-size: 32px;
    line-height: 1.04;
  }
  .page-lead {
    margin: 10px 0 14px;
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }
  .menu-item-entry,
  .menu-items > div {
    padding: 11px 0;
  }
  .menu-item-heading strong,
  .menu-items strong { font-size: 16px; }
  .menu-item-entry > span,
  .menu-items span { font-size: 12px; line-height: 1.4; }
  .menu-item-heading b { font-size: 12px; }
  .menu-enquire {
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    padding: 13px 16px;
    border: 0;
    border-radius: 14px;
    background: var(--red);
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 24px rgba(184,72,69,.18);
  }
  .menu-enquire span { font-size: 17px; }

  .book-arrow {
    position: static;
    grid-row: 2;
    width: 100%;
    height: 46px;
    transform: none;
    border-radius: 14px;
    box-shadow: none;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .book-arrow.prev { grid-column: 1; }
  .book-arrow.next { grid-column: 2; }
  .book-arrow:hover { transform: none; background: #fff; color: var(--coffee); }
  .book-arrow:disabled { transform: none; opacity: .35; }
  .book-arrow-symbol { font: 500 24px/1 Arial, sans-serif; }
  .book-arrow-text { display: inline; }

  .book-footer {
    margin-top: 14px;
    gap: 10px;
  }
  .book-progress { gap: 6px; font-size: 11px; }
  .book-footer .btn { display: none; }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .nav-wrap { min-height: 70px; }
  .brand { gap: 9px; }
  .brand img { width: 50px; height: 42px; }
  .brand span { font-size: 19px; }
  .brand small { font-size: 10px; letter-spacing: .15em; }
  .nav-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 15px;
    font-size: 20px;
  }
  .nav-links { top: 70px; }
}

@media (max-width: 380px) {
  .menu-intro h2 { font-size: 33px; }
  .menu-page h3 { font-size: 29px; }
  .menu-page.is-active { padding-left: 17px; padding-right: 17px; }
}


/* =========================================================
   Premium photo refresh
   ========================================================= */
.hero-photo-card {
  min-height: 540px;
  display: flex;
  align-items: stretch;
}
.hero-photo-stack {
  position: relative;
  width: 100%;
  min-height: 510px;
}
.hero-photo-main,
.hero-photo-floating {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(68,40,22,.1);
  box-shadow: 0 22px 50px rgba(68,40,22,.16);
  background: #fff;
}
.hero-photo-main {
  position: absolute;
  inset: 0 58px 86px 0;
}
.hero-photo-main img,
.hero-photo-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-floating {
  position: absolute;
  width: 190px;
  height: 190px;
}
.hero-photo-top { top: 18px; right: 0; }
.hero-photo-bottom { right: 24px; bottom: 0; }
.feature-card {
  overflow: hidden;
}
.feature-media {
  position: relative;
  margin: -28px -28px 20px;
  border-radius: 28px 28px 20px 20px;
  overflow: hidden;
  min-height: 190px;
}
.feature-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.feature-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,249,237,.94);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(32,20,13,.16);
}
.party-image::before {
  inset: 40px -18px -24px 34px;
}
.party-collage {
  position: relative;
  min-height: 560px;
}
.party-main,
.party-float {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(68,40,22,.1);
  box-shadow: var(--shadow);
}
.party-main {
  position: absolute;
  inset: 0 70px 94px 0;
}
.party-main img,
.party-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.party-float {
  position: absolute;
  width: 210px;
  height: 210px;
}
.party-float-top { top: 10px; right: 0; }
.party-float-bottom { right: 34px; bottom: 56px; }
.party-callout {
  position: absolute;
  left: 26px;
  right: 110px;
  bottom: 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,249,237,.95);
  border: 1px solid rgba(68,40,22,.1);
  color: var(--coffee);
  box-shadow: 0 16px 38px rgba(68,40,22,.14);
}
.party-callout strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.1;
}
.party-callout span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-photo-card {
    min-height: 0;
    max-width: 640px;
  }
  .hero-photo-stack {
    min-height: 470px;
  }
  .feature-media {
    min-height: 170px;
  }
  .feature-media img { height: 170px; }
  .party-collage {
    min-height: 520px;
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .hero-photo-card {
    min-height: 0;
    padding: 10px;
    border-radius: 26px;
  }
  .hero-photo-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .hero-photo-main,
  .hero-photo-floating {
    position: static;
    width: auto;
    height: auto;
    border-radius: 20px;
  }
  .hero-photo-main {
    grid-column: 1 / -1;
  }
  .hero-photo-main img { aspect-ratio: 1 / .92; }
  .hero-photo-floating img { aspect-ratio: 1 / 1; }
  .hero-badge {
    position: static;
    margin-top: 12px;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .feature-media {
    margin: -24px -24px 18px;
    min-height: 180px;
  }
  .feature-media img { height: 180px; }
  .party-image::before { display: none; }
  .party-collage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .party-main,
  .party-float,
  .party-callout {
    position: static;
    width: auto;
    height: auto;
  }
  .party-main {
    grid-column: 1 / -1;
  }
  .party-main img { aspect-ratio: 1 / .9; }
  .party-float img { aspect-ratio: 1 / 1; }
  .party-callout {
    grid-column: 1 / -1;
    padding: 14px 16px;
  }
  .party-callout strong { font-size: 22px; }
}
