@font-face {
  font-family: "Lucidity Condensed";
  src: url("../fonts/lucidity-condensed.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../fonts/telegraf-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../fonts/telegraf-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../fonts/telegraf-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --gold: #dea723;
  --bright-gold: #fcc242;
  --ink: #0c0b09;
  --charcoal: #1a1814;
  --cream: #fff8e7;
  --muted: #806521;
  --max-width: 1218px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  background: var(--ink);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.2rem 0.8rem;
  color: var(--gold);
  border: 1px solid rgb(222 167 35 / 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav .nav-primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(650px, 74vw, 768px);
  background: var(--gold);
}

.hero__inner {
  position: relative;
  width: 100%;
  min-height: clamp(650px, 74vw, 768px);
  margin: 0 auto;
  padding: clamp(92px, 8vw, 128px) clamp(22px, 5vw, 64px) 44px clamp(26px, 9.6vw, 162px);
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 0.1em;
  font-family: "Lucidity Condensed", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Lucidity Condensed", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(7.2rem, 16.6vw, 14.2rem);
  line-height: 0.78;
}

h2 {
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 0.82;
}

.hero__logo {
  position: absolute;
  z-index: 3;
  top: clamp(-24px, -1.2vw, -10px);
  left: 52%;
  width: clamp(610px, 67vw, 1060px);
  margin: 0;
  transform: translateX(-50%) scaleY(1.12);
  transform-origin: top center;
}

.hero__logo img {
  width: 100%;
  filter: drop-shadow(0 4px 2px rgb(12 11 9 / 0.22));
}

.hero__logo picture,
.hex-photo picture,
.contact-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__truck-silhouette {
  position: absolute;
  z-index: 2;
  right: clamp(-96px, -5.2vw, -50px);
  bottom: 34px;
  width: clamp(300px, 23.5vw, 392px);
  margin: 0;
  animation: truck-drive-in 1.25s cubic-bezier(0.17, 0.84, 0.28, 1) 0.25s both;
  will-change: transform;
}

.hero__truck-silhouette img {
  width: 100%;
}

@keyframes truck-drive-in {
  0% {
    transform: translateX(145vw);
  }

  78% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.hero__actions {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 6vw, 82px);
  bottom: clamp(34px, 5vw, 66px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0.2rem 2.1rem;
  color: var(--gold);
  background: var(--charcoal);
  border-radius: 8px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 500;
  text-decoration: none;
  transform: translateX(0) rotate(-8deg);
  animation: cta-slide-in 0.95s cubic-bezier(0.17, 0.84, 0.28, 1) 0.45s both;
  box-shadow: 0 12px 0 rgb(12 11 9 / 0.12);
  will-change: transform;
}

.hero__secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.2rem 1rem;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  background: rgb(252 194 66 / 0.62);
}

@keyframes cta-slide-in {
  0% {
    transform: translateX(-115vw) rotate(-8deg);
  }

  78% {
    transform: translateX(12px) rotate(-8deg);
  }

  100% {
    transform: translateX(0) rotate(-8deg);
  }
}

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

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

.section--gold {
  background: var(--gold);
}

.section__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
}

.menu-section .section__inner {
  padding-top: clamp(72px, 7vw, 96px);
  padding-bottom: clamp(78px, 8vw, 104px);
}

.menu-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em clamp(18px, 2.8vw, 34px);
  align-items: end;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto clamp(36px, 4.6vw, 62px);
  padding-bottom: clamp(14px, 2vw, 22px);
  border-bottom: 5px solid rgb(252 194 66 / 0.78);
}

.menu-heading .eyebrow {
  color: var(--gold);
  font-size: clamp(3.1rem, 5.5vw, 5.25rem);
  line-height: 0.78;
}

.menu-heading h2 {
  color: var(--gold);
  font-size: clamp(5.8rem, 11vw, 11.4rem);
  line-height: 0.7;
}

.menu-content {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(400px, 1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.hex-photo {
  overflow: hidden;
  width: min(100%, 590px);
  aspect-ratio: 1.18;
  justify-self: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  box-shadow: 0 0 0 1px rgb(252 194 66 / 0.08);
}

.hex-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-visual {
  display: grid;
  gap: clamp(1.4rem, 2.6vw, 2rem);
  justify-items: center;
  width: min(100%, 590px);
  justify-self: center;
}

.menu-copy {
  position: relative;
  align-self: start;
  width: min(100%, 560px);
  padding-left: clamp(20px, 2.4vw, 32px);
  border-left: 5px solid rgb(252 194 66 / 0.78);
}

.menu-kicker {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.25rem 0.8rem 0.22rem;
  color: var(--ink);
  background: var(--bright-gold);
  border-radius: 4px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.menu-copy p:not(.menu-kicker) {
  max-width: 540px;
  margin: 1.35rem 0 0;
  color: var(--bright-gold);
  font-size: clamp(1.2rem, 1.55vw, 1.48rem);
  line-height: 1.28;
}

.menu-copy p:not(.menu-kicker):first-of-type {
  margin-top: 0;
}

.menu-highlights {
  display: grid;
  gap: 0;
  width: min(100%, 520px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-highlights li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-top: 1px solid rgb(252 194 66 / 0.28);
}

.menu-highlights li:last-child {
  border-bottom: 1px solid rgb(252 194 66 / 0.28);
}

.menu-highlights strong {
  color: var(--bright-gold);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.menu-highlights span {
  color: #f4d17a;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.25;
}

.menu-action {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem clamp(1.2rem, 2vw, 1.8rem);
  align-items: center;
  margin-top: clamp(1.9rem, 3.2vw, 2.6rem);
  padding: clamp(1.1rem, 2vw, 1.35rem);
  background: rgb(252 194 66 / 0.08);
  border: 1px solid rgb(252 194 66 / 0.32);
  border-radius: 8px;
}

.menu-action .menu-prompt {
  flex: 1 1 250px;
  margin: 0;
  font-size: clamp(1.24rem, 1.65vw, 1.6rem);
  font-weight: 500;
}

.menu-download {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex: 0 0 auto;
  min-width: 224px;
  min-height: 78px;
  padding: 0.5rem 2rem;
  color: var(--ink);
  background: var(--bright-gold);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 0 rgb(222 167 35 / 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.menu-download:hover,
.menu-download:focus-visible {
  background: #ffd164;
  box-shadow: 0 10px 0 rgb(222 167 35 / 0.22);
  transform: translateY(-2px);
}

.menu-download:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 5px;
}

.menu-download--disabled {
  cursor: default;
}

.menu-download--disabled:hover {
  background: var(--bright-gold);
  box-shadow: 0 8px 0 rgb(222 167 35 / 0.18);
  transform: none;
}

.booking-section {
  background: var(--gold);
}

.booking-section .section__inner {
  width: min(100%, 960px);
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.booking-form {
  color: var(--ink);
}

.booking-form__head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.booking-form__head h2 {
  margin: 0;
  font-family: "Telegraf", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
}

.booking-form__head p,
.field > span,
.field-row label span {
  display: block;
  color: #3c351f;
  font-size: clamp(0.85rem, 1.3vw, 0.98rem);
}

.booking-form__head p {
  margin: 1.1rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.booking-form fieldset {
  margin: 0 0 clamp(1.35rem, 2.6vw, 2rem);
  padding: 0;
  border: 0;
}

.booking-form legend,
.field strong {
  display: block;
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.booking-form legend span,
.field strong span {
  color: #c1462c;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6vw, 28px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.35rem, 3vw, 2rem) clamp(16px, 2.6vw, 28px);
}

.field {
  display: block;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.field > span {
  margin: -0.35rem 0 0.75rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid #d5d6dc;
  border-radius: 2px;
  font: inherit;
  font-size: 1rem;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #b8bcc7;
  font-size: 0.95rem;
}

.booking-form textarea {
  min-height: 170px;
  resize: vertical;
}

.booking-form button {
  width: 100%;
  min-height: 54px;
  color: #fff;
  background: #d67a32;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-form button:hover,
.booking-form button:focus-visible {
  background: #b96228;
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.gallery-section .section__inner {
  padding-top: clamp(70px, 8vw, 104px);
  padding-bottom: clamp(78px, 9vw, 118px);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(18px, 2.4vw, 26px);
  border-bottom: 5px solid rgb(252 194 66 / 0.78);
}

.gallery-head .eyebrow {
  color: var(--gold);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.82;
}

.gallery-head h2 {
  color: var(--gold);
  font-size: clamp(5.4rem, 10vw, 10.6rem);
  line-height: 0.72;
}

.gallery-head p:last-child {
  max-width: 520px;
  margin: 0 0 0.2rem;
  color: var(--bright-gold);
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  line-height: 1.28;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(170px, 18vw, 260px);
  grid-auto-flow: dense;
  gap: clamp(12px, 1.8vw, 20px);
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
  border: 1px solid rgb(252 194 66 / 0.24);
  border-radius: 8px;
}

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

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-link:hover img,
.gallery-link:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.gallery-link:focus-visible {
  outline: 4px solid var(--bright-gold);
  outline-offset: 4px;
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgb(12 11 9 / 0.88);
}

.lightbox__figure {
  display: grid;
  place-items: center;
  width: 100%;
  max-height: 94vh;
  margin: 0;
}

.lightbox__image {
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  border: 4px solid var(--bright-gold);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.5);
}

.lightbox__button {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--bright-gold);
  border: 0;
  border-radius: 50%;
  font: inherit;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 5px 0 rgb(0 0 0 / 0.28);
}

.lightbox__button:hover,
.lightbox__button:focus-visible {
  background: #ffd164;
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}

.lightbox__close {
  top: -22px;
  right: -18px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: -24px;
}

.lightbox__next {
  right: -24px;
}

.contact-section {
  color: var(--ink);
  background: #b27c3b;
}

.contact-section .section__inner {
  padding-top: clamp(88px, 9vw, 124px);
  padding-bottom: clamp(86px, 9vw, 122px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(540px, 1.42fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-size: clamp(5rem, 8vw, 7.9rem);
  line-height: 0.78;
}

.contact-note {
  display: inline-block;
  margin: clamp(36px, 5vw, 56px) 0 28px;
  padding: 0.35rem 1rem;
  background: var(--bright-gold);
  border-radius: 4px;
  font-size: clamp(1rem, 2vw, 1.55rem);
  transform: rotate(-2deg);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 48px 108px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.contact-list a {
  border-radius: 4px;
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 160ms ease, text-decoration-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.contact-icon {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--bright-gold);
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

.facebook-link {
  display: inline-grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: #4267b2;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 0 var(--ink);
}

.contact-photo {
  overflow: hidden;
  width: min(100%, 820px);
  aspect-ratio: 1.35;
  margin: 0;
  border-radius: 50%;
  justify-self: end;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-list a:not(.facebook-link):hover {
  color: var(--bright-gold);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-decoration-color: var(--ink);
}

.facebook-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--ink);
}

.contact-list a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.facebook-link:focus-visible {
  outline-color: var(--bright-gold);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.17, 0.84, 0.28, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-copy[data-reveal],
.contact-photo[data-reveal] {
  transform: translateY(18px) scale(0.985);
}

.menu-copy[data-reveal].is-visible,
.contact-photo[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.gallery-item[data-reveal] {
  transform: translateY(20px) scale(0.975);
}

.gallery-item[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.gallery-item:nth-child(2) {
  transition-delay: 70ms;
}

.gallery-item:nth-child(3) {
  transition-delay: 140ms;
}

.gallery-item:nth-child(4) {
  transition-delay: 210ms;
}

.gallery-item:nth-child(5) {
  transition-delay: 280ms;
}

.gallery-item:nth-child(6) {
  transition-delay: 350ms;
}

@media (max-width: 820px) {
  .site-nav {
    gap: 6px;
  }

  .hero__inner {
    min-height: 560px;
    padding: 54px 20px 34px;
  }

  .hero__logo {
    top: 42px;
    left: 62%;
    width: 118vw;
    z-index: 1;
    opacity: 0.45;
    transform: translateX(-34%);
  }

  .hero__truck-silhouette {
    right: -122px;
    bottom: 38px;
    width: 220px;
  }

  .hero__copy,
  .hero__actions {
    z-index: 5;
  }

  .hero__copy {
    max-width: 360px;
  }

  .hero__actions {
    left: 20px;
    right: 22px;
    bottom: 42px;
    display: grid;
    gap: 10px;
  }

  .hero__cta,
  .hero__secondary {
    justify-content: center;
    text-align: center;
  }

  .menu-content,
  .gallery-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .menu-content {
    max-width: 620px;
  }

  .menu-content {
    gap: 34px;
    align-items: start;
  }

  .hex-photo {
    justify-self: center;
  }

  .menu-copy {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 5px solid rgb(252 194 66 / 0.78);
  }

  .menu-action {
    display: grid;
  }

  .menu-download {
    width: min(100%, 285px);
  }

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

  .field-row,
  .field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-photo {
    width: min(100%, 620px);
    justify-self: center;
    order: -1;
  }

  .contact-list li {
    grid-template-columns: 44px 88px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .site-nav {
    justify-content: stretch;
  }

  .site-nav a {
    flex: 1;
    min-height: 34px;
    padding-inline: 0.35rem;
    font-size: 0.7rem;
  }

  .hero__inner {
    min-height: 525px;
  }

  h1 {
    font-size: clamp(4.8rem, 25vw, 7rem);
  }

  h2 {
    font-size: clamp(4.5rem, 27vw, 6.6rem);
  }

  .hero__truck-silhouette {
    right: -132px;
    bottom: 64px;
    width: 218px;
  }

  .hero__logo {
    top: 58px;
    left: 66%;
    width: 132vw;
    opacity: 0.38;
    transform: translateX(-37%);
  }

  .hero__truck-silhouette {
    display: none;
  }

  .hero__cta {
    min-height: 48px;
    font-size: 1.1rem;
    padding-inline: 1rem;
  }

  .hero__secondary {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .menu-section .section__inner {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .menu-heading {
    margin-bottom: 32px;
    gap: 0.08em 16px;
  }

  .menu-heading .eyebrow {
    font-size: clamp(2.2rem, 12.5vw, 3.25rem);
  }

  .menu-heading h2 {
    font-size: clamp(4.7rem, 26vw, 6.25rem);
  }

  .hex-photo {
    width: min(100%, 390px);
  }

  .menu-copy p:not(.menu-kicker) {
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .menu-highlights li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .menu-action .menu-prompt {
    font-size: 1.18rem;
  }

  .menu-download {
    min-height: 68px;
    font-size: 1.2rem;
  }

  .gallery-section .section__inner {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .gallery-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .gallery-head .eyebrow {
    font-size: clamp(2.2rem, 12.5vw, 3.25rem);
  }

  .gallery-head h2 {
    font-size: clamp(4.7rem, 26vw, 6.25rem);
  }

  .gallery-head p:last-child {
    font-size: 1.05rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .lightbox {
    width: min(100vw - 28px, 720px);
  }

  .lightbox__image {
    max-height: 82vh;
    border-width: 3px;
  }

  .lightbox__button {
    width: 44px;
    font-size: 1.8rem;
  }

  .lightbox__close {
    top: -18px;
    right: -10px;
  }

  .lightbox__prev {
    left: 8px;
  }

  .lightbox__next {
    right: 8px;
  }

  .contact-list li {
    grid-template-columns: 40px 1fr;
  }

  .contact-list li a,
  .contact-list li .facebook-link {
    grid-column: 2;
  }
}

@media (max-width: 340px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible,
  .menu-copy[data-reveal],
  .menu-copy[data-reveal].is-visible,
  .contact-photo[data-reveal],
  .contact-photo[data-reveal].is-visible,
  .gallery-item[data-reveal],
  .gallery-item[data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__cta,
  .hero__truck-silhouette {
    animation: none;
  }

  .gallery-item {
    transition-delay: 0ms;
  }
}
