:root {
  --red: #a72f1d;
  --red-dark: #53190f;
  --turmeric: #f2b632;
  --basil: #2d6b3f;
  --charcoal: #171412;
  --cream: #fff5e4;
  --paper: #fffaf2;
  --muted: #725f50;
  --line: #ead6bd;
  --shadow: 0 24px 70px rgba(83, 25, 15, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(167, 47, 29, 0.16);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--turmeric);
  border-radius: 50%;
  font-family: "Young Serif", Georgia, serif;
}

.brand strong,
.site-footer strong {
  display: block;
  color: var(--red-dark);
  font-family: "Young Serif", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--red-dark);
  background: var(--turmeric);
  border-color: var(--turmeric);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--red);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff;
}

.hero {
  min-height: calc(100vh - 75px);
  align-items: end;
  padding: clamp(78px, 10vw, 150px) clamp(18px, 5vw, 80px) clamp(46px, 7vw, 82px);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 85% 20%, rgba(242, 182, 50, 0.32), transparent 32%),
    linear-gradient(90deg, rgba(23, 20, 18, 0.92), rgba(83, 25, 15, 0.58), rgba(23, 20, 18, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--turmeric);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Young Serif", Georgia, serif;
  line-height: 1.03;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5.6vw, 5.35rem);
}

h2 {
  color: var(--red-dark);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
  margin: 0;
  color: var(--red-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.hero-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.hero-actions,
.center-action,
.cta-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.open-line {
  margin-top: 18px;
  color: var(--turmeric) !important;
  font-weight: 900;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 80px);
}

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

.dish-grid,
.experience-grid,
.review-grid,
.order-grid,
.popular-grid {
  display: grid;
  gap: 22px;
}

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

.dish-card,
.experience-grid article,
.review-grid article,
.order-card,
.popular-grid article,
.hours-card,
.notes-card,
.contact-details,
.panel-form,
.map-card,
.featured-callout,
.menu-category {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(83, 25, 15, 0.08);
}

.dish-card {
  overflow: hidden;
}

.dish-card img,
.popular-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dish-card div,
.popular-grid article {
  padding: 22px;
}

.tag,
.pill,
.diet {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.hot {
  background: #5b120a;
}

.tag.mild {
  color: var(--red-dark);
  background: var(--turmeric);
}

.diet {
  min-height: 0;
  padding: 3px 7px;
  color: var(--basil);
  background: #e6f3dc;
  font-size: 0.65rem;
}

.dish-card p,
.experience-grid p,
.review-grid p,
.story-preview p,
.location-preview p,
.menu-category p,
.menu-item p,
.order-card p,
.popular-grid p,
.notes-card p,
.contact-details p,
.story-page p,
.chef-section p,
.values-section p {
  color: var(--muted);
}

.center-action {
  justify-content: center;
  margin-top: 34px;
}

.story-preview,
.location-preview,
.story-page,
.chef-section,
.form-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.story-preview {
  background: var(--cream);
}

.story-preview img,
.story-page img,
.chef-section img {
  width: 100%;
  min-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--red-dark);
  font-weight: 800;
}

.experience-section,
.review-section,
.values-section,
.popular-section {
  background: var(--cream);
}

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

.experience-grid article,
.review-grid article,
.order-card {
  padding: 28px;
}

.experience-grid span,
.order-card span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--red-dark);
  background: var(--turmeric);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.review-grid strong {
  color: var(--red);
}

.location-preview {
  background: var(--red-dark);
  color: #fff;
}

.location-preview h2 {
  color: #fff;
}

.location-preview p {
  color: rgba(255, 255, 255, 0.78);
}

.hours-card {
  padding: 28px;
  color: var(--charcoal);
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.hours-card dt {
  font-weight: 900;
}

.hours-card dd {
  margin: 0;
  color: var(--muted);
}

.newsletter,
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 80px);
  color: #fff;
  background: var(--basil);
}

.newsletter h2,
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
}

.inline-form {
  display: flex;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

textarea {
  resize: vertical;
}

.page-hero {
  min-height: 430px;
  align-content: end;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 80px) clamp(42px, 7vw, 72px);
  background:
    radial-gradient(circle at 85% 20%, rgba(242, 182, 50, 0.32), transparent 34%),
    linear-gradient(120deg, rgba(83, 25, 15, 0.96), rgba(167, 47, 29, 0.84)),
    url("https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.category-nav {
  position: sticky;
  top: 75px;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px clamp(18px, 5vw, 80px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.category-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: var(--red-dark);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.menu-layout {
  display: grid;
  gap: 34px;
}

.featured-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  overflow: hidden;
}

.featured-callout img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-callout div {
  position: relative;
  z-index: 1;
  padding: 34px;
  background: #fff;
}

.menu-sections {
  display: grid;
  gap: 24px;
}

.menu-category {
  padding: 28px;
  scroll-margin-top: 150px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-item:first-of-type {
  margin-top: 18px;
}

.menu-item h3 {
  margin-bottom: 6px;
}

.menu-item p,
.menu-item small {
  margin: 0;
}

.menu-item small {
  color: var(--red);
  font-weight: 800;
}

.menu-item strong {
  color: var(--red-dark);
  white-space: nowrap;
}

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

.partner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

.popular-grid article {
  overflow: hidden;
  padding: 0;
}

.popular-grid h3,
.popular-grid p,
.popular-grid a {
  margin-right: 20px;
  margin-left: 20px;
}

.popular-grid a {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-weight: 900;
}

.form-layout {
  align-items: start;
}

.panel-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.panel-form label,
.contact-form h2 {
  display: grid;
  gap: 8px;
  color: var(--red-dark);
  font-weight: 900;
}

.panel-form .full,
.panel-form button,
.form-status,
.contact-form h2 {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--basil);
  font-weight: 900;
}

.notes-card,
.contact-details,
.map-card {
  padding: 28px;
}

.contact-layout {
  grid-template-columns: minmax(260px, 0.76fr) minmax(260px, 0.85fr);
  align-items: stretch;
}

.contact-form {
  grid-column: 1 / -1;
}

.map-card {
  display: grid;
  place-items: center;
  min-height: 330px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(83, 25, 15, 0.76), rgba(45, 107, 63, 0.78)),
    url("https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=900&q=85") center/cover;
}

.map-card span {
  font-family: "Young Serif", Georgia, serif;
  font-size: 4rem;
}

.map-card p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 80px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.socials a,
.site-footer a,
.contact-details a {
  color: var(--red);
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1080px) {
  .dish-grid,
  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3rem;
  }

  .story-preview,
  .location-preview,
  .story-page,
  .chef-section,
  .form-layout,
  .contact-layout,
  .featured-callout,
  .order-grid,
  .experience-grid,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .featured-callout {
    overflow: visible;
  }

  .featured-callout img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .featured-callout div {
    padding: 24px;
  }

  .newsletter,
  .cta-band {
    display: block;
  }

  .inline-form {
    margin-top: 18px;
  }

  .category-nav {
    top: 73px;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .dish-grid,
  .popular-grid,
  .panel-form {
    grid-template-columns: 1fr;
  }

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

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions .button,
  .center-action .button,
  .cta-band .button,
  .inline-form,
  .inline-form .button {
    width: 100%;
  }
}
