:root {
  --ink: #171717;
  --muted: #62615d;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #ded8cc;
  --red: #d83b35;
  --green: #158463;
  --blue: #1769aa;
  --gold: #e8aa21;
  --plum: #6e3a74;
  --shadow: 0 18px 48px rgba(23, 23, 23, 0.13);
  --display-font: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.32rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background:
    linear-gradient(135deg, var(--red), var(--red) 32%, var(--green) 32%, var(--green) 63%, var(--blue) 63%),
    var(--ink);
  border-radius: 8px;
  font-family: var(--display-font);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-family: var(--display-font);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top-nav a {
  color: var(--ink);
  text-decoration: none;
}

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

.hero-band {
  position: relative;
  min-height: min(620px, calc(100vh - 92px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #222;
}

.hero-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.44) 47%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.02) 48%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  width: min(820px, 100%);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 60px);
  color: #fffdf8;
}

.eyebrow,
.mini-label {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffd368;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 18px 0 28px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: #ffd368;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.22);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.secondary-link:hover {
  background: var(--red);
  border-color: var(--red);
}

.match-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.match-strip article {
  min-height: 148px;
  padding: clamp(18px, 4vw, 34px);
  background: var(--surface);
}

.match-strip strong,
.match-strip span:last-child {
  display: block;
}

.match-strip strong {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.match-strip span:last-child {
  color: var(--muted);
}

.scoop-board,
.flight-band,
.treat-band,
.loyalty-band,
.order-band,
.event-band,
.inquiry-band,
.contact-band,
.story-band {
  padding: clamp(34px, 6vw, 76px) clamp(16px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.result-count {
  margin: 0;
  color: var(--muted);
  font-weight: 780;
  white-space: nowrap;
}

.controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.3fr) minmax(240px, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  align-items: end;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-strip > div {
  display: grid;
  gap: 10px;
  min-height: 70px;
  padding: 14px 16px;
  background: var(--surface);
}

.price-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.price-item {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  padding: 8px 6px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.price-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.price-strip strong {
  font-size: 0.92rem;
  line-height: 1.05;
}

.price-strip .price-item span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
}

.search-wrap,
.control-group {
  display: grid;
  gap: 8px;
}

.search-wrap span,
.control-group > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

input[type="search"] {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input[type="search"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.18);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.segmented button,
.flight-topline button,
.flavor-card button {
  min-height: 36px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 820;
}

.segmented button {
  padding: 0 11px;
  color: var(--ink);
  background: var(--surface);
}

.segmented.compact button {
  padding-inline: 10px;
}

.segmented button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flavor-card {
  position: relative;
  display: grid;
  min-height: 508px;
  padding: 0 16px 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 7px solid var(--accent, var(--red));
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.08);
}

.flavor-card.is-semifinal {
  border-color: color-mix(in srgb, var(--accent, var(--red)) 48%, var(--line));
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.14);
}

.flavor-card::before {
  position: absolute;
  top: 160px;
  right: 14px;
  content: attr(data-group);
  color: rgba(23, 23, 23, 0.08);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
}

.flavor-image {
  position: relative;
  z-index: 1;
  width: calc(100% + 32px);
  aspect-ratio: 4 / 3;
  margin: 0 -16px 14px;
  object-fit: cover;
  background: rgba(23, 23, 23, 0.06);
  border-bottom: 1px solid var(--line);
}

.card-top,
.country-line,
.tag-row {
  display: flex;
  align-items: center;
}

.card-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 10px;
}

.flag {
  font-size: 2rem;
  line-height: 1;
}

.region-tag,
.group-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.region-tag {
  color: #fff;
  background: var(--accent, var(--red));
}

.group-tag {
  color: var(--ink);
  background: rgba(23, 23, 23, 0.08);
}

.country-line {
  position: relative;
  z-index: 1;
  gap: 8px;
  margin-top: 10px;
}

.country-line h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.08;
}

.flavor-name {
  position: relative;
  z-index: 1;
  margin: 14px 0 8px;
  font-size: 1.05rem;
  font-weight: 870;
}

.flavor-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.semifinal-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin-top: 10px;
  padding: 0 9px;
  color: #fff;
  background: var(--accent, var(--red));
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-list div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 6px;
  background: #fff;
  text-align: center;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.price-list dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-list dd {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.tag-row {
  align-self: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.flavor-card button {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.flavor-card button:hover,
.flavor-card button[aria-pressed="true"] {
  color: white;
  background: var(--accent, var(--ink));
  border-color: var(--accent, var(--ink));
}

.flight-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 60px);
  background:
    linear-gradient(90deg, rgba(216, 59, 53, 0.08), rgba(21, 132, 99, 0.08)),
    #fff;
  border-block: 1px solid var(--line);
}

.flight-band p {
  max-width: 560px;
  color: var(--muted);
}

.flight-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flight-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.flight-topline button {
  padding: 0 12px;
  background: #fff;
}

.flight-list {
  display: grid;
  gap: 1px;
  min-height: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.flight-list li,
.empty-flight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  background: #fff;
}

.empty-flight {
  grid-template-columns: auto 1fr;
}

.flight-list strong,
.flight-list span {
  display: block;
}

.flight-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.flight-list button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 820;
}

.flight-list button:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.treat-band {
  background: #fff;
  border-top: 1px solid var(--line);
}

.treat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.treat-card {
  display: grid;
  gap: 10px;
  min-height: 254px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.08);
}

.treat-card h3,
.treat-card p {
  margin: 0;
}

.treat-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.treat-card p:last-child {
  color: var(--muted);
}

.shake-card {
  border-top-color: var(--blue);
}

.loyalty-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(21, 132, 99, 0.1), rgba(216, 59, 53, 0.08)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.loyalty-band p {
  max-width: 570px;
  color: var(--muted);
}

.loyalty-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 7px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.loyalty-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.loyalty-topline strong {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.punch-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.punch-list li {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.75), transparent 34%),
    color-mix(in srgb, var(--green) 18%, #fff);
  border: 2px dashed color-mix(in srgb, var(--green) 75%, var(--ink));
  border-radius: 999px;
}

.punch-list span {
  display: grid;
  width: 72%;
  height: 72%;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  font-weight: 950;
}

.reward-punch {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.8), transparent 34%),
    color-mix(in srgb, var(--gold) 35%, #fff) !important;
  border-color: var(--red) !important;
}

.reward-punch span {
  color: #fff;
  background: var(--red);
  font-size: clamp(0.78rem, 1.3vw, 1rem);
  text-transform: uppercase;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.perk-grid article {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #fff;
}

.perk-grid strong,
.perk-grid span {
  display: block;
}

.perk-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.loyalty-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.loyalty-form-heading {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
}

.loyalty-form-heading strong {
  font-size: 1.05rem;
}

.loyalty-form label {
  display: grid;
  gap: 6px;
}

.loyalty-form label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loyalty-form input {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.loyalty-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.18);
}

.loyalty-form button {
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

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

.order-band,
.event-band {
  background: var(--paper);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.package-card {
  display: grid;
  gap: 12px;
  min-height: 292px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 7px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.08);
}

.package-card h3,
.package-card p {
  margin: 0;
}

.package-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.package-price {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.featured-package {
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
}

.catering-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(560px, calc(100vh - 88px));
  overflow: hidden;
  isolation: isolate;
  background: #222;
}

.catering-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.04) 58%);
}

.catering-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-hero > div {
  width: min(900px, 100%);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 60px);
  color: #fffdf8;
}

.catering-hero .eyebrow {
  color: #ffd368;
}

.catering-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.inquiry-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(24px, 5vw, 60px);
  background:
    linear-gradient(90deg, rgba(23, 105, 170, 0.08), rgba(232, 170, 33, 0.12)),
    #fff;
  border-top: 1px solid var(--line);
}

.inquiry-band p {
  max-width: 560px;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.18);
}

.full-field,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form button {
  min-height: 46px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(320px, 1.45fr);
  gap: clamp(24px, 5vw, 60px);
  background: var(--ink);
  color: #fffdf8;
}

.contact-band .eyebrow {
  color: #ffd368;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.contact-grid article {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid a,
.contact-grid address {
  color: #fffdf8;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-style: normal;
  font-weight: 820;
  text-decoration: none;
}

.contact-grid a:hover {
  color: #ffd368;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(24px, 5vw, 60px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-grid p {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: var(--surface);
}

@media (max-width: 1120px) {
  .flavor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-grid,
  .event-packages,
  .treat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-band {
    min-height: 620px;
  }

  .match-strip,
  .flight-band,
  .loyalty-band,
  .inquiry-band,
  .contact-band,
  .story-band,
  .story-grid,
  .perk-grid,
  .loyalty-form,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-count {
    white-space: normal;
  }

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

  .package-grid,
  .event-packages,
  .treat-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    padding-top: 96px;
  }

  .catering-hero {
    min-height: 620px;
  }

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

  .flavor-card {
    min-height: 250px;
  }
}
