/* =========================================================
   BHOJ BUZZ — Design System
   Bold heritage: wine + antique gold + terracotta on ivory
   Signature motif: the "thala" (feast plate) line-illustration
   ========================================================= */

:root{
  /* ---- Color tokens ---- */
  --wine:        #6E1423;
  --wine-dark:   #470D17;
  --wine-deeper: #300910;
  --gold:        #C9A24B;
  --gold-light:  #E8CD8A;
  --gold-dim:    #A9873C;
  --terracotta:  #BC5B39;
  --terracotta-dim:#9C4A2E;
  --cream:       #FBF3E7;
  --cream-deep:  #F3E6D2;
  --ink:         #2B1810;
  --ink-soft:    #5B4436;
  --paper:       #FFFCF6;

  /* ---- Type ---- */
  --font-display: 'Fraunces', 'Noto Serif Bengali', 'Georgia', serif;
  --font-body:    'Work Sans', 'Noto Sans Bengali', -apple-system, sans-serif;
  --font-bn:      'Noto Sans Bengali', sans-serif;

  /* ---- Scale & rhythm ---- */
  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-soft: 0 12px 30px -14px rgba(43,24,16,0.35);
  --shadow-card: 0 6px 20px -10px rgba(43,24,16,0.25);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html{ -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; color: var(--wine-dark); font-weight:600; }
p{ margin:0 0 1em; }
button{ font-family: inherit; cursor:pointer; }
input,select,textarea{ font-family: inherit; font-size:1rem; }

:focus-visible{
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
.section{ padding: 88px 0; }
.section--tight{ padding: 56px 0; }
.section--wine{ background: var(--wine); color: var(--cream); }
.section--wine h2, .section--wine h3{ color: var(--gold-light); }
.section--cream-deep{ background: var(--cream-deep); }

@media (max-width: 600px){
  .container{ padding: 0 18px; }
  .section{ padding: 52px 0; }
  .section--tight{ padding: 36px 0; }
  .section-head{ margin-bottom: 34px; }
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight:600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width:22px; height:1px; background: var(--terracotta);
}
.section--wine .eyebrow{ color: var(--gold); }
.section--wine .eyebrow::before{ background: var(--gold); }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height:1.15; }
.section-lede{ color: var(--ink-soft); font-size:1.05rem; margin-top:14px; }
.section--wine .section-lede{ color: #EBD9C6; }

.bn-accent{
  font-family: var(--font-bn);
  color: var(--gold);
  font-size: 1.1em;
  margin-right: 8px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight:600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--terracotta); color: var(--paper); box-shadow: var(--shadow-card); }
.btn-primary:hover{ background: var(--terracotta-dim); }
.btn-gold{ background: var(--gold); color: var(--wine-deeper); }
.btn-gold:hover{ background: var(--gold-light); }
.btn-outline{ background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover{ background: rgba(255,255,255,0.08); }
.btn-outline-wine{ border-color: var(--wine); color: var(--wine); }
.btn-outline-wine:hover{ background: var(--wine); color: var(--cream); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; transform:none; }

/* ---------- Alpona border strip (signature ornament) ---------- */
.alpona{
  height: 18px;
  width:100%;
  background-image:
    radial-gradient(circle at 9px 0, transparent 8px, var(--gold) 8.6px 9px, transparent 9.6px),
    radial-gradient(circle at 9px 18px, transparent 8px, var(--gold) 8.6px 9px, transparent 9.6px);
  background-size: 18px 18px;
  background-repeat: repeat-x;
  opacity:.9;
}
.alpona--on-wine{ background-color: var(--wine); }
.alpona--on-cream{ background-color: var(--cream); }
.alpona--flip{ transform: scaleY(-1); }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--cream-deep);
}
.site-header__bar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  max-width: var(--container); margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:44px; height:44px; }
.brand__word{ font-family: var(--font-display); font-weight:700; font-size:1.28rem; color: var(--wine); line-height:1; }
.brand__sub{ display:block; font-family: var(--font-body); font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color: var(--terracotta); margin-top:3px; }

.nav{ display:flex; align-items:center; gap:8px; }
.nav__list{ display:flex; align-items:center; gap:2px; }
.nav__list a{
  display:block; padding: 10px 16px; font-weight:600; font-size:0.94rem; color: var(--ink-soft);
  border-bottom: 2px solid transparent;
}
.nav__list a:hover, .nav__list a[aria-current="page"]{ color: var(--wine); border-color: var(--terracotta); }
.nav__cta{ margin-left: 10px; }
.nav__toggle{
  display:none; background:none; border:none; padding:8px; width:44px; height:44px;
  flex-direction:column; justify-content:center; gap:5px;
}
.nav__toggle span{ display:block; height:2px; background: var(--wine); border-radius:2px; }

@media (max-width: 900px){
  .nav__toggle{ display:flex; }
  .nav{ position: fixed; inset: 68px 0 0 0; background: var(--paper); flex-direction:column; align-items:stretch;
        transform: translateY(-8px); opacity:0; pointer-events:none; transition:.2s ease; padding: 10px 24px 24px; overflow:auto; }
  .nav.is-open{ opacity:1; transform:none; pointer-events:auto; }
  .nav__list{ flex-direction:column; align-items:stretch; gap:0; border-top:1px solid var(--cream-deep); }
  .nav__list a{ padding:16px 4px; border-bottom:1px solid var(--cream-deep); }
  .nav__cta{ margin: 18px 0 0; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background: radial-gradient(120% 140% at 82% 0%, var(--wine-dark) 0%, var(--wine) 46%, var(--wine-deeper) 100%);
  color: var(--cream);
  overflow:hidden;
}
.hero__grid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items:center;
  padding: 72px 0 84px;
}
.hero h1{ color: var(--paper); font-size: clamp(2.3rem, 4.6vw, 3.6rem); line-height:1.08; }
.hero h1 em{ font-style: italic; color: var(--gold-light); }
.hero p{ color: #E9D7C5; font-size:1.08rem; max-width: 46ch; margin-top:18px; }
.hero__cta{ display:flex; gap:16px; margin-top:32px; flex-wrap:wrap; }
.hero__trust{ display:flex; gap:28px; margin-top:44px; flex-wrap:wrap; }
.hero__trust div strong{ display:block; font-family: var(--font-display); font-size:1.5rem; color: var(--gold-light); }
.hero__trust div span{ font-size:0.78rem; letter-spacing:0.06em; color:#D9C2AC; text-transform:uppercase; }
.hero__art{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero__art svg{ width: 100%; max-width: 380px; }

@media (max-width: 900px){
  .hero__grid{ grid-template-columns:1fr; padding: 48px 0 56px; }
  .hero__art{ order:-1; margin-bottom:8px; }
  .hero__art svg{ max-width:240px; }
}

/* ---------- Stat strip ---------- */
.stats{ background: var(--paper); border-bottom:1px solid var(--cream-deep); }
.stats__row{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding: 30px 0; text-align:center; }
.stats__row div strong{ display:block; font-family:var(--font-display); font-size:1.9rem; color:var(--wine); }
.stats__row div span{ font-size:0.76rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-soft); }
@media (max-width:700px){ .stats__row{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Cards: services ---------- */
.grid{ display:grid; gap:26px; }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }
.grid--2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:960px){ .grid--3,.grid--4{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:620px){ .grid--3,.grid--4,.grid--2{ grid-template-columns:1fr; } }

.card{
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card__icon{ width:46px; height:46px; margin-bottom:18px; color: var(--terracotta); }
.card h3{ font-size:1.18rem; margin-bottom:10px; color: var(--wine-dark); }
.card p{ color: var(--ink-soft); font-size:0.95rem; margin-bottom:16px; }
.card__link{ font-weight:700; font-size:0.86rem; color: var(--terracotta); letter-spacing:0.02em; }
.card__link::after{ content:" →"; }

/* ---------- Placeholder photo blocks (swap with real <img> later) ---------- */
.photo-ph{
  position:relative; overflow:hidden;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cream-deep), #E9D3AE 60%, var(--gold-light));
  display:flex; align-items:center; justify-content:center; text-align:center;
  border: 1.5px dashed var(--gold-dim);
}
.photo-ph--square{ aspect-ratio:1/1; }
.photo-ph--wide{ aspect-ratio: 16/9; }
.photo-ph__inner{ padding:18px; }
.photo-ph__inner svg{ width:34px; height:34px; margin:0 auto 10px; color: var(--wine); opacity:.6; }
.photo-ph__inner span{ display:block; font-size:0.78rem; font-weight:600; color: var(--wine-dark); letter-spacing:0.02em; }
.photo-ph__inner small{ display:block; font-size:0.68rem; color: var(--ink-soft); margin-top:4px; }

/* ---------- Menu (browsable) page ---------- */
.menu-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:42px; }
.menu-tab{
  padding: 10px 20px; border-radius: 30px; border:1.5px solid var(--cream-deep);
  background: var(--paper); font-weight:600; font-size:0.88rem; color: var(--ink-soft);
}
.menu-tab[aria-selected="true"]{ background: var(--wine); border-color: var(--wine); color: var(--cream); }

.menu-panel{ display:none; }
.menu-panel.is-active{ display:block; }
.dish-list{ display:grid; grid-template-columns:repeat(2,1fr); gap: 24px 40px; }
@media (max-width:760px){ .dish-list{ grid-template-columns:1fr; } }
.dish{ display:flex; gap:16px; padding-bottom:20px; border-bottom:1px dotted var(--cream-deep); }
.dish__thumb{ width:74px; height:74px; border-radius:8px; flex:none; background: linear-gradient(135deg, var(--cream-deep), var(--gold-light)); display:flex; align-items:center; justify-content:center; }
.dish__thumb svg{ width:26px; height:26px; color:var(--wine); opacity:.55; }
.dish__body{ flex:1; }
.dish__top{ display:flex; justify-content:space-between; gap:10px; align-items:baseline; }
.dish__top h4{ font-family:var(--font-display); font-size:1.05rem; color: var(--wine-dark); min-width:0; }
.dish__price{ font-weight:700; color: var(--terracotta); white-space:nowrap; font-size:0.92rem; flex:none; }
.dish__body p{ font-size:0.88rem; color: var(--ink-soft); margin: 4px 0 0; }
.tag{
  display:inline-block; font-size:0.64rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  padding:2px 8px; border-radius:20px; margin-left:8px; vertical-align:middle;
}
.tag--veg{ background:#E4EFDD; color:#3E6B2A; }
.tag--nonveg{ background:#F5DEDA; color:#9C2B1F; }
.tag--bestseller{ background: var(--gold-light); color: var(--wine-deeper); }

/* ---------- Package builder (Services page) ---------- */
.builder{ display:grid; grid-template-columns: 1fr 360px; gap:40px; align-items:start; }
@media (max-width:960px){ .builder{ grid-template-columns:1fr; } .builder__summary{ position:static; } }

.builder__categories{ display:flex; flex-direction:column; gap:14px; }
.pb-category{ background: var(--paper); border:1px solid var(--cream-deep); border-radius: var(--radius-md); overflow:hidden; }
.pb-category__head{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:18px 22px; background: var(--cream-deep); border:none; text-align:left;
}
.pb-category__head h3{ font-size:1.02rem; color: var(--wine-dark); min-width:0; }
.pb-category__meta{ font-size:0.78rem; color: var(--ink-soft); font-weight:600; }
.pb-category__chev{ width:16px; height:16px; transition: transform .18s ease; flex:none; }
.pb-category.is-open .pb-category__chev{ transform: rotate(180deg); }
.pb-category__body{ display:none; padding: 6px 22px 18px; }
.pb-category.is-open .pb-category__body{ display:block; }

.pb-item{ display:flex; align-items:center; gap:14px; padding:12px 0; border-bottom:1px dotted var(--cream-deep); }
.pb-item:last-child{ border-bottom:none; }
.pb-item label{ flex:1; font-size:0.94rem; font-weight:500; cursor:pointer; }
.pb-item__price{ font-size:0.84rem; color: var(--terracotta); font-weight:700; white-space:nowrap; }
.pb-item input[type="checkbox"]{
  appearance:none; width:20px; height:20px; border:1.5px solid var(--gold-dim); border-radius:5px; flex:none;
  display:grid; place-content:center; cursor:pointer;
}
.pb-item input[type="checkbox"]::after{ content:""; width:11px; height:11px; border-radius:2px; background: var(--terracotta); transform:scale(0); transition:.12s ease; }
.pb-item input[type="checkbox"]:checked::after{ transform:scale(1); }
.pb-item input[type="checkbox"]:checked ~ label{ color: var(--wine); font-weight:700; }

.builder__summary{
  position: sticky; top: 96px;
  background: var(--wine); color: var(--cream);
  border-radius: var(--radius-md); padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}
.builder__summary h3{ color: var(--gold-light); font-size:1.15rem; margin-bottom:6px; }
.builder__summary > p{ color:#DCC2AA; font-size:0.84rem; margin-bottom:18px; }
.summary-list{ display:flex; flex-direction:column; gap:8px; max-height:260px; overflow:auto; margin-bottom:16px; padding-right:4px;}
.summary-empty{ font-size:0.86rem; color:#CDA98C; font-style:italic; }
.summary-row{ display:flex; justify-content:space-between; gap:10px; font-size:0.86rem; padding-bottom:8px; border-bottom:1px dashed rgba(255,255,255,0.18); }
.summary-row span:first-child{ color:#F1DFC9; min-width:0; }
.summary-row span:last-child{ color: var(--gold-light); font-weight:700; white-space:nowrap; flex:none; }

.field{ margin-bottom:14px; }
.field label{ display:block; font-size:0.78rem; letter-spacing:0.03em; text-transform:uppercase; color:#E4C9AC; margin-bottom:6px; font-weight:600; }
.field input, .field select, .field textarea{
  width:100%; padding:11px 13px; border-radius:6px; border:1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08); color: var(--paper); font-size:0.92rem;
}
.field input::placeholder, .field textarea::placeholder{ color:#C9AF98; }
.field select option{ color: var(--ink); }

.phone-input-group{ display:flex; gap:8px; }
.phone-input-group select{ flex:0 0 108px; width:auto; padding-inline:8px; }
.phone-input-group input{ flex:1; min-width:0; }
@media (max-width:420px){ .phone-input-group select{ flex-basis:92px; } }

.summary-total{ display:flex; justify-content:space-between; align-items:baseline; padding:14px 0; margin: 6px 0 18px; border-top:1px solid rgba(255,255,255,0.22); border-bottom:1px solid rgba(255,255,255,0.22); }
.summary-total span:first-child{ font-size:0.85rem; color:#F1DFC9; text-transform:uppercase; letter-spacing:0.04em; }
.summary-total strong{ font-family: var(--font-display); font-size:1.7rem; color: var(--gold-light); }
.summary-note{ font-size:0.72rem; color:#C9AF98; margin-top:10px; }
.form-status{ font-size:0.85rem; margin-top:12px; padding:10px 12px; border-radius:6px; display:none; }
.form-status.is-visible{ display:block; }
.form-status.success{ background: rgba(200,166,75,0.18); color: var(--gold-light); }
.form-note{ font-size:0.78rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonial{ background: var(--paper); border-left:3px solid var(--terracotta); padding:26px 28px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
.testimonial p{ font-style: italic; color: var(--ink-soft); font-size:0.98rem; }
.testimonial__who{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.testimonial__avatar{ width:40px; height:40px; border-radius:50%; background: linear-gradient(135deg, var(--gold), var(--terracotta)); flex:none; }
.testimonial__who strong{ display:block; font-size:0.9rem; color: var(--wine-dark); }
.testimonial__who span{ font-size:0.76rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band{ text-align:center; }
.cta-band h2{ max-width:640px; margin:0 auto 16px; }
.cta-band p{ max-width:520px; margin:0 auto 30px; color:#E9D7C5; }

/* ---------- About page specifics ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:860px){ .split{ grid-template-columns:1fr; gap:32px; } }
.timeline{ display:flex; flex-direction:column; gap:0; }
.timeline__item{ display:grid; grid-template-columns: 90px 1fr; gap:20px; padding-bottom:34px; position:relative; }
.timeline__item::before{ content:""; position:absolute; left:99px; top:6px; bottom:-4px; width:1.5px; background: var(--cream-deep); }
.timeline__item:last-child::before{ display:none; }
.timeline__year{ font-family:var(--font-display); font-weight:700; color: var(--terracotta); font-size:1.05rem; }
.timeline__body h4{ font-size:1.05rem; margin-bottom:6px; color: var(--wine-dark); }
.timeline__body p{ font-size:0.92rem; color: var(--ink-soft); }

.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:900px){ .value-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .value-grid{ grid-template-columns:1fr; } }
.value{ text-align:center; padding: 8px; }
.value svg{ width:38px; height:38px; color: var(--terracotta); margin:0 auto 14px; }
.value h4{ font-size:1rem; margin-bottom:8px; color: var(--wine-dark); }
.value p{ font-size:0.86rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--wine-deeper); color:#E9D7C5; }
.footer__grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; padding: 60px 0 40px; }
@media (max-width:860px){ .footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__grid{ grid-template-columns:1fr; gap:32px; padding: 44px 0 28px; } }
.footer__brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer__brand .brand__mark{ width:38px; height:38px; }
.footer__brand span{ font-family:var(--font-display); font-size:1.15rem; color: var(--paper); font-weight:700; }
.site-footer p{ color:#C9AF98; font-size:0.9rem; }
.site-footer h5{ color: var(--gold-light); font-size:0.82rem; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:16px; }
.footer__links li{ margin-bottom:10px; }
.footer__links a{ font-size:0.9rem; color:#DCC2AA; }
.footer__links a:hover{ color: var(--gold-light); }
.footer__social{ display:flex; gap:12px; margin-top:16px; }
.footer__social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(233,215,197,0.35); display:flex; align-items:center; justify-content:center; }
.footer__social svg{ width:16px; height:16px; }
.footer__bottom{ border-top:1px solid rgba(233,215,197,0.16); padding: 20px 0; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:0.8rem; color:#B99C82; }

/* ---------- Misc ---------- */
.pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{ padding:8px 16px; border-radius:30px; background: var(--cream-deep); font-size:0.82rem; font-weight:600; color: var(--wine-dark); }
.divider-thala{ display:flex; justify-content:center; padding: 6px 0 48px; opacity:.85; }
.divider-thala svg{ width:64px; height:64px; }

.badge-corner{ position:absolute; top:16px; right:16px; background: var(--terracotta); color:var(--paper); font-size:0.62rem; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; padding:5px 10px; border-radius:20px; }

/* ---------- Contact page ---------- */
.panel-wine{
  background: var(--wine); color: var(--cream);
  border-radius: var(--radius-md); padding: 32px 30px;
  box-shadow: var(--shadow-soft);
}
.panel-wine h3{ color: var(--gold-light); font-size:1.15rem; margin-bottom:6px; }
.panel-wine > p{ color:#DCC2AA; font-size:0.86rem; margin-bottom:20px; }

.contact-cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:900px){ .contact-cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .contact-cards{ grid-template-columns:1fr; } }
.contact-card{ text-align:center; }
.contact-card .icon-badge{
  width:52px; height:52px; border-radius:50%; background: var(--cream-deep);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
}
.contact-card .icon-badge svg{ width:22px; height:22px; color: var(--wine); }
.contact-card h4{ font-size:0.98rem; color: var(--wine-dark); margin-bottom:6px; }
.contact-card a.value{ font-weight:700; color: var(--terracotta); font-size:0.95rem; }
.contact-card p.hint{ font-size:0.78rem; color: var(--ink-soft); margin-top:6px; }

.map-embed{
  border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--cream-deep);
  box-shadow: var(--shadow-card); line-height:0;
}
.map-embed iframe{ width:100%; height:100%; min-height:280px; display:block; border:0; }

.hours-list{ display:flex; flex-direction:column; gap:8px; margin-top:16px; }
.hours-list div{ display:flex; justify-content:space-between; font-size:0.9rem; border-bottom:1px dotted var(--cream-deep); padding-bottom:8px; }
.hours-list span:first-child{ color: var(--ink-soft); }
.hours-list span:last-child{ font-weight:700; color: var(--wine-dark); }

/* ==========================================================================
   HERO — interactive touches
   Ambient motion is intentionally slow + subtle; the global
   prefers-reduced-motion rule above already neutralises all of this.
   ========================================================================== */
.hero__art{ perspective: 900px; }
.hero__art svg{ transition: transform .2s ease-out; will-change: transform; }
.food-collage{ transition: transform .2s ease-out; will-change: transform; transform-style: preserve-3d; }

.orbit-slow{
  transform-box: view-box;
  transform-origin: 200px 200px;
  animation: orbit-rotate 48s linear infinite;
}
.orbit-slow--rev{
  transform-box: view-box;
  transform-origin: 200px 200px;
  animation: orbit-rotate-rev 64s linear infinite;
}
@keyframes orbit-rotate{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }
@keyframes orbit-rotate-rev{ from{ transform: rotate(360deg); } to{ transform: rotate(0deg); } }

.pulse-glow{
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-glow 2.6s ease-in-out infinite;
}
@keyframes pulse-glow{
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.75; }
}

.steam-wisp{ opacity: 0; animation: steam-rise 3.2s ease-in infinite; }
.steam-wisp--2{ animation-delay: 1.05s; }
.steam-wisp--3{ animation-delay: 2.1s; }
@keyframes steam-rise{
  0%   { opacity: 0; transform: translateY(0) scaleY(0.8); }
  15%  { opacity: 0.65; }
  75%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(-46px) scaleY(1.15); }
}

@media (max-width: 900px){
  .hero__art{ perspective: none; }
}

/* ==========================================================================
   TRUST BAR — thin above-the-fold strip under the header (all pages)
   ========================================================================== */
.trust-bar{ background: var(--cream-deep); border-bottom: 1px solid rgba(169,135,60,0.3); }
.trust-bar__row{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap: 8px 30px; padding: 10px 0; text-align:center;
}
.trust-bar__row span{ font-size:0.82rem; font-weight:700; color: var(--wine-dark); letter-spacing:0.01em; }
@media (max-width:600px){
  .trust-bar__row{ gap:6px 18px; padding:9px 0; }
  .trust-bar__row span{ font-size:0.74rem; }
}

/* ==========================================================================
   HEADER — quick WhatsApp/Call icon (always visible, independent of the
   mobile nav drawer so it stays reachable with the menu closed)
   ========================================================================== */
.header-quick-contact{ display:flex; align-items:center; gap:8px; margin-left:auto; margin-right:14px; }
.header-icon-btn{
  width:40px; height:40px; border-radius:50%;
  background: var(--terracotta); color: var(--paper);
  display:flex; align-items:center; justify-content:center; flex:none;
  transition: transform .15s ease, background .15s ease;
}
.header-icon-btn:hover{ background: var(--terracotta-dim); transform: translateY(-1px); }
.header-icon-btn svg{ width:19px; height:19px; }
@media (max-width:900px){ .header-quick-contact{ margin-right:8px; } }

/* ==========================================================================
   HERO — food photo collage (replaces the abstract-only illustration;
   these tiles are placeholders — swap the .photo-ph divs for real <img>s)
   ========================================================================== */
.food-collage{ position:relative; max-width:400px; margin-inline:auto; }
.food-collage::before{
  /* soft plate-glow behind the collage — restrained heritage nod, not a literal illustration */
  content:""; position:absolute; inset:-10%; z-index:0;
  background: radial-gradient(circle, rgba(233,205,138,0.28) 0%, rgba(233,205,138,0) 68%);
}
.food-collage__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: 1fr 1fr;
  gap:14px;
}
.food-collage__tile{
  border-radius:14px; overflow:hidden; border:3px solid var(--paper);
  box-shadow: var(--shadow-soft);
}
.food-collage__tile .photo-ph{ height:100%; border-radius:11px; }
.food-collage__tile--a{ grid-row: 1 / 3; aspect-ratio: 3/4; transform: rotate(-1.6deg); }
.food-collage__tile--b{ aspect-ratio: 1/1; transform: rotate(2deg); }
.food-collage__tile--c{ aspect-ratio: 1/1; transform: rotate(-2deg); }
.food-collage__badge{
  position:absolute; z-index:2; right:-10px; bottom:-14px;
  width:92px; height:92px; border-radius:50%;
  background: var(--wine); border:3px solid var(--gold);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow: var(--shadow-soft);
}
.food-collage__badge strong{ font-family:var(--font-display); color: var(--gold-light); font-size:1.15rem; line-height:1; }
.food-collage__badge span{ font-size:0.56rem; letter-spacing:0.04em; text-transform:uppercase; color:#E9D7C5; margin-top:3px; }
.food-collage__badge .star-pulse{ animation: pulse-glow 2.6s ease-in-out infinite; display:inline-block; }

@media (max-width:900px){
  .food-collage{ max-width:320px; }
}

/* ==========================================================================
   ABOUT — founder title line (small helper, used under each founder's name)
   ========================================================================== */
.founder-title{ font-size:0.82rem; color: var(--terracotta); font-weight:700; margin-bottom:10px; letter-spacing:0.01em; }

/* ==========================================================================
   DISH ART — original illustrated dishes (see includes/dish-art.php).
   Fills the same role as .photo-ph but actually reads as food while real
   photography is pending. Swap for a real <img> any time — same footprint.
   ========================================================================== */
.dish-art{
  position:relative; aspect-ratio:4/3; border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-card); border:1.5px solid var(--gold-dim);
}
.dish-art--square{ aspect-ratio:1/1; }
.dish-art--wide{ aspect-ratio:16/9; }
.dish-art-svg{ width:100%; height:100%; display:block; }
.dish-art img{ width:100%; height:100%; object-fit:cover; display:block; }
.dish-art__caption{
  position:absolute; left:0; right:0; bottom:0; padding:10px 12px 8px;
  background: linear-gradient(to top, rgba(43,24,16,0.78), rgba(43,24,16,0));
  color: var(--paper); font-size:0.76rem; font-weight:700; text-align:left; letter-spacing:0.01em;
}
/* inside the hero collage, the tile wrapper already provides the border/shadow/radius */
.food-collage__tile .dish-art{ height:100%; border:none; box-shadow:none; border-radius:0; aspect-ratio:auto; }

/* ==========================================================================
   CUISINE TABS — top-level switch above the menu/builder category tabs
   ========================================================================== */
.cuisine-tabs{
  display:flex; flex-wrap:wrap; gap:10px;
  border-bottom:2px solid var(--wine); padding-bottom:0; margin-bottom:32px;
}
.cuisine-tab{
  padding:10px 22px; font-family:var(--font-display); font-size:1.02rem; font-weight:600;
  color:var(--ink-soft); background:none; border:none; border-bottom:3px solid transparent;
  margin-bottom:-2px; transition:color .15s ease, border-color .15s ease;
}
.cuisine-tab:hover{ color:var(--wine-dark); }
.cuisine-tab.is-active{ color:var(--wine); border-bottom-color:var(--terracotta); }

.cuisine-panel{ display:none; }
.cuisine-panel.is-active{ display:block; }

.sample-note{
  display:inline-block; font-size:0.72rem; letter-spacing:0.03em; text-transform:uppercase;
  color:var(--terracotta); font-weight:700; background:rgba(181,80,46,0.1);
  padding:3px 9px; border-radius:20px; margin-bottom:16px;
}

@media (max-width:600px){
  .cuisine-tab{ padding:8px 14px; font-size:0.92rem; }
}
