:root {
  --ink: #24110b;
  --muted: #755a4b;
  --paper: #fff9f0;
  --cream: #fff0d7;
  --tomato: #e43b22;
  --flame: #f36b18;
  --gold: #ffc20a;
  --charcoal: #1b120e;
  --cocoa: #5a2415;
  --line: rgba(34, 21, 15, 0.14);
  --shadow: 0 20px 60px rgba(228, 59, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 10px 30px rgba(34, 21, 15, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 5px;
  border: 2px solid rgba(255, 194, 10, 0.86);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(27, 18, 14, 0.14);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--flame));
}

.site-header.scrolled .header-cta,
.site-header.open .header-cta {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(20px, 6vw, 76px) 72px;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 19, 17, 0.82), rgba(23, 19, 17, 0.5) 42%, rgba(23, 19, 17, 0.06)),
    linear-gradient(0deg, rgba(23, 19, 17, 0.38), transparent 42%);
}

.hero-content {
  width: min(680px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(58px, 9vw, 118px);
}

h2 {
  font-size: clamp(38px, 5.5vw, 72px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--flame));
  box-shadow: 0 12px 26px rgba(228, 59, 34, 0.24);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  background: var(--charcoal);
  color: #fff;
  padding: 34px clamp(20px, 6vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.intro-grid article {
  min-height: 180px;
  padding: 28px;
  background: var(--charcoal);
}

.intro-grid span {
  color: var(--gold);
  font-weight: 800;
}

.intro-grid h2 {
  margin-top: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.intro-grid p,
.story-body p,
.catering-content p,
.section-heading p,
.site-footer p {
  color: var(--muted);
}

.intro-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.menu-section,
.events-section,
.gallery-section,
.story-section,
.order-section {
  padding: 92px clamp(20px, 6vw, 76px);
}

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

.section-heading p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 18px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  border-color: var(--tomato);
  background: linear-gradient(135deg, var(--tomato), var(--flame));
}

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

.menu-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 10px 26px rgba(34, 21, 15, 0.05);
  overflow: hidden;
}

.menu-card[hidden] {
  display: none;
}

.menu-type {
  margin: 0 0 10px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-card p:not(.menu-type) {
  margin: 14px 0 0;
  color: var(--muted);
}

.menu-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--cream);
}

.menu-card > div {
  padding: 0 26px;
}

.menu-card > span {
  color: var(--flame);
  font-size: 22px;
  font-weight: 800;
  padding: 0 26px 26px;
}

.catering-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: 84px clamp(20px, 6vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 10, 0.26), transparent 34%),
    linear-gradient(135deg, var(--cocoa), var(--tomato) 58%, var(--flame));
}

.catering-content {
  max-width: 760px;
}

.catering-content .eyebrow {
  color: #f7d28b;
}

.catering-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.catering-list {
  display: grid;
  gap: 12px;
}

.catering-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.catering-list strong,
.catering-list span {
  display: block;
}

.catering-list span {
  color: rgba(255, 255, 255, 0.72);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: start;
}

.story-body {
  padding-top: 38px;
  font-size: 18px;
}

.events-section {
  background: #fffdf8;
}

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

.event-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.event-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--charcoal);
  color: #fff;
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
}

.food-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #2b1a13;
}

.food-gallery figure.wide {
  grid-column: span 2;
}

.food-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.food-gallery figure:hover img {
  transform: scale(1.04);
}

.food-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(27, 18, 14, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.reason-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fffdf8;
  font-weight: 700;
}

.story-body p:first-child {
  margin-top: 0;
}

.order-section {
  background: var(--cream);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: -12px 0 24px;
}

.contact-card {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 20px;
  border: 1px solid rgba(34, 21, 15, 0.16);
  border-radius: 8px;
  background: #fffdf8;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 4px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--flame));
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--tomato);
  font-size: 20px;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(34, 21, 15, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--tomato);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 76px);
  background: #fffdf8;
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-weight: 800;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(228, 59, 34, 0.22);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--flame));
  box-shadow: 0 10px 22px rgba(228, 59, 34, 0.14);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(18px, 5vw, 64px) 22px;
    color: var(--ink);
    background: rgba(255, 248, 239, 0.97);
  }

  .site-header.open .nav-links a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .menu-grid,
  .event-grid,
  .contact-strip,
  .catering-band,
  .story-section {
    grid-template-columns: 1fr;
  }

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

  .story-body {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .brand span:last-child {
    max-width: 180px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 19, 17, 0.86), rgba(23, 19, 17, 0.52)),
      linear-gradient(0deg, rgba(23, 19, 17, 0.34), transparent 42%);
  }

  h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .intro-grid article,
  .menu-card > div {
    padding: 22px;
  }

  .menu-card > span {
    padding: 0 22px 22px;
  }

  .menu-section,
  .events-section,
  .gallery-section,
  .story-section,
  .order-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .food-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .food-gallery figure.wide {
    grid-column: span 1;
  }

  .order-form,
  .contact-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .order-form {
    display: grid;
  }

  .site-footer {
    display: grid;
  }
}
