:root {
  --ink: #21141a;
  --muted: #695b61;
  --paper: #fff8fc;
  --surface: #ffffff;
  --line: #eadfd7;
  --char: #2b151f;
  --brand: #99094a;
  --brand-dark: #750538;
  --saffron: #d99321;
  --chilli: #c3342f;
  --mint: #15735a;
  --bun: #e9b85e;
  --smoke: #3f261d;
  --cream: #fff3df;
  --shadow: 0 24px 70px rgba(81, 12, 45, 0.14);
  --soft-shadow: 0 12px 36px rgba(81, 12, 45, 0.08);
  --font-body: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Arial Black", "Segoe UI Black", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf3;
  font-family: var(--font-body);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 243, 0.86);
  border-bottom: 1px solid rgba(217, 147, 33, 0.24);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.visit-section,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(153, 9, 74, 0.12));
}

.nav {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 92px);
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, rgba(233, 184, 94, 0.34), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(21, 115, 90, 0.18), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(195, 52, 47, 0.16), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #fff1df 47%, #ffe8f1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(transparent, rgba(255, 250, 243, 0.9));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow,
.tag {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 10vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.04;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.12rem;
  font-family: var(--font-body);
}

.tagline {
  color: var(--brand) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 3vw, 2.3rem) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--char);
  border-radius: 6px;
  font-weight: 850;
  font-family: var(--font-body);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(63, 38, 29, 0.14);
}

.button.primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.button.ghost {
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(63, 38, 29, 0.5);
}

.hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(560px, 56vw);
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: min(100%, 590px);
  aspect-ratio: 1.32;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(var(--shadow));
}

.bun,
.skewer,
.chutney,
.onion {
  position: absolute;
  display: block;
}

.bun {
  width: 30%;
  aspect-ratio: 1.35;
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(circle at 36% 22%, #fff1b7 0 7%, transparent 8%),
    radial-gradient(circle at 56% 26%, #fff1b7 0 5%, transparent 6%),
    linear-gradient(#e7b55f, #b86e2e);
  box-shadow: inset 0 -12px 22px rgba(89, 43, 16, 0.24), 0 16px 30px rgba(77, 44, 25, 0.18);
}

.bun-one {
  left: 18%;
  top: 25%;
}

.bun-two {
  right: 16%;
  bottom: 22%;
  transform: rotate(16deg);
}

.skewer {
  width: 58%;
  height: 10%;
  left: 21%;
  background:
    repeating-linear-gradient(90deg, transparent 0 11%, #5a2d1b 12% 20%, #a34625 21% 28%, #5a2d1b 29% 34%),
    linear-gradient(90deg, transparent, transparent);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(72, 35, 18, 0.22);
}

.skewer::before {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  top: 44%;
  height: 5px;
  background: #8a6548;
}

.skewer-one {
  top: 44%;
  transform: rotate(-18deg);
}

.skewer-two {
  top: 56%;
  transform: rotate(14deg);
}

.chutney {
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: inset 0 6px 15px rgba(255, 255, 255, 0.26), 0 10px 20px rgba(70, 35, 12, 0.16);
}

.chutney.green {
  left: 19%;
  bottom: 24%;
  background: radial-gradient(circle at 34% 32%, #7dcf84, var(--mint));
}

.chutney.red {
  right: 22%;
  top: 21%;
  background: radial-gradient(circle at 34% 32%, #e96a4a, var(--chilli));
}

.onion {
  width: 13%;
  aspect-ratio: 1;
  border: 9px solid rgba(128, 48, 93, 0.36);
  border-radius: 50%;
}

.onion-one {
  left: 35%;
  bottom: 15%;
}

.onion-two {
  right: 34%;
  top: 15%;
  transform: scale(0.72);
}

.menu-section,
.split-section,
.visit-section,
.order-section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 64px);
}

.menu-section {
  background: linear-gradient(180deg, #fffaf3, #ffffff 38%, #fff8ed);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading p,
.split-section p,
.visit-section p,
.menu-card p:not(.tag) {
  color: var(--muted);
  font-family: var(--font-body);
}

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

.menu-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.menu-card:nth-child(1)::before,
.menu-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--smoke), var(--bun));
}

.menu-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--chilli), var(--saffron));
}

.menu-card:nth-child(4)::before,
.menu-card:nth-child(5)::before {
  background: linear-gradient(90deg, var(--mint), var(--brand));
}

.menu-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--saffron), var(--chilli));
}

.menu-card:hover {
  border-color: rgba(217, 147, 33, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(81, 12, 45, 0.12);
}

.price {
  color: var(--smoke);
  font-size: 1.35rem;
  font-weight: 950;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(56px, 8vw, 100px);
}

.image-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--smoke);
  border: 1px solid rgba(217, 147, 33, 0.26);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(81, 12, 45, 0.12);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(33, 20, 26, 0.72) 100%),
    linear-gradient(90deg, rgba(33, 20, 26, 0.16), transparent 54%);
  z-index: 1;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.image-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.burger-card {
  border-color: rgba(233, 184, 94, 0.42);
}

.roll-card {
  border-color: rgba(21, 115, 90, 0.34);
}

.fries-card {
  border-color: rgba(217, 147, 33, 0.42);
}

.image-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 7vw, 92px);
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 147, 33, 0.18), transparent 26%),
    linear-gradient(135deg, var(--char), #422417 56%, #123f34);
  color: #fff;
}

.split-section .eyebrow {
  color: var(--saffron);
}

.split-section p {
  max-width: 720px;
  align-self: center;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.15rem;
}

.visit-section {
  justify-content: space-between;
  gap: 24px;
  background: #fffaf3;
  border-bottom: 1px solid rgba(21, 115, 90, 0.18);
}

.visit-section div {
  max-width: 720px;
}

.order-section {
  background:
    radial-gradient(circle at 16% 25%, rgba(195, 52, 47, 0.12), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(21, 115, 90, 0.13), transparent 24%),
    linear-gradient(135deg, #fff8ed 0%, #fff3df 100%);
}

.order-section p {
  max-width: 720px;
  color: var(--muted);
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    min-height: 420px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .site-header,
  .visit-section,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 300px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

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