:root {
  --cream: #fff8ed;
  --cream-2: #f7ead7;
  --brown: #2d160b;
  --brown-2: #4c2b16;
  --pink: #e83d64;
  --red: #cf1e3d;
  --gold: #ffc22d;
  --ink: #21150f;
  --muted: #725a4b;
  --line: rgba(76, 43, 22, 0.16);
  --shadow: 0 18px 45px rgba(45, 22, 11, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  border-radius: var(--radius);
}

.announcement {
  color: #fff;
  background: linear-gradient(90deg, #d61d43, var(--pink));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  text-align: center;
}

.announcement p {
  margin: 0;
}

.announcement a {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 248, 237, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--brown);
  line-height: 1;
}

.site-header .brand {
  position: relative;
  z-index: 3;
  margin-bottom: -26px;
}

.site-header .brand img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 230px !important;
  max-height: 112px !important;
  object-fit: contain;
}

.brand span {
  font-family: Pacifico, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.brand small {
  margin-top: 3px;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  color: var(--brown);
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.primary-nav {
  position: fixed;
  inset: 114px 16px auto;
  display: none;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  padding: 12px 10px;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.primary-nav a:last-child {
  border-bottom: 0;
}

.primary-nav .is-active {
  color: var(--red);
}

.nav-pill {
  margin-top: 8px;
  color: #fff;
  text-align: center;
  background: var(--pink);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 570px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--brown);
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 24%;
}

.hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 10, 4, 0.94), rgba(24, 10, 4, 0.62) 42%, rgba(24, 10, 4, 0.2) 72%);
}

.hero__media {
  z-index: -2;
}

.hero__inner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: 52px 0;
}

.hero__copy {
  max-width: 560px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 38% 34%);
}

.hero h1 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(3rem, 13vw, 5.9rem);
  line-height: 0.84;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.15);
}

.hero h1 em,
.drops-intro em {
  display: block;
  color: #bd1741;
  font-family: Pacifico, Georgia, serif;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

.hero h1 em {
  color: #fff;
}

.hero__text {
  max-width: 430px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.btn--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.68rem;
}

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

.btn--pink {
  color: #000;
  background: var(--pink);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.drop-badge {
  display: none;
}

.section-pad {
  padding: 28px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading--compact {
  margin-bottom: 22px;
}

.section-kicker {
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.1;
}

.section-kicker--light {
  color: #fff;
}

.menu-grid,
.why-grid,
.product-grid,
.location-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.menu-card,
.product-card,
.location-card,
.review-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(45, 22, 11, 0.08);
}

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

.menu-card--blast img,
.menu-card--cheesecake img,
.menu-grid .menu-card:nth-child(2) img,
.menu-grid .menu-card:nth-child(3) img {
  aspect-ratio: 1.18;
  object-fit: contain;
  object-position: center bottom;
  background: #fff;
  padding: 0;
  transform: scale(1.16);
  transform-origin: center bottom;
}

.menu-grid .menu-card:nth-child(1) img {
  object-fit: contain;
  object-position: center bottom;
  background: #fff;
  padding: 0;
  transform: scale(1.08);
  transform-origin: center bottom;
}

.menu-card--blast img,
.menu-grid .menu-card:nth-child(2) img {
  transform: scale(1.1);
}

.menu-card--cheesecake img,
.menu-grid .menu-card:nth-child(3) img {
  transform: scale(1.08);
}

.menu-card__body {
  position: relative;
  padding: 28px 12px 16px;
  text-align: center;
}

.menu-card__icon {
  position: absolute;
  top: -22px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  background: var(--brown);
  border-radius: 50%;
  transform: translateX(-50%);
}

.menu-card h3,
.product-card h3,
.location-card h3,
.why-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 16px;
  color: #000;
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why-section,
.locations-section {
  background: #fffaf3;
}

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

.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-items: start;
}

.why-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 900;
  background: #f7e8dc;
  border-radius: 50%;
}

.why-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.drops-layout {
  display: grid;
  gap: 24px;
}

.drops-intro {
  text-align: center;
}

.drops-intro h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.drops-intro p {
  color: var(--muted);
  font-weight: 800;
}

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

.product-card {
  position: relative;
  text-align: center;
}

.product-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  padding: 7px 16px;
  color: #000;
  background: var(--pink);
  border-radius: 0 0 8px 8px;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

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

.product-card__body {
  padding: 16px;
}

.product-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.location-card {
  display: grid;
}

.location-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.location-card__body {
  padding: 18px;
}

.location-card p {
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.location-card .hours {
  color: var(--ink);
}

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

.review-card {
  padding: 18px;
}

.stars {
  color: #f3aa18;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 10px 0;
  font-weight: 700;
}

.review-card cite {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  text-align: right;
}

.reviews-action {
  margin-top: 18px;
  text-align: center;
}

.sms-section {
  color: #fff;
  background: linear-gradient(110deg, #d91f45, #f04d74);
  overflow: hidden;
}

.sms-layout {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
}

.sms-layout > img {
  display: none;
}

.sms-copy h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.sms-copy p {
  margin: 8px 0 0;
  font-weight: 700;
}

.sms-form {
  display: grid;
  gap: 10px;
}

.sms-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
}

.sms-form small {
  text-align: center;
  font-style: italic;
}

.site-footer {
  color: #fff3d8;
  background: radial-gradient(circle at 20% 0, #5b2d11, var(--brown) 42%, #1b0b04 100%);
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding: 34px 0 24px;
}

.brand--footer {
  color: #fff;
}

.brand--footer img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 92px;
  object-fit: contain;
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: #f7debf;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer nav a {
  display: block;
  margin: 4px 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.footer-join {
  color: var(--pink) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--brown);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  z-index: -2;
  background: url("../img/hero-strawberry-pretzel.jpg") center / cover;
}

.page-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 10, 4, 0.92), rgba(24, 10, 4, 0.56));
}

.page-hero--menu::before {
  background-image: url("../img/menu-ice-cream.jpg");
}

.page-hero--pie::before {
  background-image: url("../img/menu-pies.jpg");
}

.page-hero--blast::before {
  background-image: url("../img/menu-blasts.jpg");
}

.page-hero__inner {
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: 64px 0 54px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 1.12rem;
  font-weight: 800;
}

.category-grid {
  display: grid;
  gap: 22px;
}

.category-feature,
.product-detail,
.split-panel {
  display: grid;
  gap: 22px;
  align-items: center;
}

.category-feature,
.product-detail,
.info-panel,
.contact-card,
.faq-list article,
.legal-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(45, 22, 11, 0.08);
}

.category-feature,
.product-detail {
  overflow: hidden;
}

.category-feature img,
.product-detail img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
}

.category-feature img {
  min-height: 0;
  height: 220px;
  padding: 16px;
  box-sizing: border-box;
  object-fit: contain;
}

.category-feature > div,
.product-detail > div,
.info-panel,
.contact-card,
.legal-copy {
  padding: 24px;
}

.category-feature h2,
.product-detail h2,
.split-panel h2,
.info-panel h2,
.contact-card h2,
.faq-list h2,
.legal-copy h2,
.product-grid--page h2,
.location-grid--page h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.category-feature p,
.product-detail p,
.split-panel p,
.info-panel p,
.legal-copy p {
  color: var(--muted);
  font-weight: 700;
}

.product-list {
  display: grid;
  gap: 22px;
}

.product-ribbon-static {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 14px;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-panel {
  grid-template-columns: 1fr;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 900;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--brown);
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

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

.contact-card label {
  display: grid;
  gap: 6px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-transform: none;
}

.contact-card input:focus-visible,
.contact-card textarea:focus-visible,
.sms-form input:focus-visible,
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
}

.form-status--error {
  padding: 12px 14px;
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 28px;
}

.legal-copy p {
  line-height: 1.75;
}

.guide-grid {
  display: grid;
  gap: 20px;
}

.guide-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-card h2 {
  margin: 6px 0 12px;
}

.guide-card p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.65;
}

.guide-card a,
.article-sidebar a {
  color: var(--pink);
  font-weight: 900;
}

.article-layout {
  display: grid;
  gap: 30px;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin: 34px 0 10px;
  color: var(--brown);
}

.article-body p,
.article-body li {
  line-height: 1.78;
}

.article-lead {
  color: var(--brown);
  font-size: 1.18rem;
  font-weight: 800;
}

.article-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
}

.article-sidebar h2 {
  margin: 0 0 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 22px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.product-grid--page,
.review-grid--page {
  grid-template-columns: 1fr;
}

.sms-section--page {
  min-height: 260px;
}

@media (min-width: 640px) {
  .announcement__inner {
    justify-content: space-between;
  }

  .announcement a {
    display: inline;
  }

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

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

  .location-card {
    grid-template-columns: 1.15fr 1fr;
  }

  .location-card img {
    height: 100%;
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

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

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

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 0;
    font-size: 0.68rem;
    border-bottom: 0;
  }

  .primary-nav .is-active {
    position: relative;
    color: var(--ink);
  }

  .primary-nav .is-active::after {
    position: absolute;
    right: 0;
    bottom: -19px;
    left: 0;
    height: 2px;
    background: var(--pink);
    content: "";
  }

  .nav-pill {
    margin: 0;
    padding: 12px 14px !important;
    color: #fff;
  }

  .hero {
    min-height: 520px;
  }

  .drop-badge {
    position: absolute;
    right: 24px;
    bottom: 54px;
    display: grid;
    place-items: center;
    width: 220px;
    height: 220px;
    padding: 22px;
    color: #fff;
    text-align: center;
    background: var(--pink);
    border: 8px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transform: rotate(-8deg);
  }

  .drop-badge span,
  .drop-badge b,
  .drop-badge small {
    font-weight: 900;
    text-transform: uppercase;
  }

  .drop-badge strong {
    font-family: Pacifico, Georgia, serif;
    font-size: 1.7rem;
    line-height: 1;
  }

  .section-pad {
    padding: 34px 0;
  }

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

  .why-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
  }

  .why-item {
    display: block;
    text-align: center;
  }

  .why-item span {
    margin: 0 auto 12px;
    width: 40px;
    height: 40px;
  }

  .why-item p {
    max-width: 170px;
    margin: 8px auto 0;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .drops-layout {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

  .drops-intro {
    text-align: left;
  }

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

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

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

  .sms-layout {
    grid-template-columns: 280px 1fr 390px;
    padding: 0;
  }

  .sms-layout > img {
    display: block;
    align-self: end;
    max-height: 150px;
    object-fit: cover;
  }

  .sms-form {
    grid-template-columns: 1fr 150px;
  }

  .sms-form small {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.8fr repeat(4, 1fr);
  }

  .page-hero__inner {
    min-height: 390px;
  }

  .category-feature,
  .product-detail {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .category-feature img {
    height: 280px;
  }

  .category-feature:nth-child(even),
  .product-detail:nth-child(even) {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .category-feature:nth-child(even) img,
  .product-detail:nth-child(even) img {
    order: 2;
  }

  .split-panel {
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: start;
  }

  .product-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
}

@media (max-width: 440px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
  }

  .site-header .brand {
    margin-bottom: -14px;
  }

  .site-header .brand img {
    max-width: 132px !important;
    max-height: 70px !important;
  }

  .hero {
    min-height: 530px;
  }

  .hero__media img {
    object-position: 67% top;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(24, 10, 4, 0.1), rgba(24, 10, 4, 0.84) 36%, rgba(24, 10, 4, 0.96));
  }

  .hero__inner {
    align-items: end;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__text {
    font-size: 0.9rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .menu-card h3 {
    font-size: 0.82rem;
  }

  .menu-card__body {
    padding-inline: 8px;
  }

  .section-kicker {
    font-size: 1.05rem;
  }
}

@media (max-width: 899px) {
  .location-card p a,
  .site-footer nav a,
  .footer-join {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .site-footer nav a {
    width: 100%;
    margin: 0;
  }
}
