/* ============================================================
   Masaladani
   Palette taken straight off the brand logo:
   cream paper, navy ink, star-anise red.
   ============================================================ */

:root {
  --cream:      #FCF7EE;   /* page — the logo's own background */
  --cream-2:    #F5EDDD;   /* raised panel */
  --navy:       #002849;   /* the wordmark ink, and all body text */
  --navy-soft:  #5A6E7E;   /* secondary text */
  --red:        #B03132;   /* the star anise, and every action */
  --red-dark:   #8E2627;
  --rule:       #E2D8C6;

  --script: "Sacramento", "Segoe Script", cursive;
  --display: "Anek Latin", "Trebuchet MS", sans-serif;
  --text: "Literata", Georgia, serif;

  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --measure: 62ch;
  --bar: 56px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* every in-page jump has to clear the sticky bar */
main,
main [id] { scroll-margin-top: calc(var(--bar) + 1.4rem); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

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

/* ---------------------------------------------------------- bar */

.bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem var(--pad);
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--script);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--navy);
  text-decoration: none;
}

.wordmark img { width: 28px; height: auto; }

.bar-links { display: flex; align-items: center; gap: 0.55rem; }

.bar-wa,
.bar-call {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.bar-wa { background: var(--red); color: #FFF; }
.bar-wa:hover { background: var(--red-dark); }

.bar-call { border: 1px solid var(--rule); color: var(--navy); }
.bar-call:hover { border-color: var(--red); }

/* --------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
}

.hero h1 {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(3rem, 7.6vw, 6rem);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 400;
  text-wrap: balance;
}

.lede {
  max-width: 42ch;
  margin: 1.3rem 0 1.9rem;
  color: var(--navy-soft);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.action,
.action-ghost {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--display);
  font-variation-settings: "wdth" 106, "wght" 600;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 999px;
}

.action { background: var(--red); color: #FFF; }
.action:hover { background: var(--red-dark); }

.action-ghost { border: 1px solid var(--rule); color: var(--navy); }
.action-ghost:hover { border-color: var(--red); }

.note { margin: 1rem 0 0; font-size: 0.92rem; color: var(--navy-soft); }

/* the brand logo, sitting where the spice wheel used to */
.hero-logo { justify-self: center; }
.hero-logo img { width: min(38vw, 440px); }

/* ----------------------------------------------------- promises */

.promises {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.4rem;
  padding: 1rem var(--pad);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream-2);
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 500;
  font-size: 0.95rem;
  color: var(--navy);
}

.promises p { margin: 0; }

.promises p::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}

/* -------------------------------------------------------- about */

.about {
  padding: clamp(2.8rem, 6vw, 4.5rem) var(--pad);
  border-bottom: 1px solid var(--rule);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.about h2 {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.about p {
  max-width: var(--measure);
  margin: 0 0 1.1rem;
}

.about p:last-child { margin-bottom: 0; }

.about-founder {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 0.9rem;
  color: var(--red);
  margin-top: 0.8rem;
}

/* ------------------------------------------------------ gallery */

.gallery-wrap { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section-h {
  margin: 0 0 1.3rem;
  padding: 0 var(--pad);
  font-family: var(--script);
  font-size: clamp(2rem, 3.7vw, 2.9rem);
  font-weight: 400;
  line-height: 1.1;
}

.gallery {
  display: flex;
  gap: 0.6rem;
  padding: 0 var(--pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gallery img {
  flex: 0 0 auto;
  height: clamp(230px, 34vw, 360px);
  width: auto;
  border-radius: 3px;
  scroll-snap-align: start;
}

/* ---------------------------------------------------------- tabs */

.menu {
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad) clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--rule);
}

.menu-title {
  margin: 0 0 1.4rem;
  font-family: var(--script);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.tabs > input { position: absolute; opacity: 0; pointer-events: none; }

.tab-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.9rem;
}

.tab-strip label {
  cursor: pointer;
  padding: 0.5rem 1.15rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--display);
  font-variation-settings: "wdth" 102, "wght" 600;
  font-size: 0.98rem;
  color: var(--navy-soft);
  transition: color 120ms, border-color 120ms, background 120ms;
}

.tab-strip label:hover { color: var(--navy); border-color: var(--red); }

#tab-regular:checked  ~ .tab-strip label[for="tab-regular"],
#tab-catering:checked ~ .tab-strip label[for="tab-catering"] {
  background: var(--red);
  border-color: var(--red);
  color: #FFF;
}

.tabs > input:focus-visible ~ .tab-strip label[for="tab-regular"],
.tabs > input:focus-visible ~ .tab-strip label[for="tab-catering"] {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.panel { display: none; }

#tab-regular:checked  ~ .panel-regular,
#tab-catering:checked ~ .panel-catering { display: block; }

/* quiet jump-links — replaces the navigation the wheel used to carry */
.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin: 0 0 2.4rem;
  padding: 0;
  list-style: none;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 500;
  font-size: 0.92rem;
}

.jump a {
  color: var(--navy-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.jump a:hover { color: var(--red); border-bottom-color: var(--red); }

/* --------------------------------------------------------- menu */

.course { break-inside: avoid; margin-bottom: 2.6rem; }

.course-h {
  margin: 0 0 0.9rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--red);
  font-family: var(--script);
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1.1;
}

.portion {
  margin: -0.4rem 0 0.8rem;
  font-size: 0.88rem;
  color: var(--navy-soft);
}

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

.list li { display: flex; align-items: baseline; padding: 0.24rem 0; }

/* leader dots — pseudo-element ordered between name and price */
.list li::before {
  content: "";
  order: 1;
  flex: 1 1 auto;
  min-width: 1.6rem;
  margin: 0 0.55rem;
  border-bottom: 1px dotted var(--rule);
  transform: translateY(-0.3em);
}

.list .item { order: 0; }

.list .rate {
  order: 2;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.list .rate-ask {
  font-variation-settings: "wdth" 100, "wght" 400;
  font-style: italic;
  color: var(--navy-soft);
}

.list-two { columns: 2; column-gap: 3.5rem; }
.list-two li { break-inside: avoid; }

/* ---------------------------------------------------- sides band */

.sides { margin-top: 1rem; padding: 2rem 0 0; border-top: 1px solid var(--rule); }

.sides-h {
  margin: 0 0 1.4rem;
  font-family: var(--script);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
}

.sides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem 3.5rem;
}

.sides-sub {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 1.02rem;
  color: var(--red);
}

.combo-note,
.ask-note {
  margin: 0.8rem 0 0;
  max-width: var(--measure);
  font-size: 0.9rem;
  color: var(--navy-soft);
}

.ask-note { margin-top: 1.6rem; }

/* --------------------------------------------- printed menu shots */

.card-shots { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule); }

.card-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 780px;
}

.card-pair img { border-radius: 3px; }

/* ------------------------------------------ bulk orders panel */

.cater-lead {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem 3rem;
  align-items: start;
  margin-bottom: 2.6rem;
}

.cater-count {
  font-family: var(--script);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--red);
}

.cater-count small {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.cater-p { max-width: var(--measure); margin: 0 0 1rem; color: var(--navy-soft); }

.how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem 2.5rem;
  margin: 0 0 3rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--rule);
}

.how h4 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 1rem;
  color: var(--red);
}

.how p { margin: 0; font-size: 0.94rem; color: var(--navy-soft); }

/* seasonal special */

.special {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 0 0 3rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
}

.special-tag {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--red);
  color: #FFF;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 0.8rem;
}

.special h3 {
  margin: 0 0 0.7rem;
  font-family: var(--script);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.special p { max-width: 44ch; margin: 0 0 1.2rem; color: var(--navy-soft); }

.special-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

.special-shots img { border-radius: 3px; aspect-ratio: 3 / 4; object-fit: cover; }

/* ------------------------------------------------ find us / google */

.findus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem 3rem;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  border-top: 1px solid var(--rule);
  background: var(--cream-2);
}

.findus h2 {
  margin: 0 0 0.6rem;
  font-family: var(--script);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.findus p { max-width: 46ch; margin: 0 0 1.2rem; color: var(--navy-soft); }

/* -------------------------------------------------------- order */

.order {
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  background: var(--navy);
  color: var(--cream);
}

.order-h {
  margin: 0 0 0.5rem;
  font-family: var(--script);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  color: #E9B6B6;
}

.phone {
  display: inline-block;
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: clamp(2rem, 6.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-decoration: none;
  border-bottom: 4px solid var(--red);
}

.order-p { max-width: var(--measure); margin: 1.5rem 0 1.6rem; color: #A9BCCB; }

.order .cta-row .action-ghost { border-color: #2C4E68; color: var(--cream); }
.order .cta-row .action-ghost:hover { border-color: var(--cream); }

/* -------------------------------------------------------- footer */

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 2rem;
  padding: 1.6rem var(--pad) 2.4rem;
  background: var(--navy);
  font-size: 0.92rem;
  color: #A9BCCB;
  border-top: 1px solid #123A55;
}

.foot p { margin: 0; }

.foot-mark {
  font-family: var(--script);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--cream);
}

.foot-veg { color: #E9B6B6; }

/* ------------------------------------------- floating WhatsApp CTA */

.wa-fab {
  position: fixed;
  left: clamp(0.9rem, 3vw, 1.6rem);
  bottom: clamp(0.9rem, 3vw, 1.6rem);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--red);
  color: #FFF;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 40, 73, 0.28);
  transition: transform 140ms, background 140ms;
}

.wa-fab:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ------------------------------------------------------ responsive */

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: clamp(2rem, 8vw, 3rem); }
  .hero-logo { order: -1; }
  .hero-logo img { width: min(66vw, 320px); }
  .about-inner { grid-template-columns: 1fr; }
  .list-two { columns: 1; }
  .special { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .wordmark { font-size: 1.55rem; }
  .bar-call { display: none; }
  .gallery img { height: 250px; }
  .wa-fab { padding: 0.85rem; }
  .wa-fab span { display: none; }
}

/* ----------------------------------------------------- motion off */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wa-fab { transition: none; }
  .wa-fab:hover { transform: none; }
}
