:root {
  --sun: #ffd642;
  --sun-deep: #f7b91e;
  --aqua: #11b7b3;
  --teal: #067a7d;
  --teal-dark: #095f62;
  --cream: #fff7df;
  --cream-soft: #fffaf0;
  --mango: #ff9f1c;
  --orange: #f47a22;
  --coral: #ff6678;
  --pink: #ec4f9b;
  --leaf: #1c6b43;
  --leaf-soft: #d9f2da;
  --tamarind: #8f4a21;
  --ink: #2d2118;
  --muted: #6c594b;
  --white: #ffffff;
  --line: rgba(45, 33, 24, 0.12);
  --shadow: 0 22px 55px rgba(70, 45, 20, 0.18);
  --shadow-soft: 0 12px 30px rgba(70, 45, 20, 0.14);
  --radius: 8px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main,
section {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(17, 183, 179, 0.08) 0 12px, transparent 12px 32px),
    var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 223, 0.9);
  border-bottom: 1px solid rgba(45, 33, 24, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: 86px;
  height: auto;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-panel a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-panel a:hover {
  background: rgba(17, 183, 179, 0.12);
  transform: translateY(-1px);
}

.nav-panel .nav-button {
  padding: 9px 17px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(45, 33, 24, 0.18);
}

.nav-panel .nav-button:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--coral);
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  width: 100%;
  min-height: calc(100svh - 78px);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 68px max(24px, calc((100% - 1240px) / 2)) 118px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 214, 66, 0.18) 0 170px, transparent 172px),
    radial-gradient(circle at 88% 14%, rgba(17, 183, 179, 0.1) 0 160px, transparent 162px),
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(255, 247, 223, 0.96));
  overflow: hidden;
  z-index: 2;
}

.hero-copy {
  width: min(100%, 640px);
  min-width: 0;
  max-width: 640px;
}

.hero-copy-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand-sticker {
  display: block;
  width: min(100%, 640px);
  height: auto;
  object-fit: contain;
  /* Any remaining white sticker edge is baked into the PNG artwork itself. */
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  filter: none;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-self: flex-start;
  width: min(100%, 410px);
  gap: 8px 11px;
  margin: 18px 0 0 34px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.hero-benefit-dot {
  color: var(--coral);
  font-size: 0.92em;
  line-height: 1;
}

.hero-description {
  align-self: flex-start;
  width: min(100%, 480px);
  max-width: 480px;
  margin: 17px 0 0 34px;
  color: #6a584d;
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

.market-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--teal-dark);
  box-shadow: 3px 3px 0 rgba(45, 33, 24, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: 2.9rem;
}

.hero h1 {
  max-width: 10.7ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 2.9rem;
  line-height: 0.94;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.45rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.section-heading p,
.contact-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.catering-cta {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-copy-brand .hero-actions {
  margin: 30px 0 0 34px;
}

.hero-actions .btn {
  min-width: 168px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(45, 33, 24, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(45, 33, 24, 0.16);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: #f45468;
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
}

.btn-secondary:hover {
  background: var(--cream-soft);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 690px;
  height: 600px;
  margin-left: auto;
  justify-self: end;
  isolation: isolate;
}

.hero-blob {
  position: absolute;
  top: 54px;
  right: 34px;
  z-index: 1;
  width: 540px;
  height: 480px;
  border-radius: 48% 52% 44% 56% / 46% 42% 58% 54%;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 250, 240, 0.58) 0 70px, transparent 72px),
    #f7d873;
  opacity: 0.88;
  box-shadow: 0 30px 80px rgba(247, 185, 30, 0.2);
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-option-decor {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(70, 45, 20, 0.12));
}

.hero-option-decor-palm {
  top: -54px;
  right: -58px;
  width: 286px;
  opacity: 0.9;
  transform: rotate(8deg);
  transform-origin: 68% 100%;
}

.hero-option-decor-floral-main {
  right: -78px;
  bottom: -44px;
  width: 330px;
  opacity: 0.94;
  transform: rotate(-2deg);
}

.hero-option-decor-floral-accent {
  top: 210px;
  right: -58px;
  width: 162px;
  opacity: 0.74;
  transform: rotate(-10deg);
}

.hero-option-decor-floral-left {
  left: 58px;
  bottom: 18px;
  width: 178px;
  opacity: 0.9;
  transform: rotate(3deg);
}

.hero-option-decor-mobile-fruit {
  display: none;
}

.hero-option-decor-mobile-palm {
  display: none;
}

.hero-main-image,
.hero-card {
  position: absolute;
  display: block;
  border: 10px solid #fffaf0;
  background: var(--cream-soft);
  object-fit: cover;
  box-shadow: 0 28px 58px rgba(52, 35, 23, 0.22), 0 10px 22px rgba(52, 35, 23, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-main-image {
  top: 40px;
  right: -20px;
  z-index: 3;
  width: 420px;
  height: 500px;
  border-radius: 30px;
  object-position: 24% center;
  transform: rotate(1.2deg);
}

.hero-card {
  z-index: 5;
  border: 9px solid #fffaf0;
  border-radius: 26px;
}

.hero-main-image:hover,
.hero-card:hover {
  box-shadow: 0 34px 68px rgba(52, 35, 23, 0.26);
}

.hero-main-image:hover {
  transform: translateY(-3px) rotate(1.2deg);
}

.hero-card-pushups {
  top: 92px;
  left: 6px;
  width: 252px;
  height: 315px;
  box-shadow: 0 22px 40px rgba(52, 35, 23, 0.25);
  transform: rotate(-7deg);
}

.hero-card-pushups:hover {
  transform: translateY(-4px) rotate(-7deg);
}

.hero-card-scoops {
  left: 104px;
  bottom: -18px;
  z-index: 6;
  width: 220px;
  height: 330px;
  object-position: center 38%;
  box-shadow: 0 24px 45px rgba(52, 35, 23, 0.26);
  transform: rotate(5deg);
}

.hero-card-scoops:hover {
  transform: translateY(-4px) rotate(5deg);
}

.hero-founder-caption {
  position: absolute;
  left: 124px;
  bottom: -34px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--teal-dark);
  box-shadow: 4px 4px 0 rgba(255, 102, 120, 0.38);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: rotate(3deg);
  pointer-events: none;
}

.hero-decor {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(70, 45, 20, 0.12));
}

.hero-decor-leaf-top {
  top: -72px;
  left: -74px;
  z-index: 2;
  width: 250px;
  opacity: 0.88;
  transform: rotate(-9deg);
}

.hero-scallop-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  z-index: 4;
  height: 42px;
  background:
    radial-gradient(circle at 21px 21px, var(--cream) 20px, transparent 21px) 0 0 / 42px 42px repeat-x;
  pointer-events: none;
}

.catering::before,
.contact::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 42px;
  background:
    radial-gradient(circle at 21px 21px, var(--cream) 20px, transparent 21px) 0 0 / 42px 42px repeat-x;
}

.section-heading {
  margin-bottom: 32px;
}

.split-heading {
  display: grid;
  gap: 16px;
}

.catering {
  background:
    linear-gradient(rgba(255, 246, 220, 0.78), rgba(255, 246, 220, 0.9)),
    repeating-linear-gradient(90deg, rgba(17, 183, 179, 0.16) 0 12px, transparent 12px 36px),
    var(--sun);
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.pricing-card {
  position: relative;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream-soft);
  box-shadow: 7px 7px 0 rgba(45, 33, 24, 0.12);
}

.pricing-card-featured {
  background: var(--teal-dark);
  color: var(--white);
}

.pricing-card-featured .market-tag {
  background: var(--sun);
  color: var(--ink);
}

.pricing-top {
  margin-bottom: 16px;
}

.pricing-card h3 {
  margin: 0 0 6px;
}

.pricing-card .market-tag + h3 {
  margin-top: 12px;
}

.price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 900;
  color: currentColor;
  opacity: 0.78;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.pickup-address {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: currentColor;
}

.pricing-card li::before,
.pickup-address::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 102, 120, 0.18);
}

.pricing-card-featured li::before {
  background: var(--sun);
  box-shadow: 0 0 0 3px rgba(255, 214, 66, 0.22);
}

.mocktail-card {
  background:
    linear-gradient(145deg, rgba(17, 183, 179, 0.2), rgba(255, 102, 120, 0.13)),
    var(--cream-soft);
}

.catering-cta {
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(45, 33, 24, 0.14);
}

.catering-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.05;
}

.popups {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.5) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #eef8f4 0%, #e7f5f1 58%, #f7f3e8 100%);
  border-top: 6px solid rgba(17, 107, 102, 0.16);
  color: var(--ink);
}

.popups::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  background:
    radial-gradient(circle at 17px -1px, rgba(255, 250, 240, 0.72) 17px, transparent 18px) 0 0 / 44px 34px repeat-x;
  opacity: 0.62;
}

.popups-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  text-align: center;
}

.popups .section-heading {
  margin-bottom: 0;
}

.popups .section-heading h2 {
  color: var(--teal-dark);
}

.popups .section-heading p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: #5f6f66;
}

.market-board {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.market-board article {
  position: relative;
  min-height: 162px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 14px 14px 22px 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 28px rgba(35, 74, 69, 0.11);
  text-align: left;
}

.market-board article::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 250, 240, 0.56);
  border-radius: 50%;
  opacity: 0.7;
}

.market-board article:nth-child(1) {
  background-color: #35b7b4;
  color: var(--white);
}

.market-board article:nth-child(2) {
  background-color: #f3cf4d;
  color: var(--ink);
}

.market-board article:nth-child(3) {
  background-color: #f28c78;
  color: var(--white);
}

.market-board article:nth-child(4) {
  background-color: #a98de0;
  color: var(--white);
}

.market-board article:nth-child(5) {
  background-color: #a7cf6f;
  color: var(--ink);
}

.market-board span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(45, 33, 24, 0.1);
  font-size: 0.74rem;
  font-weight: 900;
}

.market-board h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.05;
}

.market-board p {
  margin-bottom: 0;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.86;
}

.popups .btn-secondary {
  justify-self: center;
  width: fit-content;
  min-width: min(100%, 300px);
  min-height: 44px;
  padding-inline: 28px;
  border-color: rgba(16, 111, 107, 0.28);
  background: rgba(255, 250, 240, 0.96);
  color: var(--teal-dark);
  box-shadow: 0 10px 20px rgba(35, 74, 69, 0.1);
}

.popups .btn-secondary:hover {
  border-color: var(--ink);
  background: var(--white);
}

.product-menu {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 66, 0.24) 0 150px, transparent 152px),
    radial-gradient(circle at 88% 18%, rgba(17, 183, 179, 0.16) 0 130px, transparent 132px),
    radial-gradient(circle at 82% 92%, rgba(255, 102, 120, 0.13) 0 180px, transparent 182px),
    linear-gradient(145deg, #fff8e5, #fff0dd 58%, #fffaf0);
}

.product-menu-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.product-menu-heading {
  max-width: 760px;
}

.product-menu-heading h2 {
  color: var(--ink);
}

.product-menu-heading > p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.why-chip-row,
.product-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
}

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  height: 530px;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(45, 33, 24, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(70, 45, 20, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 22px 42px rgba(70, 45, 20, 0.18);
  transform: translateY(-3px);
}

.product-card::before {
  content: "";
  display: block;
  flex: 0 0 8px;
  height: 8px;
  background: var(--coral);
}

.product-card-ice {
  background: #ffe4ea;
}

.product-card-ice::before {
  background: var(--coral);
}

.product-card-sorbet {
  background: #dcf5ee;
}

.product-card-sorbet::before {
  background: var(--teal);
}

.product-card-mango {
  background: #fff0bf;
}

.product-card-mango::before {
  background: var(--orange);
}

.product-card-mocktail {
  background: #dff7f6;
}

.product-card-mocktail::before {
  background: var(--aqua);
}

.product-card-image {
  display: block;
  width: 100%;
  height: 155px;
  border-bottom: 5px solid rgba(255, 250, 240, 0.88);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-ice .product-card-image,
.product-card-sorbet .product-card-image,
.product-card-mango .product-card-image,
.product-card-mocktail .product-card-image {
  height: 178px;
}

.product-card-ice img {
  object-position: center 36%;
  transform: scale(1.2);
  transform-origin: center center;
}

.product-card-sorbet img {
  object-position: center 36%;
}

.product-card-mango img {
  object-position: center center;
  transform: scale(1.2);
  transform-origin: center center;
}

.product-card-mocktail img {
  object-position: center center;
}

.product-card-content {
  flex: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 20px 20px;
  background: rgba(255, 250, 240, 0.72);
}

.product-card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.08;
}

.product-card-description {
  margin: 0 0 12px;
  color: var(--muted);
  display: block;
  overflow: visible;
  font-size: 0.93rem;
  line-height: 1.45;
  text-overflow: unset;
  white-space: normal;
}

.availability-note {
  width: fit-content;
  max-width: 100%;
  margin: -1px 0 12px;
  padding: 6px 10px;
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 14px;
  background: rgba(255, 226, 122, 0.34);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-card-tags-label {
  margin: 2px 0 8px;
  color: var(--teal-dark);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card-tags {
  margin-top: 0;
  padding-top: 0;
}

.product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(45, 33, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
}

.why-scooped {
  padding: 22px;
  border: 2px solid rgba(45, 33, 24, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 214, 66, 0.22), rgba(255, 250, 240, 0.82)),
    var(--cream-soft);
  box-shadow: var(--shadow-soft);
}

.why-scooped h3 {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.why-chip-row span {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px 8px 26px;
  border: 1px solid rgba(45, 33, 24, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.why-chip-row span::before {
  content: "";
  position: absolute;
  left: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.product-menu-actions {
  align-items: center;
}

.contact {
  position: relative;
  background:
    radial-gradient(circle at 8% 88%, rgba(17, 183, 179, 0.22) 0 110px, transparent 112px),
    radial-gradient(circle at 92% 12%, rgba(255, 102, 120, 0.14) 0 120px, transparent 122px),
    linear-gradient(135deg, rgba(255, 102, 120, 0.16), rgba(255, 214, 66, 0.11) 38%, rgba(17, 183, 179, 0.14)),
    var(--cream);
}

.contact::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - 1160px) / 2));
  bottom: 24px;
  width: 128px;
  height: 92px;
  opacity: 0.55;
  background:
    radial-gradient(ellipse at 20% 76%, var(--leaf) 0 16px, transparent 17px),
    radial-gradient(ellipse at 48% 62%, var(--aqua) 0 22px, transparent 23px),
    radial-gradient(ellipse at 72% 78%, var(--mango) 0 18px, transparent 19px);
  border-radius: 60% 40% 55% 45%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.contact-shell {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.contact-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--teal-dark);
  box-shadow: 3px 3px 0 rgba(45, 33, 24, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-badge::before,
.contact-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  transform: translateY(-50%);
}

.contact-badge::before {
  left: -16px;
}

.contact-badge::after {
  right: -16px;
}

.contact-swoop {
  width: min(280px, 80%);
  height: 34px;
  margin: 22px 0 8px;
  border-bottom: 3px dashed var(--coral);
  border-radius: 0 0 60% 40%;
  transform: rotate(-2deg);
}

.contact-list {
  display: grid;
  margin-top: 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  color: var(--teal-dark);
  box-shadow: 3px 3px 0 rgba(45, 33, 24, 0.14);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.contact-icon-pin::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-icon-pin::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-dark);
}

.contact-list span:not(.contact-icon) {
  display: block;
  margin-bottom: 3px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list p,
.contact-list a {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 214, 66, 0.2) 0 120px, transparent 122px),
    radial-gradient(circle at 88% 82%, rgba(255, 102, 120, 0.14) 0 150px, transparent 152px),
    linear-gradient(145deg, #fff5dc, #ffe9dc 54%, #fffaf0);
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 0;
  width: 100%;
  height: 42px;
  background:
    radial-gradient(circle at 21px 21px, var(--cream) 20px, transparent 21px) 0 0 / 42px 42px repeat-x;
}

.gallery-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

.gallery-copy {
  position: relative;
  max-width: 520px;
}

.gallery-copy::after {
  content: "";
  position: absolute;
  top: -22px;
  right: 18%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--sun) 0 7px, transparent 8px),
    radial-gradient(ellipse at 50% 12%, var(--coral) 0 8px, transparent 9px),
    radial-gradient(ellipse at 88% 50%, var(--pink) 0 8px, transparent 9px),
    radial-gradient(ellipse at 50% 88%, var(--coral) 0 8px, transparent 9px),
    radial-gradient(ellipse at 12% 50%, var(--pink) 0 8px, transparent 9px);
  filter: drop-shadow(3px 3px 0 rgba(45, 33, 24, 0.12));
  transform: rotate(12deg);
}

.gallery-copy h2 {
  max-width: 480px;
  color: var(--ink);
}

.gallery-copy > p {
  max-width: 440px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream-soft);
  box-shadow: 6px 6px 0 rgba(45, 33, 24, 0.14);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gallery-button:hover {
  background: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(45, 33, 24, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 132px;
  gap: 12px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--cream-soft);
  border-radius: var(--radius);
  background: var(--cream-soft);
  box-shadow: 0 18px 38px rgba(70, 45, 20, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
  box-shadow: 0 24px 46px rgba(70, 45, 20, 0.2);
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card-under-left {
  grid-column: span 2;
  grid-row: span 2;
}

.booking-card {
  position: relative;
  overflow: hidden;
  align-self: start;
  min-height: 520px;
  padding: 42px 34px;
  border: 2px solid var(--ink);
  border-radius: 30px 18px 34px 18px;
  background: var(--cream-soft);
  box-shadow: 12px 12px 0 rgba(45, 33, 24, 0.12), 0 28px 60px rgba(45, 33, 24, 0.12);
}

.booking-card-content {
  position: relative;
  z-index: 2;
}

.booking-stamp {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 50% 44% 52% 48%;
  background: var(--coral);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(45, 33, 24, 0.13);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.booking-card h3 {
  max-width: 380px;
  margin: 94px 0 14px;
  font-size: 2.55rem;
}

.booking-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-actions {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 6px 6px 0 rgba(45, 33, 24, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.booking-button:hover {
  filter: saturate(1.06) brightness(0.98);
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(45, 33, 24, 0.14);
}

.booking-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.booking-button-email {
  background: var(--teal);
}

.booking-button-instagram {
  background: var(--coral);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 74, 33, 0.34) 0 220px, transparent 222px),
    linear-gradient(145deg, #2d2118, #22170f);
  color: var(--cream);
}

.footer-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-main {
  display: grid;
  gap: 34px;
}

.footer-column {
  min-width: 0;
}

.footer-brand-column {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 247, 223, 0.16);
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--cream-soft);
  font-size: 1.22rem;
  line-height: 1.1;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  border: 3px solid rgba(255, 247, 223, 0.82);
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.footer-about {
  max-width: 330px;
  margin: 0 0 20px;
  color: rgba(255, 247, 223, 0.82);
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: start;
  margin: 0;
  color: rgba(255, 247, 223, 0.78);
  line-height: 1.4;
}

.footer-contact a > span[aria-hidden="true"],
.footer-contact p > span[aria-hidden="true"] {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(255, 214, 66, 0.12);
}

.footer-contact-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact strong {
  display: block;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: var(--sun);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--coral);
  transform: translateX(2px);
}

.footer-flavor {
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(255, 247, 223, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 247, 223, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 223, 0.05);
}

.footer-flavor p {
  margin: 0;
  color: rgba(255, 247, 223, 0.78);
}

.footer-flavor p + p,
.footer-tagline + .footer-note {
  margin-top: 16px;
}

.footer-tagline {
  color: var(--sun) !important;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.footer-tagline span {
  color: var(--coral);
}

.footer-note {
  color: rgba(255, 247, 223, 0.66) !important;
  font-size: 0.94rem;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 247, 223, 0.18);
  color: rgba(255, 247, 223, 0.62);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--sun);
  font-weight: 800;
  transition: color 180ms ease;
}

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

.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 550ms ease;
}

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

@media (min-width: 640px) {
  .section-shell {
    width: min(1160px, calc(100% - 48px));
    padding: 88px 0;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 112px;
  }

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

  .hero-visual {
    height: 560px;
  }

  h2 {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-auto-rows: 150px;
  }

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

  .product-card-image {
    height: 240px;
  }

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

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

  .pricing-card-featured {
    grid-column: span 2;
  }

  .footer-shell {
    width: min(1160px, calc(100% - 48px));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 36px;
  }

  .footer-brand-column {
    padding-bottom: 0;
    border-bottom: 0;
  }

}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    padding-top: 72px;
    padding-bottom: 126px;
  }

  .hero-copy {
    align-self: center;
  }

  .hero-visual {
    justify-self: end;
  }

  .split-heading {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .gallery-container {
    grid-template-columns: minmax(250px, 0.74fr) minmax(0, 1.26fr);
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 118px;
  }

  .gallery-card-large {
    grid-column: 1 / span 2;
    grid-row: 1 / span 3;
  }

  .gallery-card-small {
    grid-column: span 1;
  }

  .gallery-card-under-left {
    grid-column: 1 / span 2;
    grid-row: 4 / span 2;
  }

  .gallery-card-medium {
    grid-column: 3 / span 2;
    grid-row: 2 / span 3;
  }

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

  .contact-shell {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    align-items: center;
  }

  .product-menu-heading {
    max-width: 820px;
  }

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

  .pricing-card-featured {
    grid-row: span 2;
    grid-column: span 1;
  }

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

  .footer-main {
    grid-template-columns: minmax(280px, 1.28fr) minmax(150px, 0.54fr) minmax(280px, 1fr);
    gap: 42px;
  }

  .footer-column + .footer-column {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 247, 223, 0.12);
  }

  .footer-bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
  }

  .footer-bottom p:nth-child(2),
  .footer-bottom p:nth-child(3) {
    text-align: center;
  }

  .footer-bottom p:nth-child(4) {
    text-align: right;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 4.08rem;
  }

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

  h2 {
    font-size: 3.45rem;
  }

  .hero-visual {
    max-width: 710px;
    height: 620px;
  }

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

  .product-card-image {
    height: 155px;
  }

  .product-card-ice .product-card-image,
  .product-card-sorbet .product-card-image,
  .product-card-mango .product-card-image,
  .product-card-mocktail .product-card-image {
    height: 178px;
  }

  .hero-main-image {
    width: 430px;
    height: 520px;
  }

  .hero-card-pushups {
    top: 100px;
    width: 262px;
    height: 320px;
  }

  .hero-card-scoops {
    left: 110px;
    width: 232px;
    height: 350px;
  }

  .hero-founder-caption {
    left: 132px;
    bottom: -36px;
  }

  .hero-decor-leaf-top {
    width: 270px;
  }

  .hero-option-decor-palm {
    width: 318px;
    top: -68px;
    right: -68px;
  }

  .hero-option-decor-floral-main {
    width: 360px;
    right: -88px;
    bottom: -54px;
  }

  .hero-option-decor-floral-accent {
    width: 178px;
    top: 222px;
    right: -62px;
  }

  .hero-option-decor-floral-left {
    left: 72px;
    bottom: 20px;
    width: 188px;
  }

}

@media (max-width: 899px) {
  .nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--cream-soft);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-panel a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 12px;
  }

  .nav-panel .nav-button {
    justify-content: center;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 116px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    max-width: 560px;
    height: 520px;
    margin-top: 22px;
  }

  .hero-blob {
    top: 52px;
    right: 20px;
    width: 450px;
    max-width: 94%;
    height: 410px;
  }

  .hero-main-image {
    top: 44px;
    right: -8px;
    width: min(68%, 350px);
    height: 430px;
  }

  .hero-card-pushups {
    top: 104px;
    left: 10px;
    width: 220px;
    height: 278px;
  }

  .hero-card-scoops {
    left: 94px;
    bottom: -48px;
    width: 202px;
    height: 304px;
  }

  .hero-founder-caption {
    left: 116px;
    bottom: -66px;
    font-size: 0.74rem;
  }

  .hero-benefits,
  .hero-description,
  .hero-copy-brand .hero-actions {
    transform: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .product-card {
    height: auto;
    max-width: 720px;
    min-height: 0;
    margin: 0 auto;
  }

  .product-card-image,
  .product-card-ice .product-card-image,
  .product-card-sorbet .product-card-image,
  .product-card-mango .product-card-image,
  .product-card-mocktail .product-card-image {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    border-bottom-width: 4px;
  }

  .product-card-ice img,
  .product-card-mango img {
    transform: none;
  }

  .product-card-content {
    flex: none;
    justify-content: flex-start;
  }

  .product-card-tags {
    margin-top: 0;
  }

  .hero-decor-leaf-top {
    top: -44px;
    left: -50px;
    width: 180px;
  }

  .hero-option-decor-palm {
    display: none;
  }

  .hero-option-decor-mobile-palm {
    display: block;
    top: -92px;
    left: 12px;
    width: 174px;
    opacity: 0.9;
    transform: rotate(-4deg);
    transform-origin: 45% 86%;
  }

  .hero-option-decor-floral-main {
    right: -82px;
    bottom: -48px;
    width: 318px;
    opacity: 0.96;
  }

  .hero-option-decor-floral-accent {
    display: none;
  }

  .hero-option-decor-floral-left {
    display: none;
  }

  .hero-option-decor-mobile-fruit {
    display: block;
    left: -18px;
    bottom: -4px;
    width: 168px;
    opacity: 0.9;
    transform: rotate(-4deg);
  }

}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1160px);
    min-height: 66px;
  }

  .brand-logo {
    width: 74px;
    height: auto;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
    padding: 64px 0;
  }

  .hero {
    gap: 26px;
    min-height: calc(100svh - 66px);
    padding: 40px 18px 92px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-brand-sticker {
    width: min(100%, 440px);
  }

  .hero-benefits {
    justify-content: center;
    align-self: center;
    width: min(100%, 300px);
    max-width: 100%;
    margin: 14px 0 0;
    gap: 6px 8px;
    font-size: 0.76rem;
    text-align: center;
    transform: none;
  }

  .hero-description {
    align-self: center;
    width: 100%;
    max-width: 260px;
    margin: 12px auto 0;
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
    transform: none;
  }

  h1 {
    font-size: 2.28rem;
  }

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

  h2 {
    font-size: 2.16rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .section-heading p,
  .gallery-copy > p,
  .product-menu-heading > p,
  .contact-copy p {
    font-size: 1rem;
  }

  .gallery-container {
    gap: 22px;
  }

  .gallery-copy {
    max-width: 100%;
    text-align: center;
  }

  .gallery-copy h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-copy > p {
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .gallery-copy::after {
    display: none;
  }

  .gallery-button {
    width: min(100%, 300px);
  }

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

  .gallery-card {
    aspect-ratio: 1;
    border-width: 4px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(70, 45, 20, 0.13);
  }

  .gallery-card-large,
  .gallery-card-under-left,
  .gallery-card-medium {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-card-under-left {
    aspect-ratio: 1334 / 1179;
  }

  .hero-actions {
    align-items: stretch;
    width: calc(100% - 10px);
  }

  .hero-copy-brand .hero-actions {
    align-self: center;
    width: min(100%, 330px);
    max-width: calc(100% - 40px);
    margin: 30px auto 0;
    transform: none;
  }

  .product-menu-shell {
    gap: 22px;
  }

  .product-menu-heading {
    max-width: 100%;
    text-align: center;
  }

  .product-menu-heading h2 {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .product-menu-heading > p {
    max-width: 310px;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.5;
  }

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

  .product-card {
    height: auto;
    max-width: 420px;
    min-height: 0;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(70, 45, 20, 0.12);
  }

  .product-card::before {
    height: 6px;
  }

  .hero-actions .btn,
  .product-menu-actions .btn,
  .catering-cta .btn {
    width: 100%;
  }

  .product-card-image,
  .product-card-ice .product-card-image,
  .product-card-sorbet .product-card-image,
  .product-card-mango .product-card-image,
  .product-card-mocktail .product-card-image {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    border-bottom-width: 4px;
  }

  .product-card-content {
    flex: none;
    justify-content: flex-start;
    padding: 17px 16px 18px;
  }

  .product-card h3 {
    margin-bottom: 7px;
    font-size: 1.18rem;
    line-height: 1.1;
  }

  .product-card-description {
    margin-bottom: 11px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .availability-note {
    margin-bottom: 12px;
    font-size: 0.8rem;
  }

  .product-card-tags {
    margin-top: 0;
    padding-top: 0;
  }

  .product-card-tags-label {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .product-card ul {
    gap: 6px;
  }

  .product-card li {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .why-chip-row span {
    width: 100%;
  }

  .contact-shell {
    gap: 28px;
  }

  .booking-card {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 24px 16px 28px 16px;
  }

  .booking-stamp {
    width: 76px;
    height: 76px;
    top: 18px;
    left: 18px;
    font-size: 0.66rem;
  }

  .booking-card h3 {
    margin-top: 82px;
    font-size: 2.02rem;
  }

  .booking-button {
    min-height: 54px;
    width: 100%;
  }

  .hero-visual {
    max-width: 360px;
    height: 430px;
    margin: 24px auto 0;
  }

  .hero-blob {
    top: 42px;
    right: 12px;
    width: 310px;
    max-width: 94%;
    height: 320px;
  }

  .hero-main-image {
    top: 42px;
    right: 24px;
    width: 230px;
    max-width: 90%;
    height: 310px;
    border-width: 6px;
    border-radius: 24px;
  }

  .hero-card {
    border-width: 6px;
    border-radius: 16px;
  }

  .hero-card-pushups {
    top: 72px;
    left: 2px;
    width: 148px;
    height: 184px;
  }

  .hero-card-scoops {
    left: 62px;
    bottom: -18px;
    width: 126px;
    height: 190px;
  }

  .hero-founder-caption {
    left: 50px;
    bottom: -30px;
    min-height: 28px;
    padding: 6px 10px;
    font-size: 0.66rem;
    box-shadow: 3px 3px 0 rgba(255, 102, 120, 0.34);
  }

  .hero-decor-leaf-top {
    top: -18px;
    left: -42px;
    width: 122px;
    opacity: 0.72;
  }

  .hero-option-decor-palm {
    display: none;
  }

  .hero-option-decor-mobile-palm {
    display: block;
    top: -74px;
    left: 8px;
    width: 136px;
    opacity: 0.86;
    transform: rotate(-4deg);
    transform-origin: 45% 86%;
  }

  .hero-option-decor-floral-main {
    right: -76px;
    bottom: -42px;
    width: 280px;
    opacity: 0.96;
  }

  .hero-option-decor-floral-accent {
    display: none;
  }

  .hero-option-decor-floral-left {
    display: none;
  }

  .hero-option-decor-mobile-fruit {
    display: block;
    left: -34px;
    bottom: -14px;
    width: 148px;
    opacity: 0.88;
    transform: rotate(-4deg);
  }

  .pricing-card {
    padding: 20px;
  }

  .catering-cta {
    align-items: stretch;
    padding: 18px;
  }

  .catering-cta p {
    font-size: 1.22rem;
  }
}

@media (max-width: 380px) {
  .hero-card-scoops {
    bottom: -16px;
  }

  .hero-founder-caption {
    left: 44px;
    bottom: -28px;
    padding-inline: 9px;
    font-size: 0.62rem;
  }

  .hero-option-decor-palm {
    display: none;
  }

  .hero-option-decor-mobile-palm {
    left: 4px;
    top: -66px;
    width: 122px;
    opacity: 0.82;
  }

  .hero-option-decor-floral-main {
    right: -74px;
    bottom: -34px;
    width: 238px;
    opacity: 0.94;
  }

  .hero-option-decor-floral-accent {
    display: none;
  }

  .hero-option-decor-floral-left {
    display: none;
  }

  .hero-option-decor-mobile-fruit {
    left: -28px;
    bottom: -8px;
    width: 126px;
    opacity: 0.82;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
