:root {
  --ink: #1f1712;
  --muted: #705f50;
  --paper: #fbf7ef;
  --sand: #ead6b6;
  --amber: #d58a20;
  --red: #8f2f1f;
  --green: #315b44;
  --line: rgba(31, 23, 18, 0.14);
  --shadow: 0 24px 70px rgba(31, 23, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff8ed;
  background: linear-gradient(180deg, rgba(31, 23, 18, 0.78), rgba(31, 23, 18, 0.18));
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.58);
  border-radius: 50%;
  background: rgba(143, 47, 31, 0.72);
  font-family: Archivo, sans-serif;
}

.brand-copy {
  font-family: Archivo, sans-serif;
  font-size: 18px;
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 800;
}

.header-action {
  background: #fff8ed;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 70px) 46px;
}

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

.hero-bg {
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(31, 23, 18, 0.82) 0%, rgba(31, 23, 18, 0.62) 42%, rgba(31, 23, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(31, 23, 18, 0.76) 0%, rgba(31, 23, 18, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fff8ed;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Archivo, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(64px, 12vw, 148px);
  line-height: 0.86;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.35;
}

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

.primary {
  background: var(--amber);
  color: #21140c;
}

.secondary {
  border: 1px solid rgba(255, 248, 237, 0.68);
  color: #fff8ed;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.11);
  font-size: 13px;
  font-weight: 800;
}

.band,
.menu-band {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 70px);
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro h2,
.contact h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.intro p:not(.section-kicker),
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(240px, 0.64fr) minmax(240px, 0.64fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 70px) clamp(54px, 8vw, 104px);
}

.feature,
.feature-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.feature-large {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  grid-column: span 1;
}

.feature-large img,
.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.feature-large div,
.feature-card {
  padding: clamp(22px, 4vw, 42px);
}

.feature-card img {
  height: 260px;
  min-height: 0;
  margin: calc(clamp(22px, 4vw, 42px) * -1) calc(clamp(22px, 4vw, 42px) * -1) 24px;
  width: calc(100% + clamp(44px, 8vw, 84px));
}

.feature h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1;
}

.feature p,
.feature-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-card h3 {
  margin: 0;
  font-size: 24px;
}

.menu-band {
  background: var(--green);
  color: #fff8ed;
}

.menu-band .section-kicker {
  color: #f2b34d;
}

.section-head {
  max-width: 780px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 248, 237, 0.24);
  border: 1px solid rgba(255, 248, 237, 0.24);
}

.menu-list div {
  min-height: 154px;
  padding: 22px;
  background: var(--green);
}

.menu-list span {
  display: block;
  color: #f2b34d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-list strong {
  display: block;
  margin-top: 18px;
  font-family: Archivo, sans-serif;
  font-size: 21px;
  line-height: 1.2;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr 0.75fr;
  gap: 10px;
  padding: 10px;
  background: var(--ink);
}

.gallery img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 4px;
}

.contact {
  background: #fffaf2;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card a {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-weight: 850;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 70px);
  background: var(--ink);
  color: #fff8ed;
  font-size: 13px;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .intro,
  .contact,
  .feature-grid,
  .feature-large {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-copy {
    font-size: 16px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    padding: 104px 18px 32px;
  }

  h1 {
    font-size: 62px;
  }

  .lead {
    font-size: 18px;
  }

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

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

  .gallery img {
    height: 280px;
  }

  footer {
    flex-direction: column;
  }
}
