:root {
  color-scheme: light;
  --black: #050403;
  --coal: #14110d;
  --ink: #211a12;
  --brown: #6d4200;
  --gold: #f4a300;
  --gold-soft: #ffbd18;
  --orange: #e67f00;
  --cream: #fff3e2;
  --paper: #fbf7ef;
  --gray: #d8d8d6;
  --gray-dark: #565656;
  --white: #ffffff;
  --shadow: 0 22px 60px rgb(0 0 0 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(0 0 0 / 86%) 0%, rgb(0 0 0 / 54%) 48%, rgb(0 0 0 / 10%) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 62%) 0%, rgb(0 0 0 / 8%) 38%, rgb(0 0 0 / 76%) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.06);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgb(244 163 0 / 38%);
  border-radius: 50%;
  background: #000;
  object-fit: cover;
}

.brand span {
  font-size: 1.3rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #f7efe2;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-cta,
.button {
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 12px 16px;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(92vh - 88px);
  align-content: center;
  padding: 44px 0 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffe0a0;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  font-weight: 950;
  line-height: 0.9;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.1rem);
  font-weight: 950;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 950;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: #fff4df;
  font-size: 1.14rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-weight: 950;
}

.button.primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 16px 34px rgb(244 163 0 / 26%);
}

.button.primary:hover {
  background: var(--gold-soft);
}

.button.secondary {
  border-color: rgb(255 255 255 / 30%);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.button.outline {
  border-color: rgb(244 163 0 / 38%);
  background: rgb(255 255 255 / 4%);
  color: var(--cream);
}

.button.outline:hover {
  border-color: var(--gold);
}

.button.full {
  width: 100%;
}

.quick-info {
  background: var(--coal);
  color: var(--cream);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-grid div {
  min-height: 148px;
  padding: 28px 26px;
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.quick-grid div:last-child {
  border-right: 1px solid rgb(255 255 255 / 12%);
}

.quick-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-grid strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.25;
}

.quick-grid p {
  margin: 12px 0 0;
  color: #d8d8d6;
  line-height: 1.55;
}

.section {
  padding: 94px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: #5c5142;
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.feature-grid article,
.product-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgb(42 26 0 / 10%);
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid div {
  padding: 22px;
}

.feature-grid p,
.menu-copy p,
.contact-layout p {
  color: #5b5144;
  line-height: 1.7;
}

.menu-band {
  background:
    linear-gradient(135deg, rgb(5 4 3 / 96%), rgb(34 22 8 / 96%)),
    var(--coal);
  color: var(--white);
  padding: 92px 0;
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.menu-copy p {
  color: #f3e8d2;
  font-size: 1.07rem;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.menu-tags span {
  border: 1px solid rgb(244 163 0 / 38%);
  border-radius: 999px;
  padding: 10px 14px;
  color: #ffe1a3;
  font-size: 0.9rem;
  font-weight: 850;
}

.menu-photos {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.menu-photos img {
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.menu-photos img:first-child {
  grid-row: span 2;
  height: 100%;
}

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

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

.product-grid h3 {
  padding: 18px 18px 20px;
}

.contact-band {
  background: var(--black);
  color: var(--white);
  padding: 92px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: center;
}

.contact-layout p {
  max-width: 670px;
  color: #efe3cc;
  font-size: 1.08rem;
}

.contact-panel {
  border: 1px solid rgb(244 163 0 / 30%);
  border-radius: 8px;
  background: rgb(255 255 255 / 6%);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border: 1px solid rgb(244 163 0 / 30%);
  border-radius: 50%;
  background: #000;
  object-fit: cover;
}

.contact-panel .button + .button {
  margin-top: 10px;
}

.footer {
  background: #000;
  color: #d8d8d6;
}

.footer-layout {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold);
  font-weight: 950;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-content {
    min-height: 74vh;
  }

  .quick-grid,
  .feature-grid,
  .section-heading,
  .menu-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quick-grid div,
  .quick-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 12%);
  }

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

  .contact-layout {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .brand span {
    font-size: 1.05rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .menu-band,
  .contact-band {
    padding: 68px 0;
  }

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

  .menu-photos img:first-child {
    grid-row: auto;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
