:root {
  --red: #ed2024;
  --red-dark: #c61013;
  --ink: #050101;
  --cream: #efd19f;
  --paper: #fff8ec;
  --bone: #f5efe4;
  --white: #ffffff;
  --teal: #6d9999;
  --muted: #626262;
  --display: "Anton", "Impact", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
.wide-label,
.brand-text,
.site-nav a,
.red-button,
.outline-button {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 84px;
  padding: 18px clamp(20px, 6vw, 118px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 176px;
  min-width: 176px;
  height: 62px;
  padding: 8px 12px 8px 13px;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.96);
  border: 3px solid var(--red);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 2px rgba(5, 1, 1, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.18);
  transform: rotate(-1deg);
}

.brand-mark {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 34px;
  background: var(--red);
  border-radius: 999px 999px 999px 5px;
  transform: rotate(42deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 8px;
  height: 12px;
  background: var(--paper);
  border-radius: 999px 999px 999px 3px;
}

.brand-text {
  display: grid;
  gap: 3px;
  max-width: none;
  color: var(--ink);
  line-height: 1;
  text-align: left;
  text-shadow: none;
}

.brand-name {
  font-size: 21px;
  line-height: 0.88;
}

.brand-sub {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 17px;
  padding: 2px 7px 0;
  color: var(--white);
  background: var(--red);
  border-radius: 2px;
  font-size: 11px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.site-nav a {
  color: currentColor;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav .outline-button {
  color: var(--ink);
  font-size: 15px;
}

.outline-button,
.red-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--red);
  border-radius: 3px;
  font-size: 15px;
  line-height: 1;
}

.outline-button {
  color: var(--ink);
  background: var(--white);
}

.outline-button.dark-text {
  color: var(--ink);
}

.red-button {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 20px rgba(198, 16, 19, 0.2);
}

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

.nav-toggle {
  display: none;
  position: relative;
  z-index: 25;
  color: var(--white);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--red);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  color: var(--white);
  background: var(--red);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  padding: 155px clamp(24px, 8vw, 118px) 140px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(76, 127, 130, 0.72) 0%, rgba(76, 127, 130, 0.28) 45%, rgba(0, 0, 0, 0.78) 100%),
    url("./assets/clean-bbq/backyard-grill-ribs-sausage.jpeg") center 42% / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(54px, 7.2vw, 92px);
  line-height: 0.97;
}

.hero-kicker {
  margin-top: 26px;
  font-family: var(--display);
  font-size: clamp(16px, 1.35vw, 22px);
  text-transform: uppercase;
}

.hero .red-button {
  margin-top: 36px;
}

.story-section {
  padding: clamp(70px, 10vw, 128px) clamp(24px, 8vw, 118px);
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.story-copy h2,
.split-copy h2,
.experience-copy h2,
.newsletter-section h2,
.hours-panel h2 {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.story-copy p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.experience-copy p,
.newsletter-section p {
  margin-top: 24px;
  max-width: 660px;
  color: #232323;
  font-size: 20px;
  line-height: 1.55;
}

.tilted-photo {
  height: clamp(410px, 50vw, 600px);
  border: 14px solid var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  transform: rotate(2deg);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ink);
}

.feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}

.feature-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-section {
  padding: clamp(70px, 9vw, 110px) clamp(18px, 6vw, 96px);
  color: var(--white);
  background: var(--ink);
}

.menu-heading {
  max-width: 1180px;
  margin: 0 auto 42px;
  text-align: center;
}

.wide-label {
  color: var(--cream);
  font-size: clamp(20px, 3vw, 34px);
}

.menu-heading h2 {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(58px, 10vw, 126px);
  line-height: 0.9;
  text-transform: uppercase;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 24px;
  font-size: 14px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.gluten {
  background: #376120;
}

.dairy {
  background: #142645;
}

.veg {
  background: #942143;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-group {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--cream);
  border-radius: 2px;
}

.menu-group-large {
  grid-row: span 2;
}

.menu-group h3 {
  margin-bottom: 20px;
  color: var(--red-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.menu-note,
.size-line {
  margin-bottom: 22px;
  color: #312312;
  font-size: 15px;
  line-height: 1.4;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  font-size: 16px;
}

.menu-row strong {
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.split-section.dark {
  color: var(--white);
  background: var(--ink);
}

.split-section.light {
  color: var(--ink);
  background: var(--bone);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 110px);
}

.dark .split-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.split-copy .red-button {
  align-self: flex-start;
  margin-top: 34px;
}

.split-image {
  min-height: 420px;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
  padding: clamp(70px, 10vw, 126px) clamp(24px, 8vw, 118px);
  background: var(--white);
}

.experience-copy {
  max-width: 520px;
}

.experience-copy .red-button {
  margin-top: 32px;
}

.photo-collage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 290px 290px;
  gap: 18px;
}

.photo-collage img {
  border: 12px solid var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.photo-collage img:nth-child(1) {
  grid-row: 1 / 3;
}

.photo-collage img:nth-child(2) {
  transform: rotate(1deg);
}

.photo-collage img:nth-child(3) {
  transform: rotate(-1.5deg);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(24px, 8vw, 118px);
  color: var(--white);
  background: var(--ink);
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.78);
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: 600 16px var(--body);
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.signup-form .red-button {
  width: 100%;
  cursor: pointer;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 0;
  background: var(--paper);
}

.map-panel {
  min-height: 440px;
}

.hours-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 96px);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.16);
  font-size: 18px;
}

.hours-row:first-of-type {
  margin-top: 24px;
  border-top: 2px solid rgba(0, 0, 0, 0.16);
}

.hours-row span,
.hours-row strong {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.hours-panel .outline-button {
  align-self: flex-start;
  margin-top: 34px;
}

.vendor-email {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.vendor-email a {
  color: var(--red-dark);
  font-weight: 800;
}

.vendor-email span {
  color: var(--red-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(24px, 8vw, 118px);
  color: var(--white);
  background: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.footer-links a,
.footer-links span {
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

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

@media (max-width: 1100px) {
  .site-header {
    min-height: 78px;
    padding: 14px 26px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 110px 34px 44px;
    color: var(--white);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-header.nav-active .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 40px;
    line-height: 0.95;
  }

  .site-nav .outline-button {
    min-height: 54px;
    color: var(--ink);
    font-size: 20px;
  }

  .section-grid,
  .split-section,
  .experience-section,
  .newsletter-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 44px;
  }

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

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

  .menu-group-large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .split-section.light .split-copy {
    order: 2;
  }

  .split-section.light .split-image {
    order: 1;
  }

  .photo-collage {
    grid-template-rows: 240px 240px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 150px;
    min-width: 150px;
    height: 56px;
    gap: 8px;
    padding: 7px 10px;
  }

  .brand-mark {
    flex-basis: 18px;
    width: 18px;
    height: 29px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-sub {
    min-height: 15px;
    padding-inline: 6px;
    font-size: 9px;
  }

  .hero {
    align-items: flex-start;
    min-height: 100svh;
    padding: 150px 22px 90px;
    background-position: 54% center;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(39px, 11.4vw, 47px);
  }

  .hero-kicker {
    margin-right: auto;
    margin-left: auto;
    max-width: 320px;
  }

  .hero .red-button {
    margin-top: 32px;
  }

  .story-section,
  .menu-section,
  .experience-section,
  .newsletter-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .story-copy p:not(.eyebrow),
  .split-copy p:not(.eyebrow),
  .experience-copy p,
  .newsletter-section p {
    font-size: 17px;
  }

  .tilted-photo {
    height: 380px;
    border-width: 9px;
    transform: rotate(0.8deg);
  }

  .feature-strip,
  .menu-board {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .menu-heading h2 {
    font-size: clamp(58px, 19vw, 82px);
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-row strong {
    white-space: normal;
  }

  .split-copy,
  .hours-panel {
    padding: 54px 22px;
  }

  .split-section {
    min-height: 0;
  }

  .split-image,
  .map-panel {
    min-height: 330px;
  }

  .photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
    gap: 14px;
  }

  .photo-collage img:nth-child(1) {
    grid-row: auto;
  }

  .hours-row {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    font-size: 34px;
  }
}
