:root {
  --navy: #071735;
  --navy-2: #0c2450;
  --ink: #111827;
  --cream: #fff7e8;
  --paper: #fffdf8;
  --saffron: #ffb31a;
  --orange: #f56a1c;
  --green: #164f3d;
  --red: #a72b1f;
  --white: #ffffff;
  --border: rgba(7, 23, 53, .15);
  --shadow: 0 24px 70px rgba(7, 23, 53, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 100; transform: translateY(-200%); background: #fff; padding: .8rem 1rem; border-radius: .5rem; }
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .5rem 1.25rem;
  background: var(--saffron);
  color: var(--navy);
  font-size: .875rem;
  font-weight: 750;
  text-align: center;
}
.announcement span { text-transform: uppercase; letter-spacing: .09em; font-size: .72rem; border: 1px solid currentColor; border-radius: 99px; padding: .16rem .52rem; }
.announcement a { font-weight: 850; text-underline-offset: 3px; }

.site-header {
  height: 88px;
  padding: 0 clamp(1.1rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; align-items: center; width: max-content; text-decoration: none; line-height: .82; }
.brand-the { grid-column: 1; grid-row: 1; font-size: .68rem; text-align: center; text-transform: uppercase; letter-spacing: .32em; margin: 0 0 .32rem; padding-left: .32em; color: var(--saffron); }
.brand-name { grid-column: 1; grid-row: 2; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 2rem; letter-spacing: .045em; }
.brand-tag { grid-column: 2; grid-row: 1 / span 2; align-self: center; display: flex; flex-direction: column; gap: .16rem; margin-left: .8rem; padding-left: .8rem; border-left: 1px solid rgba(255,255,255,.35); font-size: .68rem; line-height: 1.15; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; color: rgba(255,255,255,.72); }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); font-size: .9rem; font-weight: 700; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--saffron); }
.nav-cta { padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.65); border-radius: 99px; }
.nav-cta:hover { background: #fff; color: var(--navy); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); background: transparent; border-radius: 50%; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: #fff; }

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6.8vw, 7.2rem); align-self: center; }
.eyebrow { margin: 0 0 1rem; color: var(--orange); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow { color: var(--saffron); }
.hero h1, section h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; letter-spacing: .015em; line-height: .92; text-transform: uppercase; }
.hero h1 { font-size: clamp(4rem, 8vw, 8.5rem); max-width: 10ch; }
.hero-tagline { margin: 1rem 0 0; max-width: 18ch; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 3.1rem); font-weight: 700; line-height: 1.08; }
.hero-tagline em { color: var(--saffron); font-style: italic; }
.hero-lede { max-width: 36rem; margin: 2rem 0 0; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .84rem 1.3rem; border-radius: 6px; text-decoration: none; font-size: .9rem; font-weight: 850; letter-spacing: .02em; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--saffron); color: var(--navy); }
.button-ghost { border: 1px solid rgba(255,255,255,.4); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.hero-proof { display: flex; gap: 2.5rem; margin-top: 3.4rem; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: .9rem; }
.hero-proof span { color: rgba(255,255,255,.52); font-size: .76rem; }
.hero-visual { position: relative; min-height: 640px; margin-left: clamp(-9rem, -7vw, -5rem); background: var(--navy); overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, rgba(7,23,53,.9) 7%, transparent 23%), linear-gradient(0deg, rgba(7,23,53,.5), transparent 28%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.dish-stamp { position: absolute; z-index: 2; right: clamp(1rem, 4vw, 3rem); bottom: clamp(1.5rem, 5vw, 4rem); width: 138px; height: 138px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(7deg); background: var(--saffron); color: var(--navy); border: 5px solid var(--navy); outline: 2px solid var(--saffron); text-transform: uppercase; line-height: 1; }
.dish-stamp small { font-size: .66rem; letter-spacing: .12em; }
.dish-stamp strong { margin: .35rem 0; font-family: Impact, sans-serif; font-size: 2rem; }
.dish-stamp span { font-size: .7rem; font-weight: 850; }

.ticker { overflow: hidden; padding: .92rem 1rem; background: var(--orange); color: #fff; white-space: nowrap; text-align: center; font-family: Impact, sans-serif; text-transform: uppercase; letter-spacing: .07em; font-size: clamp(1.05rem, 2vw, 1.4rem); }
.ticker span { color: var(--navy); padding: 0 1.35rem; }

.feature-section, .menu-section, .story-section, .catering-section, .allergen-section, .visit-section { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 6.8vw, 7rem); }
.section-heading { display: grid; grid-template-columns: .75fr 1.1fr; gap: 1rem 4rem; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
section h2 { color: var(--navy); font-size: clamp(3rem, 6vw, 6.3rem); }
.section-heading > p:last-child { max-width: 35rem; margin: 0 0 .6rem; color: #536071; font-size: 1.08rem; }
.parantha-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.price-card { min-height: 300px; padding: 1.6rem; border: 1px solid var(--border); display: flex; flex-direction: column; background: #fff; box-shadow: 0 12px 40px rgba(7,23,53,.06); }
.price-card.featured { background: var(--green); color: #fff; transform: translateY(-.75rem); }
.card-number { font-size: .73rem; font-weight: 850; letter-spacing: .12em; color: var(--orange); }
.price-card h3 { margin: auto 0 .5rem; max-width: 13ch; font-family: Impact, sans-serif; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1; }
.price-card p { margin: 0 0 1.6rem; color: #657083; font-size: .9rem; }
.price-card.featured p { color: rgba(255,255,255,.7); }
.price-card strong { font-family: Impact, sans-serif; color: var(--orange); font-size: 2.3rem; }
.price-card.featured strong { color: var(--saffron); }
.chai-callout { margin-top: 1rem; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--saffron); color: var(--navy); }
.chai-callout div { display: flex; align-items: baseline; gap: 1rem; }
.chai-callout span { font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.chai-callout strong { font-family: Impact, sans-serif; font-size: 2rem; }
.chai-callout p { margin: 0; font-size: .87rem; font-weight: 700; }

.menu-section { display: grid; grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr); gap: clamp(3rem, 7vw, 7rem); background: var(--cream); }
.menu-intro { align-self: start; position: sticky; top: 126px; }
.menu-intro h2 { font-size: clamp(3.4rem, 6vw, 5.8rem); }
.menu-intro > p:not(.eyebrow) { max-width: 27rem; color: #596273; }
.text-link { display: inline-block; margin-top: 1rem; color: var(--red); font-weight: 800; text-underline-offset: 4px; }
.text-link span { margin-left: .3rem; }
.menu-board { border-top: 5px solid var(--navy); }
.menu-group { padding: 2rem 0 2.2rem; border-bottom: 1px solid rgba(7,23,53,.22); }
.menu-group h3 { margin: 0 0 1rem; color: var(--green); font-family: Impact, sans-serif; font-size: 2rem; text-transform: uppercase; letter-spacing: .04em; }
.menu-group ul { list-style: none; margin: 0; padding: 0; }
.menu-group li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; padding: .85rem 0; border-bottom: 1px dashed rgba(7,23,53,.14); }
.menu-group li:last-child { border-bottom: 0; }
.menu-group li span { display: flex; flex-direction: column; }
.menu-group li strong { font-size: 1rem; }
.menu-group li small { color: #687386; font-size: .82rem; }
.menu-group li b { color: var(--red); font-size: 1rem; }
.menu-group.drinks ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; }

.story-section { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 6vw, 7rem); align-items: center; background: var(--orange); color: #fff; }
.story-logo { width: min(100%, 380px); aspect-ratio: 1; display: grid; place-items: center; justify-self: center; }
.story-logo img { width: 100%; height: 100%; object-fit: contain; }
.story-copy h2 { color: #fff; font-size: clamp(3rem, 5.5vw, 5.7rem); }
.story-copy > p:not(.eyebrow):not(.story-signoff) { max-width: 45rem; font-size: 1.06rem; color: rgba(255,255,255,.82); }
.story-copy .eyebrow { color: var(--navy); }
.story-signoff { margin: 2rem 0 0; font-family: Georgia, serif; font-style: italic; font-size: 1.55rem; color: var(--navy); font-weight: 800; }

.catering-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 8rem); background: var(--saffron); color: var(--navy); }
.catering-section .eyebrow { color: var(--red); }
.catering-section h2 { font-size: clamp(3.2rem, 5.4vw, 5.6rem); }
.catering-section > div:last-child { align-self: end; }
.catering-section p { max-width: 36rem; }
.button-dark { margin-top: 1rem; background: var(--navy); color: #fff; }

.allergen-section { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; background: #fff; }
.allergen-icon { width: 68px; height: 68px; display: grid; place-items: center; border: 3px solid var(--red); border-radius: 50%; color: var(--red); font-family: Impact, sans-serif; font-size: 2.4rem; }
.allergen-section h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.allergen-section p:last-child { max-width: 65rem; color: #596273; }

.visit-section { display: grid; grid-template-columns: 1fr .7fr; min-height: 650px; padding: 0; background: var(--navy); color: #fff; }
.visit-card { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem); align-self: center; }
.visit-card h2 { color: #fff; font-size: clamp(3.6rem, 7vw, 7rem); }
.visit-card > p { color: rgba(255,255,255,.72); }
.visit-card .term-note { max-width: 35rem; color: rgba(255,255,255,.53); font-size: .9rem; }
.button-ghost-light { color: #fff; border: 1px solid rgba(255,255,255,.4); }
.visit-art { min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--green); color: #fff; overflow: hidden; }
.visit-art span { color: var(--saffron); font-size: 1rem; font-weight: 900; letter-spacing: .5em; }
.visit-art strong { font-family: Impact, sans-serif; font-size: clamp(5rem, 10vw, 9rem); line-height: .78; letter-spacing: .03em; }
.visit-art small { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .18em; }

footer { min-height: 180px; padding: 2.5rem clamp(1.25rem, 6.8vw, 7rem); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem 3rem; background: #030c1d; color: #fff; }
.footer-brand .brand-name { font-size: 1.8rem; }
footer > div { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .86rem; }
footer > div a { color: rgba(255,255,255,.72); text-underline-offset: 4px; }
footer p { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.4); font-size: .75rem; }

@media (max-width: 900px) {
  .announcement span { display: none; }
  .site-header { height: 76px; }
  .brand-tag { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 1.25rem 1.4rem; background: var(--navy); border-top: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem .2rem; }
  .site-nav .nav-cta { margin-top: .5rem; text-align: center; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 4.5rem; padding-bottom: 3.5rem; }
  .hero-visual { min-height: 580px; margin-left: 0; }
  .hero-visual::after { background: linear-gradient(0deg, rgba(7,23,53,.75), transparent 40%); }
  .section-heading, .menu-section, .story-section, .catering-section, .visit-section { grid-template-columns: 1fr; }
  .section-heading { align-items: start; gap: 1.25rem; }
  .parantha-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 230px; }
  .price-card.featured { transform: none; }
  .menu-intro { position: static; }
  .story-logo { width: min(70vw, 350px); justify-self: center; }
  .visit-art { min-height: 430px; }
}

@media (max-width: 620px) {
  .announcement { font-size: .76rem; line-height: 1.25; }
  .announcement a { display: none; }
  .brand-name { font-size: 1.65rem; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .hero-tagline { font-size: clamp(1.6rem, 8vw, 2.25rem); }
  .hero-visual { min-height: 520px; }
  .hero-visual img { object-position: center; }
  .hero-proof { gap: 1.2rem; flex-direction: column; }
  .feature-section, .menu-section, .story-section, .catering-section, .allergen-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .chai-callout { align-items: flex-start; flex-direction: column; }
  .menu-group.drinks ul { grid-template-columns: 1fr; }
  .allergen-section { grid-template-columns: 1fr; gap: 1rem; }
  .allergen-icon { width: 54px; height: 54px; font-size: 2rem; }
  footer { grid-template-columns: 1fr; }
  footer > div { flex-direction: column; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
