:root {
  --bg: #fff6d7;
  --paper: #fffdf4;
  --ink: #3e1d12;
  --muted: #7a5b4e;
  --line: #dfcdb1;
  --primary: #e42125;
  --primary-dark: #b91519;
  --gold: #ffd91a;
  --green: #2f7d46;
  --shadow: 0 18px 45px rgba(62, 29, 18, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(244, 169, 31, 0.15), transparent 30rem),
    var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(202, 68, 31, 0.16);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--primary);
  font: italic 700 1.55rem var(--serif);
  box-shadow: 0 8px 18px rgba(202, 68, 31, 0.22);
}

.brand-logo {
  width: 72px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand strong {
  display: block;
  color: var(--primary);
  font: 700 1.35rem/1 var(--serif);
}

.brand small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-cta {
  padding: 0.85rem 1.2rem;
  color: #fffaf0;
  background: var(--primary);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  overflow: hidden;
  text-align: center;
}

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

.hero img,
.hero video {
  object-fit: cover;
}

.hero-overlay {
  background: rgba(45, 22, 13, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  padding: 6rem 0;
  color: #fffaf0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 1rem;
  border: 1px solid rgba(244, 169, 31, 0.55);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary);
  border-color: rgba(202, 68, 31, 0.32);
}

.hero h1 {
  margin: 1.5rem 0;
  font: 700 clamp(3.4rem, 9vw, 8rem)/0.95 var(--serif);
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero-content > p:last-of-type {
  width: min(660px, 100%);
  margin: 0 auto 2.5rem;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button,
.contact-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 1.65rem;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: #fffaf0;
  background: var(--primary);
}

.button.ghost {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.45);
}

.button:hover,
.contact-form button:hover {
  transform: translateY(-1px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: #fffaf0;
  background: var(--primary);
  border-bottom: 5px solid var(--ink);
}

.dashboard-banner {
  padding: 2rem 6vw;
  background: var(--primary);
}

.dashboard-banner img {
  width: 100%;
  border: 10px solid rgba(255, 253, 244, 0.88);
  box-shadow: var(--shadow);
}

.about-dashboard {
  padding-top: 0;
  background: var(--bg);
}

.trust-strip article {
  padding: 2.2rem 2rem;
  text-align: center;
}

.trust-strip article + article {
  border-left: 1px solid rgba(255, 250, 240, 0.25);
}

h2,
h3 {
  font-family: var(--serif);
}

.trust-strip h2 {
  margin: 0 0 0.55rem;
  font-size: 1.55rem;
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.section {
  padding: 6rem 6vw;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.contact h2 {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.story-copy p,
.contact-list p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(62, 29, 18, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card div {
  padding: 1.1rem;
}

.product-card p {
  margin: 0 0 0.3rem;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
}

.product-card span {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  color: var(--ink);
  background: rgba(244, 169, 31, 0.2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5vw;
  align-items: center;
  padding: 6rem 6vw;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.story-image {
  position: relative;
  overflow: hidden;
}

.story-image::after {
  position: absolute;
  inset: 1.2rem;
  border: 8px solid rgba(255, 250, 240, 0.28);
  content: "";
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.9);
}

.story-copy {
  max-width: 620px;
}

.story-copy .button {
  margin-top: 1.2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 4.2rem 6vw;
  color: #fffaf0;
  text-align: center;
  background: var(--ink);
}

.stats strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font: 700 clamp(2.6rem, 5vw, 4rem) var(--serif);
}

.stats span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}

.catering-grid article {
  border: 1px solid var(--line);
  background: var(--paper);
}

.catering-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catering-grid h3,
.catering-grid p {
  margin-inline: 1.2rem;
}

.catering-grid h3 {
  margin-top: 1.2rem;
  font-size: 1.45rem;
}

.catering-grid p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 5rem 6vw;
  color: #fffaf0;
  text-align: center;
  background: var(--ink);
}

.page-hero-button {
  margin-top: 1.8rem;
}

.page-hero h1 {
  margin: 1rem 0;
  color: var(--gold);
  font: 700 clamp(3rem, 7vw, 6rem)/0.95 var(--serif);
}

.page-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.8);
  font-size: 1.1rem;
  line-height: 1.75;
}

.image-page-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.image-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.25) saturate(0.85);
}

.image-page-hero > div:not(.hero-overlay) {
  position: relative;
  z-index: 1;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto 4rem;
}

.category-tabs a {
  min-height: 42px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  color: var(--primary);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-tabs a:hover {
  color: #fffaf0;
  background: var(--primary);
}

.menu-card-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 4rem 6vw 0;
}

.menu-card-preview > div {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-card-preview h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.menu-card-preview p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.menu-card-preview iframe {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-subhead {
  margin-top: 6rem;
}

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

.article-page {
  width: min(900px, 100% - 2rem);
  margin: 0 auto;
  padding: 6rem 0;
}

.article-page h2 {
  margin: 3rem 0 1rem;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-page h2:first-child {
  margin-top: 0;
}

.article-page p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.9;
}

.dropcap {
  float: left;
  margin: 0.1rem 0.5rem 0 0;
  color: var(--primary);
  font: 700 4.8rem/0.8 var(--serif);
}

.article-page blockquote {
  margin: 3rem 0;
  padding: 1.6rem 2rem;
  border-left: 5px solid var(--primary);
  color: var(--ink);
  background: var(--paper);
  font: italic 600 1.55rem/1.6 var(--serif);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 6vw 6rem;
  background: var(--line);
}

.process article {
  padding: 2rem;
  background: var(--paper);
}

.process strong {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--primary);
  font: 800 1rem var(--sans);
}

.process h2 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.6rem;
}

.process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-cta {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  padding: 5rem 6vw;
  color: #fffaf0;
  text-align: center;
  background: var(--primary-dark);
}

.home-cta h2 {
  width: min(780px, 100%);
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.1;
}

.media-section {
  background: var(--bg);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.media-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: 0 12px 32px rgba(62, 29, 18, 0.12);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 5vw;
  padding: 6rem 6vw;
  background: var(--paper);
}

.contact-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.contact-list p {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

.contact-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gst-card {
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--bg);
}

.gst-card h3 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 1.45rem;
}

.gst-card p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(223, 205, 177, 0.75);
  color: var(--ink);
  font-weight: 700;
}

.gst-card strong {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fffaf0;
  font: 500 1rem var(--sans);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  display: grid;
  gap: 1.6rem;
  padding: 4rem 6vw;
  color: rgba(255, 250, 240, 0.72);
  background: var(--ink);
  border-top: 5px solid var(--primary);
}

.footer .brand strong {
  color: #fffaf0;
}

.footer p {
  width: min(560px, 100%);
  margin: 0;
  line-height: 1.7;
}

.footer-gst {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: min(860px, 100%);
}

.footer-gst span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.74);
  background: rgba(255, 250, 240, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
}

.copyright {
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .menu-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-band,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .small-grid,
  .process,
  .media-grid,
  .menu-card-preview {
    grid-template-columns: 1fr;
  }

  .menu-card-preview iframe {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 1rem;
  }

  .brand-logo {
    width: 58px;
    height: 40px;
  }

  .nav-button {
    display: grid;
    gap: 5px;
    width: 44px;
    padding: 10px;
    cursor: pointer;
  }

  .nav-button span {
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .main-nav a {
    display: block;
    padding: 0.95rem;
    border-bottom: 1px solid rgba(223, 205, 177, 0.65);
  }

  .nav-toggle:checked ~ .main-nav {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .trust-strip,
  .menu-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .trust-strip article + article {
    border-top: 1px solid rgba(255, 250, 240, 0.25);
    border-left: 0;
  }

  .section,
  .story-band,
  .contact {
    padding: 4rem 1rem;
  }

  .gst-card p {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
