/* ════════════════════════════════════════════════════════════
   AUTHENTICA — pure veg multi-cuisine kitchen, Bhavnagar
   design language lifted from the printed menu:
   cream paper · taupe hanging signboards · chocolate bands ·
   cursive script headers · letter-spaced caps · "299/-" prices ·
   ginkgo leaf watermark
   type: Dancing Script (signs) + Jost (caps/UI) + Lora (italic prices)
   ════════════════════════════════════════════════════════════ */

:root {
  --paper: #f3f0ea;        /* cream page */
  --paper-dim: #eae5dc;    /* slightly deeper cream */
  --plaque: #c8b9a3;       /* signboard taupe */
  --plaque-deep: #b5a48c;  /* signboard lower edge */
  --panel: #c2b29b;        /* taupe content panel (white text) */
  --choco: #36251e;        /* chocolate band */
  --choco-soft: #4a352c;
  --ink: #4c423a;          /* main text */
  --ink-soft: #847565;     /* descriptions */
  --script: #515741;       /* grey-olive script ink */
  --olive: #76814e;        /* accent green */
  --cream-on-dark: #f3ead9;

  --script-f: "Dancing Script", cursive;
  --caps-f: "Jost", "Avenir Next", sans-serif;
  --serif-f: "Lora", Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* faint ginkgo-vein fans, as in the printed menu margins */
  --ginkgo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23c5b8a2' stroke-width='1.1' opacity='.55'%3E%3Cpath d='M100 190 C100 130 55 88 22 42'/%3E%3Cpath d='M100 190 C100 128 78 78 62 28'/%3E%3Cpath d='M100 190 C100 125 100 70 100 18'/%3E%3Cpath d='M100 190 C100 128 122 78 138 28'/%3E%3Cpath d='M100 190 C100 130 145 88 178 42'/%3E%3C/g%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--caps-f);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--plaque); color: var(--choco); }

img { display: block; max-width: 100%; background: var(--paper-dim); }
a { color: inherit; }

/* page watermark */
.wm {
  background-image: var(--ginkgo), var(--ginkgo);
  background-repeat: no-repeat, no-repeat;
  background-position: right -80px top 140px, left -100px bottom 60px;
}

/* ───────────────────────────── shared ── */

.caps {
  font-family: var(--caps-f);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.script { font-family: var(--script-f); font-weight: 700; color: var(--script); }

.price {
  font-family: var(--serif-f);
  font-style: italic;
  font-size: 0.92em;
  white-space: nowrap;
  color: var(--choco-soft);
}

.btn {
  display: inline-block;
  font-family: var(--caps-f);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 2em;
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.btn--choco {
  background: var(--choco);
  color: var(--cream-on-dark);
}
.btn--choco:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(54, 37, 30, 0.5);
  background: var(--choco-soft);
}
.btn--line {
  border: 1px solid var(--plaque-deep);
  color: var(--ink);
}
.btn--line:hover { border-color: var(--choco); transform: translateY(-2px); }

/* chocolate band — the strip across the top of every menu page */
.band { height: 14px; background: var(--choco); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ───────────────────────────── hanging signboard ── */

.sign {
  position: relative;
  display: inline-block;
  background: linear-gradient(168deg, #cfc1ab 0%, var(--plaque) 45%, var(--plaque-deep) 100%);
  padding: 0.8rem 2.4rem 0.9rem;
  margin-top: 52px;                 /* room for the strings */
  box-shadow: 0 14px 28px -12px rgba(54, 37, 30, 0.4);
  transform-origin: top center;
}
.sign::before,
.sign::after {
  content: "";
  position: absolute;
  top: -52px;
  width: 1.5px;
  height: 52px;
  background: #5d5247;
}
.sign::before { left: 20%; }
.sign::after { right: 20%; }
/* corner screws */
.sign .nails {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 2.6px at 9px 9px,            #897759 0 2.6px, transparent 3.4px),
    radial-gradient(circle 2.6px at calc(100% - 9px) 9px, #897759 0 2.6px, transparent 3.4px),
    radial-gradient(circle 2.6px at 9px calc(100% - 9px), #897759 0 2.6px, transparent 3.4px),
    radial-gradient(circle 2.6px at calc(100% - 9px) calc(100% - 9px), #897759 0 2.6px, transparent 3.4px);
}
.sign__title {
  font-family: var(--script-f);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  line-height: 1.05;
  color: var(--script);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.55);
}
.sign__note {
  display: block;
  font-family: var(--caps-f);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e6353;
  margin-top: 0.2rem;
}
/* gentle settle-swing when a sign scrolls in */
.reveal.is-in .swing,
.sign.reveal.is-in { animation: swing 1.6s var(--ease-out) 1; }
@keyframes swing {
  0%   { rotate: -2.4deg; }
  40%  { rotate: 1.6deg; }
  75%  { rotate: -0.7deg; }
  100% { rotate: 0deg; }
}

/* ───────────────────────────── nav ── */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(243, 240, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 66, 58, 0.12);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav__brand-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--plaque-deep);
  display: grid; place-content: center;
  font-family: var(--script-f); font-weight: 700;
  font-size: 1.35rem; color: var(--script);
  background: #fff;
}
.nav__brand-name {
  font-family: var(--caps-f); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink);
}
.nav__links { display: flex; gap: clamp(1rem, 2.5vw, 2rem); }
.nav__links a {
  font-family: var(--caps-f); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--choco); }

/* ───────────────────────────── hero ── */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 4vw, 3rem) clamp(3.5rem, 9vh, 6rem);
}
.hero__copy { text-align: left; }
.hero__sign { rotate: -1.5deg; }
.hero__title {
  font-family: var(--script-f);
  font-weight: 700;
  font-size: clamp(4rem, 11vw, 8.2rem);
  line-height: 0.95;
  color: var(--script);
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.6);
  margin: 1.6rem 0 1.2rem;
}
.hero__tag {
  font-family: var(--caps-f);
  font-size: clamp(0.74rem, 1.4vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__lede {
  margin: 1.6rem 0 2.4rem;
  max-width: 46ch;
  font-family: var(--serif-f);
  font-style: italic;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
}
.hero__lede strong { color: var(--olive); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__media { position: relative; }
.hero__media img {
  aspect-ratio: 4 / 5.1;
  width: 100%;
  object-fit: cover;
  border-radius: 999px 999px 6px 6px;   /* arched doorway frame */
  border: 6px solid #fff;
  box-shadow: 0 30px 60px -20px rgba(54, 37, 30, 0.45);
}
.hero__media-sign {
  position: absolute;
  left: 50%;
  bottom: -26px;
  translate: -50% 0;
  margin-top: 0;
  padding: 0.45rem 1.6rem 0.55rem;
  rotate: 2deg;
}
.hero__media-sign::before, .hero__media-sign::after { display: none; }
.hero__media-sign .sign__title { font-size: 1.35rem; }

/* ───────────────────────────── chocolate marquee ── */

.marquee {
  background: var(--choco);
  padding: 0.95rem 0;
  overflow: hidden;
}
.marquee__track { display: flex; width: max-content; animation: scroll-x 30s linear infinite; }
.marquee__track span {
  font-family: var(--caps-f); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-on-dark); white-space: nowrap;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ───────────────────────────── cuisines ── */

.cuisines {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 4vw, 3rem);
  text-align: center;
}
.cuisines__head .sign { rotate: -1deg; }
.cuisines__sub {
  margin: 1.6rem auto 3.5rem;
  max-width: 52ch;
  font-family: var(--serif-f); font-style: italic;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft);
}
.cuisines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.cuisine {
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 0.9rem 0.9rem 1.5rem;
  box-shadow: 0 16px 34px -18px rgba(54, 37, 30, 0.35);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.cuisine:nth-child(odd) { rotate: -1deg; }
.cuisine:nth-child(even) { rotate: 1.1deg; }
.cuisine:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 26px 50px -20px rgba(54, 37, 30, 0.5);
}
.cuisine img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.cuisine h3 {
  font-family: var(--script-f); font-weight: 700;
  font-size: 1.8rem; color: var(--script);
  margin: 1rem 0 0.25rem;
}
.cuisine p {
  font-family: var(--caps-f); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.cuisine .price { display: inline-block; margin-top: 0.55rem; color: var(--olive); }

/* ───────────────────────────── promise strip ── */

.promise {
  background: var(--panel);
  background-image: var(--ginkgo);
  background-repeat: no-repeat;
  background-position: right -60px center;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.2rem, 4vw, 3rem);
}
.promise__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.promise__grid strong {
  display: block;
  font-family: var(--script-f); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #fff;
  text-shadow: 1px 2px 0 rgba(54, 37, 30, 0.25);
}
.promise__grid span {
  font-family: var(--caps-f); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #4a4034;
}

/* ───────────────────────────── visit ── */

.visit {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.visit__title {
  font-family: var(--script-f); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--script);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}
.visit__note {
  font-family: var(--serif-f); font-style: italic;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hours { border-top: 1.5px dashed var(--plaque-deep); }
.hours div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0.2rem;
  border-bottom: 1.5px dashed var(--plaque-deep);
}
.hours dt {
  font-family: var(--caps-f); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.hours dd {
  font-family: var(--serif-f); font-style: italic;
  font-size: 1rem; color: var(--ink);
}

/* ───────────────────────────── footer ── */

.footer {
  background: var(--choco);
  color: var(--cream-on-dark);
  text-align: center;
  padding: 3.2rem 1.5rem 2.4rem;
}
.footer__word {
  font-family: var(--script-f); font-weight: 700;
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--cream-on-dark);
  opacity: 0.92;
  line-height: 1;
}
.footer__tag {
  font-family: var(--caps-f); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #c9b8a0;
  margin: 0.9rem 0 1.8rem;
}
.footer__row {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.4rem; justify-content: center;
  font-family: var(--caps-f); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #a8957c;
}
.footer__row a { text-decoration: none; }
.footer__row a:hover { color: var(--cream-on-dark); }

/* ════════════════════════════ MENU PAGE ════════════════════════════ */

.menu-hero {
  text-align: center;
  padding: clamp(2.5rem, 6vh, 4rem) 1.5rem 1rem;
}
.menu-hero .sign { rotate: -1.2deg; }
.menu-hero__note {
  margin: 1.4rem auto 0;
  max-width: 52ch;
  font-family: var(--serif-f); font-style: italic;
  font-size: 0.98rem; line-height: 1.65;
  color: var(--ink-soft);
}

/* sticky category chips */
.chips {
  position: sticky;
  top: 61px;                /* under the nav */
  z-index: 40;
  background: rgba(243, 240, 234, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(76, 66, 58, 0.1);
  border-bottom: 1px solid rgba(76, 66, 58, 0.1);
  margin-top: 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.chips__row {
  display: flex; gap: 0.4rem;
  width: max-content;
  padding: 0.65rem clamp(1.2rem, 4vw, 3rem);
}
.chips a {
  font-family: var(--caps-f); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.45em 0.95em;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.25s;
}
.chips a:hover { color: var(--choco); border-color: var(--plaque-deep); }
.chips a.is-active { background: var(--choco); color: var(--cream-on-dark); }

/* menu sections */
.menu-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 1rem clamp(1.2rem, 4vw, 3rem) 5rem;
}
.menu-sec {
  padding: clamp(2.2rem, 6vh, 4rem) 0 1.5rem;
  scroll-margin-top: 130px;
}
.menu-sec__head { text-align: center; margin-bottom: 2.4rem; }
.menu-sec:nth-child(odd) .menu-sec__head .sign { rotate: -1.3deg; }
.menu-sec:nth-child(even) .menu-sec__head .sign { rotate: 1.2deg; }

.menu-cols { columns: 2; column-gap: clamp(2.5rem, 5vw, 4.5rem); }

.mi {
  break-inside: avoid;
  margin-bottom: 1.35rem;
}
.mi h4 {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem;
  font-family: var(--caps-f); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink);
}
.mi h4 .dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--plaque-deep);
  translate: 0 -3px;
  min-width: 1.5rem;
}
.mi p {
  margin-top: 0.3rem;
  font-family: var(--caps-f); font-size: 0.76rem; font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* taupe panel sections — like the printed menu's filled blocks */
.menu-sec--panel .menu-sec__body {
  background: var(--panel);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 18px 36px -20px rgba(54, 37, 30, 0.4);
}
.menu-sec--panel .mi h4 { color: #fff; }
.menu-sec--panel .mi h4 .dots { border-color: rgba(255, 255, 255, 0.45); }
.menu-sec--panel .mi p { color: #f1e9dc; }
.menu-sec--panel .price { color: #fff; }

/* script sub-headings (Indian Mains gravies) */
.gravy {
  column-span: all;
  font-family: var(--script-f); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--olive);
  margin: 1.6rem 0 1rem;
  text-shadow: 1.5px 1.5px 0 rgba(255, 255, 255, 0.6);
}
.menu-sec .gravy:first-child { margin-top: 0; }

/* section footnote */
.menu-note {
  margin-top: 0.6rem;
  font-family: var(--serif-f); font-style: italic;
  font-size: 0.85rem; color: var(--ink-soft);
  text-align: center;
}

/* terms block — brush-stroke style footer note */
.terms {
  background: var(--panel);
  margin: 3rem auto 0;
  max-width: 880px;
  padding: clamp(1.8rem, 5vw, 3rem);
  border-radius: 60% 4px 55% 6px / 14px 45% 10px 50%;  /* rough brush edge */
  text-align: center;
}
.terms h3 {
  font-family: var(--script-f); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: #fff;
  text-shadow: 2px 2px 0 rgba(54, 37, 30, 0.2);
  margin-bottom: 1.2rem;
}
.terms ul {
  list-style: none;
  font-family: var(--serif-f); font-style: italic;
  font-size: 0.95rem; line-height: 2;
  color: #443a2e;
}

/* ───────────────────────────── responsive ── */

@media (max-width: 920px) {
  .nav__links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__lede { margin-inline: auto; }
  .hero__media { max-width: 420px; margin: 0 auto; }
  .cuisines__grid { grid-template-columns: repeat(2, 1fr); }
  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .visit { grid-template-columns: 1fr; }
  .menu-cols { columns: 1; }
  .chips { top: 57px; }
}

@media (max-width: 560px) {
  .cuisines__grid { grid-template-columns: 1fr; }
  .nav__cta { display: none; }
}

/* ───────────────────────────── reduced motion ── */

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