:root {
  --orange: #f36f00;
  --orange-dark: #b84f00;
  --orange-deep: #ca5500;
  --orange-soft: #fff0df;
  --yellow: #ffd84d;
  --cream: #fff8e8;
  --white: #ffffff;
  --black: #111111;
  --ink: #231f1c;
  --muted: #6c625a;
  --line: #eadfd5;
  --shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
  --radius: 22px;
  --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;
}

* {
  box-sizing: border-box;
}

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

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

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

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  color: var(--black);
  font-family: var(--font-display);
  line-height: 0.96;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 6.2vw, 3.9rem);
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

h4 {
  font-size: 1.05rem;
}

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

section {
  position: relative;
  padding: 2.35rem max(1rem, calc((100vw - 1180px) / 2));
}

.skip-link {
  position: absolute;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.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;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-links a,
.button {
  text-decoration: none;
}

.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;
}

.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;
  }
}

.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);
}

.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);
}

.eyebrow {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 0.85rem 1.18rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

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

.button-secondary {
  background: var(--white);
  color: var(--black);
  box-shadow: 5px 5px 0 rgba(244, 119, 0, 0.22);
}

.hero {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 226, 71, 0.95), transparent 10rem),
    radial-gradient(circle at 91% 11%, rgba(244, 119, 0, 0.28), transparent 16rem),
    linear-gradient(135deg, #fff5df 0%, #fffdf8 46%, #ffeeb3 100%);
}

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

.hero::before {
  right: -4rem;
  top: 8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 1.05rem, rgba(244, 119, 0, 0.24) 1.1rem 1.28rem);
}

.hero::after {
  left: -2.5rem;
  bottom: 2rem;
  width: 16rem;
  height: 7rem;
  border-radius: 70% 30% 60% 40%;
  background: var(--orange);
  opacity: 0.12;
  transform: rotate(-18deg);
}

.hero-copy,
.section-heading,
.builder-card {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 0.88rem;
  max-width: 34rem;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.2rem, 6.8vw, 4.6rem);
}

.hero-lede {
  max-width: 43ch;
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 950;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.2rem;
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  padding: 0.42rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 2px 2px 0 rgba(244, 119, 0, 0.16);
}

.hero-badges span::before {
  content: "✓";
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 950;
  box-shadow: 0 0 0 3px rgba(255, 226, 71, 0.72);
}

.hero .button {
  min-height: 46px;
  min-width: 9.4rem;
  padding: 0.72rem 1rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  overflow: visible;
  border: 4px solid var(--orange);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow), 12px 12px 0 var(--yellow);
}

.hero-visual img,
.hero-visual video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 25px;
}

.hero-video video {
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(0, 0, 0, 0.1) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 226, 71, 0.18), transparent 28%);
}

@media (max-width: 719px) {
  .builder {
    padding-top: 0.9rem;
    padding-bottom: 1.1rem;
  }

  .builder-card {
    gap: 0.55rem;
    border-width: 3px;
    border-radius: 22px;
    padding: 0.68rem;
    box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.2);
  }

  .builder-card h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6vw, 1.75rem);
    line-height: 0.98;
  }

  .builder-intro > p:not(.eyebrow):not(.choice-title) {
    display: none;
  }

  .guest-input {
    margin-top: 0.3rem;
  }

  .guest-input span {
    font-size: 0.86rem;
  }

  .guest-input input {
    min-height: 42px;
    border-width: 2px;
    border-radius: 12px;
    padding: 0.35rem 0.62rem;
    font-size: 1rem;
  }

  .choice-group {
    gap: 0.34rem;
    margin-top: 0.5rem;
    border-radius: 14px;
    padding: 0.45rem;
  }

  .choice-title {
    font-size: 0.84rem;
  }

  .choice-group label {
    min-height: 2.65rem;
    gap: 0.38rem;
    border-radius: 12px;
    padding: 0.38rem 0.42rem;
  }

  .choice-group input {
    width: 0.9rem;
    height: 0.9rem;
  }

  .choice-group strong {
    font-size: 0.78rem;
  }

  .choice-group small {
    font-size: 0.62rem;
  }

  .recommendation {
    gap: 0.48rem;
    border-width: 2px;
    border-radius: 16px;
    padding: 0.58rem;
  }

  .recommendation .eyebrow {
    font-size: 0.64rem;
  }

  .recommendation h3 {
    font-size: 1.34rem;
  }

  .rec-counts {
    gap: 0.36rem;
  }

  .rec-counts strong {
    min-height: 54px;
    border-radius: 12px;
    font-size: 1.24rem;
  }

  .rec-counts small {
    font-size: 0.5rem;
  }

  .flavor-grid {
    gap: 0.5rem;
  }

  .flavor-grid h4 {
    margin-bottom: 0.24rem;
    font-size: 0.95rem;
  }

  .flavor-chips {
    gap: 0.3rem;
  }

  .flavor-chip {
    min-height: 1.75rem;
    padding: 0.24rem 0.42rem;
    font-size: 0.68rem;
  }

  .flavor-hint {
    font-size: 0.7rem;
  }

  .coffee-note {
    padding: 0.48rem 0.58rem;
  }

  .coffee-note strong {
    font-size: 0.85rem;
  }

  .coffee-note span {
    font-size: 0.72rem;
  }

  .estimate {
    padding: 0.5rem 0.62rem;
  }

  .estimate span {
    font-size: 0.72rem;
  }

  .estimate strong {
    font-size: 1.18rem;
  }

  .recommendation > .button {
    min-height: 42px;
    padding: 0.58rem 0.8rem;
  }

  .hero {
    gap: 0.85rem;
    padding-top: 1.1rem;
    padding-bottom: 1.45rem;
  }

  .hero::before {
    right: -6rem;
    top: 7rem;
    width: 14rem;
    height: 14rem;
  }

  .hero-copy {
    gap: 0.56rem;
  }

  .hero .eyebrow {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 15.5ch;
    font-size: clamp(1.95rem, 8.5vw, 2.65rem);
    line-height: 0.92;
  }

  .hero-lede {
    max-width: 38ch;
    font-size: 0.94rem;
    line-height: 1.28;
  }

  .hero-badges {
    gap: 0.35rem;
  }

  .hero-badges span {
    min-height: 1.8rem;
    padding: 0.28rem 0.48rem;
    font-size: 0.72rem;
  }

  .hero-badges span::before {
    width: 0.82rem;
    height: 0.82rem;
    font-size: 0.55rem;
    box-shadow: 0 0 0 2px rgba(255, 226, 71, 0.72);
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero .button {
    min-width: 0;
    min-height: 42px;
    padding: 0.62rem 0.72rem;
    font-size: 0.9rem;
  }

  .hero-visual {
    margin-top: 0.15rem;
    border-width: 3px;
    border-radius: 22px;
    box-shadow: 7px 7px 0 var(--yellow), 0 14px 30px rgba(17, 17, 17, 0.14);
  }

  .hero-visual img,
  .hero-visual video {
    aspect-ratio: 16 / 7.2;
    border-radius: 18px;
  }

  .hero-video::after {
    border-radius: 18px;
  }
}

@media (min-width: 520px) {
  .choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .builder-card {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
  }
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.split-heading {
  max-width: none;
}

.split-heading > p {
  max-width: 48ch;
}

.why-wins {
  background: var(--white);
}

.step-row {
  display: grid;
  gap: 0.8rem;
}

.step-row article,
.package-card,
.wins-grid article,
.addon-row article,
.builder-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
}

.step-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
}

.step-row span,
.wins-grid span {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--yellow);
}

.step-row p {
  color: var(--black);
  font-weight: 950;
}

.packages {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 226, 71, 0.55), transparent 13rem),
    linear-gradient(180deg, var(--cream), #fffdf8);
}

.package-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  gap: 0.62rem;
  align-content: stretch;
  padding: clamp(1rem, 2vw, 1.2rem);
}

.package-card strong {
  color: var(--orange-deep);
  font-weight: 950;
}

.package-card p {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

.featured-package {
  border-color: var(--black);
  background:
    radial-gradient(circle at 94% 8%, var(--yellow), transparent 7rem),
    var(--white);
  box-shadow: var(--shadow), 8px 8px 0 var(--orange);
}

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

.package-card h3,
.package-card strong,
.package-card p,
.package-card .package-price,
.package-card .button {
  margin-left: 0;
  margin-right: 0;
}

.package-card .button {
  margin-bottom: 0;
  margin-top: 0;
  align-self: end;
}

.package-price {
  width: fit-content;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  padding: 0.4rem 0.68rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.package-coffee-note {
  min-height: 1.2rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.package-coffee-inline {
  display: grid;
  align-self: end;
  gap: 0.35rem;
  border: 2px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.9rem;
  background: rgba(255, 246, 224, 0.72);
  padding: 0.55rem;
}

.package-coffee-inline label {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 950;
}

.package-coffee-inline > div:not(.package-drink-mix) {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 0.45rem;
}

.package-drink-mix {
  display: grid;
  gap: 0.28rem;
}

.package-drink-row {
  display: grid;
  grid-template-columns: minmax(4.8rem, 1fr) 1.6rem 2.1rem 1.6rem;
  align-items: center;
  gap: 0.24rem;
}

.package-drink-row span {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
}

.package-drink-row button {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.package-drink-row input {
  width: 100%;
  min-height: 1.6rem;
  border: 2px solid var(--line);
  border-radius: 0.55rem;
  background: var(--white);
  color: var(--black);
  padding: 0.12rem 0.2rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 950;
  text-align: center;
}

.package-coffee-inline input:not([data-package-drink-count]),
.package-coffee-inline select {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--black);
  padding: 0.58rem 0.65rem;
  font: inherit;
  font-weight: 850;
}

.package-coffee-inline input:focus,
.package-coffee-inline select:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 216, 77, 0.45);
}

.large-catering-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 8%, rgba(255, 226, 71, 0.55), transparent 11rem),
    var(--white);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.large-catering-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.large-catering-card p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--ink);
  font-weight: 900;
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 0.38rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.featured-package h3 {
  padding-right: 7.2rem;
}

.mix-line {
  color: var(--ink);
}

.flavor-grid {
  display: grid;
  gap: 0.9rem;
}

.flavor-grid h4 {
  margin-bottom: 0.35rem;
  color: var(--orange-deep);
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.flavor-chip {
  min-height: 2rem;
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 0.32rem 0.55rem;
  font: 950 0.78rem var(--font-body);
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(244, 119, 0, 0.16);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.flavor-chip:hover,
.flavor-chip:focus-visible {
  border-color: var(--black);
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 var(--yellow);
}

.flavor-chip::after {
  content: " ↻";
  color: var(--orange-deep);
}

.flavor-hint {
  margin-top: -0.24rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.package-grid {
  display: grid;
  gap: 0.8rem;
}

.builder {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 226, 71, 0.9), transparent 12rem),
    linear-gradient(135deg, var(--orange), #ff921f);
  padding-top: 1.6rem;
  padding-bottom: 1.9rem;
}

.builder::before {
  inset: auto -4rem -5rem auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 1rem, rgba(255, 255, 255, 0.42) 1.08rem 1.25rem);
}

.builder-card {
  display: grid;
  gap: 0.78rem;
  border: 4px solid var(--black);
  border-color: var(--black);
  box-shadow: 12px 12px 0 rgba(17, 17, 17, 0.22);
  padding: 0.9rem;
}

.builder-card h2,
.builder-card h3,
.builder-card p {
  color: var(--black);
}

.builder-card h2 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
}

.builder-intro > p:not(.eyebrow):not(.choice-title) {
  max-width: 52ch;
  font-size: 0.96rem;
  line-height: 1.28;
}

.guest-input {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.55rem;
  color: var(--black);
  font-weight: 950;
}

.guest-input input {
  width: 100%;
  min-height: 50px;
  border: 3px solid var(--black);
  border-radius: 14px;
  padding: 0.48rem 0.75rem;
  color: var(--black);
  font: 950 1.18rem var(--font-body);
  box-shadow: 4px 4px 0 var(--yellow);
}

.choice-group {
  display: grid;
  gap: 0.45rem;
  margin: 0.72rem 0 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.62rem;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.08);
}

.choice-title {
  grid-column: 1 / -1;
  margin: 0 0 0.05rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}

.choice-group label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  border: 2px solid rgba(17, 17, 17, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 0.58rem;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-group label:has(input:checked) {
  border-color: var(--black);
  box-shadow: 4px 4px 0 var(--yellow);
  transform: translateY(-1px);
}

.choice-group input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

.choice-group strong,
.choice-group small {
  display: block;
}

.choice-group strong {
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.05;
}

.choice-group small {
  color: var(--ink);
  margin-top: 0.1rem;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.15;
}

.compact-choice-group label {
  min-height: 2.9rem;
}

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

.compact-choice-group .choice-title,
.compact-choice-group .mini-check {
  grid-column: 1 / -1;
}

.compact-choice-group .mini-check {
  min-height: 2.15rem;
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.68);
  padding: 0.32rem 0.5rem;
}

.compact-choice-group .mini-check:has(input:checked) {
  box-shadow: 3px 3px 0 rgba(255, 112, 0, 0.18);
}

.compact-choice-group .mini-check strong {
  font-size: 0.82rem;
}

.recommendation {
  display: grid;
  gap: 0.72rem;
  border: 3px solid var(--black);
  border-radius: 18px;
  background: var(--cream);
  padding: 0.82rem;
  box-shadow: 6px 6px 0 var(--yellow);
}

.recommendation h3 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.recommendation span {
  color: var(--orange-deep);
}

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

.rec-counts strong {
  display: grid;
  place-items: center;
  gap: 0.16rem;
  min-height: 68px;
  border: 2px solid rgba(244, 119, 0, 0.2);
  border-radius: 14px;
  background: var(--white);
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-align: center;
}

.rec-counts small {
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coffee-note {
  display: grid;
  gap: 0.18rem;
  border: 2px solid rgba(244, 119, 0, 0.22);
  border-radius: 14px;
  background: var(--white);
  padding: 0.62rem 0.75rem;
}

.coffee-note strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.coffee-note span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.coffee-addon {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(13rem, 1.05fr);
  align-items: end;
  gap: 0.72rem;
  border: 2px solid rgba(244, 119, 0, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.62rem 0.7rem;
}

.coffee-addon-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.52rem;
  align-items: center;
  color: var(--black);
}

.coffee-addon-toggle input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--orange);
}

.coffee-addon-toggle span,
.coffee-addon-select {
  display: grid;
  gap: 0.16rem;
}

.coffee-addon-toggle strong,
.coffee-addon-select {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.coffee-addon-toggle strong {
  white-space: nowrap;
}

.coffee-addon-toggle small {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
}

.coffee-addon-select select {
  width: 100%;
  min-height: 42px;
  border: 2px solid rgba(244, 119, 0, 0.22);
  border-radius: 0.8rem;
  background: var(--cream);
  color: var(--black);
  padding: 0.56rem 0.72rem;
  font: 900 0.9rem var(--font-body);
}

.estimate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.7rem;
  border-radius: 14px;
  border: 2px solid rgba(255, 226, 71, 0.85);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 226, 71, 0.28), transparent 7rem),
    linear-gradient(135deg, #111 0%, #2a1704 100%);
  padding: 0.58rem 0.78rem;
  box-shadow: 0 0 0 4px rgba(255, 226, 71, 0.18), 0 16px 34px rgba(244, 119, 0, 0.2);
}

.estimate div {
  display: grid;
  align-content: start;
  min-height: 4.45rem;
  gap: 0.1rem;
}

.estimate div + div {
  border-left: 1px solid rgba(255, 226, 71, 0.18);
  padding-left: 0.72rem;
}

.estimate div + div strong {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
}

.estimate span,
.estimate strong {
  color: var(--white);
}

.estimate-coffee-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.16rem;
  border: 2px solid rgba(255, 226, 71, 0.44);
  border-radius: 999px;
  background: rgba(255, 226, 71, 0.14);
  color: var(--yellow);
  font-size: clamp(0.64rem, 0.9vw, 0.76rem);
  font-weight: 950;
  line-height: 1;
  padding: 0.22rem 0.42rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.estimate strong {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(255, 226, 71, 0.45);
}

.estimate span {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
}

.wins-grid {
  display: grid;
  gap: 0.8rem;
}

.wins-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 5.5rem;
  padding: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wins-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.wins-grid h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.addons {
  background:
    radial-gradient(circle at 100% 15%, rgba(244, 119, 0, 0.18), transparent 13rem),
    var(--cream);
}

.addon-row {
  display: grid;
  gap: 0.8rem;
}

.addon-row article {
  overflow: hidden;
}

.addon-row img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: var(--white);
  padding: 0.4rem;
}

.addon-row h3 {
  padding: 0.72rem;
  font-size: 1.05rem;
}

.final-cta {
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

.final-cta::before {
  left: -2rem;
  top: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 45% 55% 55% 45%;
  background: var(--orange);
}

.final-cta h2 {
  margin: 0.4rem auto 1.2rem;
  max-width: 11ch;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 54ch;
  margin: -0.5rem auto 1.1rem;
  color: var(--white);
  font-weight: 850;
}

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

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

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

.catering-contact-modal[hidden],
.catering-inquiry-modal[hidden] {
  display: none;
}

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

.catering-contact-modal,
.catering-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: grid;
  align-items: start;
  justify-items: center;
  overflow-y: auto;
  padding: calc(76px + 1rem) 1rem 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, 226, 71, 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);
}

.catering-inquiry-panel {
  margin-bottom: 1rem;
}

.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);
}

.catering-contact-panel h2,
.catering-inquiry-panel h2 {
  max-width: 15ch;
}

.catering-contact-summary,
.catering-inquiry-summary,
.catering-inquiry-helper {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.45;
}

.catering-inquiry-helper {
  border-left: 0.35rem solid var(--orange);
  border-radius: 0.75rem;
  background: rgba(255, 226, 71, 0.2);
  color: var(--black);
  padding: 0.75rem 0.9rem;
}

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

.catering-contact-form label,
.catering-inquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
}

.catering-inquiry-form label span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
}

.catering-contact-form input,
.catering-contact-form select,
.catering-contact-form textarea,
.catering-inquiry-form input,
.catering-inquiry-form select,
.catering-inquiry-form textarea {
  width: 100%;
  min-height: 54px;
  border: 2px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.85rem;
  background: var(--white);
  color: var(--black);
  padding: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 850;
}

.catering-inquiry-form input.visually-hidden,
.catering-inquiry-form input[name="website"] {
  position: absolute !important;
  width: 1px !important;
  min-height: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.catering-inquiry-form input:focus,
.catering-inquiry-form select:focus,
.catering-inquiry-form textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 226, 71, 0.42);
}

.catering-contact-form textarea,
.catering-contact-form .button,
.catering-contact-form .location-note,
.catering-inquiry-form .form-grid,
.catering-inquiry-form fieldset,
.catering-inquiry-form .full-field,
.catering-inquiry-actions,
.catering-inquiry-form .location-note {
  grid-column: 1 / -1;
}

.catering-inquiry-form fieldset {
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.8rem;
}

.catering-inquiry-form legend {
  padding: 0 0.35rem;
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
}

.catering-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.catering-choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: var(--white);
  padding: 0.48rem 0.7rem;
  font-family: var(--font-body);
  font-weight: 950;
}

.catering-choice-row input {
  width: auto;
  min-height: auto;
  accent-color: var(--orange);
}

.delivery-fields[hidden] {
  display: none;
}

.catering-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catering-inquiry-actions .button {
  flex: 1 1 220px;
}

.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, 226, 71, 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;
}

.location-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;
}

.footer {
  display: grid;
  gap: 1.8rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream), #fff0cf);
  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 {
  display: grid;
  gap: 1rem;
}

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

.footer-grid h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 0.96;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.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: 2px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  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);
}

@media (max-width: 719px) {
  .builder {
    padding-top: 0.9rem;
    padding-bottom: 1.1rem;
  }

  .builder-card {
    gap: 0.55rem;
    border-width: 3px;
    border-radius: 22px;
    padding: 0.68rem;
    box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.2);
  }

  .builder-card h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6vw, 1.75rem);
    line-height: 0.98;
  }

  .builder-intro > p:not(.eyebrow):not(.choice-title) {
    display: none;
  }

  .guest-input {
    margin-top: 0.3rem;
  }

  .guest-input span {
    font-size: 0.86rem;
  }

  .guest-input input {
    min-height: 42px;
    border-width: 2px;
    border-radius: 12px;
    padding: 0.35rem 0.62rem;
    font-size: 1rem;
  }

  .choice-group {
    gap: 0.34rem;
    margin-top: 0.5rem;
    border-radius: 14px;
    padding: 0.45rem;
  }

  .choice-title {
    font-size: 0.84rem;
  }

  .choice-group label {
    min-height: 2.65rem;
    gap: 0.38rem;
    border-radius: 12px;
    padding: 0.38rem 0.42rem;
  }

  .choice-group input {
    width: 0.9rem;
    height: 0.9rem;
  }

  .choice-group strong {
    font-size: 0.78rem;
  }

  .choice-group small {
    font-size: 0.62rem;
  }

  .recommendation {
    gap: 0.48rem;
    border-width: 2px;
    border-radius: 16px;
    padding: 0.58rem;
  }

  .recommendation .eyebrow {
    font-size: 0.64rem;
  }

  .recommendation h3 {
    font-size: 1.34rem;
  }

  .rec-counts {
    gap: 0.36rem;
  }

  .rec-counts strong {
    min-height: 54px;
    border-radius: 12px;
    font-size: 1.24rem;
  }

  .rec-counts small {
    font-size: 0.5rem;
  }

  .flavor-grid {
    gap: 0.5rem;
  }

  .flavor-grid h4 {
    margin-bottom: 0.24rem;
    font-size: 0.95rem;
  }

  .flavor-chips {
    gap: 0.3rem;
  }

  .flavor-chip {
    min-height: 1.75rem;
    padding: 0.24rem 0.42rem;
    font-size: 0.68rem;
  }

  .flavor-hint {
    font-size: 0.7rem;
  }

  .coffee-note {
    padding: 0.48rem 0.58rem;
  }

  .coffee-note strong {
    font-size: 0.85rem;
  }

  .coffee-note span {
    font-size: 0.72rem;
  }

  .estimate {
    padding: 0.5rem 0.62rem;
  }

  .estimate span {
    font-size: 0.72rem;
  }

  .estimate strong {
    font-size: 1.18rem;
  }

  .recommendation > .button {
    min-height: 42px;
    padding: 0.58rem 0.8rem;
  }
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 510px;
    padding-top: 3.15rem;
    padding-bottom: 3.4rem;
  }

  .hero-visual {
    transform: translateX(0.2rem);
  }

  .hero-visual img,
  .hero-visual video {
    aspect-ratio: 1.18 / 1;
  }

  .split-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .step-row article {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 10rem;
  }

  .package-layout {
    grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(2.5rem, 6vw, 6rem);
  }

  .builder-card {
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
    align-items: center;
    padding: 1rem;
  }

  .builder-intro {
    align-self: center;
  }
}

@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;
  }

  section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

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

  .large-catering-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

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

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

/* 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 {
    padding: 2.1rem max(0.85rem, calc((100vw - 1180px) / 2));
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.95rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.75rem);
  }

  .hero {
    gap: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.45rem;
  }

  .hero-copy {
    gap: 0.65rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.33;
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .hero-badges span {
    flex: 1 1 135px;
    flex-direction: column;
    justify-content: center;
    gap: 0.22rem;
    min-height: 38px;
    text-align: center;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .final-cta::before {
    display: none;
  }

  .button,
  .hero .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    text-align: center;
  }

  .hero-visual {
    margin-top: 0;
    border-width: 3px;
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--yellow), 0 14px 30px rgba(17, 17, 17, 0.14);
  }

  .hero-visual img,
  .hero-visual video {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    object-fit: cover;
  }

  .hero-video::after {
    border-radius: 14px;
  }

  .builder {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
  }

  .builder-card {
    gap: 0.7rem;
    border-width: 3px;
    border-radius: 18px;
    padding: 0.75rem;
    box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.18);
  }

  .builder-card h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.2vw, 2.35rem);
    line-height: 0.96;
  }

  .builder-intro > p:not(.eyebrow):not(.choice-title) {
    display: block;
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .guest-input {
    margin-top: 0.35rem;
  }

  .guest-input input {
    min-height: 52px;
    border-radius: 14px;
    font-size: 1.18rem;
  }

  .choice-group {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    border-radius: 16px;
    padding: 0.55rem;
  }

  .choice-group label {
    min-height: 56px;
    padding: 0.55rem 0.65rem;
  }

  .choice-group input {
    width: 1.08rem;
    height: 1.08rem;
  }

  .choice-group strong {
    font-size: 0.98rem;
  }

  .choice-group small {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .recommendation {
    gap: 0.65rem;
    border-width: 3px;
    border-radius: 18px;
    padding: 0.75rem;
  }

  .recommendation h3 {
    font-size: clamp(1.45rem, 7.5vw, 2.05rem);
  }

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

  .rec-counts strong {
    min-height: 60px;
    border-radius: 12px;
    padding: 0.45rem 0.3rem;
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .rec-counts small {
    font-size: 0.56rem;
    line-height: 1.1;
  }

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

  .flavor-chip {
    min-height: 38px;
    padding: 0.36rem 0.58rem;
    font-size: 0.82rem;
  }

  .coffee-note {
    padding: 0.7rem;
  }

  .coffee-addon {
    grid-template-columns: 1fr;
    gap: 0.56rem;
  }

  .estimate {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.75rem;
  }

  .estimate div {
    min-height: auto;
  }

  .estimate div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 226, 71, 0.18);
    padding-top: 0.48rem;
    padding-left: 0;
  }

  .estimate strong {
    font-size: 1.35rem;
  }

  .recommendation > .button {
    min-height: 52px;
    font-size: 1rem;
  }

  .package-card,
  .addon-row article {
    border-radius: 16px;
  }

  .package-grid,
  .wins-grid,
  .addon-row {
    gap: 0.75rem;
  }

  .location-modal {
    padding: 0.5rem;
  }

  .catering-contact-modal,
  .catering-inquiry-modal {
    inset: 0;
    align-items: center;
    padding: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: none;
  }

  .catering-contact-form,
  .catering-inquiry-form,
  .catering-inquiry-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .location-modal__panel {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 6px 6px 0 var(--orange), 0 18px 44px rgba(17, 17, 17, 0.26);
  }

  .catering-inquiry-panel {
    width: min(100% - 24px, 620px);
    max-height: calc(100dvh - 24px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .catering-inquiry-form label {
    gap: 0.32rem;
  }

  .catering-inquiry-form input:not([type="radio"]):not([type="checkbox"]):not(.visually-hidden),
  .catering-inquiry-form select {
    height: 52px;
    min-height: 52px;
    padding: 0.72rem 0.82rem;
    border-radius: 0.78rem;
    font-size: 1rem;
    line-height: 1.2;
    box-sizing: border-box;
  }

  .catering-inquiry-form textarea {
    min-height: 112px;
    padding: 0.82rem;
    border-radius: 0.78rem;
    font-size: 1rem;
    line-height: 1.35;
    box-sizing: border-box;
  }

  .catering-inquiry-actions {
    gap: 0.55rem;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .catering-inquiry-actions .button {
    flex-basis: 100%;
    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;
  }

  .footer-grid {
    gap: 1rem;
  }
}

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

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

  .hero .button-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-block: 1rem;
  }

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

/* Public header standard: match the main Kolache Cafe website exactly. */
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;
  }
}

/* Final public chrome lock.
   Mirrors the main website stylesheet so the catering page cannot drift from
   the shared Kolache Cafe header and footer system. */
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;
  }
}
