:root {
  --orange: #f36f00;
  --orange-dark: #b84f00;
  --orange-soft: #fff0df;
  --yellow: #ffd84d;
  --yellow-soft: #fff7c8;
  --cocoa: #7a3f17;
  --cocoa-soft: #f7e6d7;
  --cream: #fffaf4;
  --white: #ffffff;
  --black: #111111;
  --ink: #231f1c;
  --muted: #6c625a;
  --line: #eadfd5;
  --shadow: 0 20px 54px rgba(35, 31, 28, 0.12);
  --font-display: "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 62px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  padding-top: 62px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.has-popup,
body.has-location-modal {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 8vw, 4.8rem);
}

h2 {
  font-size: clamp(2.1rem, 7.5vw, 4.3rem);
}

h3 {
  font-size: 1.24rem;
  line-height: 1.06;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 0.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(234, 223, 213, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand small {
  margin-top: 0.06rem;
  color: var(--orange-dark);
  font-size: clamp(0.62rem, 1vw, 0.74rem);
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 2px solid var(--black);
  border-radius: 0.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.46rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-grid;
  place-content: center;
  gap: 0.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
}

.nav-links {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  display: none;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.nav-links.is-open {
  display: grid;
  gap: 0.25rem;
}

.nav-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--orange-soft);
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(255, 250, 238, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.page-transition-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page-transition-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--yellow);
  padding: 0.75rem 1rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 950;
}

.page-transition-mark {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: var(--orange);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--yellow);
  font-size: 0.82rem;
}

@media (min-width: 901px) {
  .page-transition-overlay {
    display: none;
  }
}

.nav-cta {
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--white) !important;
}

.nav-cta-dark {
  display: none;
  border-color: var(--black);
  background: var(--black);
}

.section-pad {
  padding: 4rem max(1rem, calc((100vw - 1220px) / 2));
  position: relative;
}

.eyebrow {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 0.5rem;
  padding: 0.86rem 1.12rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 5px 5px 0 rgba(243, 111, 0, 0.25);
}

.button-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.button-ghost {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 5px 5px 0 rgba(243, 111, 0, 0.24);
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-copy {
  display: grid;
  gap: 1.35rem;
  align-content: center;
}

.section-copy p {
  max-width: 68ch;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3.4rem;
  background:
    radial-gradient(circle at 9% 10%, rgba(255, 216, 77, 0.58), transparent 16rem),
    radial-gradient(circle at 92% 22%, rgba(243, 111, 0, 0.18), transparent 26rem),
    linear-gradient(135deg, #fffaf4, var(--white) 44%, var(--orange-soft));
  position: relative;
  overflow: hidden;
}

.hero h1 {
  color: var(--black);
  text-wrap: balance;
}

.hero h1 span {
  color: var(--orange);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -4rem 1rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0.1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 7.5rem;
  right: 6%;
  width: 8rem;
  height: 8rem;
  border: 14px solid rgba(243, 111, 0, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(255, 216, 77, 0.14);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 650px;
}

.hero-lede {
  max-width: 48ch;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  font-weight: 950;
  line-height: 1.28;
}

.hero-body {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  font-weight: 700;
}

.hero-value {
  width: fit-content;
  max-width: 100%;
  border-left: 6px solid var(--orange);
  background: rgba(255, 216, 77, 0.28);
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
  line-height: 1.05;
  padding: 0.55rem 0.85rem;
}

.hero-video-card,
.explain-card,
.catering-media,
.types article,
.location-grid article,
.card-grid article,
.value-grid article {
  border: 1px solid rgba(243, 111, 0, 0.18);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-video-card {
  position: relative;
  overflow: hidden;
  align-self: center;
  border: 1px solid rgba(243, 111, 0, 0.2);
  border-radius: 1rem;
  box-shadow: 0 22px 58px rgba(35, 31, 28, 0.14), 8px 8px 0 rgba(255, 216, 77, 0.65);
}

.what-hero {
  gap: clamp(1.4rem, 3vw, 2.25rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.what-hero .hero-copy {
  max-width: 560px;
}

.what-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.7vw, 5.45rem);
  line-height: 0.94;
}

.what-hero .hero-lede {
  max-width: 41ch;
}

.what-hero .hero-body {
  max-width: 48ch;
}

.what-hero .hero-value {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-video-card video,
.explain-card video,
.catering-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--black);
  object-fit: cover;
}

.hero-video-card video {
  aspect-ratio: 4 / 3;
}

.hero-video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--yellow);
  padding: 0.42rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.video-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
}

.video-caption p {
  color: var(--ink);
  font-size: clamp(0.96rem, 2vw, 1.04rem);
  line-height: 1.15;
  font-weight: 950;
}

.play-dot {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-42%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.benefits-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding-top: 2.6rem;
  padding-bottom: 2.8rem;
  border-top: 1px solid rgba(243, 111, 0, 0.14);
  border-bottom: 1px solid rgba(243, 111, 0, 0.14);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 216, 77, 0.9), transparent 13rem),
    radial-gradient(circle at 94% 18%, rgba(243, 111, 0, 0.22), transparent 18rem),
    linear-gradient(135deg, #fff3bd, #fffaf4 48%, #fff0df);
  overflow: hidden;
}

.benefits-strip::before,
.benefits-strip::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.benefits-strip::before {
  right: -4rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 0.9rem, rgba(243, 111, 0, 0.18) 0.96rem 1.12rem);
}

.benefits-strip::after {
  left: -3rem;
  bottom: -3rem;
  width: 13rem;
  height: 8rem;
  border-radius: 65% 35% 55% 45%;
  background: var(--orange);
  opacity: 0.14;
  transform: rotate(-12deg);
}

.benefits-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 680px;
  margin-bottom: 0.35rem;
}

.affordable-banner {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 760px);
  border: 4px solid var(--orange);
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.72), transparent 6rem),
    linear-gradient(135deg, var(--yellow), #fff7c8 46%, var(--white));
  color: var(--black);
  box-shadow: 8px 8px 0 var(--black), 0 16px 32px rgba(243, 111, 0, 0.18);
  padding: 0.82rem 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-shadow: none;
}

.benefits-heading h2 {
  font-size: clamp(2.1rem, 6vw, 4rem);
}

.benefits-strip article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  align-items: start;
  min-height: 100%;
  border: 3px solid rgba(243, 111, 0, 0.18);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.1rem;
  box-shadow: 0 16px 34px rgba(35, 31, 28, 0.1), 6px 6px 0 rgba(255, 216, 77, 0.55);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.benefits-strip article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(35, 31, 28, 0.15), 7px 7px 0 var(--yellow);
}

.benefit-icon {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 5px 5px 0 var(--yellow);
}

.benefits-strip article:nth-child(2n) .benefit-icon {
  background: var(--orange);
}

.benefits-strip article:nth-child(3n) .benefit-icon {
  background: var(--black);
  color: var(--white);
}

.benefits-strip h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.benefits-strip p {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.what-is,
.story,
.club {
  display: grid;
  gap: 2rem;
}

.what-is {
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 111, 0, 0.12), transparent 18rem),
    var(--white);
}

.explain-card {
  overflow: hidden;
  position: relative;
  border: 3px solid var(--orange);
  border-radius: 1rem;
  box-shadow: var(--shadow), 8px 8px 0 rgba(255, 216, 77, 0.75);
}

.video-play-mark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 54px;
  height: 54px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.18);
}

.video-play-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-40%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
}

.explain-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 950;
}

.explain-steps span,
.explain-steps strong {
  border-radius: 999px;
  background: var(--orange-soft);
  padding: 0.5rem 0.7rem;
  font-family: var(--font-display);
}

.explain-steps strong {
  background: var(--orange);
  color: var(--white);
}

.explain-steps span:nth-child(3) {
  background: var(--yellow-soft);
}

.types {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  background:
    linear-gradient(180deg, var(--cream), var(--yellow-soft));
  position: relative;
  overflow: hidden;
}

.types::before,
.types::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.types::before {
  top: 1.25rem;
  right: 5%;
  width: 12rem;
  height: 12rem;
  border: 16px solid rgba(243, 111, 0, 0.15);
  border-radius: 50%;
}

.types::after {
  bottom: 1.5rem;
  left: 4%;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 0.9rem, rgba(243, 111, 0, 0.16) 0.95rem 1.12rem);
}

.types article {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  position: relative;
  z-index: 1;
}

.types img,
.type-visual {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 34vw, 420px);
  aspect-ratio: 4 / 3;
}

.types img {
  object-fit: cover;
}

.type-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 216, 77, 0.5), transparent 11rem),
    radial-gradient(circle at 90% 85%, rgba(243, 111, 0, 0.16), transparent 13rem),
    linear-gradient(180deg, var(--white), #fff3d9);
}

.type-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 216, 77, 0.45);
  pointer-events: none;
}

.type-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(0.65rem, 2vw, 1.25rem);
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(1.12);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.type-visual img.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.24);
}

.type-name {
  position: absolute;
  left: 50%;
  bottom: 3.95rem;
  z-index: 3;
  display: block;
  width: fit-content;
  max-width: min(86%, 26rem);
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--yellow);
  padding: 0.55rem 0.82rem;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 2.2vw, 1.2rem);
  line-height: 1.05;
  text-align: center;
  transform: translateX(-50%);
}

.type-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0 var(--orange);
  padding: 0.45rem 0.78rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.type-next {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  width: fit-content;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--yellow);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  cursor: pointer;
}

.type-next:hover {
  transform: translate(-50%, -1px);
}

.type-dots {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.38rem;
}

.type-dots button {
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 0;
  box-shadow: 2px 2px 0 rgba(243, 111, 0, 0.8);
}

.type-dots button.is-active {
  background: var(--orange);
}

.types article > div {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
}

.types h2,
.catering-feature h2,
.value h2,
.more h2,
.locations h2,
.story h2,
.giveback h2,
.club h2,
.cinnamon-rolls h2 {
  text-wrap: balance;
}

.types article:first-child {
  border-color: rgba(243, 111, 0, 0.28);
}

.types article:first-child .eyebrow {
  color: var(--orange-dark);
}

.types article:last-child {
  border-color: rgba(17, 17, 17, 0.16);
}

.types article:last-child .eyebrow {
  color: var(--orange-dark);
}

.catering-feature {
  display: grid;
  gap: 1.5rem;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 216, 77, 0.34), transparent 22rem),
    linear-gradient(135deg, var(--orange), var(--black));
  overflow: hidden;
}

.catering-feature::before {
  content: "Boxed & Ready";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  pointer-events: none;
}

.catering-feature h2,
.catering-feature p {
  color: var(--white);
}

.catering-feature .eyebrow {
  color: var(--yellow);
}

.catering-feature .button-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.catering-feature .button-secondary {
  background: var(--white);
  border-color: var(--white);
}

.catering-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  overflow: hidden;
  padding: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 12px 12px 0 rgba(255, 216, 77, 0.8);
}

.catering-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.5rem;
  object-fit: contain;
  background: var(--orange-soft);
}

.benefit-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.7rem 0.8rem 0.7rem 2.25rem;
  color: var(--ink);
  font-weight: 850;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--orange);
}

.benefit-list li:nth-child(3n + 2)::before {
  background: var(--black);
}

.benefit-list li:nth-child(3n)::before {
  background: var(--yellow);
}

.value {
  display: grid;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 216, 77, 0.24), transparent 20rem),
    radial-gradient(circle at 95% 12%, rgba(243, 111, 0, 0.22), transparent 22rem),
    #17100c;
}

.value h2,
.value p {
  color: var(--white);
}

.value .eyebrow {
  color: var(--yellow);
}

.value-grid,
.card-grid,
.location-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.value-grid article,
.card-grid article,
.location-grid article {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.value-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, #241913, #17100c);
  box-shadow: none;
}

.value-grid article:nth-child(2),
.value-grid article:nth-child(4) {
  border-color: rgba(255, 216, 77, 0.42);
}

.value-grid span {
  color: var(--yellow);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.value-grid strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.more {
  display: grid;
  gap: 1.5rem;
}

.card-grid article {
  background: linear-gradient(180deg, var(--white), var(--orange-soft));
  overflow: hidden;
  padding: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(35, 31, 28, 0.14);
}

.card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
}

.card-grid h3,
.card-grid p,
.card-grid a {
  margin-left: 1rem;
  margin-right: 1rem;
}

.card-grid h3 {
  margin-top: 0.25rem;
}

.card-grid a {
  margin-bottom: 1rem;
  color: var(--orange-dark);
  font-weight: 950;
  text-decoration: none;
}

.card-grid article:nth-child(2) {
  background: linear-gradient(180deg, var(--white), var(--yellow-soft));
  border-color: rgba(255, 216, 77, 0.54);
}

.card-grid article:nth-child(3) {
  background: linear-gradient(180deg, var(--white), var(--yellow-soft));
  border-color: rgba(255, 216, 77, 0.54);
}

.card-grid article:nth-child(4) {
  background: linear-gradient(180deg, var(--white), var(--orange-soft));
  border-color: rgba(243, 111, 0, 0.2);
}

.card-grid article:nth-child(5) {
  background: linear-gradient(180deg, var(--white), var(--cocoa-soft));
  border-color: rgba(122, 63, 23, 0.2);
}

.cinnamon-rolls {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 216, 77, 0.42), transparent 18rem),
    linear-gradient(180deg, var(--white), var(--orange-soft));
  position: relative;
  overflow: hidden;
}

.cinnamon-rolls::before {
  content: "Kolache Time!";
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  transform: rotate(-4deg);
  color: rgba(17, 17, 17, 0.08);
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7rem);
  pointer-events: none;
}

.cinnamon-rolls > * {
  position: relative;
}

.cinnamon-price {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  min-height: 72px;
  border: 4px solid var(--black);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.75), transparent 3.5rem),
    linear-gradient(135deg, var(--yellow) 0%, #fff3a1 42%, var(--orange) 100%);
  color: var(--black);
  box-shadow: 8px 8px 0 var(--black), 0 18px 36px rgba(243, 111, 0, 0.24);
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1;
  transform: rotate(-1deg);
}

.cinnamon-price span,
.cinnamon-price small {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 0.35rem 0.5rem;
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  text-transform: uppercase;
}

.cinnamon-price strong {
  color: var(--orange);
  font-size: clamp(2.35rem, 6vw, 4.2rem);
  letter-spacing: 0;
  text-shadow: 2px 2px 0 var(--white);
}

.cinnamon-price small {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.cinnamon-media {
  overflow: hidden;
  border: 1px solid rgba(243, 111, 0, 0.22);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow), 8px 8px 0 rgba(255, 216, 77, 0.65);
}

.cinnamon-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--black);
  object-fit: cover;
}

.cinnamon-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  background: var(--white);
}

.cinnamon-media p {
  padding: 1rem;
  color: var(--ink);
  font-weight: 950;
}

.locations {
  display: grid;
  gap: 1.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 216, 77, 0.32), transparent 18rem),
    var(--cream);
}

.location-grid article {
  box-shadow: none;
  border-top: 5px solid var(--orange);
}

.location-grid article:nth-child(2) {
  border-top-color: var(--black);
}

.location-grid article:nth-child(3) {
  border-top-color: var(--yellow);
}

.location-grid article:nth-child(4) {
  border-top-color: var(--yellow);
}

.location-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  padding: 0.34rem 0.62rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--orange);
}

.location-badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 111, 0, 0.18);
}

.location-hours-strip {
  display: grid;
  gap: 0.65rem;
  border: 3px solid var(--black);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 7% 20%, rgba(255, 216, 77, 0.78), transparent 7rem),
    linear-gradient(135deg, var(--orange), #ff8a00 55%, var(--black) 160%);
  color: var(--white);
  padding: 0.8rem;
  box-shadow: 8px 8px 0 var(--yellow), 0 18px 36px rgba(35, 31, 28, 0.14);
}

.location-hours-strip span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  padding: 0.55rem 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 950;
}

.story {
  align-items: center;
}

.story-visual-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.story-visual-row article {
  overflow: hidden;
  border: 1px solid rgba(243, 111, 0, 0.22);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-visual-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-visual-row span {
  display: block;
  padding: 0.7rem;
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
}

.giveback {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 77, 0.45), transparent 20rem),
    linear-gradient(135deg, var(--orange), var(--black));
  overflow: hidden;
}

.giveback .section-copy {
  max-width: 680px;
}

.giveback h2,
.giveback p {
  color: var(--white);
}

.giveback .eyebrow {
  color: var(--yellow);
}

.giveback .button-primary {
  width: fit-content;
  border-color: var(--white);
  background: var(--white);
  color: var(--orange-dark);
}

.giveback .button-secondary {
  width: fit-content;
  border-color: var(--yellow);
  background: transparent;
  color: var(--white);
}

.giveback-panel {
  display: grid;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.giveback-panel article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem 0.85rem;
  align-items: start;
  min-height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 216, 77, 0.18), transparent 5.5rem),
    rgba(255, 255, 255, 0.98);
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.giveback-panel article:not(.wide)::after {
  content: "";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  z-index: 2;
  display: none;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%);
  border: 3px solid var(--black);
  border-left: 0;
  border-bottom: 0;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.giveback-panel span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 0.8rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--yellow);
}

.giveback-icon {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 70px;
  height: 52px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 74% 24%, var(--yellow) 0 0.7rem, transparent 0.75rem),
    var(--orange-soft);
  position: relative;
  overflow: hidden;
}

.giveback-icon::before,
.giveback-icon::after {
  content: "";
  position: absolute;
}

.group-icon::before {
  left: 18px;
  top: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 24px 0 0 var(--black), 48px 0 0 var(--black);
}

.group-icon::after {
  left: 12px;
  bottom: 12px;
  width: 64px;
  height: 13px;
  border-radius: 999px 999px 8px 8px;
  background: var(--orange);
}

.share-icon::before {
  left: 17px;
  top: 15px;
  width: 52px;
  height: 30px;
  border: 5px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.share-icon::after {
  right: 14px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-top: 6px solid var(--orange);
  border-right: 6px solid var(--orange);
  transform: rotate(45deg);
}

.support-icon::before {
  left: 20px;
  top: 10px;
  width: 44px;
  height: 34px;
  border-radius: 999px 999px 12px 12px;
  background: var(--orange);
  box-shadow: inset 0 -10px 0 #ffad4b;
}

.support-icon::after {
  left: 29px;
  top: 18px;
  width: 26px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid var(--white);
  border-top-color: transparent;
}

.better-icon::before {
  left: 16px;
  top: 27px;
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: var(--black);
}

.better-icon::after {
  left: 24px;
  top: 14px;
  width: 39px;
  height: 25px;
  border-radius: 50% 50% 42% 42%;
  background: var(--orange);
  box-shadow: inset 0 -7px 0 #ffad4b;
}

.giveback-panel h3 {
  margin-top: 0.08rem;
  font-size: clamp(1.18rem, 2.2vw, 1.44rem);
  line-height: 1.02;
  text-wrap: balance;
}

.giveback-panel p {
  grid-column: 2 / -1;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.3;
}

.giveback-panel .wide {
  min-height: 0;
  grid-template-columns: auto 1fr auto;
  background:
    radial-gradient(circle at 96% 12%, rgba(255, 216, 77, 0.42), transparent 7rem),
    var(--white);
}

.giveback-panel .wide h3 {
  grid-column: 2;
  color: var(--orange-dark);
}

.giveback-panel .wide p {
  grid-column: 2;
}

.giveback-panel .wide .text-link {
  grid-column: 2 / -1;
  width: fit-content;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.98rem;
  white-space: nowrap;
}

.signup-form {
  display: grid;
  gap: 0.9rem;
  border: 2px solid rgba(243, 111, 0, 0.24);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.signup-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 900;
}

.signup-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  padding: 0.85rem;
  color: var(--ink);
  font: inherit;
}

.signup-form input:focus {
  outline: 3px solid rgba(243, 111, 0, 0.22);
  border-color: var(--orange);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-success {
  display: block;
  border: 2px solid rgba(42, 132, 62, 0.24);
  border-radius: 0.8rem;
  background: rgba(42, 132, 62, 0.1);
  color: #24753a;
  padding: 0.8rem 0.95rem;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.25;
  font-weight: 950;
}

.club-popup[hidden] {
  display: none;
}

.club-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.club-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(8px);
}

.club-popup-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  gap: 1.2rem;
  overflow: hidden;
  border: 4px solid var(--orange);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 216, 77, 0.7), transparent 11rem),
    radial-gradient(circle at 96% 0%, rgba(243, 111, 0, 0.16), transparent 14rem),
    var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 10px 10px 0 var(--yellow);
  padding: 1.25rem;
}

.club-popup-card::before {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 0.8rem, rgba(243, 111, 0, 0.15) 0.86rem 1rem);
  pointer-events: none;
}

.popup-copy,
.club-popup .signup-form {
  position: relative;
  z-index: 1;
}

.popup-copy {
  display: grid;
  gap: 0.65rem;
}

.popup-copy h2 {
  font-size: clamp(2.35rem, 9vw, 4.8rem);
}

.popup-copy p:last-child {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font: 950 1.55rem/1 var(--font-body);
  cursor: pointer;
}

.club-popup .signup-form {
  background: rgba(255, 255, 255, 0.92);
}

.location-modal[hidden] {
  display: none;
}

.location-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.location-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.56);
  backdrop-filter: blur(8px);
}

.location-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border: 3px solid var(--black);
  border-radius: 1.25rem;
  background: radial-gradient(circle at 95% 6%, rgba(255, 216, 77, 0.55), transparent 10rem), var(--white);
  box-shadow: 12px 12px 0 var(--orange), 0 28px 70px rgba(17, 17, 17, 0.28);
  padding: clamp(1.1rem, 4vw, 1.8rem);
}

.location-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.location-modal h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3.6rem);
}

.location-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.location-options a {
  display: grid;
  gap: 0.2rem;
  min-height: 68px;
  border: 2px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.9rem;
  background: var(--white);
  color: var(--black);
  padding: 0.85rem;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(255, 216, 77, 0.7);
}

.location-options a:hover,
.location-options a:focus {
  border-color: var(--orange);
  outline: none;
  transform: translateY(-1px);
}

.location-options strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
}

.location-options span,
.location-note {
  color: var(--muted);
  font-weight: 850;
}

.location-nearest {
  width: 100%;
}

.location-note {
  margin-top: 0.75rem;
  text-align: center;
}

.contact-help-modal[hidden] {
  display: none;
}

.contact-help-modal {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 95;
  display: grid;
  place-items: start center;
  padding: 1rem;
  overflow: auto;
}

.contact-help-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(8px);
}

.contact-help-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(980px, calc(100% - 1rem));
  max-height: calc(100dvh - var(--header-height) - 2rem);
  overflow: auto;
  border: 4px solid var(--black);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 94% 10%, rgba(255, 216, 77, 0.58), transparent 12rem),
    var(--cream);
  box-shadow: 10px 10px 0 var(--yellow), 0 30px 80px rgba(17, 17, 17, 0.34);
  padding: clamp(1rem, 4vw, 1.6rem);
}

.contact-help-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.contact-help-modal h2 {
  max-width: 12ch;
  margin: 0;
  padding-right: 3rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  line-height: 0.9;
}

.contact-help-modal__intro {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.35;
}

.contact-help-modal__locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-help-modal__locations article {
  display: grid;
  gap: 0.35rem;
  border: 2px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem;
}

.contact-help-modal__locations strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 0.95;
}

.contact-help-modal__locations span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.3;
}

.contact-help-modal__locations article div,
.contact-help-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-help-modal__locations a,
.contact-help-modal__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 0.5rem 0.8rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(255, 216, 77, 0.75);
}

.contact-help-modal__links {
  padding-top: 0.2rem;
}

.has-contact-help-modal {
  overflow: hidden;
}

.subpage-main {
  background: radial-gradient(circle at 0% 8%, rgba(255, 216, 77, 0.44), transparent 17rem), radial-gradient(circle at 100% 24%, rgba(243, 111, 0, 0.13), transparent 18rem), var(--cream);
}

.contact-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 216, 77, 0.5), transparent 18rem),
    radial-gradient(circle at 90% 18%, rgba(243, 111, 0, 0.12), transparent 20rem),
    var(--cream);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: start;
}

.contact-hero-copy,
.contact-hero-card,
.contact-location-card,
.contact-help-grid a {
  border: 2px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.contact-hero-copy {
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.contact-hero-copy h1 {
  max-width: 11ch;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.contact-hero-copy > p:not(.eyebrow),
.contact-hero-card p {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 900;
  line-height: 1.35;
}

.contact-hero-card {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 216, 77, 0.7), transparent 8rem),
    var(--white);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-hero-card span,
.contact-location-card .eyebrow {
  color: var(--orange-dark);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-hero-card strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.25rem);
  line-height: 0.95;
}

.contact-locations,
.contact-help {
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
}

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

.contact-location-card {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.contact-location-card h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 0.95;
}

.contact-location-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.35;
}

.contact-location-card a:not(.button) {
  color: var(--black);
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.contact-card-actions .button {
  min-height: 46px;
  padding: 0.7rem 0.95rem;
  font-size: 0.95rem;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-help-grid a {
  display: grid;
  gap: 0.35rem;
  min-height: 140px;
  color: var(--black);
  padding: 1rem;
  text-decoration: none;
}

.contact-help-grid strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 0.95;
}

.contact-help-grid span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.3;
}

.page-hero,
.page-shell {
  display: grid;
  gap: 1.25rem;
}

.page-hero {
  align-items: center;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 66ch;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 900;
}

.page-card,
.form-card,
.admin-card {
  display: grid;
  gap: 1rem;
  border: 3px solid rgba(17, 17, 17, 0.12);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(1rem, 3vw, 1.45rem);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1), 7px 7px 0 rgba(255, 216, 77, 0.7);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label,
.form-card > label,
.field-group {
  display: grid;
  gap: 0.35rem;
  color: var(--black);
  font-weight: 950;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.availability-grid input,
.form-card > label textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid rgba(17, 17, 17, 0.16);
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--black);
  padding: 0.72rem 0.8rem;
  font: inherit;
  font-weight: 850;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-card > label textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-options,
.availability-grid,
.amount-grid {
  display: grid;
  gap: 0.6rem;
}

.inline-options label,
.amount-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  border: 2px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.75rem;
  background: var(--white);
  padding: 0.65rem 0.8rem;
}

.availability-grid label {
  grid-template-columns: minmax(92px, auto) 1fr;
  align-items: center;
}

.page-feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-feature-list li,
.admin-row {
  border: 2px solid rgba(243, 111, 0, 0.18);
  border-radius: 0.9rem;
  background: var(--white);
  padding: 0.8rem;
  font-weight: 950;
}

.gift-card-page {
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 216, 77, 0.5), transparent 17rem),
    radial-gradient(circle at 98% 2%, rgba(243, 111, 0, 0.22), transparent 22rem),
    linear-gradient(180deg, #fff8e6 0%, #fffaf1 48%, #fff 100%);
}

.gift-card-hero {
  position: relative;
  display: grid;
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 216, 77, 0.42), transparent 12rem),
    radial-gradient(circle at 96% 18%, rgba(243, 111, 0, 0.18), transparent 18rem),
    linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.gift-card-hero::before,
.gift-card-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gift-card-hero::before {
  display: none;
  inset: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) auto;
  width: min(48%, 760px);
  border: 0;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 216, 77, 0.42), transparent 9rem),
    linear-gradient(135deg, #ff8a00 0%, var(--orange) 54%, #111 155%);
  box-shadow: 14px 14px 0 var(--yellow);
}

.gift-card-hero::after {
  top: 2rem;
  right: clamp(1rem, 5vw, 5rem);
  width: 6.5rem;
  height: 5rem;
  background:
    radial-gradient(circle at 20% 50%, var(--yellow) 0 13%, transparent 14%),
    radial-gradient(circle at 54% 34%, var(--orange) 0 17%, transparent 18%),
    radial-gradient(circle at 76% 58%, var(--yellow) 0 12%, transparent 13%);
  opacity: 0.75;
}

.gift-card-copy,
.gift-card-art {
  position: relative;
  z-index: 1;
}

.gift-card-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 570px;
  border: 3px solid rgba(17, 17, 17, 0.08);
  border-radius: clamp(1rem, 2.6vw, 1.6rem);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(1rem, 3vw, 1.65rem);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.gift-card-copy .eyebrow {
  color: var(--burnt);
}

.gift-card-copy h1 {
  max-width: 9ch;
  color: var(--black);
  font-size: clamp(2.9rem, 7.5vw, 6.15rem);
  line-height: 0.9;
}

.gift-card-copy h1 span {
  display: block;
  color: var(--orange);
}

.gift-card-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--black);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.42;
  font-weight: 950;
}

.gift-card-copy .button-row {
  align-items: center;
}

.gift-card-copy .button-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--yellow);
}

.gift-secondary {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.gift-card-art {
  margin: 0;
  border: 5px solid var(--black);
  border-radius: clamp(1.2rem, 3vw, 2rem);
  background: var(--black);
  box-shadow: 10px 10px 0 var(--yellow), 0 24px 58px rgba(17, 17, 17, 0.18);
  transform: rotate(-1.2deg);
}

.gift-card-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(clamp(1.2rem, 3vw, 2rem) - 0.35rem);
  object-fit: cover;
}

.gift-card-highlights {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  padding-top: clamp(1.2rem, 4vw, 2.6rem);
}

.gift-benefits {
  display: grid;
  gap: 0.8rem;
}

.gift-benefits article,
.gift-perfect,
.gift-location-strip {
  border: 3px solid rgba(17, 17, 17, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 7px 7px 0 rgba(255, 216, 77, 0.75);
}

.gift-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 1rem;
}

.gift-benefits span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.65rem;
  aspect-ratio: 1;
  border-radius: 0.72rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  box-shadow: 5px 5px 0 var(--yellow);
}

.gift-benefits strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1;
}

.gift-benefits p {
  color: var(--muted);
  font-weight: 900;
}

.gift-perfect,
.gift-location-strip {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  text-align: center;
}

.gift-perfect .eyebrow {
  color: var(--burnt);
  margin: 0;
}

.gift-perfect div,
.gift-location-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.gift-perfect span,
.gift-location-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 2px solid rgba(243, 111, 0, 0.2);
  border-radius: 999px;
  background: #fff8df;
  color: var(--black);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1;
}

.gift-location-strip {
  background: linear-gradient(135deg, var(--orange), #ff8a00);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--black);
}

.gift-location-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1;
}

.gift-location-strip span {
  border-color: rgba(255, 255, 255, 0.36);
  background: var(--white);
  color: var(--black);
}

.locations-page {
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 216, 77, 0.42), transparent 17rem),
    radial-gradient(circle at 98% 2%, rgba(243, 111, 0, 0.18), transparent 22rem),
    linear-gradient(180deg, #fff8e6 0%, #fffaf1 48%, #fff 100%);
}

.locations-hero {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.55rem);
  align-items: center;
  overflow: visible;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 216, 77, 0.38), transparent 12rem),
    radial-gradient(circle at 96% 18%, rgba(243, 111, 0, 0.16), transparent 18rem),
    linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.locations-hero::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: clamp(1rem, 5vw, 5rem);
  width: 6.5rem;
  height: 5rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, var(--yellow) 0 13%, transparent 14%),
    radial-gradient(circle at 54% 34%, var(--orange) 0 17%, transparent 18%),
    radial-gradient(circle at 76% 58%, var(--yellow) 0 12%, transparent 13%);
  opacity: 0.68;
}

.locations-copy,
.locations-hero-media {
  position: relative;
  z-index: 1;
}

.locations-copy {
  z-index: 3;
}

.locations-copy {
  display: grid;
  gap: 0.82rem;
  max-width: 660px;
  border-radius: clamp(1rem, 2.6vw, 1.55rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 230, 0.38));
  padding: clamp(0.35rem, 1.4vw, 0.85rem);
}

.locations-copy .eyebrow,
.locations-section-header .eyebrow,
.locations-help .eyebrow,
.locations-catering-band .eyebrow,
.locations-store-card .eyebrow {
  color: var(--burnt);
}

.locations-copy h1 {
  max-width: 12.8ch;
  color: var(--black);
  font-size: clamp(2.55rem, 5.65vw, 4.8rem);
  line-height: 0.94;
}

.locations-copy h1 span {
  display: block;
  color: var(--orange);
}

.locations-copy p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--black);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.42;
  font-weight: 950;
}

.locations-hero-points {
  display: grid;
  gap: 0.58rem;
  list-style: none;
  margin: 0.15rem 0 0;
  max-width: 40rem;
  padding: 0;
}

.locations-hero-points li {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(239, 116, 39, 0.18);
  border-radius: 0.78rem;
  color: var(--black);
  display: grid;
  font-size: clamp(0.96rem, 1.18vw, 1.05rem);
  font-weight: 850;
  gap: 0.14rem;
  line-height: 1.28;
  padding: 0.72rem 0.88rem 0.72rem 1.95rem;
  position: relative;
}

.locations-hero-points li::before {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 999px;
  box-shadow: 0 0 0 0.25rem rgba(255, 216, 77, 0.22);
  content: "";
  height: 0.52rem;
  left: 0.9rem;
  position: absolute;
  top: 1.08rem;
  width: 0.52rem;
}

.locations-hero-points strong {
  color: var(--orange-dark);
  font-weight: 950;
}

.locations-copy .button-row {
  align-items: center;
}

.locations-copy .button-primary,
.locations-catering-band .button-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--yellow);
}

.locations-secondary {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.locations-directions-dropdown {
  position: relative;
  z-index: 10;
}

.locations-directions-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.locations-directions-dropdown summary::-webkit-details-marker {
  display: none;
}

.locations-directions-dropdown summary::after {
  content: "▾";
  font-size: 0.82em;
  margin-left: 0.4rem;
}

.locations-directions-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.55rem);
  left: 0;
  display: grid;
  min-width: min(18rem, 86vw);
  overflow: hidden;
  border: 3px solid var(--black);
  border-radius: 0.9rem;
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(243, 111, 0, 0.22);
}

.locations-directions-options a {
  padding: 0.78rem 0.95rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.12;
  text-decoration: none;
}

.locations-directions-options a + a {
  border-top: 1px solid rgba(35, 31, 28, 0.12);
}

.locations-directions-options a:hover {
  background: var(--cream);
  color: var(--orange-dark);
}

.locations-hero-media {
  position: relative;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(243, 111, 0, 0.22);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(35, 31, 28, 0.13), 8px 8px 0 rgba(255, 216, 77, 0.62);
}

.locations-hero-media video,
.locations-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--black);
  object-fit: cover;
}

.locations-media-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--yellow);
  padding: 0.42rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.locations-media-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 1rem 1.1rem;
}

.locations-media-caption p {
  color: var(--ink);
  font-size: clamp(0.96rem, 2vw, 1.04rem);
  line-height: 1.15;
  font-weight: 950;
}

.locations-highlights,
.locations-stores {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  padding-top: clamp(0.5rem, 2vw, 1.35rem);
}

.locations-benefits {
  display: grid;
  gap: 0.7rem;
}

.locations-benefits article,
.locations-store-card,
.locations-help,
.locations-catering-band {
  border: 2px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.64), 0 12px 30px rgba(17, 17, 17, 0.05);
}

.locations-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.65rem;
  align-items: center;
  padding: 0.78rem 0.85rem;
  position: relative;
  overflow: hidden;
}

.locations-benefits article::after {
  content: "";
  position: absolute;
  inset: auto -1.25rem -1.65rem auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.34), transparent 70%);
  pointer-events: none;
}

.locations-benefits article:nth-child(2)::after {
  background: radial-gradient(circle, rgba(239, 116, 39, 0.18), transparent 70%);
}

.locations-benefits article:nth-child(3)::after {
  background: radial-gradient(circle, rgba(255, 216, 77, 0.42), transparent 70%);
}

.locations-benefits article:nth-child(4)::after {
  background: radial-gradient(circle, rgba(255, 248, 228, 0.85), transparent 72%);
}

.locations-benefits span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.28rem;
  aspect-ratio: 1;
  border-radius: 0.62rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  box-shadow: 4px 4px 0 var(--yellow);
  position: relative;
  z-index: 1;
}

.locations-benefits strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.locations-benefits p {
  font-size: 0.92rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.locations-benefits p,
.locations-store-card p,
.locations-help p,
.locations-catering-band p {
  color: var(--muted);
  font-weight: 900;
}

.locations-section-header {
  display: grid;
  gap: 0.35rem;
  max-width: 560px;
}

.locations-section-header h2,
.locations-help h2,
.locations-catering-band h2 {
  color: var(--black);
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 1.02;
}

.locations-store-grid {
  display: grid;
  align-items: stretch;
  gap: 0.85rem;
}

.locations-store-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  padding: clamp(0.95rem, 2.2vw, 1.18rem);
}

.locations-store-card > div:first-child {
  display: grid;
  gap: 0.42rem;
}

.locations-drive-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 36px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--orange);
}

.locations-drive-badge-muted {
  background: var(--white);
  box-shadow: 3px 3px 0 rgba(255, 216, 77, 0.8);
}

.locations-store-card .eyebrow {
  margin-top: 0.2rem;
  font-size: 0.76rem;
  line-height: 1.05;
}

.locations-store-card h3 {
  color: var(--black);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.locations-store-card p {
  font-size: 0.94rem;
  line-height: 1.32;
}

.locations-card-actions {
  display: grid;
  gap: 0.48rem;
  margin-top: auto;
}

.locations-card-actions .button {
  width: 100%;
  min-height: 42px;
  padding: 0.56rem 0.72rem;
  font-size: 0.86rem;
  box-shadow: 3px 3px 0 rgba(255, 216, 77, 0.72);
}

.locations-card-actions .text-link {
  justify-self: start;
  color: var(--burnt);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 950;
}

.locations-help,
.locations-catering-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.locations-catering-band {
  margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
  background: linear-gradient(135deg, var(--orange), #ff8a00);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--black);
}

.locations-catering-band .eyebrow,
.locations-catering-band h2,
.locations-catering-band p {
  color: var(--white);
}

@media (min-width: 720px) {
  .locations-benefits,
  .locations-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-help,
  .locations-catering-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .locations-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    padding-top: clamp(2rem, 4.2vw, 4rem);
  }

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

@media (max-width: 719px) {
  .locations-hero,
  .locations-highlights,
  .locations-stores,
  .locations-help,
  .locations-catering-band {
    padding-inline: max(1rem, env(safe-area-inset-left));
  }

  .locations-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.35rem, 12.5vw, 3.75rem);
  }

  .locations-hero-points li {
    padding-right: 0.78rem;
  }

  .locations-section-header h2,
  .locations-help h2,
  .locations-catering-band h2 {
    font-size: clamp(1.85rem, 9vw, 2.85rem);
  }

  .locations-card-actions,
  .locations-help .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .locations-card-actions .button,
  .locations-help .button,
  .locations-catering-band .button {
    width: 100%;
  }
}

.admin-table {
  display: grid;
  gap: 0.65rem;
}

.admin-warning {
  margin-top: 0.9rem;
  border: 2px solid var(--orange);
  border-radius: 0.75rem;
  background: var(--orange-soft);
  color: var(--black);
  padding: 0.75rem;
  font-weight: 950;
}

.jobs-page {
  background:
    radial-gradient(circle at 6% 6%, rgba(255, 216, 77, 0.48), transparent 17rem),
    radial-gradient(circle at 100% 16%, rgba(243, 111, 0, 0.14), transparent 19rem),
    linear-gradient(180deg, #fff8e9 0%, #fff 48%, #fffaf0 100%);
}

.jobs-hero {
  position: relative;
  display: grid;
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 216, 77, 0.38), transparent 12rem),
    linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.jobs-hero::before,
.jobs-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.jobs-hero::before {
  display: none;
  inset: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) auto;
  width: min(48%, 760px);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 216, 77, 0.45), transparent 8rem),
    linear-gradient(135deg, #ff8a00 0%, var(--orange) 58%, #111 150%);
  box-shadow: 14px 14px 0 var(--yellow);
}

.jobs-hero::after {
  left: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 7rem;
  height: 5rem;
  background:
    radial-gradient(circle at 18% 50%, var(--yellow) 0 13%, transparent 14%),
    radial-gradient(circle at 54% 34%, var(--orange) 0 17%, transparent 18%),
    radial-gradient(circle at 76% 58%, var(--yellow) 0 12%, transparent 13%);
  opacity: 0.55;
}

.jobs-hero-copy,
.jobs-hero-art {
  position: relative;
  z-index: 1;
}

.jobs-hero-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 590px;
  border: 3px solid rgba(17, 17, 17, 0.08);
  border-radius: clamp(1rem, 2.6vw, 1.6rem);
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(1rem, 3vw, 1.65rem);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.jobs-hero-copy h1 {
  max-width: 10ch;
  color: var(--black);
  font-size: clamp(2.8rem, 7vw, 5.75rem);
  line-height: 0.92;
}

.jobs-hero-copy h1 span {
  display: block;
  color: var(--orange);
}

.jobs-hero-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--black);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.42;
  font-weight: 950;
}

.jobs-hero-copy .button-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--yellow);
}

.jobs-secondary {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.jobs-hero-art {
  margin: 0;
  border: 5px solid var(--orange);
  border-radius: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 216, 77, 0.42), transparent 12rem),
    linear-gradient(180deg, #fff7e8 0%, #fff 100%);
  box-shadow: 10px 10px 0 var(--yellow), 0 24px 58px rgba(17, 17, 17, 0.18);
  transform: none;
}

.jobs-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(clamp(1.2rem, 3vw, 2rem) - 0.35rem);
  object-fit: contain;
  padding: clamp(0.35rem, 1.4vw, 0.8rem);
}

.jobs-highlights {
  display: grid;
  gap: 0.85rem;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.jobs-highlights article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 3px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.9rem 1rem;
  box-shadow: 6px 6px 0 rgba(255, 216, 77, 0.76);
}

.jobs-highlights span {
  display: grid;
  place-items: center;
  min-width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.85rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--yellow);
}

.jobs-highlights strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1;
}

.jobs-open {
  display: grid;
  gap: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 77, 0.44), transparent 13rem),
    linear-gradient(135deg, #ff7800, var(--orange));
  color: var(--white);
}

.compact-heading {
  max-width: 780px;
}

.jobs-open .eyebrow,
.jobs-open h2 {
  color: var(--white);
}

.jobs-position-grid {
  display: grid;
  gap: 0.85rem;
}

.jobs-position-grid article {
  display: grid;
  gap: 0.65rem;
  border: 3px solid rgba(255, 255, 255, 0.46);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  padding: clamp(1rem, 2.2vw, 1.25rem);
  box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.16);
}

.jobs-position-grid span {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1;
}

.jobs-position-grid p {
  color: var(--muted);
  font-weight: 900;
}

.jobs-position-grid button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  padding: 0.62rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--yellow);
  cursor: pointer;
}

.job-application-modal {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding: 1rem;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

.job-application-modal[hidden] {
  display: none;
}

.job-application-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(8px);
}

.job-application-modal__panel {
  position: relative;
  display: grid;
  width: min(1060px, calc(100% - 1.5rem));
  max-height: calc(100dvh - var(--header-height) - 2rem);
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  border: 4px solid var(--black);
  border-radius: clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--yellow), 0 30px 80px rgba(17, 17, 17, 0.35);
}

.job-modal-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.has-job-modal {
  overflow: hidden;
  overscroll-behavior: none;
}

.giveback-page {
  overflow: hidden;
}

.giveback-hero {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 216, 77, 0.7), transparent 16rem),
    radial-gradient(circle at 10% 92%, rgba(255, 216, 77, 0.35), transparent 18rem),
    linear-gradient(135deg, #ff7900 0%, #f36f00 48%, #111111 100%);
}

.giveback-hero::after,
.giveback-catering-callout::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 0.85rem, rgba(243, 111, 0, 0.18) 0.92rem 1.05rem);
  pointer-events: none;
}

.giveback-hero h1 {
  max-width: 10ch;
  color: var(--white);
  text-shadow: 0 5px 0 rgba(17, 17, 17, 0.12);
}

.giveback-hero p:not(.eyebrow),
.giveback-catering-callout p {
  max-width: 62ch;
  color: var(--white);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 900;
}

.giveback-hero .eyebrow {
  color: var(--yellow);
}

.giveback-quick-grid {
  display: grid;
  gap: 0.65rem;
  margin: 0.25rem 0;
}

.giveback-quick-grid span {
  display: grid;
  gap: 0.1rem;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.78rem 0.85rem;
  color: var(--black);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--yellow);
}

.giveback-quick-grid strong {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.giveback-hero .button-primary {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.giveback-hero .button-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.giveback-hero-art {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 1.35rem;
  background: var(--orange);
  box-shadow: 12px 12px 0 var(--yellow), 0 22px 52px rgba(17, 17, 17, 0.24);
}

.giveback-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.giveback-hero-stack {
  display: grid;
  gap: 1rem;
}

.giveback-hero-photo {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--orange);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--yellow), 0 20px 44px rgba(17, 17, 17, 0.13);
}

.giveback-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.giveback-hero-photo div {
  display: grid;
  gap: 0.2rem;
  border-top: 3px solid rgba(243, 111, 0, 0.18);
  background: var(--white);
  padding: 0.95rem;
}

.giveback-hero-photo strong,
.giveback-mini-scenes strong,
.community-card-grid strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.05;
}

.giveback-hero-photo span,
.giveback-mini-scenes span,
.community-card-grid span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.giveback-program-visual {
  display: grid;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--orange);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 216, 77, 0.72), transparent 10rem),
    linear-gradient(135deg, var(--white), #fff5df);
  padding: 1rem;
  box-shadow: 10px 10px 0 var(--yellow), 0 20px 44px rgba(17, 17, 17, 0.13);
}

.giveback-program-visual::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 0.75rem, rgba(243, 111, 0, 0.18) 0.82rem 0.98rem);
  pointer-events: none;
}

.program-visual-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  border-radius: 1rem;
  background: var(--orange);
  padding: 1rem;
  color: var(--white);
}

.program-visual-header span {
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-visual-header strong {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 0.95;
}

.program-visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.program-visual-grid article {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  min-height: 150px;
  border: 2px solid rgba(243, 111, 0, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(255, 216, 77, 0.75);
}

.program-visual-grid strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.05;
}

.program-visual-grid span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
}

.program-visual-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.program-visual-footer strong {
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 0.48rem 0.72rem;
  font-size: 0.84rem;
  line-height: 1;
}

.giveback-mini-scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.giveback-mini-scenes article {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  border: 2px solid rgba(243, 111, 0, 0.18);
  border-radius: 1rem;
  background: var(--white);
  padding: 0.75rem;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(255, 216, 77, 0.75);
}

.giveback-wow-strip {
  display: grid;
  gap: 0.8rem;
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 216, 77, 0.35), transparent 15rem),
    linear-gradient(135deg, var(--black), #7b3400 58%, var(--orange));
}

.giveback-wow-strip article {
  display: grid;
  gap: 0.35rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  box-shadow: 5px 5px 0 var(--yellow);
}

.giveback-wow-strip strong {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.giveback-wow-strip span {
  color: var(--black);
  font-weight: 900;
}

.giveback-compare-section .section-copy p,
.giveback-steps-section .section-copy p {
  max-width: 76ch;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 850;
}

.compare-label {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.muted-card .compare-label {
  color: #6e6a64;
}

.winner-card .compare-label {
  color: var(--orange-dark);
}

.comparison-grid .page-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.comparison-grid .page-feature-list span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.winner-card .page-feature-list span {
  background: var(--orange);
}

.comparison-grid,
.steps-grid,
.community-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.winner-card {
  border-color: var(--orange);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 77, 0.46), transparent 9rem),
    var(--white);
  box-shadow: 10px 10px 0 var(--yellow), 0 20px 44px rgba(17, 17, 17, 0.12);
}

.muted-card {
  opacity: 0.94;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

.steps-grid article,
.community-card-grid article {
  border: 3px solid rgba(243, 111, 0, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem;
  box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.68);
}

.steps-grid article {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 0.85rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--yellow);
}

.steps-grid h3,
.community-card-grid article {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  line-height: 1.05;
}

.steps-grid p {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
}

.scene-icon {
  position: relative;
  width: 92px;
  height: 66px;
  overflow: hidden;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 78% 20%, var(--yellow) 0 0.72rem, transparent 0.76rem),
    var(--orange-soft);
  box-shadow: inset 0 0 0 2px rgba(243, 111, 0, 0.08);
}

.scene-icon::before,
.scene-icon::after {
  content: "";
  position: absolute;
}

.school-scene::before {
  left: 17px;
  bottom: 16px;
  width: 56px;
  height: 28px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 35%, 100% 100%, 0 100%, 0 35%);
}

.school-scene::after {
  left: 27px;
  bottom: 9px;
  width: 38px;
  height: 20px;
  border-radius: 4px 4px 0 0;
  background: var(--black);
  box-shadow: 0 -16px 0 -6px var(--white);
}

.team-scene::before {
  left: 20px;
  top: 18px;
  width: 24px;
  height: 24px;
  border: 5px solid var(--black);
  border-radius: 50%;
  background: var(--white);
}

.team-scene::after {
  right: 19px;
  bottom: 13px;
  width: 36px;
  height: 30px;
  border-radius: 6px;
  background: var(--orange);
  box-shadow: inset 0 10px 0 #ffad4b;
}

.business-scene::before,
.campaign-scene::before {
  left: 15px;
  top: 18px;
  width: 58px;
  height: 34px;
  border: 5px solid var(--black);
  border-radius: 8px;
  background: var(--white);
}

.business-scene::after,
.campaign-scene::after {
  right: 15px;
  top: 22px;
  width: 22px;
  height: 22px;
  border-top: 6px solid var(--orange);
  border-right: 6px solid var(--orange);
  transform: rotate(45deg);
}

.group-scene::before {
  left: 18px;
  top: 17px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 21px 0 0 var(--black), 42px 0 0 var(--black);
}

.group-scene::after {
  left: 14px;
  bottom: 13px;
  width: 64px;
  height: 15px;
  border-radius: 999px 999px 8px 8px;
  background: var(--orange);
}

.kolache-scene::before,
.support-scene::before,
.booster-scene::before,
.community-scene::before {
  left: 17px;
  top: 25px;
  width: 58px;
  height: 11px;
  border-radius: 999px;
  background: var(--black);
}

.kolache-scene::after,
.support-scene::after,
.booster-scene::after,
.community-scene::after {
  left: 28px;
  top: 15px;
  width: 38px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 -7px 0 #ffad4b;
}

.church-scene::before {
  left: 32px;
  bottom: 12px;
  width: 32px;
  height: 38px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 35%, 100% 100%, 0 100%, 0 35%);
}

.church-scene::after {
  left: 43px;
  top: 14px;
  width: 9px;
  height: 30px;
  background: var(--black);
  box-shadow: -8px 9px 0 -3px var(--black), 8px 9px 0 -3px var(--black);
}

.nonprofit-scene::before,
.club-scene::before,
.teacher-scene::before {
  left: 28px;
  top: 14px;
  width: 36px;
  height: 30px;
  border-radius: 999px 999px 11px 11px;
  background: var(--orange);
}

.nonprofit-scene::after,
.club-scene::after,
.teacher-scene::after {
  left: 34px;
  top: 21px;
  width: 22px;
  height: 17px;
  border: 5px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
}

.giveback-audience-section,
.giveback-love-section {
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 216, 77, 0.32), transparent 18rem),
    linear-gradient(180deg, var(--white), #fff7e8);
}

.giveback-audience-section .community-card-grid article,
.giveback-love-section .community-card-grid article {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.giveback-audience-section .community-card-grid article {
  min-height: 178px;
}

.giveback-love-section .community-card-grid article {
  min-height: 150px;
}

.giveback-audience-section .community-card-grid span,
.giveback-love-section .community-card-grid span {
  font-family: var(--font-body);
  font-size: 0.94rem;
}

.giveback-catering-callout {
  display: grid;
  align-items: center;
  min-height: 380px;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 216, 77, 0.42), transparent 16rem),
    linear-gradient(135deg, var(--orange), var(--black));
  overflow: hidden;
}

.giveback-catering-callout h2,
.giveback-catering-callout p,
.community-final h2,
.community-final p {
  color: var(--white);
}

.giveback-catering-callout .eyebrow,
.community-final .eyebrow {
  color: var(--yellow);
}

.giveback-catering-callout > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 780px;
}

.giveback-request-section {
  display: grid;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3rem);
}

.giveback-request-section .section-copy {
  align-content: center;
}

.giveback-request-section .section-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.35;
  font-weight: 900;
}

.giveback-request-section .form-card {
  gap: 0.78rem;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.giveback-request-section .form-grid {
  gap: 0.65rem;
}

.giveback-request-section .form-card > label textarea {
  min-height: 96px;
}

.community-final {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 216, 77, 0.4), transparent 15rem),
    linear-gradient(135deg, #f36f00, #111111);
  text-align: center;
}

.community-final .button-row {
  justify-content: center;
}

.footer {
  display: grid;
  gap: 1.8rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--cream), var(--orange-soft));
  padding: 2.5rem max(1rem, calc((100vw - 1220px) / 2));
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.footer-brand p {
  max-width: 58ch;
  margin-top: 0.3rem;
}

.footer-grid > div {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-grid a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: 0.75rem;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(17, 17, 17, 0.1);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--yellow);
}

.socials svg {
  width: 22px;
  height: 22px;
  overflow: visible;
}

.socials rect,
.socials circle,
.socials path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials circle:last-child {
  fill: currentColor;
  stroke: none;
}

.socials a:hover {
  transform: translateY(-1px);
  background: var(--black);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--muted);
}

.analytics-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(920px, calc(100% - 32px));
  padding: 18px;
  border: 3px solid var(--black);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 10px 10px 0 var(--yellow), 0 18px 45px rgba(17, 17, 17, 0.18);
  transform: translateX(-50%);
}

.analytics-consent strong {
  display: block;
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.1;
}

.analytics-consent p {
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.analytics-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.analytics-consent .button {
  min-height: 48px;
  padding: 12px 18px;
  white-space: nowrap;
}

.seo-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 216, 77, 0.36), transparent 20rem),
    radial-gradient(circle at 100% 10%, rgba(243, 111, 0, 0.16), transparent 24rem),
    var(--cream);
}

.seo-page .page-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.seo-page .page-hero h1 {
  max-width: 16ch;
}

.seo-hero-card {
  border: 4px solid var(--orange);
  border-radius: 1.25rem;
  background: var(--white);
  padding: clamp(1rem, 3vw, 1.4rem);
  box-shadow: 10px 10px 0 var(--yellow), 0 20px 46px rgba(17, 17, 17, 0.12);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.seo-card {
  display: grid;
  gap: 0.6rem;
  border: 2px solid rgba(243, 111, 0, 0.22);
  border-radius: 1rem;
  background: var(--white);
  padding: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 6px 6px 0 rgba(255, 216, 77, 0.72);
}

.seo-card h2,
.seo-card h3 {
  margin: 0;
}

.seo-card p,
.seo-card li {
  color: var(--muted);
  font-weight: 800;
}

.seo-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.15rem;
}

.seo-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.location-detail-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 210, 66, 0.34), transparent 28rem),
    radial-gradient(circle at 94% 4%, rgba(255, 112, 0, 0.14), transparent 24rem),
    var(--cream);
}

.location-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.location-detail-copy {
  max-width: 700px;
}

.location-detail-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.15rem, 5.4vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.location-detail-lede {
  max-width: 650px;
  margin: 1.15rem 0 0;
  color: var(--brown);
  font-size: clamp(1.14rem, 1.7vw, 1.45rem);
  font-weight: 950;
  line-height: 1.34;
}

.location-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 1.35rem;
}

.location-detail-facts span {
  min-height: 82px;
  padding: 0.85rem 0.9rem;
  border: 2px solid var(--peach);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brown);
  font-weight: 900;
  line-height: 1.25;
  font-size: 0.95rem;
}

.location-detail-facts strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.location-detail-facts a {
  color: inherit;
  text-decoration: none;
}

.location-detail-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  min-height: 0;
  border: 5px solid var(--orange);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--yellow), 0 24px 70px rgba(17, 17, 17, 0.15);
}

.location-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-detail-media-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 950;
}

.location-detail-media-card span {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
}

.location-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.location-snapshot article,
.location-popular article,
.location-directions-card,
.location-map-placeholder,
.location-story,
.location-catering-cta {
  border: 2px solid var(--peach);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(88, 54, 32, 0.08);
}

.location-snapshot article {
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.location-snapshot span {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 950;
}

.location-snapshot h2,
.location-story h2,
.location-directions h2,
.location-popular h2,
.location-catering-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.location-snapshot p,
.location-story p,
.location-directions p,
.location-popular p,
.location-catering-cta p {
  color: var(--brown);
  font-weight: 850;
  line-height: 1.35;
}

.location-story,
.location-catering-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.location-story p,
.location-catering-cta p {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.location-directions {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.location-directions-card,
.location-map-placeholder {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.location-map-placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 210, 66, 0.45), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.location-map-placeholder span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
}

.location-map-placeholder p {
  max-width: 480px;
  margin: 0;
}

.location-whatis {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: center;
  border: 2px solid var(--peach);
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 210, 66, 0.22));
  box-shadow: 0 18px 44px rgba(88, 54, 32, 0.08);
}

.location-whatis-copy,
.location-whatis-media {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.location-whatis-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.92;
}

.location-whatis-copy p {
  color: var(--brown);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 850;
  line-height: 1.35;
}

.location-whatis-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 5px solid var(--orange);
  border-radius: 1.35rem;
  object-fit: cover;
  background: var(--black);
  box-shadow: 10px 10px 0 var(--yellow);
}

.location-popular .button {
  margin-top: 1.25rem;
}

.location-try-first {
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 216, 77, 0.34), transparent 16rem),
    linear-gradient(180deg, var(--white), var(--cream));
}

.location-try-header {
  max-width: 860px;
}

.location-try-header p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  font-weight: 850;
  line-height: 1.35;
}

.location-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.location-feature-card {
  border-color: rgba(234, 223, 213, 0.98);
  box-shadow: 0 18px 42px rgba(35, 31, 28, 0.08);
}

.location-feature-card img {
  height: clamp(180px, 17vw, 240px);
  object-fit: contain;
  padding: 0.35rem;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 216, 77, 0.32), transparent 68%),
    #fff8ec;
}

.location-feature-card h3 {
  font-size: clamp(1.22rem, 1.5vw, 1.42rem);
}

.location-feature-card p {
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
}

.location-feature-actions {
  margin-top: 1.3rem;
}

.location-cinnamon-rolls {
  border-top: 1px solid rgba(234, 223, 213, 0.78);
  border-bottom: 1px solid rgba(234, 223, 213, 0.78);
}

.location-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.location-popular article {
  overflow: hidden;
}

.location-popular img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 1rem;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 210, 66, 0.22), rgba(255, 255, 255, 0.86));
}

.location-popular h3,
.location-popular p {
  margin-right: 1rem;
  margin-left: 1rem;
}

.location-popular h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.location-popular p {
  margin-top: 0;
  margin-bottom: 1.15rem;
}

.location-catering-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  background: linear-gradient(135deg, var(--white), rgba(255, 210, 66, 0.28));
}

.location-mini-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-mini-cta {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border: 2px solid var(--peach);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(88, 54, 32, 0.08);
}

.location-mini-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 0.94;
}

.location-mini-cta p {
  margin: 0;
  color: var(--brown);
  font-weight: 850;
  line-height: 1.35;
}

.location-back {
  padding-top: 0;
}

@media (max-width: 980px) {
  .location-detail-hero,
  .location-story,
  .location-directions,
  .location-whatis,
  .location-catering-cta {
    grid-template-columns: 1fr;
  }

  .location-detail-copy {
    max-width: 820px;
  }

  .location-detail-copy h1,
  .location-detail-lede {
    max-width: 760px;
  }

  .location-detail-facts,
  .location-snapshot,
  .location-feature-grid,
  .location-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .location-detail-hero {
    gap: 1.35rem;
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .location-detail-copy {
    width: 100%;
    max-width: 22.5rem;
    min-width: 0;
  }

  .location-detail-copy .eyebrow {
    overflow-wrap: anywhere;
    line-height: 1.15;
  }

  .location-detail-copy h1 {
    max-width: 22.5rem;
    font-size: clamp(2.15rem, 10.4vw, 2.85rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .location-detail-lede {
    width: 100%;
    max-width: 22.5rem;
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.38;
    overflow-wrap: break-word;
  }

  .location-detail-facts,
  .location-snapshot,
  .location-mini-cta-grid,
  .location-feature-grid,
  .location-popular-grid {
    grid-template-columns: 1fr;
  }

  .location-detail-facts {
    margin: 1rem 0 1.2rem;
    gap: 0.65rem;
  }

  .location-detail-facts span {
    min-height: 0;
    padding: 0.78rem 0.85rem;
  }

  .location-detail-media {
    aspect-ratio: 4 / 3;
    border-width: 3px;
    box-shadow: 8px 8px 0 var(--yellow), 0 16px 36px rgba(17, 17, 17, 0.14);
  }

  .location-detail-media-card {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    border-radius: 0;
  }

  .location-detail-hero .button-row {
    gap: 0.65rem;
  }

  .location-detail-hero .button {
    width: 100%;
    justify-content: center;
  }

  .location-catering-cta .button,
  .location-try-first .button,
  .location-popular .button,
  .location-directions-card .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (min-width: 720px) {
  .types,
  .what-is,
  .story,
  .cinnamon-rolls {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .club-popup-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    align-items: center;
    padding: 2rem;
  }

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

  .location-hours-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .affordable-banner {
    grid-column: 1 / -1;
  }

  .benefits-heading {
    grid-column: 1 / -1;
  }

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

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

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

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

  .mobile-order-link {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    min-height: 40px;
    padding: 0.44rem 0.5rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .nav-links .nav-cta-dark {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
    align-items: center;
    min-height: auto;
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .catering-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
  }

  .catering-feature .benefit-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

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

  .giveback-request-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  }

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

@media (max-width: 1120px) {
  .brand small {
    display: none;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .mobile-order-link {
    padding-inline: 0.55rem;
    font-size: 0.76rem;
  }

  .button,
  .signup-form button {
    width: 100%;
  }
}

/* Mobile conversion pass */
@media (max-width: 719px) {
  body {
    padding-top: 58px;
  }

  .nav {
    width: min(100% - 20px, 1220px);
    min-height: 58px;
    gap: 0.4rem;
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 44vw;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .mobile-order-link {
    min-height: 40px;
    padding-inline: 0.62rem;
    font-size: 0.75rem;
  }

  .nav-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .nav-links {
    top: 58px;
    max-height: calc(100dvh - 58px);
    overflow: auto;
    padding: 0.7rem;
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.12);
  }

  .nav-links.is-open {
    gap: 0.4rem;
  }

  .nav-links a {
    min-height: 50px;
    font-size: 0.86rem;
  }

  .section-pad {
    padding: 2.35rem max(0.85rem, calc((100vw - 1220px) / 2));
  }

  .benefits-strip {
    gap: 0.62rem;
    padding-top: 1.65rem;
    padding-bottom: 1.85rem;
  }

  .benefits-strip::before {
    width: 10rem;
    height: 10rem;
    right: -4.25rem;
    top: -3.5rem;
  }

  .benefits-strip::after {
    width: 8rem;
    height: 5rem;
  }

  .affordable-banner {
    border-width: 3px;
    padding: 0.58rem 0.85rem;
    font-size: clamp(1.1rem, 6vw, 1.55rem);
    box-shadow: 5px 5px 0 var(--black), 0 10px 22px rgba(243, 111, 0, 0.14);
  }

  .benefits-heading {
    gap: 0.22rem;
    margin-bottom: 0.15rem;
  }

  .benefits-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    max-width: 11.5ch;
  }

  .benefits-strip article {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.1rem 0.65rem;
    align-items: center;
    border-width: 2px;
    border-radius: 0.95rem;
    padding: 0.72rem 0.78rem;
    box-shadow: 0 10px 22px rgba(35, 31, 28, 0.08), 4px 4px 0 rgba(255, 216, 77, 0.52);
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
    border-width: 2px;
    border-radius: 0.72rem;
    font-size: 0.78rem;
    box-shadow: 3px 3px 0 var(--yellow);
  }

  .benefits-strip h3 {
    font-size: 1.08rem;
    line-height: 1.02;
  }

  .benefits-strip p {
    font-size: 0.8rem;
    line-height: 1.18;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.9rem, 9.8vw, 2.9rem);
    line-height: 0.98;
  }

  .hero {
    gap: 1.2rem;
    padding-top: 2rem;
    padding-bottom: 2.35rem;
  }

  .hero h1,
  .gift-card-copy h1,
  .jobs-hero-copy h1,
  .giveback-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.3rem, 11.5vw, 3.35rem);
  }

  .hero-lede,
  .hero-body,
  .page-hero p,
  .gift-card-copy p:not(.eyebrow),
  .jobs-hero-copy p:not(.eyebrow),
  .giveback-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-value,
  .affordable-banner {
    width: 100%;
    font-size: clamp(1rem, 4.8vw, 1.3rem);
    text-align: center;
  }

  .hero-video-card video,
  .catering-media video,
  .explain-card video {
    aspect-ratio: 4 / 3;
  }

  .video-caption {
    gap: 0.65rem;
    padding: 0.85rem;
  }

  .video-caption p {
    font-size: clamp(1.05rem, 4.4vw, 1.35rem);
    line-height: 1.08;
  }

  .hero .button-row,
  .hero-actions,
  .page-hero .button-row,
  .gift-card-copy .button-row,
  .jobs-hero-copy .button-row,
  .giveback-hero .button-row,
  .community-final .button-row,
  .catering-feature .button-row,
  .cinnamon-rolls .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0.8rem 1rem;
  }

  .what-is {
    gap: 1.2rem;
  }

  .explain-card {
    border-width: 3px;
    border-radius: 1rem;
    box-shadow: 7px 7px 0 var(--yellow), 0 16px 34px rgba(35, 31, 28, 0.12);
  }

  .types {
    gap: 1rem;
  }

  .types article {
    border-radius: 1rem;
  }

  .types article::before {
    width: 3.4rem;
    height: 3.4rem;
  }

  .type-visual {
    aspect-ratio: 1.18 / 1;
  }

  .types img,
  .type-visual img {
    aspect-ratio: 1.18 / 1;
    object-fit: contain;
  }

  .type-price,
  .type-name,
  .type-next {
    max-width: calc(100% - 1.3rem);
  }

  .type-name {
    font-size: clamp(0.95rem, 4.6vw, 1.18rem);
  }

  .type-next {
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
  }

  .types article > div {
    min-height: 0;
    padding: 1rem;
  }

  .types h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.55rem);
  }

  .types .button {
    width: 100%;
  }

  .catering-feature {
    gap: 1rem;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .catering-media {
    border-width: 3px;
    border-radius: 1rem;
    box-shadow: 7px 7px 0 var(--yellow), 0 16px 34px rgba(0, 0, 0, 0.18);
  }

  .catering-video-overlay {
    min-height: 4.5rem;
    padding: 0.85rem;
  }

  .catering-video-overlay p {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .catering-video-overlay span {
    font-size: 0.78rem;
  }

  .catering-benefits {
    border-radius: 1rem;
    justify-content: flex-start;
  }

  .catering-benefits > span {
    flex: 1 1 145px;
    justify-content: center;
    min-height: 42px;
    font-size: 0.84rem;
  }

  .more h2 {
    max-width: 11ch;
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .card-grid h3 {
    min-height: 0;
  }

  .card-grid a {
    width: calc(100% - 2rem);
    justify-content: center;
    min-height: 46px;
  }

  .cinnamon-rolls {
    gap: 1.1rem;
  }

  .cinnamon-rolls h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cinnamon-price {
    width: 100%;
    justify-content: center;
    min-height: 66px;
    gap: 0.35rem;
    padding: 0.5rem 0.7rem;
    box-shadow: 6px 6px 0 var(--black), 0 14px 26px rgba(243, 111, 0, 0.2);
  }

  .cinnamon-price strong {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .cinnamon-price span,
  .cinnamon-price small {
    font-size: 0.82rem;
    padding: 0.3rem 0.42rem;
  }

  .cinnamon-media video,
  .cinnamon-media img {
    aspect-ratio: 1 / 1;
    object-position: center center;
  }

  .cinnamon-overlay {
    gap: 0.35rem;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .cinnamon-overlay h3 {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .cinnamon-overlay p {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .slide-copy {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.75rem;
  }

  .gift-card-hero,
  .jobs-hero,
  .giveback-hero {
    gap: 1rem;
  }

  .gift-card-copy,
  .jobs-hero-copy {
    max-width: 100%;
    padding: 1rem;
  }

  .gift-card-art,
  .jobs-hero-art {
    border-width: 3px;
    border-radius: 1.1rem;
    transform: none;
    box-shadow: 7px 7px 0 var(--yellow), 0 16px 34px rgba(17, 17, 17, 0.12);
  }

  .gift-card-art img,
  .jobs-hero-art img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .jobs-hero-art img {
    object-fit: contain;
  }

  .gift-benefits article,
  .jobs-highlights article,
  .jobs-position-grid article,
  .steps-grid article,
  .community-card-grid article {
    padding: 0.9rem;
  }

  .form-card,
  .admin-card,
  .page-card {
    border-radius: 1rem;
    padding: 1rem;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea,
  .availability-grid input,
  .form-card > label textarea {
    min-height: 52px;
    font-size: 1rem;
  }

  .availability-grid label {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .inline-options label,
  .amount-grid label {
    min-height: 52px;
  }

  .location-modal,
  .club-popup,
  .job-application-modal {
    padding: 0.5rem;
  }

  .job-application-modal {
    inset: 0;
    align-items: center;
    padding: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .location-modal__panel,
  .club-popup-card,
  .job-application-modal__panel {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    margin: 0;
    border-radius: 1rem;
    box-shadow: 6px 6px 0 var(--yellow), 0 18px 44px rgba(17, 17, 17, 0.26);
  }

  .job-application-modal__panel {
    width: min(100% - 24px, 560px);
    max-height: calc(100dvh - 24px);
    touch-action: pan-y;
  }

  .location-modal__panel {
    box-shadow: 6px 6px 0 var(--orange), 0 18px 44px rgba(17, 17, 17, 0.26);
  }

  .club-popup {
    align-items: start;
    padding-top: max(0.5rem, env(safe-area-inset-top));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .club-popup-card {
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.7rem;
    padding: 0.95rem;
    padding-bottom: calc(0.95rem + env(safe-area-inset-bottom));
  }

  .club-popup-card .popup-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    z-index: 3;
  }

  .club-popup-card .popup-copy {
    gap: 0.35rem;
  }

  .club-popup-card .eyebrow {
    font-size: 0.78rem;
  }

  .club-popup-card .popup-copy h2 {
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 0.9;
  }

  .club-popup-card .popup-copy p:not(.eyebrow),
  .club-popup-card .signup-consent {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .club-popup-card .signup-form {
    gap: 0.55rem;
  }

  .club-popup-card .signup-form input {
    min-height: 48px;
    padding: 0.7rem 0.85rem;
  }

  .club-popup-card .signup-form .button {
    position: sticky;
    bottom: 0;
    z-index: 2;
    min-height: 52px;
  }

  .location-modal h2 {
    max-width: 100%;
    padding-right: 3rem;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .location-options a {
    min-height: 72px;
  }

  .job-modal-form h2,
  .form-card h2,
  .admin-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .giveback-quick-grid,
  .giveback-wow-strip,
  .comparison-grid,
  .steps-grid,
  .community-card-grid {
    gap: 0.75rem;
  }

  .giveback-hero-art img {
    aspect-ratio: 4 / 3;
  }

  .footer {
    gap: 1.2rem;
  }

  .footer-grid {
    gap: 1rem;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 430px) {
  .mobile-order-link {
    max-width: 30vw;
    padding-inline: 0.48rem;
    font-size: 0.68rem;
  }

  .hero h1,
  .gift-card-copy h1,
  .jobs-hero-copy h1,
  .giveback-hero h1 {
    font-size: clamp(2.05rem, 10.7vw, 2.85rem);
  }

  .section-pad {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand strong {
    max-width: 40vw;
  }
}

/* Homepage polish pass */
.what-is {
  align-items: center;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 216, 77, 0.5), transparent 16rem),
    radial-gradient(circle at 94% 26%, rgba(243, 111, 0, 0.15), transparent 18rem),
    var(--white);
  overflow: hidden;
}

.what-is .section-copy {
  max-width: 600px;
}

.what-is h2 {
  font-size: clamp(2.1rem, 5.6vw, 3.65rem);
}

.kolache-simple-line {
  color: var(--ink);
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
  font-weight: 950;
}

.explain-card {
  align-self: center;
  max-width: 640px;
  margin-inline: auto;
  border: 4px solid var(--orange);
  border-radius: 1.35rem;
  box-shadow: 0 20px 50px rgba(35, 31, 28, 0.16), 10px 10px 0 var(--yellow);
}

.explain-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-education {
  position: absolute;
  left: 1rem;
  right: 5.5rem;
  top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  z-index: 2;
}

.video-education span {
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.78);
  color: var(--white);
  padding: 0.42rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(8px);
}

.explain-steps {
  justify-content: center;
  background: var(--white);
  text-align: center;
}

.explain-steps strong {
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
}

@media (max-width: 520px) {
  .video-education {
    position: static;
    padding: 0.8rem 0.9rem 0;
    background: var(--white);
  }

  .video-education span {
    background: var(--orange-soft);
    color: var(--black);
    border-color: rgba(243, 111, 0, 0.22);
  }
}

.types {
  grid-template-columns: 1fr;
  gap: 1.1rem;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 216, 77, 0.7), transparent 12rem),
    radial-gradient(circle at 96% 16%, rgba(243, 111, 0, 0.2), transparent 18rem),
    linear-gradient(180deg, #fffaf4, #fff2c3);
}

.types article {
  grid-template-rows: auto 1fr;
  border: 3px solid rgba(243, 111, 0, 0.22);
  border-radius: 1.25rem;
  box-shadow: 0 18px 44px rgba(35, 31, 28, 0.12);
}

.types article::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 0.32rem, rgba(243, 111, 0, 0.28) 0.36rem 0.58rem);
  z-index: 2;
}

.types img,
.type-visual {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.types img {
  object-fit: cover;
}

.type-visual img {
  object-fit: contain;
}

.types article > div {
  align-content: start;
  padding: 1.15rem;
}

.types h2 {
  font-size: clamp(1.9rem, 5.2vw, 2.85rem);
  line-height: 0.98;
}

.types p {
  color: var(--ink);
  font-weight: 850;
}

.types .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.catering-feature {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  background:
    radial-gradient(circle at 95% 11%, rgba(255, 216, 77, 0.55), transparent 18rem),
    radial-gradient(circle at 8% 85%, rgba(255, 255, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, #f36f00 0%, #df6200 45%, #111111 100%);
}

.catering-feature::before {
  content: "";
  right: -3rem;
  bottom: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 1rem, rgba(255, 255, 255, 0.28) 1.06rem 1.24rem);
}

.catering-feature .section-copy {
  max-width: 620px;
  gap: 0.78rem;
}

.catering-feature h2 {
  font-size: clamp(2rem, 5.7vw, 3.75rem);
}

.catering-feature .button-row {
  margin-top: 0.1rem;
}

.catering-media {
  position: relative;
  align-self: center;
  padding: 0;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22), 10px 10px 0 var(--yellow);
  overflow: hidden;
}

.catering-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  object-fit: cover;
}

.catering-video-overlay {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  min-height: clamp(5rem, 23%, 7.5rem);
  padding: clamp(1rem, 2.3vw, 1.45rem);
  border-radius: 0.95rem 0.95rem 1.1rem 1.1rem;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.74)),
    radial-gradient(circle at 92% 28%, rgba(255, 216, 77, 0.34), transparent 8rem);
  border-bottom: 2px solid rgba(255, 216, 77, 0.78);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(7px);
}

.catering-video-overlay::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(var(--orange), var(--yellow));
}

.catering-video-overlay p,
.catering-video-overlay span {
  margin: 0;
  padding-left: 0.8rem;
  text-wrap: balance;
}

.catering-video-overlay p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 0.95;
}

.catering-video-overlay span {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
}

.catering-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.7rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.catering-benefits > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 0.42rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 3px 3px 0 rgba(255, 216, 77, 0.8);
}

.catering-benefits > span > span {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 950;
}

.more {
  display: grid;
  gap: 1.35rem;
  background:
    radial-gradient(circle at 4% 9%, rgba(255, 216, 77, 0.42), transparent 15rem),
    radial-gradient(circle at 100% 20%, rgba(243, 111, 0, 0.15), transparent 18rem),
    var(--white);
  overflow: hidden;
}

.more .section-copy {
  max-width: 900px;
}

.more h2 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 5.8vw, 4.8rem);
}

.card-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  border: 2px solid rgba(243, 111, 0, 0.18);
  border-radius: 1.15rem;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(35, 31, 28, 0.1);
}

.card-grid img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: contain;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 216, 77, 0.75), transparent 3.4rem),
    radial-gradient(circle at 26% 74%, rgba(243, 111, 0, 0.12), transparent 5.5rem),
    #fff8e8;
  padding: 0.35rem;
  border-bottom: 1px solid rgba(243, 111, 0, 0.12);
}

.card-grid h3,
.card-grid p,
.card-grid a {
  margin-left: 1rem;
  margin-right: 1rem;
}

.card-grid h3 {
  margin-top: 1rem;
  min-height: 3.1rem;
  font-size: clamp(1.22rem, 2.2vw, 1.5rem);
}

.card-grid p {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  align-self: start;
}

.card-grid a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  padding: 0.45rem 0.75rem;
  box-shadow: 4px 4px 0 var(--yellow);
  align-self: end;
}

.cinnamon-rolls {
  background:
    radial-gradient(circle at 93% 8%, rgba(255, 216, 77, 0.66), transparent 14rem),
    radial-gradient(circle at 5% 84%, rgba(243, 111, 0, 0.18), transparent 18rem),
    linear-gradient(180deg, var(--white), var(--orange-soft));
}

.cinnamon-rolls::before {
  content: "";
  right: -4rem;
  top: -3rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 0.9rem, rgba(243, 111, 0, 0.16) 0.95rem 1.1rem);
}

.cinnamon-media {
  position: relative;
  border: 4px solid var(--orange);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 216, 77, 0.36), transparent 13rem),
    var(--white);
  box-shadow: 0 26px 80px rgba(35, 31, 28, 0.2), 12px 12px 0 var(--yellow);
}

.cinnamon-media video,
.cinnamon-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 44%;
}

.cinnamon-media img {
  display: none;
}

.cinnamon-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), transparent 36%, rgba(17, 17, 17, 0.58)),
    radial-gradient(circle at 18% 82%, rgba(243, 111, 0, 0.28), transparent 14rem);
}

.cinnamon-overlay {
  position: absolute;
  left: clamp(1rem, 3vw, 1.4rem);
  right: clamp(1rem, 3vw, 1.4rem);
  bottom: clamp(1rem, 3vw, 1.4rem);
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  max-width: 28rem;
}

.cinnamon-overlay span {
  width: fit-content;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  padding: 0.38rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--yellow);
}

.cinnamon-overlay h3 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.cinnamon-overlay p {
  max-width: 27rem;
  color: var(--white);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  font-weight: 900;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}

.cinnamon-overlay .button {
  width: fit-content;
  margin-top: 0.25rem;
  border-color: var(--white);
}

.story {
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 216, 77, 0.5), transparent 16rem),
    linear-gradient(180deg, #fffaf4, var(--white));
  overflow: hidden;
}

.story-carousel {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin-inline: auto;
}

.carousel-stage {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 1.45rem;
  background: var(--black);
  box-shadow: 0 22px 58px rgba(35, 31, 28, 0.16), 10px 10px 0 var(--orange);
  aspect-ratio: 4 / 5;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 380ms ease, transform 480ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.9rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.slide-copy span {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
}

.slide-copy p {
  color: var(--black);
  font-size: 0.98rem;
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--yellow);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dots button {
  min-width: 12px;
  width: 12px;
  height: 12px;
  border: 0;
  background: rgba(17, 17, 17, 0.22);
  box-shadow: none;
  padding: 0;
}

.carousel-dots button.is-active {
  width: 30px;
  background: var(--black);
}

@media (min-width: 720px) {
  .what-is {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  }

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

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

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

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

  .giveback-panel .wide {
    grid-column: 1 / -1;
  }

  .giveback-panel .wide {
    align-items: center;
    min-height: 118px;
  }

  .giveback-panel .wide .text-link {
    grid-column: 3;
    align-self: center;
  }

  .page-hero,
  .page-shell {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  }

  .gift-card-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  }

  .gift-card-hero::before {
    display: block;
  }

  .jobs-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  }

  .jobs-hero::before {
    display: block;
  }

  .jobs-hero-copy {
    background: rgba(255, 255, 255, 0.94);
  }

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

  .gift-card-copy {
    background: rgba(255, 255, 255, 0.94);
  }

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

  .form-grid.two-col,
  .availability-grid,
  .amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .giveback-hero,
  .comparison-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  }

  .giveback-quick-grid,
  .giveback-wow-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (min-width: 980px) {
  .gift-card-hero {
    min-height: min(760px, calc(100vh - 96px));
  }

  .gift-card-art {
    justify-self: end;
    max-width: 670px;
  }

  .jobs-hero {
    min-height: min(760px, calc(100vh - 96px));
  }

  .jobs-hero-art {
    justify-self: end;
    max-width: 670px;
  }

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

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

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

  .types article {
    grid-template-rows: 360px 1fr;
    min-height: 0;
  }

  .types img,
  .type-visual {
    aspect-ratio: 16 / 11;
  }

  .type-visual {
    min-height: 0;
  }

  .types article > div {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 320px;
    padding: 1.3rem;
  }

  .types h2 {
    font-size: clamp(2.15rem, 3.3vw, 3rem);
  }

  .catering-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 0.95rem 1.25rem;
    align-items: center;
  }

  .catering-media video {
    aspect-ratio: 16 / 9;
    max-height: 330px;
  }

  .catering-feature .catering-benefits {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }

  .story {
    grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1fr);
  }

  .giveback {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

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

  .giveback-panel .wide {
    grid-column: 1 / -1;
  }

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

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

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

}

/* Final mobile safeguards after page-specific rules */
@media (max-width: 719px) {
  .nav {
    width: min(100% - 20px, 1220px);
    min-height: 58px;
  }

  .nav-links {
    top: 58px;
    max-height: calc(100dvh - 58px);
    overflow: auto;
  }

  .section-pad {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }

  .hero,
  .what-is,
  .types,
  .catering-feature,
  .cinnamon-rolls,
  .story,
  .giveback-hero,
  .gift-card-hero,
  .jobs-hero {
    gap: 1.1rem;
  }

  .hero h1,
  .gift-card-copy h1,
  .jobs-hero-copy h1,
  .giveback-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 10.8vw, 3.2rem);
    line-height: 0.95;
  }

  .hero-lede,
  .hero-body,
  .page-hero p,
  .gift-card-copy p:not(.eyebrow),
  .jobs-hero-copy p:not(.eyebrow),
  .giveback-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero .button-row,
  .hero-actions,
  .page-hero .button-row,
  .gift-card-copy .button-row,
  .jobs-hero-copy .button-row,
  .giveback-hero .button-row,
  .community-final .button-row,
  .catering-feature .button-row,
  .cinnamon-rolls .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-value,
  .affordable-banner {
    width: 100%;
    font-size: clamp(1rem, 4.8vw, 1.3rem);
    text-align: center;
  }

  .hero-video-card video,
  .catering-media video,
  .explain-card video {
    aspect-ratio: 4 / 3;
  }

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

  .types article {
    grid-template-rows: auto auto;
    min-height: 0;
    align-items: start;
    border-radius: 1rem;
  }

  .types article > div {
    align-content: start;
    min-height: 0;
    height: auto;
    padding-bottom: 1rem;
  }

  .type-visual,
  .types img,
  .type-visual img {
    aspect-ratio: 1.18 / 1;
  }

  .types h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.55rem);
  }

  .types .button,
  .card-grid a {
    width: 100%;
  }

  .catering-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 1rem;
    gap: 0.52rem;
    justify-content: stretch;
    padding: 0.62rem;
  }

  .catering-benefits > span {
    flex: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.34rem;
    min-height: 52px;
    border-radius: 0.78rem;
    padding: 0.48rem 0.5rem;
    font-size: clamp(0.78rem, 3.7vw, 0.88rem);
    text-align: center;
    box-shadow: 3px 3px 0 rgba(255, 216, 77, 0.7);
  }

  .catering-benefits > span > span {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    font-size: 0.62rem;
  }

  .more h2,
  .cinnamon-rolls h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cinnamon-media video,
  .cinnamon-media img {
    aspect-ratio: 1 / 1;
  }

  .cinnamon-overlay h3 {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .gift-card-art,
  .jobs-hero-art {
    transform: none;
  }

  .gift-card-art img,
  .jobs-hero-art img,
  .giveback-hero-art img {
    aspect-ratio: 4 / 3;
  }

  .jobs-hero-art img {
    object-fit: contain;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea,
  .availability-grid input,
  .form-card > label textarea {
    min-height: 52px;
    font-size: 1rem;
  }

  .availability-grid label {
    grid-template-columns: 1fr;
  }

  .location-modal__panel,
  .club-popup-card,
  .job-application-modal__panel {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 58px - 1.7rem);
    margin: 0;
  }

  .analytics-consent {
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 20px);
    padding: 14px;
    border-radius: 18px;
    box-shadow: 6px 6px 0 var(--yellow), 0 14px 34px rgba(17, 17, 17, 0.18);
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-page .page-hero,
  .seo-grid,
  .seo-two {
    grid-template-columns: 1fr;
  }

  .seo-page .page-hero h1 {
    max-width: 11ch;
  }
}

@media (max-width: 430px) {
  .section-pad {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile-order-link {
    max-width: 30vw;
    padding-inline: 0.48rem;
    font-size: 0.68rem;
  }

  .brand strong {
    max-width: 40vw;
  }

  .hero h1,
  .gift-card-copy h1,
  .jobs-hero-copy h1,
  .giveback-hero h1 {
    font-size: clamp(2.05rem, 10.7vw, 2.85rem);
  }
}

/* What Is A Kolache storytelling page */
.kolache-story-page {
  background:
    radial-gradient(circle at 0 12%, rgba(255, 216, 77, 0.45), transparent 19rem),
    radial-gradient(circle at 98% 20%, rgba(243, 111, 0, 0.12), transparent 21rem),
    var(--cream);
}

.kolache-equation {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(243, 111, 0, 0.08), rgba(255, 216, 77, 0.28)),
    var(--white);
}

.equation-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  width: min(100%, 1050px);
  border: 4px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  padding: 0.7rem;
  box-shadow: 8px 8px 0 var(--yellow);
}

.equation-card span,
.equation-card strong {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  padding: 0.78rem 1.15rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 950;
  line-height: 1;
}

.equation-card strong {
  min-width: 2.7rem;
  background: var(--orange);
  color: var(--white);
}

.kolache-equation p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 900;
}

.kolache-taste {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 216, 77, 0.45), transparent 15rem),
    linear-gradient(180deg, var(--cream), var(--white));
}

.kolache-taste h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5.5vw, 5rem);
  line-height: 0.92;
}

.taste-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.taste-list span {
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 0.8rem 1rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 950;
  box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.85);
}

.taste-list span:nth-child(2n) {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.kolache-use-cases,
.kolache-favorite {
  background: var(--white);
}

.use-case-grid,
.favorite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.use-case-grid article {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  border: 3px solid rgba(243, 111, 0, 0.16);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, var(--cream), var(--white));
  box-shadow: 0 16px 34px rgba(35, 31, 28, 0.08), 6px 6px 0 rgba(255, 216, 77, 0.55);
}

.use-case-grid img {
  width: 100%;
  height: clamp(150px, 18vw, 210px);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 216, 77, 0.42), transparent 12rem),
    var(--cream);
  padding: 1rem;
}

.use-case-grid div {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem;
}

.use-case-grid h3,
.favorite-grid h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.use-case-grid p,
.favorite-grid p {
  color: var(--muted);
  font-weight: 850;
}

.kolache-story-types {
  padding-top: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 6vw, 5rem);
}

.kolache-story-types .type-visual {
  min-height: clamp(230px, 26vw, 330px);
}

.kolache-story-types .types img,
.kolache-story-types img {
  object-fit: contain;
}

.kolache-story-types .type-next {
  cursor: pointer;
}

.price-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  padding: 0.45rem 0.75rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--orange);
}

.favorite-grid article {
  display: grid;
  gap: 0.55rem;
  border: 3px solid rgba(243, 111, 0, 0.16);
  border-radius: 1.25rem;
  background: var(--white);
  padding: 1.15rem;
  box-shadow: 0 14px 30px rgba(35, 31, 28, 0.08), 6px 6px 0 rgba(255, 216, 77, 0.7);
}

.favorite-grid span {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--yellow);
}

.kolache-final-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 216, 77, 0.55), transparent 13rem),
    linear-gradient(135deg, var(--orange), #f79618 56%, var(--yellow));
  color: var(--white);
  text-align: center;
}

.kolache-final-cta .eyebrow {
  color: var(--black);
}

.kolache-final-cta h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.92;
  text-shadow: 0 4px 0 rgba(17, 17, 17, 0.15);
}

.kolache-final-cta p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 900;
}

@media (max-width: 980px) {
  .kolache-taste {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 719px) {
  .equation-card {
    border-radius: 1.4rem;
  }

  .equation-card span,
  .equation-card strong {
    width: 100%;
  }

  .use-case-grid,
  .favorite-grid {
    grid-template-columns: 1fr;
  }

  .kolache-story-types .type-visual {
    min-height: 250px;
  }

  .price-badge {
    top: 0.75rem;
    left: 0.75rem;
  }
}

/* Public header standard: keep every marketing page visually identical. */
body {
  padding-top: 78px;
}

.site-header {
  min-height: 78px;
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 78px;
  gap: 1rem;
}

.brand {
  flex: 0 1 auto;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.brand strong {
  max-width: none;
  font-size: clamp(1.4rem, 2.1vw, 1.72rem);
  line-height: 0.95;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  color: var(--orange-dark);
  font-size: clamp(0.8rem, 1.16vw, 0.95rem);
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-toggle {
  width: auto;
  min-width: 64px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-toggle span {
  display: none;
}

.nav-toggle::after {
  content: "Menu";
  font-size: 0.96rem;
}

@media (min-width: 1180px) {
  .nav-toggle,
  .mobile-order-link {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

@media (min-width: 980px) and (max-width: 1179px) {
  .nav-toggle {
    display: inline-flex;
  }

  .mobile-order-link,
  .nav-links {
    display: none;
  }

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

@media (max-width: 979px) {
  .mobile-order-link {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 719px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
  }

  .nav {
    width: min(100% - 20px, 1220px);
    min-height: 72px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand strong {
    font-size: clamp(1.18rem, 5.2vw, 1.6rem);
  }

  .brand small {
    display: block;
    font-size: clamp(0.66rem, 3.1vw, 0.82rem);
  }

  .nav-links {
    top: 72px;
  }
}

@media (max-width: 430px) {
  body {
    padding-top: 66px;
  }

  .site-header {
    min-height: 66px;
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand strong {
    max-width: none;
    font-size: clamp(1rem, 5.6vw, 1.22rem);
  }

  .brand small {
    font-size: clamp(0.56rem, 3vw, 0.68rem);
  }

  .nav-toggle {
    min-width: 52px;
    padding-inline: 0.15rem;
  }

  .nav-toggle::after {
    font-size: 0.82rem;
  }

  .nav-links {
    top: 66px;
  }
}

@media (max-width: 900px) {
  .contact-hero,
  .contact-location-grid,
  .contact-help-modal__locations {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 719px) {
  .contact-hero-copy,
  .contact-hero-card,
  .contact-location-card,
  .contact-help-grid a {
    border-radius: 1rem;
  }

  .contact-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 11vw, 3.7rem);
  }

  .contact-hero-card strong {
    font-size: clamp(2.5rem, 11vw, 3.3rem);
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-grid a {
    min-height: 0;
  }

  .contact-card-actions .button {
    flex: 1 1 100%;
  }

  .contact-help-modal {
    inset: 66px 0 0;
    padding: 0.6rem;
  }

  .contact-help-modal__panel {
    width: 100%;
    max-height: calc(100dvh - 66px - 1.2rem);
    border-radius: 1rem;
    box-shadow: 6px 6px 0 var(--yellow), 0 18px 44px rgba(17, 17, 17, 0.26);
  }

  .contact-help-modal h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
}

/* Menu board */
.menu-board {
  background:
    radial-gradient(circle at 3% 6%, rgba(255, 216, 77, 0.28), transparent 24rem),
    radial-gradient(circle at 94% 18%, rgba(239, 116, 39, 0.12), transparent 22rem),
    linear-gradient(180deg, #fffaf4 0%, #fff7ea 100%);
  display: grid;
  gap: 1.35rem;
}

.menu-board-header {
  max-width: 780px;
}

.menu-board-header h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
  margin: 0.35rem 0 0;
}

.menu-board-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 850;
  line-height: 1.35;
  margin: 0.75rem 0 0;
  max-width: 650px;
}

.menu-category {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 1.15rem;
  box-shadow: 0 18px 48px rgba(35, 31, 28, 0.08);
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
}

.menu-category-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.menu-title-lockup {
  align-items: flex-start;
  display: flex;
  gap: 0.8rem;
}

.menu-number {
  align-items: center;
  background: var(--orange);
  border-radius: 0.75rem;
  box-shadow: 0.28rem 0.28rem 0 var(--yellow);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 950;
  height: 2.65rem;
  justify-content: center;
  width: 2.65rem;
}

.menu-category h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
  margin: 0;
}

.menu-category-head p {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1.34;
  margin: 0.3rem 0 0;
}

.menu-price-badge {
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0.22rem 0.22rem 0 var(--orange);
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  padding: 0.55rem 0.8rem;
  text-transform: uppercase;
}

.menu-value-category {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 216, 77, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 236, 0.94));
}

.menu-value-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-value-card {
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 1.12rem;
  box-shadow: 0 18px 42px rgba(35, 31, 28, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.28rem;
}

.menu-value-card-highlight {
  border: 2px solid rgba(239, 116, 39, 0.35);
  box-shadow: 0 16px 38px rgba(239, 116, 39, 0.09);
}

.menu-value-kicker {
  color: var(--brown);
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  font-weight: 950;
  line-height: 1.05;
  margin: 0 0 0.28rem;
}

.menu-value-price-row {
  align-items: baseline;
  border-bottom: 1px solid rgba(35, 31, 28, 0.1);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.menu-value-price-row span,
.menu-value-card small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.25;
}

.menu-value-price-row span {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.menu-value-price-row strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 950;
  white-space: nowrap;
}

.menu-value-save {
  align-self: flex-start;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0.16rem 0.16rem 0 var(--orange);
  color: var(--ink);
  display: inline-flex;
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  font-weight: 950;
  line-height: 1;
  padding: 0.48rem 0.72rem;
}

.menu-value-card small {
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  margin: -0.1rem 0 0.15rem;
}

.menu-product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.menu-product-card {
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 1rem;
  box-shadow: 0 14px 34px rgba(35, 31, 28, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.05rem;
}

.menu-product-card img,
.menu-product-placeholder {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 77, 0.25), transparent 70%),
    #fff8ec;
  border-radius: 0.8rem;
  height: 185px;
  object-fit: contain;
  width: 100%;
}

.menu-product-placeholder {
  align-items: center;
  border: 2px dashed rgba(239, 116, 39, 0.35);
  color: var(--brown);
  display: flex;
  font-size: 0.95rem;
  font-weight: 950;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.menu-product-card h3 {
  font-size: 1.24rem;
  line-height: 1.08;
  margin: 0.85rem 0 0;
}

.menu-product-card p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.34;
  margin: 0.38rem 0 0;
}

.menu-sweet-note {
  background: #fff8db;
  border-left: 6px solid var(--orange);
  border-radius: 0.7rem;
  color: var(--ink);
  display: inline-block;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
}

.menu-sweet-layout {
  align-items: stretch;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.menu-flavor-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.menu-flavor {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.9rem;
  color: var(--ink);
  display: flex;
  font-size: 1.08rem;
  font-weight: 950;
  justify-content: center;
  line-height: 1.12;
  min-height: 4.8rem;
  padding: 0.9rem;
  text-align: center;
}

.menu-showcase {
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 216, 77, 0.32), transparent 55%),
    #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.95rem;
  display: flex;
  min-height: 100%;
  padding: 1.1rem;
}

.menu-showcase img {
  height: 100%;
  max-height: 280px;
  object-fit: contain;
  width: 100%;
}

.menu-duo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.menu-cinnamon-grid,
.menu-price-panels {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.menu-cinnamon-card,
.menu-price-panel {
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.9rem;
  overflow: hidden;
}

.menu-cinnamon-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.menu-cinnamon-card div,
.menu-price-panel {
  padding: 0.85rem;
}

.menu-cinnamon-card h3,
.menu-price-panel h3 {
  font-size: 0.98rem;
  line-height: 1.1;
  margin: 0;
}

.menu-cinnamon-card p {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0.35rem 0 0;
}

.menu-cinnamon-card strong {
  color: var(--orange-dark);
  display: block;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.menu-price-panel p {
  align-items: baseline;
  border-bottom: 1px solid rgba(35, 31, 28, 0.1);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin: 0.6rem 0 0;
  padding-bottom: 0.45rem;
}

.menu-price-panel span,
.menu-price-panel small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.menu-price-panel strong {
  color: var(--ink);
  font-size: 0.98rem;
  white-space: nowrap;
}

.menu-price-panel small {
  display: block;
  margin-top: 0.32rem;
}

.menu-drink-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
}

.menu-drink-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.9rem;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  min-height: 11rem;
  padding: 0.95rem 0.85rem 1rem;
  text-align: center;
}

.menu-drink-card img {
  height: 7.2rem;
  max-width: 10.5rem;
  object-fit: contain;
  width: 100%;
}

.menu-drink-card h3 {
  font-size: 1rem;
  line-height: 1.05;
  margin: 0;
}

.menu-action-strip {
  background: linear-gradient(135deg, var(--orange), #ff8f22);
  border-radius: 1.1rem;
  box-shadow: 0 20px 52px rgba(239, 116, 39, 0.24);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.menu-action-strip a {
  align-content: center;
  color: #fff;
  display: grid;
  min-height: 6rem;
  padding: 1rem;
  text-decoration: none;
}

.menu-action-strip a:nth-child(2) {
  background: rgba(0, 0, 0, 0.08);
}

.menu-action-strip a:nth-child(3) {
  background: rgba(0, 0, 0, 0.14);
}

.menu-action-strip strong {
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.menu-action-strip span {
  font-size: 0.85rem;
  font-weight: 850;
  margin-top: 0.35rem;
}

@media (max-width: 1190px) and (min-width: 1025px) {
  .menu-product-grid,
  .menu-product-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) and (min-width: 720px) {
  .menu-value-grid,
  .menu-product-grid,
  .menu-product-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-sweet-layout,
  .menu-duo-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 719px) {
  .menu-board {
    gap: 0.95rem;
    padding-top: 2.5rem;
  }

  .menu-category {
    border-radius: 1rem;
    padding: 1rem;
  }

  .menu-category-head {
    display: grid;
    gap: 0.65rem;
  }

  .menu-price-badge {
    justify-self: start;
  }

  .menu-product-grid,
  .menu-product-grid-compact {
    gap: 0.85rem;
    grid-template-columns: 1fr;
  }

  .menu-product-card {
    padding: 1rem;
  }

  .menu-product-card img,
  .menu-product-placeholder {
    height: 180px;
  }

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

  .menu-product-card p {
    font-size: 0.98rem;
  }

  .menu-value-grid,
  .menu-sweet-layout,
  .menu-duo-grid,
  .menu-price-panels,
  .menu-action-strip {
    grid-template-columns: 1fr;
  }

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

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

  .menu-action-strip a {
    min-height: 4.6rem;
  }
}

@media (max-width: 430px) {
  .menu-flavor-grid {
    grid-template-columns: 1fr;
  }

  .menu-title-lockup {
    gap: 0.6rem;
  }

  .menu-number {
    height: 2.35rem;
    width: 2.35rem;
  }

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

/* Menu page - merged from launch gateway */
.menu-page {
  scroll-behavior: smooth;
}

.menu-board {
  background:
    radial-gradient(circle at 2% 2%, rgba(255, 216, 77, 0.25), transparent 22rem),
    radial-gradient(circle at 96% 10%, rgba(239, 116, 39, 0.14), transparent 24rem),
    linear-gradient(180deg, #fffaf4 0%, #fff6e8 100%);
  display: grid;
  gap: clamp(1.45rem, 2.8vw, 2.35rem);
  scroll-margin-top: 8rem;
}

.menu-jump-nav.section-pad {
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 213, 0.9);
  box-shadow: 0 14px 30px rgba(35, 31, 28, 0.06);
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.78rem;
  padding-top: 0.78rem;
  position: sticky;
  scrollbar-width: none;
  top: 78px;
  z-index: 30;
}

.menu-jump-nav::-webkit-scrollbar {
  display: none;
}

.menu-jump-nav a {
  background: #fff;
  border: 1px solid rgba(239, 116, 39, 0.2);
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  padding: 0.74rem 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.menu-jump-nav a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.menu-section-heading {
  align-items: center;
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.6rem);
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.34fr);
  max-width: 1180px;
}

.menu-section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 0.98;
  margin: 0.35rem 0 0;
}

.menu-section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 850;
  line-height: 1.35;
  margin: 0.75rem 0 0;
  max-width: 660px;
}

.menu-section-order {
  align-items: center;
  background: linear-gradient(135deg, var(--orange), #ff8f22);
  border: 2px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 0.25rem 0 rgba(239, 116, 39, 0.18);
  color: #fff;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 950;
  justify-content: center;
  line-height: 1;
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.menu-section-order:hover {
  transform: translateY(-1px);
}

.menu-heading-order {
  align-self: stretch;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 216, 77, 0.34), transparent 6rem),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(239, 116, 39, 0.18);
  border-radius: 1rem;
  box-shadow: 0 16px 34px rgba(35, 31, 28, 0.08);
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  padding: 1rem;
}

.menu-heading-order span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.menu-heading-order .menu-section-order {
  width: 100%;
}

.menu-value-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-category,
.menu-group-bridge,
.menu-bottom-cta {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 1rem;
  box-shadow: 0 18px 44px rgba(35, 31, 28, 0.08);
}

.menu-value-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 228, 0.96), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(239, 116, 39, 0.18);
  border-radius: 1rem;
  box-shadow: 0 18px 44px rgba(35, 31, 28, 0.08);
  position: relative;
  overflow: hidden;
}

.menu-value-card::before {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  content: "";
  height: 0.42rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.menu-value-card {
  display: grid;
  gap: 0.78rem;
  padding: clamp(1.25rem, 2.3vw, 1.8rem);
}

.menu-value-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 252, 232, 0.96), rgba(255, 255, 255, 0.94));
}

.menu-value-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 243, 224, 0.96), rgba(255, 255, 255, 0.94));
}

.menu-combo-card {
  grid-column: span 2;
}

.menu-card-kicker {
  color: var(--brown);
  font-size: clamp(1.32rem, 2.25vw, 1.8rem);
  font-weight: 950;
  line-height: 1.05;
  margin: 0 0 0.3rem;
}

.menu-value-note {
  color: var(--orange-dark);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.3;
  margin: -0.15rem 0 0.15rem;
}

.menu-price-row {
  align-items: center;
  border-top: 1px solid rgba(239, 116, 39, 0.16);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem 0 0.72rem;
}

.menu-price-row span,
.menu-mini-prices span {
  color: var(--muted);
  display: grid;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 900;
  gap: 0.2rem;
  line-height: 1.2;
}

.menu-price-row small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.28;
  max-width: 18rem;
}

.menu-price-row strong,
.menu-mini-prices strong {
  color: var(--orange-dark);
  font-size: clamp(1.9rem, 2.7vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.menu-combo-grid {
  display: grid;
  gap: 0.72rem;
}

.menu-combo-item {
  align-items: center;
  border-top: 1px solid rgba(239, 116, 39, 0.16);
  display: grid;
  gap: 1rem;
  grid-template-columns: 9.5rem minmax(0, 1fr) auto;
  padding-top: 0.78rem;
}

.menu-combo-item img {
  background: #fff8ec;
  border: 1px solid rgba(239, 116, 39, 0.14);
  border-radius: 0.8rem;
  height: 6.85rem;
  object-fit: contain;
  padding: 0.25rem;
  width: 100%;
}

.menu-combo-item div {
  display: grid;
  gap: 0.18rem;
}

.menu-combo-item span {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 950;
  line-height: 1.1;
}

.menu-combo-item small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.22;
}

.menu-combo-item strong {
  color: var(--orange-dark);
  font-size: clamp(1.9rem, 2.7vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.menu-mini-prices {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-mini-prices div {
  align-items: center;
  background: #fff8ec;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.95rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.1rem;
}

.menu-category {
  padding: clamp(1.25rem, 2.6vw, 1.9rem);
  scroll-margin-top: 8rem;
}

.menu-category-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.menu-category-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
  margin: 0.25rem 0 0;
}

.menu-category-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1.34;
  margin: 0.45rem 0 0;
  max-width: 720px;
}

.menu-category-price {
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0.18rem 0.18rem 0 var(--orange);
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  padding: 0.58rem 0.8rem;
  text-transform: uppercase;
}

.menu-category-actions {
  align-items: end;
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

.menu-group-bridge {
  align-items: center;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 216, 77, 0.3), transparent 13rem),
    linear-gradient(135deg, #fff, #fff7e8);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
}

.menu-group-bridge h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1;
  margin: 0.25rem 0 0;
}

.menu-group-bridge p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
  margin: 0.5rem 0 0;
  max-width: 45rem;
}

.menu-group-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.menu-item-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-item-card {
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(35, 31, 28, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.05rem, 1.6vw, 1.35rem);
}

.menu-item-card img,
.menu-photo-placeholder {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 77, 0.26), transparent 70%),
    #fff8ec;
  border-radius: 0.85rem;
  height: 245px;
  object-fit: contain;
  width: 100%;
}

.menu-item-card img {
  object-fit: cover;
}

.menu-photo-placeholder {
  align-items: center;
  border: 2px dashed rgba(239, 116, 39, 0.38);
  color: var(--brown);
  display: flex;
  font-size: 1rem;
  font-weight: 950;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.menu-item-card h3,
.menu-flavor-card h3 {
  color: var(--ink);
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  margin: 1rem 0 0;
}

.menu-item-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.08rem);
  font-weight: 825;
  line-height: 1.34;
  margin: 0.5rem 0 0;
}

.menu-sweet-layout {
  align-items: start;
  display: grid;
  gap: 1.35rem;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.menu-sweet-flavors {
  display: grid;
  gap: 1rem;
}

.menu-sweet-note {
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.24), rgba(255, 248, 228, 0.95));
  border: 1px solid rgba(239, 116, 39, 0.2);
  border-left: 5px solid var(--orange);
  border-radius: 0.95rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1.05rem;
}

.menu-sweet-note strong {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  font-weight: 950;
  line-height: 1.1;
}

.menu-sweet-note span {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.3;
}

.menu-flavor-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-flavor-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.95rem;
  display: flex;
  justify-content: center;
  min-height: 4.85rem;
  padding: 0.85rem;
  text-align: center;
}

.menu-flavor-card h3 {
  margin: 0;
}

.menu-sweet-video {
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 216, 77, 0.22), transparent 18rem),
    #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(35, 31, 28, 0.07);
  display: grid;
  grid-template-rows: auto auto;
  max-width: 520px;
  overflow: hidden;
  width: 100%;
}

.menu-sweet-video video {
  background: #fff8ec;
  display: block;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.menu-sweet-video div {
  background: linear-gradient(135deg, var(--orange), #ff8f22);
  color: #fff;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
}

.menu-sweet-video strong {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 950;
  line-height: 1;
}

.menu-sweet-video span {
  font-weight: 850;
  line-height: 1.25;
}

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

.menu-cinnamon-card {
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.9rem;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1fr);
  overflow: hidden;
}

.menu-cinnamon-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  width: 100%;
}

.menu-cinnamon-card div {
  align-content: center;
  display: grid;
  padding: 1.1rem;
}

.menu-cinnamon-card h3,
.menu-drink-card h3 {
  font-size: 1.2rem;
  line-height: 1.08;
  margin: 0;
}

.menu-cinnamon-card p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.32;
  margin: 0.45rem 0 0;
}

.menu-cinnamon-card strong {
  color: var(--orange-dark);
  display: block;
  font-size: 2rem;
  font-weight: 950;
  margin-top: 0.7rem;
}


.menu-cinnamon-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 226, 71, 0.55), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 231, 0.95));
  border-color: rgba(244, 119, 0, 0.22);
  padding: clamp(1rem, 2.6vw, 2rem);
}

.menu-cinnamon-copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.menu-cinnamon-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.menu-cinnamon-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 850;
  line-height: 1.36;
}

.menu-cinnamon-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 30rem;
}

.menu-cinnamon-prices div {
  display: grid;
  gap: 0.25rem;
  border: 2px solid rgba(244, 119, 0, 0.2);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.72rem;
}

.menu-cinnamon-prices span {
  color: var(--ink);
  font-weight: 950;
  line-height: 1.08;
}

.menu-cinnamon-prices strong {
  color: var(--orange-dark);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 950;
  line-height: 0.95;
}

.menu-cinnamon-media {
  position: relative;
  min-height: clamp(22rem, 42vw, 34rem);
  overflow: hidden;
  border: 3px solid var(--black);
  border-radius: 1.35rem;
  background: var(--black);
  box-shadow: 10px 10px 0 var(--yellow);
}

.menu-cinnamon-media video,
.menu-cinnamon-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-cinnamon-media img {
  display: none;
}

.menu-cinnamon-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  background: rgba(17, 17, 17, 0.82);
  color: var(--white);
  padding: 0.72rem 0.82rem;
  backdrop-filter: blur(8px);
}

.menu-cinnamon-overlay span,
.menu-cinnamon-overlay strong {
  font-weight: 950;
  line-height: 1.1;
}

.menu-cinnamon-overlay span {
  color: var(--yellow);
  font-family: var(--font-display);
}

@media (max-width: 719px) {
  .menu-cinnamon-feature {
    grid-template-columns: 1fr;
  }

  .menu-cinnamon-copy h2 {
    max-width: 12ch;
  }

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

  .menu-cinnamon-media {
    min-height: 24rem;
  }
}

.menu-drink-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.menu-drink-card {
  align-content: start;
  background: #fff;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 0.9rem;
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 0.85rem 1rem;
  text-align: center;
}

.menu-drink-card img {
  background: #fff8ec;
  border-radius: 0.7rem;
  height: 155px;
  object-fit: contain;
  padding: 0.35rem;
  width: 100%;
}

.menu-drink-card img[src$=".svg"] {
  object-fit: contain;
  padding: 1rem;
}

.menu-bottom-cta {
  align-items: center;
  background:
    radial-gradient(circle at 95% 2%, rgba(255, 216, 77, 0.36), transparent 13rem),
    radial-gradient(circle at 4% 100%, rgba(239, 116, 39, 0.08), transparent 14rem),
    linear-gradient(135deg, #fff, #fffaf1 60%, #fff0d8);
  display: grid;
  gap: clamp(1.15rem, 2.4vw, 1.8rem);
  grid-template-columns: minmax(280px, 0.82fr) minmax(540px, 1.18fr);
  padding: clamp(1.25rem, 2.6vw, 1.85rem);
}

.menu-bottom-cta h2 {
  font-size: clamp(1.9rem, 3.15vw, 2.85rem);
  line-height: 1;
  margin: 0;
  max-width: 14ch;
}

.menu-bottom-cta p {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
  margin: 0.65rem 0 0;
  max-width: 32rem;
}

.menu-cta-actions {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-cta-card {
  align-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(35, 31, 28, 0.3);
  border-radius: 0.8rem;
  box-shadow: 0 12px 28px rgba(35, 31, 28, 0.07);
  color: var(--ink);
  display: grid;
  gap: 0.45rem;
  min-height: 7.05rem;
  padding: 1.05rem;
  position: relative;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-cta-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 30px rgba(35, 31, 28, 0.12);
  transform: translateY(-2px);
}

.menu-cta-card::after {
  align-items: center;
  background: rgba(239, 116, 39, 0.1);
  border-radius: 999px;
  color: var(--orange);
  content: ">";
  display: flex;
  font-size: 0.95rem;
  font-weight: 950;
  height: 1.75rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  width: 1.75rem;
}

.menu-cta-card span {
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  font-weight: 950;
  line-height: 1;
  max-width: 10rem;
  padding-right: 1.9rem;
}

.menu-cta-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.22;
}

.menu-cta-card-primary {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 216, 77, 0.42), transparent 7rem),
    linear-gradient(135deg, var(--orange), #ff8a18);
  border-color: transparent;
  box-shadow: 0 0.28rem 0 rgba(239, 116, 39, 0.18), 0 16px 30px rgba(239, 116, 39, 0.2);
  color: #fff;
}

.menu-cta-card-primary::after {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.menu-cta-card-primary small {
  color: #fff8ec;
}

.menu-sticky-order {
  display: none;
}

.public-mobile-action,
.catering-mobile-action {
  display: none;
}

@media (max-width: 719px) {
  body:has(.public-mobile-action),
  body:has(.catering-mobile-action) {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }

  .public-mobile-action,
  .catering-mobile-action {
    background: rgba(255, 250, 244, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(234, 223, 213, 0.92);
    border-radius: 1rem 1rem 0 0;
    bottom: 0;
    box-shadow: 0 -16px 34px rgba(35, 31, 28, 0.13);
    display: grid;
    gap: 0.55rem;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 0.65rem max(0.75rem, env(safe-area-inset-left)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
    position: fixed;
    right: 0;
    z-index: 80;
  }

  .public-mobile-action a,
  .catering-mobile-action a,
  .catering-mobile-action button {
    align-items: center;
    background: #fff;
    border: 2px solid rgba(35, 31, 28, 0.85);
    border-radius: 999px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 950;
    justify-content: center;
    line-height: 1;
    min-height: 2.9rem;
    padding: 0.72rem 0.6rem;
    text-align: center;
    text-decoration: none;
  }

  .public-mobile-action-primary,
  .catering-mobile-action-primary {
    background: linear-gradient(135deg, var(--orange), #ff8f22) !important;
    border-color: var(--orange) !important;
    box-shadow: 0 0.18rem 0 rgba(239, 116, 39, 0.22);
    color: #fff !important;
  }
}

@media (max-width: 1190px) and (min-width: 1025px) {
  .menu-item-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) {
  .menu-section-heading,
  .menu-group-bridge {
    grid-template-columns: 1fr;
  }

  .menu-section-heading {
    max-width: none;
  }

  .menu-group-actions {
    justify-content: flex-start;
  }

  .menu-value-grid,
  .menu-item-grid,
  .menu-sweet-layout,
  .menu-flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .menu-cta-card-primary {
    grid-row: auto;
  }

  .menu-combo-card {
    grid-column: span 2;
  }
}

@media (max-width: 719px) {
  .menu-value-grid,
  .menu-item-grid,
  .menu-sweet-layout,
  .menu-flavor-grid,
  .menu-cinnamon-grid,
  .menu-drink-grid,
  .menu-mini-prices {
    grid-template-columns: 1fr;
  }

  .menu-category-head {
    display: grid;
  }

  .menu-category-actions,
  .menu-category-price {
    justify-items: start;
    justify-self: start;
  }

  .menu-category-actions {
    align-items: start;
  }

  .menu-combo-card {
    grid-column: auto;
  }

  .menu-combo-item {
    align-items: center;
    gap: 0.62rem 0.82rem;
    grid-template-columns: minmax(6rem, 42%) minmax(0, 1fr);
  }

  .menu-combo-item img {
    grid-row: span 2;
    height: 6.15rem;
  }

  .menu-combo-item span {
    font-size: 0.98rem;
  }

  .menu-combo-item small {
    font-size: 0.78rem;
    line-height: 1.16;
  }

  .menu-combo-item strong {
    font-size: clamp(1.95rem, 12vw, 2.35rem);
    justify-self: start;
  }

  .menu-item-card img,
  .menu-photo-placeholder {
    height: 220px;
  }

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

  .menu-cinnamon-card img {
    min-height: 220px;
  }

  .menu-sweet-video {
    grid-template-rows: auto auto;
    max-width: none;
  }

  .menu-sweet-video video {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

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

  .menu-cta-card {
    min-height: auto;
  }

  .menu-page {
    padding-bottom: 5.7rem;
  }

  .menu-jump-nav.section-pad {
    top: 66px;
  }

  .menu-section-heading {
    gap: 0.9rem;
  }

  .menu-section-order {
    min-height: 2.55rem;
    white-space: normal;
  }

  .menu-group-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-group-actions .button {
    width: 100%;
  }

  .menu-sticky-order {
    display: none;
  }
}

/* Final public chrome lock.
   These rules intentionally live at the end so every public page uses the same
   header and footer proportions, regardless of page-specific styles above. */
body {
  padding-top: 78px;
}

.site-header {
  min-height: 78px;
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 78px;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
  gap: 0.65rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.brand strong {
  max-width: none;
  font-family: var(--font-body);
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  color: var(--orange-dark);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  top: 78px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
}

.nav-cta {
  min-height: 44px;
  padding: 0.64rem 0.82rem;
  border-radius: 0.52rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
}

.nav-toggle {
  width: auto;
  min-width: 64px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-toggle span {
  display: none;
}

.nav-toggle::after {
  content: "Menu";
  font-size: 0.96rem;
}

.footer {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream), #fff0cf);
  padding: 2.75rem max(1rem, calc((100vw - 1220px) / 2));
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  flex: 0 0 74px;
}

.footer-brand strong {
  display: block;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.footer-brand p {
  max-width: 62ch;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6rem);
}

.footer-grid > div {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-grid h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.footer-grid p {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--muted);
}

@media (min-width: 1180px) {
  .nav-toggle,
  .mobile-order-link {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.18rem;
    padding: 0;
    border: 0;
    background: transparent;
  }
}

@media (min-width: 980px) and (max-width: 1179px) {
  .mobile-order-link,
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

@media (max-width: 979px) {
  .mobile-order-link {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 719px) {
  body {
    padding-top: 72px;
  }

  .site-header,
  .nav {
    min-height: 72px;
  }

  .nav {
    width: min(100% - 20px, 1220px);
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand strong {
    font-size: clamp(1.18rem, 5.2vw, 1.6rem);
  }

  .brand small {
    font-size: clamp(0.66rem, 3.1vw, 0.82rem);
  }

  .nav-links {
    top: 72px;
  }

  .footer {
    padding: 1.8rem 1rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 430px) {
  body {
    padding-top: 66px;
  }

  .site-header,
  .nav {
    min-height: 66px;
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand strong {
    font-size: clamp(1rem, 5.6vw, 1.22rem);
  }

  .brand small {
    font-size: clamp(0.56rem, 3vw, 0.68rem);
  }

  .nav-toggle {
    min-width: 52px;
  }

  .nav-toggle::after {
    font-size: 0.82rem;
  }

  .nav-links {
    top: 66px;
  }
}
