:root {
  --blue: #2d3090;
  --blue-deep: #17195f;
  --yellow: #ffd33f;
  --gold: #c48224;
  --red: #c91f2e;
  --green: #217b49;
  --cream: #fff8e7;
  --ink: #251c19;
  --muted: #6d5a4f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(38, 24, 9, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(87, 61, 21, 0.12);
}

.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(16px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(90deg, var(--red), #7a210f);
  font-size: 14px;
  font-weight: 800;
}

.top-line a {
  color: var(--yellow);
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 8px clamp(16px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 211, 63, 0.22), transparent 28%),
    var(--white);
}

.header-main::after {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 0;
  left: clamp(16px, 4vw, 56px);
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--green), var(--blue));
  border-radius: 999px 999px 0 0;
}

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

.brand img {
  width: 116px;
  height: 84px;
  object-fit: contain;
  object-position: center;
}

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

.brand strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-weight: 800;
}

nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--red);
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.call-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 900;
  text-align: center;
}

.call-link,
.button.primary {
  color: var(--blue-deep);
  background: var(--yellow);
  box-shadow: 0 8px 0 rgba(118, 35, 23, 0.18);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(45, 48, 144, 0.88);
}

.button.map-link {
  color: var(--white);
  border-color: var(--yellow);
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 128px);
  padding: clamp(36px, 5vw, 76px) clamp(18px, 5vw, 72px) 48px;
  color: var(--white);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  background: url("assets/outlet.webp") center / cover;
  filter: blur(5px);
  transform: scale(1.04);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(44, 22, 10, 0.9), rgba(58, 35, 12, 0.62) 48%, rgba(255, 211, 63, 0.25)),
    radial-gradient(circle at 82% 16%, rgba(255, 211, 63, 0.3), transparent 24%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.legacy-section .eyebrow,
.contact-section .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 100px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.08;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  justify-self: center;
  width: min(450px, 84vw);
  aspect-ratio: 1 / 1.15;
  display: grid;
  place-items: end center;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.24));
}

.hero-visual img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: bottom;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold);
}

.quick-strip article {
  min-height: 130px;
  padding: 26px clamp(18px, 3vw, 40px);
  background: #fff2b1;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 22px;
}

.quick-strip span {
  color: #513a27;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.menu-card span {
  display: inline-block;
  margin-bottom: 54px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--blue-deep);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.south {
  background: linear-gradient(160deg, #217b49, #0f4d31);
}

.punjabi {
  background: linear-gradient(160deg, #c91f2e, #75151f);
}

.chinese {
  background: linear-gradient(160deg, #2d3090, #17195f);
}

.pav {
  background: linear-gradient(160deg, #c48224, #7b3a16);
}

.thali-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.thali-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.thali-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border: 3px solid var(--blue);
  border-radius: 8px;
  padding: 20px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.thali-panel strong {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 28px;
}

.thali-panel span {
  border-radius: 6px;
  padding: 14px;
  color: var(--blue-deep);
  background: var(--yellow);
  font-weight: 900;
}

.ready-section {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.ready-copy p {
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  border: 2px solid rgba(196, 130, 36, 0.28);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card.featured {
  transform: translateY(-16px);
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff8e7;
}

.product-card h3 {
  margin-bottom: 0;
  color: var(--blue);
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.legacy-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #7a210f, #2b140d 58%, #2d3090);
}

.legacy-badge {
  position: relative;
  display: block;
  justify-self: center;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  color: var(--white);
  background: #050505;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.legacy-badge::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 2px solid rgba(255, 211, 63, 0.34);
  border-radius: 14px;
}

.legacy-badge span,
.legacy-badge strong,
.legacy-badge small {
  display: block;
}

.legacy-badge .twenty,
.legacy-badge .eight {
  position: absolute;
  color: transparent;
  background: linear-gradient(135deg, #fff47a, #ffc83d 42%, #a96b12 78%, #ffe778);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(150px, 25vw, 235px);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: 0;
  text-shadow: 0 22px 28px rgba(255, 194, 45, 0.12);
}

.legacy-badge .twenty {
  left: 28px;
  bottom: 46px;
}

.legacy-badge .eight {
  right: 18px;
  top: 54px;
}

.legacy-badge strong {
  position: absolute;
  right: 56px;
  bottom: 116px;
  color: var(--yellow);
  font-size: 28px;
  text-transform: uppercase;
}

.legacy-badge small {
  position: absolute;
  right: 48px;
  bottom: 78px;
  max-width: 150px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-section h2,
.contact-section h2 {
  color: var(--white);
}

.legacy-section p,
.contact-section p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.blog-section {
  background: #fffdf5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  min-height: 300px;
  border-top: 6px solid var(--yellow);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-card p {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  grid-template-columns: minmax(0, 1fr) auto;
  background: linear-gradient(135deg, #7a210f, #2b140d);
}

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

.map {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #100f35;
  font-weight: 700;
}

footer a {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .top-line,
  .header-main {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .thali-section,
  .ready-section,
  .legacy-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    width: min(390px, 82vw);
    margin-top: 10px;
  }

  .quick-strip,
  .menu-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .top-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 6px 14px;
    font-size: 12px;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: auto;
    padding: 6px 14px 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand img {
    width: 78px;
    height: 58px;
  }

  .brand span {
    max-width: 128px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .call-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    order: initial;
    gap: 14px;
    padding-bottom: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  nav a {
    padding: 8px 0;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  h2 {
    font-size: 34px;
  }

  .quick-strip,
  .menu-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 230px;
  }

  .menu-card span {
    margin-bottom: 34px;
  }

  .thali-panel {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    transform: none;
  }

  .product-card img {
    height: 300px;
  }

  footer {
    flex-direction: column;
  }
}
