/* ==========================================================================
   The Rasoi — Cuisines of India
   Hand-built HTML/CSS rebuild of the original Canva-exported site.
   No JavaScript. All fonts and imagery are self-hosted.
   ========================================================================== */

/* ---------- Fonts (lifted from the original export) ---------------------- */
@font-face{font-family:"Rasoi Display";src:url("../fonts/rasoi-display.woff2") format("woff2");font-weight:400 700;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Headline";src:url("../fonts/rasoi-headline.woff2") format("woff2");font-weight:400 700;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Body";src:url("../fonts/rasoi-body-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Body";src:url("../fonts/rasoi-body-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi UI";src:url("../fonts/rasoi-ui-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi UI";src:url("../fonts/rasoi-ui-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Script";src:url("../fonts/rasoi-script.woff2") format("woff2");font-weight:400 700;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Caps";src:url("../fonts/rasoi-caps.woff2") format("woff2");font-weight:400 700;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Note";src:url("../fonts/rasoi-note-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Rasoi Note";src:url("../fonts/rasoi-note-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}

/* ---------- Tokens ------------------------------------------------------- */
:root{
  --ink:#1F1713;          /* section background brown  */
  --black:#000;
  --gold:#C49239;         /* buttons / accents         */
  --cream:#F4E1C2;        /* hero type, tile fills     */
  --paper:#F9F7DC;        /* off-white type            */
  --red:#BF2D11;          /* accent squares, icons     */
  --yellow:#FBDC6A;       /* footer type               */
  --white:#fff;

  /* about page */
  --about-bg-1:#F6F4F1;
  --about-bg-2:#F2F1EC;
  --about-bg-3:#F7F7F7;
  --about-ink:#423E3A;
  --teal:#365B6D;
  --teal-dark:#253439;

  --header-h:90px;
  --design:1440;          /* reference width of the original artwork */
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--ink);
  color:var(--white);
  font-family:"Rasoi Body",Arial,Helvetica,sans-serif;
  overflow-x:clip;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,p{margin:0}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

/* ==========================================================================
   Header — reproduces the original fixed white bar
   ========================================================================== */
.site-header{
  position:fixed;top:var(--strip-h,0px);left:0;right:0;z-index:1000;
  background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.header-inner{
  max-width:1200px;margin:auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);
}
.brand{flex:1;text-align:center}
.brand img{max-height:60px;width:auto;margin:auto}
.site-nav{flex:2}
.site-nav > ul{display:flex;justify-content:space-between;align-items:center;font-size:14px}
.site-nav a{
  display:block;padding:10px 15px;color:#333;
  font-family:Arial,Helvetica,sans-serif;white-space:nowrap;
  transition:color .3s ease;
}
.site-nav a:hover,.site-nav a:focus-visible{color:#d33}
.has-sub{position:relative}
.sub{
  position:absolute;top:100%;left:0;min-width:200px;
  background:#fff;box-shadow:0 4px 8px rgba(0,0,0,.1);
  opacity:0;visibility:hidden;transform:translateY(6px);
  transition:opacity .18s ease,transform .18s ease,visibility .18s;
}
.has-sub:hover .sub,.has-sub:focus-within .sub{opacity:1;visibility:visible;transform:none}
.sub a{padding:10px 15px;font-size:14px}

/* burger — pure CSS toggle, no script */
.nav-toggle{position:absolute;opacity:0;pointer-events:none}
.nav-burger{display:none;flex:1;cursor:pointer;padding:6px}
.nav-burger span{display:block;width:25px;height:3px;margin:5px 0;background:#333;border-radius:2px}

/* ==========================================================================
   Band system
   Every original section is 1440px wide artwork. Children are placed with
   --x/--y/--w/--h in that 1440-unit space and scale with the viewport via
   container query units, exactly like the original design did.
   ========================================================================== */
.band{position:relative;width:100%;container-type:inline-size;overflow:clip;background:var(--ink)}
.band > .band-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:var(--bgp,center);opacity:var(--bgo,1);z-index:0}
.band > .band-scrim{position:absolute;inset:0;z-index:1}
.band-inner{position:relative;z-index:2;width:100%;height:calc(var(--bh)/var(--design)*100cqw)}

/* positioned box */
.p{
  position:absolute;
  left:calc(var(--x,0)/var(--design)*100cqw);
  top:calc(var(--y,0)/var(--design)*100cqw);
  width:calc(var(--w,0)/var(--design)*100cqw);
  height:calc(var(--h,0)/var(--design)*100cqw);
}
.p img{width:100%;height:100%;object-fit:cover}
/* positioned text block (auto height) */
.t{
  position:absolute;
  left:calc(var(--x,0)/var(--design)*100cqw);
  top:calc(var(--y,0)/var(--design)*100cqw);
  width:calc(var(--w,0)/var(--design)*100cqw);
  font-size:calc(var(--fs,16)/var(--design)*100cqw);
  line-height:calc(var(--lh,24)/var(--design)*100cqw);
  letter-spacing:calc(var(--ls,0)/var(--design)*100cqw);
}

/* decorative colour tiles */
.tile-red{background:var(--red)}
.tile-cream{background:var(--cream)}
.tile-gold{background:var(--gold)}

/* icons rendered as masks so they can take the artwork's colours */
.icon{
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-size:100% 100%;mask-size:100% 100%;
  background-color:currentColor;
}
.icon-cloche{-webkit-mask-image:url("../img/icons/cloche.png");mask-image:url("../img/icons/cloche.png")}
.icon-gift{-webkit-mask-image:url("../img/icons/gift.png");mask-image:url("../img/icons/gift.png")}
.icon-table{-webkit-mask-image:url("../img/icons/table.png");mask-image:url("../img/icons/table.png")}
.icon-stars{-webkit-mask-image:url("../img/icons/stars.png");mask-image:url("../img/icons/stars.png")}
.icon-ornament{-webkit-mask-image:url("../img/icons/ornament.png");mask-image:url("../img/icons/ornament.png")}
.icon-instagram{-webkit-mask-image:url("../img/icons/instagram.png");mask-image:url("../img/icons/instagram.png")}
.icon-arrow{-webkit-mask-image:url("../img/icons/arrow-circle.png");mask-image:url("../img/icons/arrow-circle.png")}
.icon-chevron{-webkit-mask-image:url("../img/icons/chevron.png");mask-image:url("../img/icons/chevron.png")}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  position:absolute;
  left:calc(var(--x,0)/var(--design)*100cqw);
  top:calc(var(--y,0)/var(--design)*100cqw);
  width:calc(var(--w,193)/var(--design)*100cqw);
  height:calc(var(--h,51)/var(--design)*100cqw);
  display:flex;align-items:center;justify-content:center;
  gap:calc(22/var(--design)*100cqw);
  font-family:"Rasoi UI",Arial,sans-serif;font-weight:700;
  font-size:calc(var(--fs,18)/var(--design)*100cqw);
  color:var(--white);
  transition:filter .2s ease,background-color .2s ease,color .2s ease;
}
.btn .icon-chevron{
  width:calc(var(--cw,8)/var(--design)*100cqw);
  height:calc(var(--ch,16)/var(--design)*100cqw);
  flex:none;
}
.btn-solid{background:var(--gold)}
.btn-solid:hover{filter:brightness(1.12)}
.btn-ghost{border:2px solid var(--stroke,var(--cream));font-weight:400}
.btn-ghost:hover{background:var(--stroke,var(--cream));color:var(--ink)}

/* ==========================================================================
   Type helpers
   ========================================================================== */
.display{font-family:"Rasoi Display",Georgia,serif;font-weight:400}
.headline{font-family:"Rasoi Headline",Impact,sans-serif;font-weight:400;text-transform:uppercase}
.uiface{font-family:"Rasoi UI",Arial,sans-serif}
.script{font-family:"Rasoi Script",Georgia,serif}
.caps{font-family:"Rasoi Caps",Arial,sans-serif}
.note{font-family:"Rasoi Note",Arial,sans-serif}
.up{text-transform:uppercase}
.center{text-align:center}
.just{text-align:justify}

/* ==========================================================================
   Home — hero
   ========================================================================== */
.hero{background:var(--black)}

.hero-kicker,.hero-title{color:var(--cream);text-align:center}

/* ==========================================================================
   Home — intro
   ========================================================================== */
.intro-copy{color:var(--white)}
.intro-copy p + p{margin-top:calc(22/var(--design)*100cqw)}
.intro-lede{
  display:block;
  font-size:calc(22.4/var(--design)*100cqw);
  line-height:calc(26/var(--design)*100cqw);
}

/* ==========================================================================
   Home — reviews
   ========================================================================== */
.review-name{font-weight:700;color:var(--paper);text-align:center}
.review-text{font-weight:700;color:var(--paper);text-align:center}

/* ==========================================================================
   Home — contact strip / footer
   ========================================================================== */
.contact-band,.contact-band a{color:var(--yellow)}
.contact-band .label{font-weight:700;text-align:center}
.contact-band .value{font-weight:700;text-align:center}
.copyright{background:var(--ink);color:var(--yellow);text-align:center}
.copyright a{font-weight:700;text-decoration:none}
.copyright a:hover{text-decoration:underline}

/* ==========================================================================
   Interior pages (about / chef / contact) — normal document flow
   ========================================================================== */
.page{padding-top:calc(var(--header-h) + var(--strip-h,0px))}
.page-section{padding:70px 0}
.shell{width:min(1150px,calc(100% - 80px));margin-inline:auto}
.page-title{
  font-family:"Rasoi Headline",Impact,sans-serif;font-weight:400;
  text-transform:uppercase;line-height:1.05;
  font-size:clamp(34px,4.4vw,51px);
}
.page-sub{
  font-family:"Rasoi Headline",Impact,sans-serif;font-weight:400;
  text-transform:uppercase;line-height:1.15;
  font-size:clamp(19px,2.2vw,26px);
}
.prose p{
  font-size:clamp(16px,1.5vw,21.3px);
  line-height:1.2;
  text-align:justify;
  hyphens:auto;
}
.prose p + p{margin-top:1.1em}

.about-page{background:var(--about-bg-1);color:var(--about-ink)}
.about-hero{background:var(--about-bg-1)}
.about-hero .page-title{color:var(--about-ink)}
.about-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:48px;align-items:start}
.about-stack{position:relative}
.about-stack img{width:100%;height:auto}
.about-stack .stack-a{aspect-ratio:815/523;object-fit:cover}
.about-stack .stack-b{
  position:absolute;right:0;bottom:-52px;width:36%;
  aspect-ratio:289/361;object-fit:cover;
  outline:6px solid var(--about-bg-1);
}
.about-stack .stack-tab{
  position:absolute;left:66%;top:2%;width:10%;aspect-ratio:83/178;
  background:var(--teal-dark);
}
.about-features{background:var(--about-bg-2);color:var(--teal)}
.about-features .page-title{color:var(--teal)}
.about-feature + .about-feature{margin-top:42px}
.about-gallery{
  margin-top:60px;display:grid;gap:22px;
  grid-template-columns:481fr 541fr 481fr;
}
.about-gallery img{width:100%;height:360px;object-fit:cover}

.chef-page{background:var(--ink);color:var(--white)}
.chef-hat{width:137px;height:auto;margin-bottom:26px}
.chef-page .page-title,.chef-page .page-sub{color:var(--paper)}
.chef-split{display:grid;grid-template-columns:438fr 675fr;gap:56px;align-items:start;margin-top:56px}
.chef-split.flip{grid-template-columns:500fr 663fr}
.chef-split img{width:100%;height:100%;max-height:604px;object-fit:cover}
.chef-divider{
  display:block;width:310px;height:17px;margin:52px auto 0;
  color:var(--paper);
}

.contact-page{background:var(--ink);color:var(--paper)}
.contact-page .page-title{color:var(--paper);text-align:center}
.contact-cards{
  margin-top:54px;display:grid;gap:34px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.contact-card{
  border:1px solid rgba(251,220,106,.35);
  padding:34px 26px;text-align:center;color:var(--yellow);
}
.contact-card h2{
  font-size:20px;font-weight:700;text-transform:uppercase;
  letter-spacing:.4px;margin-bottom:14px;
}
.contact-card p,.contact-card a{font-size:17px;line-height:1.55;font-weight:700}
.contact-card a:hover{text-decoration:underline}
.contact-map{margin-top:46px;border:1px solid rgba(251,220,106,.35)}
.contact-map iframe,.contact-map img{display:block;width:100%;height:380px;border:0;object-fit:cover}
.contact-actions{margin-top:44px;display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.pill{
  display:inline-flex;align-items:center;gap:12px;
  padding:14px 30px;background:var(--gold);color:#fff;
  font-family:"Rasoi UI",Arial,sans-serif;font-weight:700;font-size:16px;
}
.pill:hover{filter:brightness(1.12)}
.pill.ghost{background:none;border:2px solid var(--cream);color:var(--cream)}
.pill.ghost:hover{background:var(--cream);color:var(--ink)}
.pill .icon-chevron{width:8px;height:16px;flex:none}

/* interior page footer reuses the home contact strip */

/* ==========================================================================
   Responsive — below 900px the artwork stops scaling and stacks
   ========================================================================== */
@media (max-width:900px){
  :root{--header-h:72px}

  .header-inner{position:relative;padding:0 16px}
  .nav-burger{display:block;order:1;flex:0 0 auto;text-align:left}
  .brand{order:2;flex:1 1 auto;text-align:center}
  .brand img{max-height:44px}
  .site-nav{
    order:3;position:absolute;top:100%;left:0;right:0;
    background:#fff;border-top:1px solid #eee;
    max-height:0;overflow:hidden;
    transition:max-height .3s ease;
  }
  .nav-toggle:checked ~ .site-nav{max-height:80vh;overflow-y:auto}
  .site-nav > ul{flex-direction:column;align-items:stretch}
  .site-nav > ul > li{border-bottom:1px solid #f0f0f0}
  .site-nav a{padding:14px 18px;font-size:16px;text-align:center}
  .sub{
    position:static;opacity:1;visibility:visible;transform:none;
    box-shadow:none;background:#fafafa;min-width:0;
  }
  .sub a{font-size:14px;padding:11px 18px}

  /* the 1440-unit canvas is abandoned; sections become flow layouts */
  .band-inner{height:auto;display:flex;flex-direction:column;align-items:center;
              padding:54px 22px;gap:22px}
  .band .p,.band .t,.band .btn{
    position:static;width:100%;height:auto;left:auto;top:auto;
  }
  .band .t{font-size:16px;line-height:1.45;letter-spacing:normal}
  .m-hide{display:none !important}
  .band .icon-ornament{width:220px;height:22px;flex:none}
  .band .delivery-line{font-size:clamp(17px,4.6vw,21px);line-height:1.25}

  .band .m-shot{width:100%;max-width:440px;height:auto}
  .band .m-shot img{width:100%;height:auto;aspect-ratio:var(--ar,4/3);object-fit:cover}
  .band .m-logo{width:min(210px,58%);height:auto}
  .band .m-logo img{width:100%;height:auto;object-fit:contain}
  .band .m-icon{width:74px;height:74px;flex:none}
  .band .m-icon.contain img{width:100%;height:100%;object-fit:contain}
  .band .m-tile{
    width:150px;height:144px;flex:none;
    display:flex;align-items:center;justify-content:center;
  }
  .band .m-tile .m-icon{width:66px;height:68px;margin:0}

  .band .btn{
    width:auto;min-width:200px;height:auto;padding:14px 26px;
    font-size:16px;align-self:center;gap:14px;
  }
  .band .btn .icon-chevron{width:8px;height:15px}

  .hero .band-inner{gap:12px}
  .band .hero-kicker{font-size:clamp(19px,5.4vw,26px);line-height:1.2}
  .band .hero-title{font-size:clamp(38px,11.5vw,60px);line-height:1.04}
  .band .headline{font-size:clamp(28px,7.6vw,40px);line-height:1.08}
  .band .h-sub{font-size:clamp(17px,4.4vw,22px);line-height:1.2}
  .band .lead-copy{font-size:16px;line-height:1.5}
  .band .intro-lede{font-size:19px;line-height:1.3;margin-bottom:4px}
  .band .intro-copy p + p{margin-top:14px}

  .band-follow .band-inner{flex-direction:row;flex-wrap:wrap;justify-content:center;
                            align-items:center;gap:18px;padding:34px 22px}
  .band-follow .t{width:auto}
  .band-follow .band .m-icon,.band-follow .m-icon{width:34px;height:34px}
  .band-follow .m-icon.contain{width:16px}

  .contact-band .label{font-size:19px;line-height:1.3;margin-bottom:6px}
  .contact-band .value{font-size:16px;line-height:1.45}
  .m-block{text-align:center}
  .m-block + .m-block{margin-top:4px}
  .hours-list{text-align:center;font-size:16px;line-height:1.5}
  .open-word{font-size:56px;line-height:1}
  .we-are{font-size:12px;letter-spacing:7px;line-height:1.4}
  .copyright .band-inner{padding:26px 22px;gap:4px}
  .copyright .t{font-size:13px;line-height:1.5}

  .page-section{padding:44px 0}
  .shell{width:calc(100% - 40px)}
  .about-grid{grid-template-columns:1fr;gap:34px}
  .about-stack .stack-b,.about-stack .stack-tab{display:none}
  .about-gallery{grid-template-columns:1fr;margin-top:40px}
  .about-gallery img{height:240px}
  .chef-split,.chef-split.flip{grid-template-columns:1fr;gap:26px;margin-top:34px}
  .chef-split img{max-height:none;aspect-ratio:4/3}
  .chef-divider{width:220px;margin-top:36px}
  .contact-map iframe,.contact-map img{height:280px}
}

@media (min-width:901px){
  .m-only{display:none !important}
}

@media (prefers-reduced-motion:reduce){
  *{transition:none !important;animation:none !important}
}

/* ---------- additions: helpers used by the band markup ------------------- */
.p.contain img{object-fit:contain}
.btn .icon{
  width:calc(var(--cw,8)/var(--design)*100cqw);
  height:calc(var(--ch,16)/var(--design)*100cqw);
  flex:none;
}
.c-cream{color:var(--cream)}
.c-paper{color:var(--paper)}
.c-yellow{color:var(--yellow)}
.c-red{color:var(--red)}
.c-gold{color:var(--gold)}
.c-white{color:var(--white)}

.intro-copy{--pgap:22}
.intro-copy p + p{margin-top:calc(var(--pgap)/var(--design)*100cqw)}

/* grouped blocks placed with .p but laid out in flow inside */
.grp{height:auto}
.grp > *{position:static}

.rv-name{
  font-weight:700;text-align:center;
  font-size:calc(var(--nfs,21.14)/var(--design)*100cqw);
  line-height:calc(var(--nlh,19)/var(--design)*100cqw);
  letter-spacing:calc(var(--nls,-.97)/var(--design)*100cqw);
}
.rv-text{
  font-weight:700;text-align:center;
  margin-top:calc(var(--tgap,16)/var(--design)*100cqw);
  font-size:calc(var(--tfs,13.38)/var(--design)*100cqw);
  line-height:calc(var(--tlh,18)/var(--design)*100cqw);
  letter-spacing:calc(var(--tls,-.616)/var(--design)*100cqw);
}
.rv-stars{
  display:block;margin-inline:auto;
  margin-top:calc(var(--sgap,20)/var(--design)*100cqw);
  width:calc(148/var(--design)*100cqw);
  height:calc(27/var(--design)*100cqw);
}
.contact-band .label{
  font-size:calc(var(--lfs,23.6)/var(--design)*100cqw);
  line-height:calc(var(--llh,31)/var(--design)*100cqw);
  letter-spacing:calc(var(--lls,.36)/var(--design)*100cqw);
  text-transform:uppercase;
}
.contact-band .value{
  margin-top:calc(var(--vgap,0)/var(--design)*100cqw);
  font-size:calc(var(--vfs,18.49)/var(--design)*100cqw);
  line-height:calc(var(--vlh,25)/var(--design)*100cqw);
  letter-spacing:calc(var(--vls,.3)/var(--design)*100cqw);
}
.we-are{
  font-family:"Rasoi Caps",Arial,sans-serif;font-weight:600;text-transform:uppercase;
  text-align:center;
  font-size:calc(12.11/var(--design)*100cqw);
  line-height:calc(16/var(--design)*100cqw);
  letter-spacing:calc(7.68/var(--design)*100cqw);
}
.open-word{
  font-family:"Rasoi Display",Georgia,serif;font-weight:400;text-align:center;
  margin-top:calc(14/var(--design)*100cqw);
  font-size:calc(73.8/var(--design)*100cqw);
  line-height:calc(101/var(--design)*100cqw);
}
.hours-list{white-space:nowrap}

@media (max-width:900px){
  .grp{width:100%}
  .rv-name{font-size:19px;line-height:1.25;letter-spacing:normal}
  .rv-text{font-size:14px;line-height:1.5;letter-spacing:normal;margin-top:8px}
  .rv-stars{width:130px;height:24px;margin-top:12px}
  .contact-band .label{font-size:19px;line-height:1.3;letter-spacing:.4px}
  .contact-band .value{font-size:16px;line-height:1.5;letter-spacing:normal;margin-top:6px}
  .we-are{font-size:12px;line-height:1.4;letter-spacing:7px}
  .open-word{font-size:56px;line-height:1.05;margin-top:2px}
  .hours-list{white-space:normal}
}

/* ==========================================================================
   Scroll reveal
   The Canva original held each section's content at opacity:0 and revealed it
   as the section approached the viewport. This reproduces that with CSS
   scroll-driven animations — still no JavaScript.

   Browsers without `animation-timeline` simply skip the whole block and show
   the page statically, so content can never be stranded invisible.
   ========================================================================== */
@keyframes rasoi-rise{
  from{opacity:0;transform:translate3d(var(--fx,0),var(--fy,30px),0)}
  to  {opacity:1;transform:translate3d(0,0,0)}
}

@supports (animation-timeline: view()){
  @media (prefers-reduced-motion: no-preference){

    .band-inner > *,
    .page-section .shell > *,
    .about-feature,
    .about-gallery img,
    .chef-split,
    .contact-card,
    .contact-actions,
    .contact-map{
      animation-name:rasoi-rise;
      animation-duration:auto;
      animation-fill-mode:both;
      animation-timing-function:linear;
      animation-timeline:view(block);
      animation-range:entry 6% entry 52%;
      will-change:opacity, transform;
    }

    /* light cascade so a section assembles rather than snapping in at once */
    .band-inner > *:nth-child(2){animation-range:entry 9%  entry 55%}
    .band-inner > *:nth-child(3){animation-range:entry 12% entry 58%}
    .band-inner > *:nth-child(4){animation-range:entry 15% entry 61%}
    .band-inner > *:nth-child(5){animation-range:entry 18% entry 64%}
    .band-inner > *:nth-child(6){animation-range:entry 21% entry 67%}
    .band-inner > *:nth-child(n+7){animation-range:entry 24% entry 70%}

    /* the big feature photographs drift in from the outside edge */
    .band-inner > .m-shot{--fx:-56px;--fy:14px}
    .band-inner > .m-logo{--fy:18px}
    .band-inner > .tile-red,
    .band-inner > .tile-gold,
    .band-inner > .tile-cream{--fy:0;--fx:-34px}

    /* review columns and contact blocks rise together, not one word at a time */
    .band-inner > .grp{--fy:24px}

    .about-gallery img{--fy:26px}
    .chef-split{--fy:26px}
  }
}

/* ==========================================================================
   Live status strip (SIPO API)
   A thin bar pinned above the header. Injected by api/statusManager.js on
   load — before the network call — so the page never jumps.
   ========================================================================== */
:root{--strip-h:0px}
body.has-status-strip{--strip-h:38px}

.status-strip{
  position:fixed;top:0;left:0;right:0;z-index:1100;
  height:var(--strip-h);
  display:flex;align-items:center;justify-content:center;
  background:var(--ink);
  color:var(--cream);
  border-bottom:1px solid rgba(244,225,194,.14);
  font-family:"Rasoi UI",Arial,sans-serif;
  font-size:13px;letter-spacing:.2px;
  transition:background-color .3s ease,color .3s ease;
}
.status-strip-inner{
  display:flex;align-items:center;gap:9px;
  padding:0 16px;max-width:1200px;
  text-align:center;
}
.status-strip-text{
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.status-strip-dot{
  width:8px;height:8px;border-radius:50%;flex:none;
  background:var(--gold);
}
.status-strip.is-open   .status-strip-dot{background:#3FBF6B;box-shadow:0 0 0 3px rgba(63,191,107,.22)}
.status-strip.is-closed .status-strip-dot{background:var(--red);box-shadow:0 0 0 3px rgba(191,45,17,.22)}
.status-strip.is-error  .status-strip-dot{background:var(--gold)}
.status-strip.is-open{color:var(--paper)}
.status-strip.is-closed{color:var(--cream)}

/* order buttons when the venue has ordering switched off at the POS */
body.ordering-disabled [data-order-url]{opacity:.5;pointer-events:none}

/* ==========================================================================
   Opening hours rendered from the API (#api-hours)
   Days are grouped, so a venue open the same hours all week renders as a
   single "Mon – Sun" row rather than seven.
   ========================================================================== */
.hours-block{
  display:flex;flex-direction:column;justify-content:center;
  height:calc(96/var(--design)*100cqw);
}
.api-hours .hours-row,
#api-hours .hours-row{
  display:block;
  white-space:nowrap;
}
.api-hours .hours-day,
#api-hours .hours-day{
  display:inline-block;
  margin-right:14px;
}
/* inside a band the day column is aligned on the 1440 design grid */
.band .api-hours .hours-day,
.band #api-hours .hours-day{
  min-width:calc(104/var(--design)*100cqw);
  margin-right:0;
}
.api-hours .is-today,
#api-hours .is-today{font-weight:700}

#api-address a,.api-address a{color:inherit;text-decoration:none}
#api-address a:hover,.api-address a:hover{text-decoration:underline}

@media (max-width:900px){
  body.has-status-strip{--strip-h:34px}
  .status-strip{font-size:12px}
  .status-strip-inner{gap:7px;padding:0 12px}

  .hours-block{display:block;height:auto}
  .api-hours .hours-row,#api-hours .hours-row{white-space:normal;margin-bottom:4px}
  .api-hours .hours-day,#api-hours .hours-day{min-width:0;margin-right:8px}
}

/* ==========================================================================
   Anniversary promo pop-up
   Built by assets/js/promo.js, and only on the dates listed there.
   ========================================================================== */
.promo-overlay{
  position:fixed;inset:0;z-index:2000;
  display:flex;align-items:center;justify-content:center;
  padding:22px;
  background:rgba(12,8,6,.82);
  -webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);
  opacity:0;visibility:hidden;
  transition:opacity .28s ease,visibility .28s;
}
.promo-overlay.is-open{opacity:1;visibility:visible}

.promo-box{
  position:relative;
  max-width:min(460px,92vw);
  max-height:88vh;
  transform:translateY(14px) scale(.98);
  transition:transform .3s cubic-bezier(.2,.8,.3,1);
}
.promo-overlay.is-open .promo-box{transform:none}

.promo-link{display:block;line-height:0}
.promo-img{
  display:block;width:100%;height:auto;
  max-height:88vh;object-fit:contain;
  border-radius:10px;
  box-shadow:0 26px 70px rgba(0,0,0,.6);
}

.promo-close{
  position:absolute;top:-14px;right:-14px;z-index:2;
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(244,225,194,.5);
  background:var(--ink);color:var(--cream);
  font:400 26px/1 Arial,sans-serif;
  cursor:pointer;
  transition:background-color .2s ease,color .2s ease;
}
.promo-close:hover{background:var(--gold);color:#fff;border-color:var(--gold)}

body.promo-open{overflow:hidden}

@media (max-width:900px){
  .promo-overlay{padding:16px}
  .promo-box{max-width:92vw;max-height:86vh}
  .promo-img{max-height:86vh}
  .promo-close{top:-10px;right:-10px;width:34px;height:34px;font-size:23px}
}
