/* ==========================================================================
   ZAIKA POINT — Core Stylesheet
   Biryani & Pulao Specialists

   Token system
   ------------
   Color:
     --charcoal-deep  #12100c   base background, near-black but warm
     --charcoal       #1c1812   secondary dark surface
     --charcoal-line  rgba(243,237,224,.13)  hairline on dark
     --ivory          #f3ede0   base light surface / reversed text
     --ivory-dim      #e9dfc9   secondary light surface
     --ink            #1c1710   text on light
     --gold           #b8862e   primary accent — toasted rice / turmeric
     --gold-soft      #d9b06a   accent, lighter
     --ember          #8a3324   secondary accent — used only for spice marks
   Type:
     --font-display   'Fraunces' — headlines, editorial voice
     --font-body      'Manrope'  — UI, nav, body copy
   ========================================================================== */

:root{
  --charcoal-deep: #12100c;
  --charcoal: #1c1812;
  --charcoal-raised: #241f17;
  --charcoal-line: rgba(243,237,224,0.13);
  --ivory: #f3ede0;
  --ivory-dim: #e9dfc9;
  --ivory-line: rgba(28,23,16,0.12);
  --ink: #1c1710;
  --ink-soft: #4a4033;
  --gold: #b8862e;
  --gold-soft: #d9b06a;
  --ember: #8a3324;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gutter: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body{
  margin: 0;
  background: var(--charcoal-deep);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

button{ font-family: inherit; cursor: pointer; }

ul{ list-style: none; margin: 0; padding: 0; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

p{ margin: 0; }

:focus-visible{
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section{
  padding: clamp(72px, 11vw, 160px) 0;
  position: relative;
}

.section--tight{ padding: clamp(56px, 8vw, 110px) 0; }

.on-light{ background: var(--ivory); color: var(--ink); }
.on-light h1, .on-light h2, .on-light h3, .on-light h4{ color: var(--ink); }
.on-raised{ background: var(--charcoal-raised); }

.section-head{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 88px);
}

.section-head .lede{
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
}

.on-light .section-head .lede{ color: var(--ink-soft); }
.section:not(.on-light) .section-head .lede{ color: rgba(243,237,224,0.72); }

.kicker{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  display: inline-block;
  margin-bottom: 14px;
}

.h-xl{ font-size: clamp(44px, 7vw, 92px); }
.h-lg{ font-size: clamp(34px, 4.6vw, 60px); }
.h-md{ font-size: clamp(26px, 3vw, 38px); }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}

.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }

.btn--whatsapp{
  background: var(--gold);
  color: var(--charcoal-deep);
}
.btn--whatsapp:hover{ background: var(--gold-soft); transform: translateY(-2px); }

.btn--ghost-dark{
  border-color: var(--charcoal-line);
  color: var(--ivory);
}
.btn--ghost-dark:hover{ border-color: var(--gold-soft); color: var(--gold-soft); }

.btn--ghost-light{
  border-color: var(--ivory-line);
  color: var(--ink);
}
.btn--ghost-light:hover{ border-color: var(--ember); color: var(--ember); }

.btn--dark{
  background: var(--ink);
  color: var(--ivory);
}
.btn--dark:hover{ background: var(--ember); transform: translateY(-2px); }

.btn--sm{ padding: 11px 20px; font-size: 13px; }
.btn--block{ width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------- */
/* Navigation                                                              */
/* ---------------------------------------------------------------------- */

.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled{
  background: rgba(18,16,12,0.86);
  backdrop-filter: blur(14px);
  padding: 13px 0;
  border-color: var(--charcoal-line);
}

.nav .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__mark{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav__mark span{ color: var(--gold-soft); }

.nav__links{
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav__links a{
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  opacity: 0.82;
  position: relative;
  padding: 4px 0;
  transition: opacity .3s;
}
.nav__links a:hover{ opacity: 1; }
.nav__links a.is-active{ opacity: 1; }
.nav__links a.is-active::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold-soft);
}

.nav__cta{ display: flex; align-items: center; gap: 14px; }

.nav__toggle{
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  padding: 6px;
}

.mobile-panel{
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--charcoal-deep);
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-panel.is-open{ transform: translateY(0); }

.mobile-panel__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-panel__links{
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-panel__links a{
  font-family: var(--font-display);
  font-size: 38px;
  padding: 14px 0;
  border-bottom: 1px solid var(--charcoal-line);
}

.mobile-panel__foot{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 880px){
  .nav__links{ display: none; }
  .nav__toggle{ display: inline-flex; }
  .nav__cta .btn span{ display: none; }
  .nav__cta .btn{ padding: 13px; }
}

/* ---------------------------------------------------------------------- */
/* Food frame — reusable placeholder-image component                      */
/* Structured for easy client-image swap: replace the <img> src, or keep  */
/* the .food-frame markup and drop a background-image via inline style.   */
/* ---------------------------------------------------------------------- */

.food-frame{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 20% 15%, rgba(184,134,46,0.35), transparent 55%),
    linear-gradient(155deg, #2a2115 0%, #1a1610 55%, #100d09 100%);
  color: var(--ivory);
}

.food-frame::before{
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.food-frame__icon{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.28;
}
.food-frame__icon svg{ width: 30%; height: 30%; stroke: var(--gold-soft); }

.food-frame__tag{
  position: absolute;
  left: 20px; bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(243,237,224,0.55);
  border: 1px solid rgba(243,237,224,0.25);
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(18,16,12,0.35);
  backdrop-filter: blur(6px);
}

.food-frame img.is-real{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* When a real photo fills the frame, drop the flat gradient fallback,
   remove grain, and let the image do the work. */
.food-frame:has(img.is-real){
  background: #12100c;
}
.food-frame:has(img.is-real)::before{
  content: none;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero{
  position: relative;
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background: var(--charcoal-deep);
  overflow: hidden;
}

.hero::after{
  content: '';
  position: absolute;
  top: -20%; right: -12%;
  width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(184,134,46,0.16), transparent 65%);
  pointer-events: none;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__eyebrow{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero__eyebrow::before{
  content: '';
  width: 26px; height: 1px;
  background: var(--gold-soft);
}

.hero__title{
  font-size: clamp(46px, 6.4vw, 88px);
  max-width: 13ch;
}

.hero__sub{
  margin-top: 28px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(243,237,224,0.75);
  max-width: 42ch;
}

.hero__actions{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__meta{
  margin-top: 56px;
  display: flex;
  gap: clamp(28px, 4vw, 52px);
  border-top: 1px solid var(--charcoal-line);
  padding-top: 24px;
}
.hero__meta div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
}
.hero__meta div span{
  font-size: 13px;
  color: rgba(243,237,224,0.55);
}

.hero__art{
  position: relative;
  height: clamp(420px, 52vw, 640px);
}

.hero__art .food-frame{
  position: absolute;
  border-radius: 6px;
}
.hero__art .food-frame--main{
  inset: 0 0 12% 14%;
  z-index: 2;
}
.hero__art .food-frame--accent{
  top: 0; right: 0;
  width: 46%; height: 42%;
  z-index: 1;
  border: 1px solid var(--charcoal-line);
}

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__art{ order: -1; height: 62vw; }
  .hero__meta{ flex-wrap: wrap; row-gap: 20px; }
}

/* ---------------------------------------------------------------------- */
/* Brand intro                                                            */
/* ---------------------------------------------------------------------- */

.intro{
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro__label{
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--gold-soft);
}

.intro__body p{
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
  color: var(--ivory-dim);
}
.intro__body p + p{ margin-top: 22px; }
.intro__body strong{ color: var(--ivory); font-weight: 700; }

@media (max-width: 780px){
  .intro{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Menu grid                                                              */
/* ---------------------------------------------------------------------- */

.menu-list{
  display: flex;
  flex-direction: column;
}

.menu-item{
  display: grid;
  grid-template-columns: 0.42fr 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid var(--ivory-line);
}
.menu-item:last-child{ border-bottom: 1px solid var(--ivory-line); }

.menu-item__frame{
  aspect-ratio: 4 / 3;
  border-radius: 4px;
}

.menu-item__name{
  font-size: clamp(24px, 2.4vw, 32px);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.spice{
  display: inline-flex;
  gap: 3px;
  vertical-align: middle;
}
.spice svg{ width: 13px; height: 13px; stroke: var(--ember); fill: var(--ember); }
.spice svg.is-off{ fill: none; stroke: rgba(138,51,36,0.3); }

.menu-item__desc{
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 52ch;
}

.menu-item__side{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}

.menu-item__price{
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 720px){
  .menu-item{
    grid-template-columns: 1fr;
  }
  .menu-item__frame{ aspect-ratio: 16/10; }
  .menu-item__side{ flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
}

/* ---------------------------------------------------------------------- */
/* Gallery — editorial mosaic                                             */
/* ---------------------------------------------------------------------- */

.gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  height: clamp(420px, 62vw, 640px);
}

.gallery .food-frame{ border-radius: 4px; }
.gallery > .food-frame:nth-child(1){ grid-column: 1 / 4; grid-row: 1 / 3; }
.gallery > .food-frame:nth-child(2){ grid-column: 4 / 7; grid-row: 1 / 2; }
.gallery > .food-frame:nth-child(3){ grid-column: 4 / 5; grid-row: 2 / 3; }
.gallery > .food-frame:nth-child(4){ grid-column: 5 / 7; grid-row: 2 / 3; }

@media (max-width: 780px){
  .gallery{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    height: auto;
  }
  .gallery > .food-frame:nth-child(1){ grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery > .food-frame:nth-child(2){ grid-column: 1 / 3; grid-row: 2 / 3; }
  .gallery > .food-frame:nth-child(3){ grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery > .food-frame:nth-child(4){ grid-column: 2 / 3; grid-row: 3 / 4; }
}

/* ---------------------------------------------------------------------- */
/* Catering                                                                */
/* ---------------------------------------------------------------------- */

.catering-band{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.catering-band__copy{
  background: var(--ember);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 90px);
}

.catering-band__copy h2{ font-size: clamp(36px, 4.6vw, 60px); max-width: 11ch; }
.catering-band__copy p{
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(243,237,224,0.85);
  max-width: 42ch;
}
.catering-band__copy .btn{ margin-top: 34px; align-self: flex-start; }

.catering-band__art{ position: relative; min-height: 320px; }
.catering-band__art .food-frame{ position: absolute; inset: 0; border-radius: 0; }

@media (max-width: 860px){
  .catering-band{ grid-template-columns: 1fr; }
  .catering-band__art{ order: -1; min-height: 46vw; }
}

.cat-categories{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--charcoal-line);
  border: 1px solid var(--charcoal-line);
}

.cat-cat{
  background: var(--charcoal-deep);
  padding: clamp(24px, 2.4vw, 34px) clamp(18px, 2vw, 26px);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-cat__num{ font-size: 12px; color: rgba(243,237,224,0.4); font-weight: 700; }
.cat-cat h4{ font-size: 21px; margin-top: auto; }
.cat-cat span{ font-size: 13px; color: rgba(243,237,224,0.55); margin-top: 6px; display: block; }

@media (max-width: 860px){
  .cat-categories{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------------- */
/* Catering menu (catering.html) — dense editorial list                   */
/* ---------------------------------------------------------------------- */

.cmenu-group{ margin-bottom: clamp(48px, 6vw, 80px); }
.cmenu-group__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--charcoal-line);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.cmenu-group__head h3{ font-size: clamp(24px, 2.6vw, 32px); }
.cmenu-group__head span{ font-size: 13px; color: rgba(243,237,224,0.5); }

.cmenu-rows{ display: flex; flex-direction: column; }
.cmenu-row{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--charcoal-line);
}
.cmenu-row__name{ font-size: 17px; font-weight: 600; }
.cmenu-row__desc{ font-size: 14px; color: rgba(243,237,224,0.55); margin-top: 4px; max-width: 56ch; }
.cmenu-row__price{ font-family: var(--font-display); font-size: 17px; color: var(--gold-soft); white-space: nowrap; }

/* ---------------------------------------------------------------------- */
/* Why Zaika — feature list                                               */
/* ---------------------------------------------------------------------- */

.features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 1px);
}

@media (min-width: 781px){
  .features{ gap: 0; background: var(--ivory-line); border: 1px solid var(--ivory-line); }
}

.feature{
  background: var(--ivory);
  padding: clamp(28px, 2.6vw, 40px) clamp(20px, 2vw, 28px);
}
.feature svg{ width: 26px; height: 26px; stroke: var(--ember); margin-bottom: 22px; }
.feature h4{ font-size: 19px; color: var(--ink); }
.feature p{ margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 780px){
  .features{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px){
  .features{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Order online                                                           */
/* ---------------------------------------------------------------------- */

.order-grid{
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.9fr);
  gap: 16px;
}

.order-card{
  border: 1px solid var(--charcoal-line);
  padding: clamp(26px, 2.6vw, 36px) clamp(22px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 230px;
  transition: border-color .3s;
}
.order-card:hover{ border-color: var(--gold-soft); }

.order-card--primary{
  background: var(--gold);
  color: var(--charcoal-deep);
  border-color: var(--gold);
}
.order-card--primary .order-card__foot{ color: rgba(18,16,12,0.65); }

.order-card__top{ display: flex; align-items: center; justify-content: space-between; }
.order-card__top svg{ width: 30px; height: 30px; }

.order-card h4{ font-size: 22px; margin-top: auto; }
.order-card p{ font-size: 14px; color: rgba(243,237,224,0.6); }
.order-card--primary p{ color: rgba(18,16,12,0.72); }

.order-card__foot{
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(243,237,224,0.7);
}
.order-card__foot svg{ width: 14px; height: 14px; }

@media (max-width: 980px){
  .order-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .order-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Service radius                                                         */
/* ---------------------------------------------------------------------- */

.radius-band{
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.radius-copy p{ font-size: clamp(16px, 1.4vw, 19px); color: rgba(243,237,224,0.72); max-width: 46ch; }
.radius-copy p + p{ margin-top: 16px; }

.radius-diagram{
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radius-diagram .ring{
  position: absolute;
  border: 1px dashed rgba(217,176,106,0.35);
  border-radius: 50%;
}
.radius-diagram .ring--1{ inset: 0; }
.radius-diagram .ring--2{ inset: 16%; border-style: solid; border-color: rgba(217,176,106,0.5); }
.radius-diagram .ring--3{ inset: 34%; background: rgba(184,134,46,0.14); border: none; }
.radius-diagram .pin{
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(217,176,106,0.2);
}
.radius-diagram .pin::after{
  content: attr(data-label);
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ivory);
}
.radius-diagram .km-label{
  position: absolute;
  top: 6%; right: 6%;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold-soft);
}

@media (max-width: 860px){
  .radius-band{ grid-template-columns: 1fr; }
  .radius-diagram{ order: -1; }
}

/* ---------------------------------------------------------------------- */
/* Location                                                                */
/* ---------------------------------------------------------------------- */

.location-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 70px);
}

.location-card{
  border-top: 1px solid var(--ivory-line);
  padding-top: 20px;
}
.location-card + .location-card{ margin-top: 26px; }
.location-card span.label{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ember);
  margin-bottom: 6px;
}
.location-card p{ font-size: 18px; color: var(--ink); }
.location-card p.dim{ color: var(--ink-soft); font-size: 15px; margin-top: 4px; }

.location-actions{ display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.location-map{
  border: 1px solid var(--ivory-line);
  min-height: 340px;
  position: relative;
}

/* ---------------------------------------------------------------------- */
/* Catering CTA band (index)                                              */
/* ---------------------------------------------------------------------- */

.cta-band{
  border: 1px solid var(--charcoal-line);
  padding: clamp(40px, 6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h3{ font-size: clamp(28px, 3.2vw, 42px); max-width: 16ch; }
.cta-band p{ margin-top: 12px; color: rgba(243,237,224,0.65); max-width: 44ch; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.footer{
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(56px, 7vw, 96px) 0 28px;
}

.footer__top{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: clamp(28px, 4vw, 40px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(243,237,224,0.14);
}

.footer__brand{ font-family: var(--font-display); font-size: 28px; }
.footer__tag{ margin-top: 10px; font-size: 14px; color: rgba(243,237,224,0.55); max-width: 30ch; }

.footer h5{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(243,237,224,0.5);
  margin-bottom: 16px;
}
.footer ul li{ margin-bottom: 10px; font-size: 14.5px; }
.footer ul li a:hover{ color: var(--gold-soft); }

.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(243,237,224,0.45);
  flex-wrap: wrap;
  gap: 14px;
}

.footer__social{ display: flex; gap: 14px; }
.footer__social a{
  width: 34px; height: 34px;
  border: 1px solid rgba(243,237,224,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s;
}
.footer__social a:hover{ border-color: var(--gold-soft); }
.footer__social svg{ width: 15px; height: 15px; }

@media (max-width: 860px){
  .footer__top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer__top{ grid-template-columns: 1fr; }
  .location-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Floating WhatsApp                                                      */
/* ---------------------------------------------------------------------- */

.float-wa{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform .3s var(--ease);
}
.float-wa:hover{ transform: scale(1.08); }
.float-wa svg{ width: 26px; height: 26px; }

/* ---------------------------------------------------------------------- */
/* Page hero (menu / catering interior pages)                             */
/* ---------------------------------------------------------------------- */

.page-hero{
  padding-top: clamp(130px, 16vw, 190px);
  padding-bottom: clamp(40px, 6vw, 70px);
  background: var(--charcoal-deep);
}
.page-hero__title{ font-size: clamp(42px, 6vw, 78px); max-width: 16ch; }
.page-hero__sub{ margin-top: 20px; font-size: clamp(16px, 1.4vw, 19px); color: rgba(243,237,224,0.7); max-width: 48ch; }
.page-hero__crumb{ font-size: 13px; color: rgba(243,237,224,0.5); margin-bottom: 18px; }
.page-hero__crumb a:hover{ color: var(--gold-soft); }

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll utility (JS toggles .is-visible)                      */
/* ---------------------------------------------------------------------- */

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

.reveal-scale{
  transform: scale(1.08);
  transition: transform 1.1s var(--ease);
}
.reveal-scale.is-visible{ transform: scale(1); }
