/* ============ HEADER / NAV ============ */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(33,21,9,.68) 0%, rgba(33,21,9,.32) 65%, transparent 100%);
  transition: background 550ms cubic-bezier(.22,.68,.16,1), box-shadow 550ms cubic-bezier(.22,.68,.16,1);
}
.site-header.is-scrolled{
  background: rgba(33, 21, 9, 0.92);
  box-shadow: var(--shadow-soft);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-block: 1.35rem;
  transition: padding-block 450ms cubic-bezier(.22,.68,.16,1);
}
.site-header.is-scrolled .nav-wrap{ padding-block: .8rem; }
.brand{
  display:flex; align-items:center; gap:.75em;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  font-weight:700;
  letter-spacing: -0.01em;
  transition: font-size 450ms cubic-bezier(.22,.68,.16,1);
}
html[lang="bn"] .brand{ font-family: var(--font-bn-display); }
.brand img{ width:50px; height:50px; border-radius:50%; transition: width 450ms cubic-bezier(.22,.68,.16,1), height 450ms cubic-bezier(.22,.68,.16,1); }
.site-header.is-scrolled .brand{ font-size: 1.3rem; }
.site-header.is-scrolled .brand img{ width: 42px; height: 42px; }

.nav-links{ display:flex; align-items:center; gap: clamp(1rem,2vw,2.3rem); }
.nav-links a{
  color: var(--parchment-dim);
  font-size: var(--step--1);
  font-weight:500;
  padding: .4em .1em;
  position:relative;
  transition: color 380ms ease, letter-spacing 380ms ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background: linear-gradient(90deg, var(--turmeric), var(--chili));
  transition: width 420ms cubic-bezier(.22,.68,.16,1);
}
.nav-links a:hover{ color: var(--white); letter-spacing: .01em; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ width:100%; }
.nav-links a[aria-current="page"]{ color: var(--white); }

.nav-actions{ display:flex; align-items:center; gap:.7rem; }
.lang-switch{
  display:flex; border:1px solid rgba(251,242,228,.4); border-radius:999px; overflow:hidden;
}
.lang-switch button{
  background:transparent; color: var(--parchment-dim);
  padding:.4em .9em; font-size:.78rem; font-weight:700; letter-spacing:.04em;
  border:none;
}
.lang-switch button.active{ background: var(--turmeric); color: var(--ink); }

.nav-toggle{
  display:none; background:none; border:none; color:var(--white); padding:.4em;
}
.nav-toggle svg{ width:26px; height:26px; }
.nav-toggle .icon-close{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-open{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-close{ display:block; }

@media (max-width: 1040px){
  .nav-toggle{ display:inline-flex; position:relative; z-index:95; }
  .nav-links{
    position: fixed; inset: 0; height: 100dvh; z-index:90;
    background: var(--ink);
    flex-direction: column; justify-content:center; align-items:flex-start;
    padding: 6rem var(--gutter) 2rem;
    transform: translateX(100%);
    transition: transform 420ms var(--ease);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.5rem; }
  /* Keep the header bar (logo, language switch, Book, close button)
     above the full-screen menu overlay so it never gets hidden. */
  .brand{ position: relative; z-index: 95; }
  .nav-actions{ margin-left:auto; position: relative; z-index: 95; }
}

@media (max-width: 560px){
  /* Hide the brand wordmark on small screens. The Bengali variant
     needs its own higher-specificity selector: the language rule
     `html[lang="bn"] [data-bn]{display:revert !important}` would
     otherwise out-rank plain `.brand span` and bring the name back
     when the visitor switches to বাং, overflowing the header. */
  .brand span,
  html[lang="bn"] .brand [data-bn]{ display:none !important; }
  .nav-actions{ gap:.5rem; }
  .nav-actions .btn-primary{ padding:.62em 1.05em; font-size:.78rem; }
}

/* ============ HERO SLIDER ============ */
.hero{
  position:relative; height: 100dvh; min-height:560px; overflow:hidden;
  color: var(--white);
}
.hero-slide{
  position:absolute; inset:0;
  opacity:0; transition: opacity 1400ms ease;
}
.hero-slide.active{ opacity:1; }
.hero-slide img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.06);
  animation: heroPan 9s ease-out forwards;
}
@keyframes heroPan{ from{ transform: scale(1.12);} to{ transform: scale(1);} }
.hero::before{
  content:""; position:absolute; inset:0; z-index:2;
  background: linear-gradient(180deg, rgba(20,12,5,.55) 0%, rgba(20,12,5,.28) 38%, rgba(20,12,5,.72) 100%);
}
.hero-content{
  position:relative; z-index:3; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: clamp(7.5rem, 18vw, 10.5rem);
}
.hero-content > .eyebrow{ margin-bottom: 1.1em; }
.hero-title{
  font-size: clamp(1.9rem, 1.15rem + 3.6vw, 3.9rem);
  line-height: 1.14;
  color: var(--white);
  max-width: min(90vw, 17ch);
  overflow-wrap: break-word;
  word-break: keep-all;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
html[lang="bn"] .hero-title{
  font-size: clamp(1.7rem, 1rem + 3.1vw, 3.35rem);
  line-height: 1.35;
  max-width: min(92vw, 15ch);
}
.hero-sub{
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.15rem);
  max-width: min(88vw, 46ch);
  color: var(--parchment-dim);
  margin-bottom: 1.4em;
  line-height: 1.6;
}
html[lang="bn"] .hero-sub{
  max-width: min(92vw, 42ch);
  line-height: 1.75;
}
.hero-ctas{ display:flex; gap:1rem; flex-wrap:wrap; }
.hero-dots{
  position:absolute; z-index:4; right: var(--gutter); bottom: clamp(1.5rem,4vw,3rem);
  display:flex; gap:.5rem;
}
.hero-dots button{
  width:9px; height:9px; border-radius:50%;
  background: rgba(255,255,255,.4); border:none; padding:0;
}
.hero-dots button.active{ background: var(--turmeric); width:26px; border-radius:6px; transition: width var(--dur) var(--ease); }

.hero-scroll-cue{
  position:absolute; z-index:4; left:50%; bottom: 1.6rem; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
}
.hero-scroll-cue .line{ width:1px; height:34px; background: linear-gradient(rgba(255,255,255,.9), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue{ 0%{ transform: scaleY(0.2); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 100%{ transform: scaleY(0.2); transform-origin: bottom;} }

@media (max-width: 768px){
  /* Decorative scroll cue overlaps hero content on small screens */
  .hero-scroll-cue{ display:none; }
}
@media (max-width: 480px){
  .hero-ctas .btn{ flex:1 1 0; min-width:140px; }
}

/* ============ CARDS ============ */
.card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-tight);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card-media{ aspect-ratio: 4/3; overflow:hidden; }
.card-media img{ width:100%; height:100%; object-fit:cover; transition: transform 700ms var(--ease); }
.card:hover .card-media img{ transform: scale(1.07); }
.card-body{ padding: 1.5rem; }
.card-body h3{ font-size: var(--step-1); margin-bottom:.35em; }
.card-body p{ color:#5b4a3a; font-size: var(--step--1); margin-bottom:0; }

/* ============ VALUE STRIP ============ */
.value-strip{
  display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1px; background: var(--line);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.value-item{
  background: var(--parchment); padding: 2rem clamp(1.2rem,3vw,2rem);
  display:flex; gap:1rem; align-items:flex-start;
}
.value-item svg{ flex:none; width:30px; height:30px; color:var(--chili); margin-top:.15em; }
.value-item h3{ font-size: 1.05rem; margin-bottom:.25em; }
.value-item p{ font-size: var(--step--1); color:#5b4a3a; margin:0; }

/* Facilities & Accessibility grid: stacked card layout so headings
   and copy get the item's full width to wrap in, instead of being
   squeezed into a narrow column beside the icon. */
.facility-item{
  background: transparent;
  border: 1px solid rgba(251, 242, 228, 0.16);
  border-radius: var(--radius-md);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 1.6rem clamp(1.2rem, 3vw, 1.6rem);
  transition: transform 380ms cubic-bezier(.22,.68,.16,1), border-color 380ms ease, background 380ms ease;
}
.facility-item svg{
  width: 42px; height: 42px; padding: 10px; margin: 0 0 1rem;
  box-sizing: border-box;
  background: rgba(211, 160, 60, 0.1);
  border: 1px solid rgba(211, 160, 60, 0.22);
  border-radius: 12px;
}
.facility-item h3{ font-size: 1rem; line-height: 1.3; }
.facility-item p{ color: var(--parchment-dim); }
.facility-item:hover{
  transform: translateY(-4px);
  background: rgba(211, 160, 60, 0.06);
  border-color: rgba(211, 160, 60, 0.4);
}

/* ============ FAQ ============
   Lives on a dark section (.faq-section below), so every colour
   here is set explicitly for that background rather than inherited
   from the light theme defaults. */
.faq-section{ background: var(--ink); color: var(--parchment-dim); }
.faq-section h2{ color: var(--white); }
.faq-list{ display:flex; flex-direction:column; gap:.85rem; margin-top:1.5rem; }
.faq-item{
  border: 1px solid rgba(251,242,228,.12);
  border-radius: 14px;
  background: rgba(251,242,228,.03);
  padding-inline: clamp(1.1rem, 3vw, 1.6rem);
  transition: background 380ms ease, border-color 380ms ease;
}
.faq-item[open]{
  background: rgba(211,160,60,.08);
  border-color: rgba(211,160,60,.32);
}
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  padding: 1.3rem 0; font-family: var(--font-display); font-size: var(--step-0); font-weight:600;
  color: var(--white);
}
html[lang="bn"] .faq-q{ font-family: var(--font-bn-display); }
.faq-q .plus{
  flex:none; width:28px; height:28px; border-radius:50%; border:1.5px solid var(--turmeric);
  display:flex; align-items:center; justify-content:center; position:relative;
  transition: transform 420ms cubic-bezier(.22,.68,.16,1), background 380ms ease;
}
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background:var(--turmeric); transition: background 380ms ease; }
.faq-q .plus::before{ width:11px; height:2px; }
.faq-q .plus::after{ width:2px; height:11px; }
.faq-item[open] .faq-q .plus{ transform: rotate(135deg); background: var(--turmeric); }
.faq-item[open] .faq-q .plus::before,
.faq-item[open] .faq-q .plus::after{ background: var(--ink); }
.faq-a{ padding-bottom: 1.5rem; color: rgba(251,242,228,.72); max-width: 68ch; }
.faq-item summary{ list-style:none; cursor:pointer; }
.faq-item summary::-webkit-details-marker{ display:none; }

/* ============ FOOTER ============ */
.site-footer{ background: var(--ink); color: var(--parchment-dim); padding-block: 4.5rem 1.6rem; }
.footer-grid{
  display:grid; gap: 2.8rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 880px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:.7em; margin-bottom:1.1rem; }
.footer-brand img{ width:48px; height:48px; border-radius:50%; }
.footer-brand span{ font-family: var(--font-display); color:var(--white); font-size:1.35rem; font-weight:700; }
html[lang="bn"] .footer-brand span{ font-family: var(--font-bn-display); }
.site-footer h4{
  /* No `display` override here: these <h4> tags carry data-en/data-bn
     directly, and the language-toggle rule ([data-bn]{display:none})
     must stay free to hide the inactive one without a more-specific
     display rule fighting it. */
  color: var(--white); font-size: .82rem; text-transform:uppercase; letter-spacing:.12em;
  margin-bottom:1.2rem; font-family: var(--font-body); font-weight:700;
}
.site-footer h4::before{
  content:""; width:16px; height:1px; background: var(--turmeric);
  display:inline-block; vertical-align:middle; margin-right:.6em;
}
html[lang="bn"] .site-footer h4{ font-family: var(--font-bn-body); }
.site-footer ul li{ margin-bottom: .7em; }
.site-footer a:hover{ color: var(--turmeric); }
.social-row{ display:flex; gap:.8rem; margin-top:1rem; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(251,242,228,.3);
  display:flex; align-items:center; justify-content:center; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social-row a:hover{ background: var(--cinnamon); border-color: var(--cinnamon); }
.social-row svg{ width:17px; height:17px; }
.footer-bottom{
  margin-top: 3rem; padding-top:1.6rem; border-top:1px solid rgba(251,242,228,.14);
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; align-items:center; font-size:.82rem; color:rgba(251,242,228,.6);
}

/* ============ WHATSAPP / STICKY CTA ============ */
.sticky-cta{
  position:fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index:90;
  display:flex; align-items:center; gap:.6em;
  background: var(--betel); color:var(--white);
  padding: .8em 1.1em; border-radius: 999px; box-shadow: var(--shadow-soft);
  font-size:.85rem; font-weight:600;
}
.sticky-cta svg{ width:20px; height:20px; }
.sticky-cta:hover{ filter: brightness(1.08); }
/* On small screens the floating WhatsApp button sits over the footer credit.
   Reserve space at the bottom of the footer so the credit always stays clear. */
@media (max-width: 600px){
  .site-footer{ padding-bottom: 5.5rem; }
}

/* ============ PAGE HEADER (interior pages) ============ */
.page-hero{
  position:relative; padding-top: clamp(8rem,16vw,11rem); padding-bottom: clamp(3.5rem,8vw,5.5rem);
  color: var(--white); overflow:hidden;
}
.page-hero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
/* Fitted variant: for cover photos too small or too tall to stretch
   across the whole banner without looking blown-up. A blurred copy
   of the same photo fills the frame edge-to-edge, while the sharp
   original sits centered at a much gentler magnification with its
   sides feathered into the blur. */
.page-hero--fitted .page-hero-blur{
  filter: blur(26px) saturate(1.08) brightness(.85);
}
.page-hero--fitted > img:not(.page-hero-blur){
  width: min(100%, 940px);
  left: 0; right: 0; margin-inline: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
/* Cinematic scrim: deep roasted brown anchoring the top and bottom
   edges (nav and heading always stay legible), opening up in the
   middle so the photo shows through, with a soft turmeric ember
   drifting in from the top-right corner. */
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(70% 85% at 84% 16%, rgba(211,160,60,.20), transparent 62%),
    linear-gradient(180deg, rgba(24,13,6,.74) 0%, rgba(24,13,6,.32) 46%, rgba(26,15,7,.72) 100%);
}
.page-hero .container{ position:relative; z-index:2; }
.breadcrumb{ font-size:.82rem; color: rgba(251,242,228,.75); margin-bottom:1rem; display:flex; gap:.5em; flex-wrap:wrap; }
.breadcrumb a:hover{ color:var(--turmeric); }
.page-hero h1{ color:#FFFFFF; font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); max-width: min(90vw, 22ch); line-height:1.18; overflow-wrap:break-word; text-shadow: 0 6px 16px rgba(0,0,0,.7), 0 2px 6px rgba(0,0,0,.5); font-weight: 700; }
html[lang="bn"] .page-hero h1{ font-size: clamp(1.7rem, 1.15rem + 2.3vw, 3rem); line-height:1.35; max-width: min(92vw, 18ch); }
.page-hero p{ max-width: min(90vw, 62ch); color: var(--parchment-dim); font-size: var(--step-0); }

/* ============ GALLERY ============ */
.gallery-grid{
  display:grid; gap: .6rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
.gallery-grid a{ position:relative; overflow:hidden; border-radius: var(--radius-md); display:block; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition: transform 600ms var(--ease); }
.gallery-grid a:hover img{ transform: scale(1.08); }
.gallery-grid a::after{
  content: attr(data-cap); position:absolute; left:0; right:0; bottom:0;
  padding: .9rem .9rem .7rem; font-size:.78rem; color:#fff;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  opacity:0; transition: opacity var(--dur) var(--ease);
}
.gallery-grid a:hover::after{ opacity:1; }
.g-tall{ grid-row: span 2; }
.g-wide{ grid-column: span 2; }
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 190px; }
  .g-wide{ grid-column: span 2; }
}
@media (max-width: 520px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .g-wide, .g-tall{ grid-column: span 1; grid-row: span 1; }
}

/* ============ CONTACT ============ */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items:start; }
@media (max-width: 880px){ .contact-grid{ grid-template-columns: 1fr; } }
/* Quick actions: call / WhatsApp shortcuts above the info rows */
.contact-quick{ display:flex; gap:.8rem; flex-wrap:wrap; margin: .2rem 0 1.6rem; }
.contact-quick .btn svg{ width:18px; height:18px; flex:none; }
.btn-wa{
  background: linear-gradient(150deg, #5FA463 0%, var(--betel) 55%, #37503B 100%);
  color: var(--white);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 10px 22px -12px rgba(75,107,73,.6);
}
.btn-wa:hover{
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 26px -12px rgba(75,107,73,.65);
}
.btn-wa:active{ transform: translateY(1px); filter: brightness(.98); }

.info-row{
  display:flex; gap:1.1rem; align-items:flex-start;
  padding: 1.35rem .9rem; margin-inline: -.9rem;
  border-bottom:1px solid var(--line); border-radius: 12px;
  transition: background var(--dur) var(--ease);
}
.info-row:hover{ background: rgba(154,74,40,.05); }
.info-row svg{
  flex:none; width:46px; height:46px; padding:12px;
  color: var(--cinnamon);
  background: rgba(154,74,40,.07);
  border: 1px solid rgba(154,74,40,.16);
  border-radius: 12px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.info-row:hover svg{ background: var(--cinnamon); border-color: var(--cinnamon); color: var(--white); }
.info-row h3{ font-size:1rem; margin-bottom:.25em; color: var(--cinnamon-dark); letter-spacing:.005em; }
.info-row p{ margin:0; font-size:var(--step--1); color:#5b4a3a; }
.info-row p a{ color: var(--cinnamon-dark); font-weight:600; text-decoration: underline; text-decoration-color: rgba(154,74,40,.3); text-underline-offset: 3px; }
.info-row p a:hover{ text-decoration-color: var(--cinnamon); }
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-tight); border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:340px; border:0; display:block; }
.field{ margin-bottom: 1.1rem; }
.field label{ display:block; font-size:.82rem; font-weight:600; margin-bottom:.4em; color: var(--ink); }
.field input, .field textarea, .field select{
  width:100%; padding:.8em 1em; border-radius: 8px;
  border: 1px solid var(--line); background: var(--white); font: inherit; color: var(--ink);
  transition: border-color 200ms var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color: #a7967f; }
.field input:hover, .field textarea:hover, .field select:hover{ border-color: #cbb488; }
.field input:focus, .field textarea:focus, .field select:focus,
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible{
  border-color: var(--cinnamon);
  outline: 2px solid var(--cinnamon);
  outline-offset: 0;
}
.field textarea{ resize: vertical; min-height: 120px; }

/* Contact form panel: flat and calm (no lift, no drop shadow), with
   a warm brand gradient along the top edge so it reads as the page's
   main action rather than a plain white box. */
.contact-form-card{
  box-shadow: none; border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.contact-form-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:5px;
  background: linear-gradient(90deg, var(--cinnamon), var(--turmeric) 55%, var(--brick));
}
.contact-form-card:hover{ transform: none; box-shadow: none; }
.form-note{ font-size:.78rem; color:#7a6752; margin-top:1rem; }

/* ============ MENU PAGE — chalkboard ============
   A true chalkboard treatment: near-black slate, chalk-white
   lettering and one warm gold accent, so numbers, prices, the
   active tab and the section flourishes all read as a single
   hand-lettered board. */
:root{
  --chalk-bg: #17191B;
  --chalk-bg-soft: #1C1F22;
  --chalk-panel: #23262A;
  --chalk-text: #F2EDDF;
  --chalk-cream: #EFE2C4;
  --chalk-gold: #D9A84E;
  --chalk-line: rgba(242,237,223,.22);
  --chalk-dim: rgba(242,237,223,.62);
}
.menu-hero{
  position:relative; padding-top: clamp(8rem,16vw,11rem); padding-bottom: clamp(4rem,9vw,6rem);
  background: var(--chalk-bg); color: var(--chalk-text); overflow:hidden;
}
.menu-hero .cover{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%; object-fit:cover;
}
/* Scrim over the cover photo: darkens for legibility, then melts
   into the chalkboard colour at the bottom so the sticky tab rail
   appears to grow out of the hero. Chalk-dust noise on top. */
.menu-hero .bg{
  position:absolute; inset:0; z-index:1;
  background-image:
    linear-gradient(180deg, rgba(16,14,11,.78) 0%, rgba(16,14,11,.52) 42%, var(--chalk-bg) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.08'/></svg>");
  background-size: cover, 180px 180px;
}
.menu-hero .container{ position:relative; z-index:2; }
.menu-hero h1{ color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,.55); }
.menu-hero .eyebrow{ color: var(--chalk-gold); }
.menu-hero .eyebrow::before{ background: var(--chalk-gold); }
.menu-hero p{ color: rgba(242,237,223,.88); max-width: min(90vw, 64ch); }

/* Category rail: chalk lettering on the board itself — the active
   section gets a hand-drawn gold underline instead of a boxed pill,
   and the edges fade out so it clearly scrolls sideways. */
.menu-tabs{
  position: sticky; top: 0; z-index: 60;
  background: rgba(23,25,27,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217,168,78,.24);
  box-shadow: 0 16px 26px -22px rgba(0,0,0,.9);
  overflow-x:auto; white-space:nowrap; scrollbar-width:none;
}
.menu-tabs::-webkit-scrollbar{ display:none; }
.menu-tabs-inner{ display:flex; gap:.15rem; padding: .5rem var(--gutter); max-width: var(--maxw); margin-inline:auto; }
.menu-tabs button{
  position:relative;
  background:transparent; border:none; border-radius:8px;
  padding: .85em .95em 1.2em; flex:none;
  font-family: var(--font-display);
  font-size:.78rem; font-weight:600;
  letter-spacing:.09em; text-transform:uppercase;
  color: var(--chalk-dim);
  transition: color 300ms ease, background 300ms ease;
}
html[lang="bn"] .menu-tabs button{
  font-family: var(--font-bn-display);
  text-transform:none; letter-spacing:.02em; font-size:.92rem;
}
.menu-tabs button::after{
  content:""; position:absolute; left:14%; right:14%; bottom:.55em; height:7px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M2 5 Q30 1 60 5 T120 5 T180 4 T198 5' stroke='rgba(217,168,78,.9)' stroke-width='2.6' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 7px;
  opacity:0; transform: scaleX(.35);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(.22,.68,.16,1);
}
.menu-tabs button:hover{ color: var(--chalk-text); background: rgba(242,237,223,.05); }
.menu-tabs button:hover::after{ opacity:.45; transform: scaleX(1); }
.menu-tabs button.active{ color: var(--chalk-gold); }
.menu-tabs button.active::after{ opacity:1; transform: scaleX(1); }

.menu-section-bg{
  position:relative;
  background: var(--chalk-bg-soft);
  background-image:
    radial-gradient(120% 70% at 50% 0%, rgba(255,255,255,.045), transparent 60%),
    radial-gradient(100% 60% at 50% 100%, rgba(0,0,0,.4), transparent 72%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.07'/></svg>");
  background-size: cover, cover, 180px 180px;
  color: var(--chalk-text);
}
/* Drinks sub-headings and closing notes sit directly on the board:
   without these they'd inherit the light-theme ink colour and
   vanish into the dark background. */
.menu-section-bg h3{ color: var(--chalk-cream); }
.menu-section-bg .form-note{ color: var(--chalk-dim); }
.menu-group{ margin-bottom: clamp(2.5rem,5vw,4rem); scroll-margin-top: 6.5rem; }
.menu-group-title{
  /* No `display` override — this <h2> carries data-en/data-bn
     directly, and a more-specific display rule here would beat the
     language-toggle's [data-bn]{display:none} and show both at
     once. The squiggle below is a fixed-width decorative flourish
     rather than one sized to match the text, so display can stay at
     the heading default (block). */
  font-size: var(--step-2); margin-bottom:.5em; color: var(--chalk-cream);
  position: relative; padding-bottom: .4em;
}
.menu-group-title::after{
  content:"";
  position:absolute; left:0; bottom:0; width:130px; height:7px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'><path d='M2 5 Q30 1 60 5 T120 5 T180 4 T198 5' stroke='rgba(217,168,78,.75)' stroke-width='2.4' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 130px 7px;
}
.menu-group-sub{ color: var(--chalk-dim); margin-bottom:1.6rem; font-size:var(--step--1); }
.menu-list{ display:grid; gap: 0; border-top:1px dashed var(--chalk-line); }
.menu-row{
  display:flex; justify-content:space-between; gap:1.5rem; align-items:baseline;
  padding: 1.05rem .3rem; margin-inline: -.3rem; border-bottom:1px dashed var(--chalk-line);
  border-radius: 6px;
  transition: background 320ms ease, padding-inline 320ms ease;
}
.menu-row:hover{ background: rgba(217,168,78,.07); padding-inline: .9rem; }
.menu-row .num{ color: var(--chalk-gold); font-weight:700; font-size:.78rem; margin-right:.6em; font-variant-numeric: tabular-nums; }
.menu-row .name{ font-weight:600; color: var(--chalk-text); }
.menu-row .desc{ display:block; font-size:.82rem; color: var(--chalk-dim); margin-top:.15em; font-weight:400; }
.menu-row .dots{ flex:1; border-bottom: 1px dotted var(--chalk-line); margin: 0 .6rem 6px; min-width:20px; }
.menu-row .price{ font-family: var(--font-display); font-weight:700; color: var(--chalk-gold); white-space:nowrap; font-variant-numeric: tabular-nums; }
.menu-legend{ display:flex; gap:1.2rem; flex-wrap:wrap; margin-bottom:2rem; font-size:.8rem; color: var(--chalk-dim); }
.menu-legend span{ display:inline-flex; align-items:center; gap:.4em; }
.dot{ width:9px; height:9px; border-radius:50%; display:inline-block; }
.dot.veg{ background:#7FBF7A; }
.dot.spicy{ background:#E2634F; }
/* Inside a menu row the dot sits inline before the dish name: give
   it a gap so it doesn't touch the text (esp. Bengali glyphs), nudge
   it onto the text's optical centre, and let it glow faintly like a
   chalk mark on the dark board. */
.menu-row .dot{ margin-right:.55em; transform: translateY(-1px); }
.menu-row .dot.veg{ box-shadow: 0 0 7px rgba(127,191,122,.55); }
.menu-row .dot.spicy{ box-shadow: 0 0 7px rgba(226,99,79,.55); }

/* Set-menu & platter cards: framed chalk panels — a dashed inner
   border like a hand-ruled box, cream headings, gold prices — so
   they belong to the board instead of floating on it as plain
   white boxes. */
.menu-section-bg .card{
  position: relative; margin-top: 0;
  background: linear-gradient(180deg, var(--chalk-panel) 0%, #1D2024 100%);
  border: 1px solid rgba(242,237,223,.14);
  border-radius: 14px;
  box-shadow: 0 22px 38px -26px rgba(0,0,0,.85);
}
.menu-section-bg .card::before{
  content: "";
  position: absolute; inset: 9px;
  border: 1.5px dashed rgba(242,237,223,.2);
  border-radius: 9px;
  pointer-events: none;
  transition: border-color var(--dur) var(--ease);
  z-index: 1;
}
.menu-section-bg .card:hover{
  transform: translateY(-6px);
  border-color: rgba(217,168,78,.5);
  box-shadow: 0 28px 46px -26px rgba(0,0,0,.9);
}
.menu-section-bg .card:hover::before{ border-color: rgba(217,168,78,.32); }
.menu-section-bg .card .card-body{ padding: 1.7rem 1.6rem; }
.menu-section-bg .card h3{ color: var(--chalk-cream); }
.menu-section-bg .card p{ color: var(--chalk-dim); }
.menu-section-bg .card .price{
  color: var(--chalk-gold);
  border-top: 1px dashed var(--chalk-line);
  padding-top: .75rem;
  letter-spacing: .02em;
}

/* ============ TESTIMONIAL / REVIEWS ============ */
.review-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem;
  box-shadow: var(--shadow-tight); border:1px solid var(--line);
}
.review-stars{ color: var(--turmeric); letter-spacing:.15em; margin-bottom:.6rem; font-size:1rem; }
.review-card p{ font-size: var(--step--1); color:#43331f; }
.review-name{ font-weight:700; font-size:.85rem; margin-top:1rem; }
.review-source{ font-size:.75rem; color:#8a765d; }

/* ============ MISC ============ */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
@media (max-width: 880px){ .two-col{ grid-template-columns: 1fr; } }
.img-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); }
.stat-row{ display:flex; gap: clamp(1.5rem,4vw,3rem); flex-wrap:wrap; margin-top:1.6rem; }
.stat{ }
.stat b{ display:block; font-family: var(--font-display); font-size: var(--step-2); color: var(--cinnamon-dark); }
.stat span{ font-size:.78rem; color:#7a6752; text-transform:uppercase; letter-spacing:.06em; }

.badge-row{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1.2rem; }
.badge{
  font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding:.4em .8em; border-radius:999px; border:1px solid var(--line); color:#5b4a3a;
}

/* ============ DEVELOPER CREDIT ============ */
.footer-credits{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .82rem;
  color: rgba(251, 242, 228, .6);
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 640px){
  .footer-credits{
    gap: 0.8rem;
  }
}

.footer-credit-item p{
  margin: 0;
  font-size: .82rem;
}

.footer-credit-item p:not(:last-child){
  margin-bottom: .4em;
}

.developer-credit{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(251, 242, 228, .7);
  animation: creditFade 1s var(--ease) forwards;
  opacity: 0;
  animation-delay: 300ms;
  position: relative;
  padding: 0.5em 0.8em;
  border-radius: 4px;
  transition: all 350ms var(--ease);
  overflow: hidden;
}

/* Particle effect background */
.developer-credit::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: 
    radial-gradient(circle at 20% 50%, rgba(211, 160, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(211, 160, 60, 0.05) 0%, transparent 50%);
  animation: particleFlow 3s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 350ms var(--ease);
}

/* Forging glow layer */
.developer-credit::after{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  background: linear-gradient(90deg,
    transparent,
    rgba(211, 160, 60, 0.2),
    transparent);
  animation: forgingGlow 2.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 350ms var(--ease);
}

.developer-credit a{
  position: relative;
  color: var(--turmeric);
  font-weight: 600;
  transition: color 300ms var(--ease), text-shadow 300ms var(--ease), filter 300ms var(--ease);
  z-index: 2;
}

.developer-credit a::before{
  content: "";
  position: absolute;
  inset: -4px -6px;
  border-radius: 3px;
  background: radial-gradient(circle at 30% 20%, rgba(211, 160, 60, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  z-index: -1;
  animation: sparkParticles 1.8s ease-out;
  animation-fill-mode: both;
}

.developer-credit:hover{
  color: rgba(251, 242, 228, 0.85);
}

.developer-credit:hover::before{
  opacity: 1;
}

.developer-credit:hover::after{
  opacity: 1;
}

.developer-credit:hover a{
  color: #f5d891;
  text-shadow: 
    0 0 6px rgba(211, 160, 60, 0.4),
    0 0 12px rgba(211, 160, 60, 0.2);
  filter: brightness(1.15);
}

.developer-credit:hover a::before{
  opacity: 1;
  animation: sparkParticles 1.8s ease-out infinite;
}

.dev-name{
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Spark particles around the credit */
.developer-credit span:first-child::after{
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(211, 160, 60, 0.4);
  animation: sparkFloat 1.5s ease-out infinite;
  pointer-events: none;
}

@keyframes creditFade{
  from{
    opacity: 0;
    transform: translateY(4px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particleFlow{
  0%{
    background-position: 0% 0%;
    transform: translateX(-20px);
  }
  50%{
    transform: translateX(0);
  }
  100%{
    background-position: 100% 100%;
    transform: translateX(20px);
  }
}

@keyframes forgingGlow{
  0%{
    transform: translateX(-150%);
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    transform: translateX(150%);
    opacity: 0;
  }
}

@keyframes sparkParticles{
  0%{
    box-shadow: 
      0 0 0px rgba(211, 160, 60, 0.6),
      6px -6px 12px rgba(211, 160, 60, 0.3),
      -6px 6px 12px rgba(211, 160, 60, 0.3),
      8px 0 8px rgba(211, 160, 60, 0.2),
      -8px 0 8px rgba(211, 160, 60, 0.2);
  }
  50%{
    box-shadow: 
      0 0 4px rgba(211, 160, 60, 0.5),
      10px -10px 20px rgba(211, 160, 60, 0.25),
      -10px 10px 20px rgba(211, 160, 60, 0.25),
      14px 0 16px rgba(211, 160, 60, 0.15),
      -14px 0 16px rgba(211, 160, 60, 0.15);
  }
  100%{
    box-shadow: 
      0 0 0px rgba(211, 160, 60, 0),
      16px -16px 24px rgba(211, 160, 60, 0),
      -16px 16px 24px rgba(211, 160, 60, 0),
      20px 0 20px rgba(211, 160, 60, 0),
      -20px 0 20px rgba(211, 160, 60, 0);
  }
}

/* Small screens: let the developer credit wrap and stay fully visible
   instead of being clipped behind the floating WhatsApp button. */
@media (max-width: 640px){
  .developer-credit{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    overflow: visible;
    max-width: 100%;
    padding-inline: 0.4em;
  }
  .developer-credit a{ white-space: normal; word-break: break-word; }
}
