:root {
  --ink: #25130b;
  --charcoal: #32170f;
  --deep: #190b08;
  --paper: #fff4dc;
  --cream: #fffaf0;
  --muted: #765f4b;
  --gold: #f0a51f;
  --gold-soft: #ffd77b;
  --chili: #b8321b;
  --green: #2f6b43;
  --rose: #7b1f1a;
  --line: rgba(35, 31, 24, 0.16);
  --light-line: rgba(255, 249, 236, 0.16);
  --shadow: 0 24px 70px rgba(12, 10, 8, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16px 16px, rgba(240, 165, 31, 0.08) 0 2px, transparent 3px),
    linear-gradient(135deg, #fffdf8, #fff8e9 54%, #fff4dc);
  background-size: 34px 34px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.top-strip {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 4vw, 34px);
  min-height: 34px;
  padding: 7px 16px;
  color: #fffaf0;
  background: #2a1009;
  font-size: 0.86rem;
  font-weight: 800;
}

.top-strip a {
  color: var(--gold-soft);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff9ec;
  background: rgba(54, 19, 12, 0.78);
  border-bottom: 1px solid rgba(255, 249, 236, 0.14);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(54, 19, 12, 0.97);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand small {
  color: rgba(255, 249, 236, 0.72);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: rgba(255, 249, 236, 0.88);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-reserve {
  padding: 9px 14px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}

.site-nav .nav-reserve::after {
  content: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff9ec;
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 165, 31, 0.16), transparent 36%),
    linear-gradient(90deg, rgba(37, 10, 6, 0.78), rgba(91, 32, 15, 0.44) 48%, rgba(255, 244, 220, 0.1)),
    linear-gradient(0deg, rgba(37, 10, 6, 0.56), rgba(255, 244, 220, 0.08) 56%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 5vw, 66px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(38px, 8vh, 86px);
}

.hero-copy {
  max-width: 610px;
  padding: clamp(18px, 3vw, 28px);
  border-left: 4px solid var(--gold);
  background: rgba(37, 10, 6, 0.28);
  backdrop-filter: blur(3px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--chili);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 249, 236, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #14110d;
  background: var(--gold);
}

.button.secondary {
  color: #fff9ec;
  border-color: rgba(255, 249, 236, 0.62);
  background: rgba(255, 255, 255, 0.05);
}

.button.compact {
  min-height: 42px;
  width: fit-content;
}

.hours-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--light-line);
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(123, 31, 26, 0.88), rgba(37, 19, 11, 0.9)),
    radial-gradient(circle at top right, rgba(255, 215, 123, 0.2), transparent 46%);
  box-shadow: var(--shadow);
}

.hours-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.hours-card dl {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}

.hours-card div,
.location-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
  text-align: right;
}

.hours-card dd {
  color: rgba(255, 249, 236, 0.78);
}

.hours-card a {
  color: var(--gold-soft);
  font-size: 1.15rem;
  font-weight: 950;
}

section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.intro-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 165, 31, 0.09), transparent 28%),
    linear-gradient(135deg, #fffdf8, #fff7e8);
}

.experience-section {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  background: #fffdf8;
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.experience-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
}

.experience-card.reverse img {
  order: 2;
}

.experience-card img {
  height: clamp(300px, 34vw, 500px);
  object-fit: cover;
  box-shadow: 0 22px 64px rgba(61, 32, 19, 0.14);
}

.experience-card img.curry-photo {
  object-position: 50% 58%;
  transform: scale(1.08);
  transform-origin: center;
}

.experience-card > div {
  padding: clamp(22px, 4vw, 36px);
  border-left: 4px solid var(--gold);
  background:
    radial-gradient(circle at 100% 0, rgba(240, 165, 31, 0.12), transparent 34%),
    #fff8e9;
}

.experience-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.intro-grid,
.locations-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-grid div,
.location-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.menu-section {
  position: relative;
  overflow: hidden;
  color: #fff9ec;
  background: #220c08;
}

.menu-section::before {
  position: absolute;
  inset: -32px;
  z-index: 0;
  background:
    linear-gradient(rgba(63, 16, 8, 0.72), rgba(25, 11, 8, 0.9)),
    url("assets/dish-curry.jpg") left top / 52% auto repeat-y fixed,
    url("assets/dish-tikka.jpg") right 18% / 46% auto repeat-y fixed,
    url("assets/dish-tandoori.jpg") center bottom / 58% auto repeat-y fixed;
  content: "";
  filter: blur(16px) saturate(1.08);
  transform: scale(1.04);
}

.menu-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(240, 165, 31, 0.24), transparent 30%),
    repeating-linear-gradient(45deg, rgba(255, 215, 123, 0.045) 0 1px, transparent 1px 14px),
    linear-gradient(90deg, rgba(48, 13, 8, 0.95), rgba(48, 13, 8, 0.78), rgba(25, 11, 8, 0.96));
  content: "";
}

.menu-heading {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.menu-heading p:not(.eyebrow) {
  color: rgba(255, 249, 236, 0.72);
  font-size: 1.05rem;
}

.menu-layout {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid rgba(255, 249, 236, 0.14);
  background: rgba(64, 18, 10, 0.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.menu-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 249, 236, 0.18);
  border-radius: 999px;
  color: rgba(255, 249, 236, 0.82);
  background: rgba(255, 249, 236, 0.05);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-tabs button:hover {
  transform: translateY(-1px);
  border-color: rgba(228, 196, 111, 0.62);
  color: #fff9ec;
}

.menu-tabs button.active {
  color: #25130b;
  border-color: var(--gold);
  background: var(--gold);
}

.menu-list {
  display: grid;
  gap: 22px;
}

.menu-category {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 249, 236, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 215, 123, 0.1), rgba(255, 249, 236, 0.03)),
    rgba(43, 13, 8, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-category h3 {
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  border-bottom: 1px solid rgba(228, 196, 111, 0.28);
  padding-bottom: 12px;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 249, 236, 0.11);
}

.menu-category h3 + .menu-row {
  border-top: 0;
}

.sauce-group {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(228, 196, 111, 0.28);
}

.menu-category h3 + .sauce-group {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.sauce-group > h4 {
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.sauce-group > h4 span {
  color: rgba(255, 249, 236, 0.62);
  font-size: 0.95rem;
  text-transform: none;
}

.sauce-group > p {
  margin-bottom: 8px;
  color: rgba(255, 249, 236, 0.72);
}

.sauce-group .menu-row {
  padding: 10px 0;
}

.menu-row h4 {
  margin-bottom: 4px;
  color: #fff9ec;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-row h4 span {
  color: rgba(255, 249, 236, 0.56);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: none;
}

.menu-row p {
  margin: 0;
  color: rgba(255, 249, 236, 0.68);
}

.menu-row strong {
  color: var(--gold-soft);
  font-size: 1.12rem;
  white-space: nowrap;
}

.locations-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 107, 67, 0.08), transparent 30%),
    linear-gradient(135deg, #fffdf8, #fff3d8);
}

.location-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  background:
    linear-gradient(135deg, #fffaf0, #fff1d2);
  box-shadow: 0 16px 44px rgba(61, 32, 19, 0.1);
}

.location-panel h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.location-panel dl {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.location-panel div {
  color: var(--ink);
}

.location-panel dd {
  color: var(--muted);
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--deep);
}

.gallery-section img {
  height: clamp(220px, 26vw, 360px);
  object-fit: cover;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(42, 16, 9, 0.92), rgba(123, 31, 26, 0.9)),
    url("assets/dish-tandoori.jpg") center / cover;
}

.order-section h2 {
  margin-bottom: 12px;
}

.order-section p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.08rem;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button.secondary.warm {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.76);
}

.contact-section {
  align-items: center;
  background:
    radial-gradient(circle at left bottom, rgba(184, 50, 27, 0.07), transparent 34%),
    linear-gradient(135deg, #fffdf8, #fff3d8);
}

.contact-address {
  display: block;
  margin-top: 24px;
  padding: 22px;
  border-left: 4px solid var(--chili);
  background: #fff;
  color: var(--muted);
  font-style: normal;
  box-shadow: 0 14px 36px rgba(61, 32, 19, 0.08);
}

.contact-address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-address a {
  display: inline-block;
  margin-top: 8px;
  color: var(--chili);
  font-weight: 950;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.map-frame {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(61, 32, 19, 0.1);
}

.contact-form input[name="_honey"] {
  display: none;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: #276c3a;
}

.form-status.error {
  color: #a63524;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(33, 23, 18, 0.2);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #f7efe3;
  background:
    linear-gradient(135deg, #190b08, #3d120c);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 850;
}

@media (max-width: 920px) {
  .nav-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 110px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--light-line);
    background: rgba(15, 23, 17, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero-shell,
  .intro-grid,
  .experience-card,
  .experience-card.reverse,
  .menu-layout,
  .locations-section,
  .contact-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .experience-card.reverse img {
    order: 0;
  }

  .order-actions {
    justify-content: flex-start;
  }

  .gallery-section {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 620px) {
  .top-strip {
    display: grid;
    gap: 2px;
    min-height: 48px;
    text-align: center;
    font-size: 0.78rem;
  }

  .site-header {
    min-height: 70px;
  }

  .brand strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    top: 118px;
  }

  .hero {
    min-height: auto;
    padding-top: 154px;
  }

  .hero-shell {
    width: calc(100% - 32px);
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 5.2rem);
  }

  .button {
    width: 100%;
  }

  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
  }

  .menu-tabs button {
    flex: 0 0 auto;
  }

  .hours-card div,
  .location-panel div,
  .menu-row,
  .site-footer {
    display: grid;
  }

  dd {
    text-align: left;
  }

  .menu-row strong {
    margin-top: 4px;
  }

  .gallery-section {
    grid-template-columns: 1fr;
  }

}
