﻿@font-face {
  font-family: "Stuggi";
  src: url("./assets/fonts/Stuggi.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --wine: #8f3244;
  --wine-dark: #681d2b;
  --cream: #f0e7db;
  --cream-light: #fff8ef;
  --coral: #e9a077;
  --coral-dark: #cf7048;
  --ink: #3b1720;
  --green: #7fa653;
  --shadow: 0 20px 60px rgba(73, 21, 31, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(135deg, rgba(143, 50, 68, 0.06) 25%, transparent 25%) 0 0 / 42px 42px,
    linear-gradient(315deg, rgba(233, 160, 119, 0.09) 20%, transparent 20%) 0 0 / 54px 54px,
    var(--cream-light);
}

img,
svg {
  display: block;
}

main section {
  scroll-margin-top: 88px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--cream-light);
  background: rgba(143, 50, 68, 0.95);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(59, 23, 32, 0.2);
  padding-block: 12px;
}

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

.brand-logo {
  width: clamp(164px, 18vw, 224px);
  height: auto;
  flex: 0 0 auto;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a,
.footer-links a {
  position: relative;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button,
.mini-action,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action {
  min-height: 42px;
  padding: 0 22px;
  white-space: nowrap;
  color: var(--wine);
  background: var(--cream-light);
  font-size: 13px;
}

.button {
  padding: 0 28px;
  font-size: 14px;
}

.button-primary {
  color: var(--wine-dark);
  background: var(--coral);
  box-shadow: 0 8px 0 rgba(104, 29, 43, 0.25);
}

.button-ghost {
  color: var(--cream-light);
  border: 2px solid rgba(255, 248, 239, 0.8);
  background: transparent;
}

.button-light {
  color: var(--wine);
  background: var(--cream-light);
}

.header-action:hover,
.button:hover,
.mini-action:hover,
.filter:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(255, 248, 239, 0.55);
  border-radius: 50%;
  color: var(--cream-light);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 34px;
  min-height: 650px;
  padding: 68px clamp(22px, 5vw, 70px) 86px;
  overflow: hidden;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 78% 38%, rgba(233, 160, 119, 0.28), transparent 34%),
    linear-gradient(110deg, rgba(104, 29, 43, 0.95), rgba(143, 50, 68, 0.98));
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
.bowl-card h3,
.order h2 {
  font-family: "Stuggi", "Cooper Black", Georgia, serif;
  font-synthesis: none;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.82;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 248, 239, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: relative;
  min-height: 470px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto 0 26px auto;
  width: 82%;
  height: 74%;
  border: 1px solid rgba(240, 231, 219, 0.22);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-media img {
  position: absolute;
  width: min(54vw, 500px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 248, 239, 0.86);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-poke {
  right: 20%;
  bottom: 0;
}

.hero-acai {
  right: -2%;
  top: 0;
  width: min(42vw, 370px) !important;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 32px;
  padding: 0 22px;
  text-align: center;
}

.section-heading h2,
.full-menu h2 {
  margin-bottom: 0;
  color: var(--wine);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.9;
}

.promise {
  padding: 58px 0 64px;
  background: rgba(240, 231, 219, 0.88);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.promise-item {
  min-height: 222px;
  padding: 26px clamp(22px, 4vw, 44px);
  text-align: center;
  border-right: 1px solid rgba(143, 50, 68, 0.18);
}

.promise-item:last-child {
  border-right: 0;
}

.promise-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
}

.promise-item h3,
.menu-card h3,
.steps h3 {
  margin-bottom: 6px;
  color: var(--wine-dark);
  font-size: 19px;
  line-height: 1.15;
}

.promise-item p,
.menu-card p,
.steps p,
.footer p {
  margin-bottom: 0;
}

.bowls,
.full-menu {
  padding: 68px 0;
}

.bowl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.bowl-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(180px, 0.74fr);
  align-items: center;
  min-height: 292px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(143, 50, 68, 0.12);
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 14px 36px rgba(73, 21, 31, 0.1);
}

.bowl-card-dark {
  color: var(--cream-light);
  background:
    linear-gradient(rgba(143, 50, 68, 0.9), rgba(143, 50, 68, 0.92)),
    var(--wine);
}

.bowl-card h3 {
  margin-bottom: 10px;
  color: inherit;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.88;
}

.bowl-card p {
  max-width: 320px;
  margin-bottom: 22px;
  font-weight: 600;
}

.bowl-card img {
  width: 106%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 18px 28px rgba(59, 23, 32, 0.22));
}

.full-menu {
  background: var(--cream);
}

.menu-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 22px;
}

.menu-head h2 {
  text-align: left;
}

.filters {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(143, 50, 68, 0.14);
  border-radius: 999px;
  background: var(--cream-light);
}

.filter {
  min-height: 36px;
  padding: 0 16px;
  color: var(--wine);
  background: transparent;
  font-size: 12px;
}

.filter.is-active {
  color: var(--cream-light);
  background: var(--wine);
}

.menu-category {
  max-width: var(--max);
  margin: 0 auto 34px;
  padding: 0 22px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(143, 50, 68, 0.18);
}

.menu-category-head span {
  color: var(--wine);
  font-family: "Stuggi", "Cooper Black", Georgia, serif;
  font-synthesis: none;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 0.9;
}

.menu-category-head p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(59, 23, 32, 0.72);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

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

.menu-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 16px;
  min-height: 220px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.1);
}

.menu-card-menu {
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 188px;
  align-items: center;
}

.menu-card-menu > div {
  align-self: center;
}

[data-category].is-hidden,
.menu-card.is-hidden {
  display: none;
}

.menu-card img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
}

.menu-card p {
  font-size: 14px;
}

.menu-card-custom {
  color: var(--cream-light);
  background:
    linear-gradient(135deg, rgba(143, 50, 68, 0.97), rgba(104, 29, 43, 0.94)),
    var(--wine);
}

.menu-card-custom-acai {
  background:
    linear-gradient(135deg, rgba(143, 50, 68, 0.94), rgba(233, 160, 119, 0.9)),
    var(--wine);
}

.menu-card-custom h3,
.menu-card-custom p {
  color: var(--cream-light);
}

.menu-card-custom p {
  color: rgba(255, 248, 239, 0.84);
}

.menu-card-custom::after {
  content: "Ver opciones";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 239, 0.42);
  border-radius: 999px;
  color: var(--cream-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  color: var(--wine);
  font-weight: 800;
}

.starter-grid,
.dessert-grid,
.refreshment-grid,
.drink-grid {
  display: grid;
  gap: 14px;
}

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

.starter-card {
  min-height: 172px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.1);
}

.starter-card-featured {
  grid-column: span 1;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.9), rgba(240, 231, 219, 0.94)),
    var(--cream-light);
}

.starter-card h3 {
  margin-bottom: 10px;
  color: var(--wine-dark);
  font-size: 21px;
  line-height: 1.1;
  text-transform: uppercase;
}

.starter-card p {
  margin-bottom: 0;
  color: rgba(59, 23, 32, 0.78);
  font-size: 14px;
  font-weight: 600;
}

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

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

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

.dessert-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.1);
}

.dessert-card img {
  width: 150px;
  max-height: 166px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(59, 23, 32, 0.16));
}

.dessert-card h3 {
  margin-bottom: 8px;
  color: var(--wine-dark);
  font-size: 22px;
  line-height: 1.1;
}

.dessert-card p {
  margin-bottom: 0;
  color: rgba(59, 23, 32, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.refreshment-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 156px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.1);
  text-align: left;
}

.refreshment-card-featured {
  grid-column: auto;
}

.refreshment-card h3 {
  margin-bottom: 8px;
  color: var(--wine-dark);
  font-size: 21px;
  line-height: 1.08;
}

.refreshment-card p {
  margin-bottom: 0;
  color: rgba(59, 23, 32, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.drink-card {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--cream-light);
  background:
    linear-gradient(135deg, rgba(143, 50, 68, 0.96), rgba(104, 29, 43, 0.94)),
    var(--wine);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.1);
}

.drink-card span {
  display: block;
  margin-bottom: 10px;
  font-family: "Stuggi", "Cooper Black", Georgia, serif;
  font-synthesis: none;
  font-size: 32px;
  line-height: 0.9;
}

.drink-card p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.mini-action {
  grid-column: 1 / -1;
  min-height: 38px;
  padding: 0 18px;
  color: var(--cream-light);
  background: var(--wine);
  font-size: 12px;
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 460px;
  color: var(--cream-light);
  background: var(--wine);
}

.order-panel {
  padding: 58px clamp(24px, 6vw, 78px);
}

.order h2 {
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.86;
}

.order-copy {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 248, 239, 0.86);
  font-size: 16px;
  font-weight: 600;
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.delivery-card {
  min-width: 0;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.08);
}

.delivery-card h3 {
  margin-bottom: 8px;
  color: var(--cream-light);
}

.delivery-card p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.delivery-card-call {
  background: rgba(255, 248, 239, 0.16);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.steps article {
  min-width: 0;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border: 2px solid rgba(255, 248, 239, 0.7);
  border-radius: 50%;
  color: var(--coral);
  font-weight: 800;
}

.steps h3 {
  color: var(--cream-light);
}

.steps p {
  color: rgba(255, 248, 239, 0.82);
  font-size: 14px;
}

.pickup {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--cream);
}

.pickup img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.club-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 94px clamp(22px, 6vw, 90px);
  color: var(--cream-light);
  background:
    linear-gradient(90deg, rgba(104, 29, 43, 0.92), rgba(104, 29, 43, 0.62) 48%, rgba(104, 29, 43, 0.18)),
    url("https://wainalo.com/assets/images/wainalo-bags-counter.png") center / cover;
}

.club-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(104, 29, 43, 0.34));
}

.club-hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.club-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.86;
}

.club-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 239, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
}

.club-benefits,
.club-faq {
  padding: 64px clamp(18px, 5vw, 72px);
}

.club-benefit-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.club-benefit-card,
.club-faq-grid article {
  min-width: 0;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 14px 34px rgba(73, 21, 31, 0.08);
}

.club-benefit-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(143, 50, 68, 0.12);
}

.club-benefit-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(233, 160, 119, 0.2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.club-benefit-card h3,
.club-faq-grid h3 {
  color: var(--wine);
}

.club-benefit-card p,
.club-faq-grid p,
.club-form-copy p,
.club-flow p,
.form-note {
  color: rgba(59, 23, 32, 0.76);
}

.club-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  padding: 58px clamp(18px, 5vw, 72px);
  color: var(--cream-light);
  background: var(--wine);
}

.club-band > div:first-child,
.club-flow {
  max-width: 620px;
}

.club-band h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.88;
}

.club-flow {
  display: grid;
  gap: 14px;
  justify-self: end;
  width: 100%;
}

.club-flow article {
  padding: 18px 20px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.08);
}

.club-flow strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream-light);
  font-size: 18px;
}

.club-flow p {
  margin: 0;
  color: rgba(255, 248, 239, 0.82);
}

.club-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 70px clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.club-form-copy,
.club-form {
  max-width: 660px;
}

.club-form-copy h2 {
  margin-bottom: 16px;
  color: var(--wine);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.86;
}

.club-legal-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: rgba(59, 23, 32, 0.76);
  font-weight: 600;
}

.club-form {
  justify-self: end;
  width: 100%;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 18px 44px rgba(73, 21, 31, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.club-form label {
  display: grid;
  gap: 8px;
  color: var(--wine-dark);
  font-size: 13px;
  font-weight: 800;
}

.club-form input,
.club-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(143, 50, 68, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.club-form input:focus,
.club-form select:focus {
  outline: 3px solid rgba(233, 160, 119, 0.32);
  border-color: var(--coral-dark);
}

.checkbox-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 12px;
  color: rgba(59, 23, 32, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}

.checkbox-line a {
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
}

.club-submit {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 18px 0 0;
  font-size: 12px;
}

.club-faq-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.club-faq-grid article {
  padding: 22px;
}

.builder-hero {
  padding: 88px 22px 46px;
  color: var(--cream-light);
  background:
    linear-gradient(135deg, rgba(143, 50, 68, 0.96), rgba(104, 29, 43, 0.94)),
    var(--wine);
}

.builder-hero-acai {
  background:
    linear-gradient(135deg, rgba(143, 50, 68, 0.96), rgba(233, 160, 119, 0.86)),
    var(--wine);
}

.builder-hero > div,
.builder-layout {
  max-width: var(--max);
  margin: 0 auto;
}

.builder-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(58px, 8vw, 104px);
}

.builder-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 239, 0.84);
  font-size: 18px;
  font-weight: 600;
}

.builder-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.builder-steps a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 239, 0.34);
  border-radius: 999px;
  color: var(--cream-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.builder-layout {
  padding: 44px 22px 70px;
}

.builder-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.builder-step {
  scroll-margin-top: 92px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.1);
}

.builder-step-number {
  color: var(--wine);
  font-family: "Stuggi", "Cooper Black", Georgia, serif;
  font-synthesis: none;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.82;
}

.builder-step h2 {
  margin-bottom: 12px;
  text-align: left;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.92;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-section + .option-section {
  margin-top: 18px;
}

.option-section h3 {
  margin-bottom: 8px;
  color: var(--wine-dark);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.option-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(143, 50, 68, 0.16);
  border-radius: 999px;
  color: var(--wine-dark);
  background: rgba(240, 231, 219, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.builder-note {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--cream-light);
  background: var(--wine);
}

.builder-note p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.86);
  font-weight: 600;
}

.legal-hero {
  padding: 86px clamp(22px, 5vw, 70px) 64px;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 82% 24%, rgba(233, 160, 119, 0.22), transparent 32%),
    linear-gradient(110deg, rgba(104, 29, 43, 0.96), rgba(143, 50, 68, 0.98));
}

.legal-hero > div {
  max-width: var(--max);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 96px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.86);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 22px 76px;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(143, 50, 68, 0.14);
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.08);
}

.legal-sidebar a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-sidebar a:hover {
  background: rgba(143, 50, 68, 0.08);
}

.legal-content {
  display: grid;
  gap: 22px;
}

.template-alert,
.legal-section,
.legal-note {
  border-radius: var(--radius);
}

.template-alert {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(233, 160, 119, 0.55);
  background: rgba(233, 160, 119, 0.14);
}

.template-alert strong,
.legal-note strong {
  color: var(--wine-dark);
}

.legal-section {
  scroll-margin-top: 104px;
  padding: 28px;
  background: var(--cream-light);
  box-shadow: 0 12px 28px rgba(73, 21, 31, 0.08);
}

.legal-section h2 {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.9;
}

.legal-section h3 {
  margin: 26px 0 8px;
  color: var(--wine-dark);
  font-size: 20px;
}

.legal-section p {
  color: rgba(59, 23, 32, 0.8);
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(59, 23, 32, 0.8);
}

.legal-list li + li {
  margin-top: 8px;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.legal-table,
.allergen-template {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(143, 50, 68, 0.14);
  border-radius: var(--radius);
  background: rgba(240, 231, 219, 0.42);
}

.legal-table {
  margin: 18px 0;
}

.legal-table div,
.allergen-template div {
  display: grid;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(143, 50, 68, 0.12);
}

.legal-table div {
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
}

.legal-table div:last-child,
.allergen-template div:last-child {
  border-bottom: 0;
}

.legal-table strong,
.allergen-template strong {
  color: var(--wine-dark);
}

.legal-table span,
.allergen-template span {
  color: rgba(59, 23, 32, 0.78);
}

.legal-note {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(143, 50, 68, 0.16);
  background: rgba(143, 50, 68, 0.06);
}

.allergen-template {
  margin-top: 14px;
}

.allergen-template div {
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 0.32fr) minmax(0, 0.32fr);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 20px 32px;
  padding: 34px clamp(22px, 5vw, 70px);
  text-align: left;
  color: var(--cream-light);
  background: var(--wine-dark);
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}

.footer-brand .brand-logo {
  width: 176px;
}

.footer-credit {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: none;
  margin-top: 8px;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 248, 239, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.footer-credit a {
  color: var(--cream-light);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 18px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav.is-open {
    position: absolute;
    grid-column: 1 / -1;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    justify-self: stretch;
    justify-items: start;
    gap: 0;
    padding: 12px 22px 22px;
    color: var(--cream-light);
    background: var(--wine);
    box-shadow: 0 18px 32px rgba(59, 23, 32, 0.2);
  }

  .nav.is-open a {
    width: 100%;
    padding: 14px 0;
  }

  .hero,
  .order {
    grid-template-columns: 1fr;
  }

  .delivery-options {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    width: min(72vw, 440px);
  }

  .hero-acai {
    width: min(50vw, 320px) !important;
  }

  .promise-grid,
  .menu-grid,
  .menu-grid-large,
  .starter-grid,
  .dessert-grid,
  .refreshment-grid,
  .drink-grid {
    grid-template-columns: 1fr;
  }

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

  .club-band,
  .club-form-section {
    grid-template-columns: 1fr;
  }

  .club-flow,
  .club-form {
    justify-self: stretch;
    max-width: none;
  }

  .refreshment-card-featured {
    grid-column: auto;
  }

  .promise-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(143, 50, 68, 0.18);
  }

  .promise-item:last-child {
    border-bottom: 0;
  }

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

  .menu-head {
    align-items: start;
    flex-direction: column;
  }

  .menu-category-head {
    align-items: start;
    flex-direction: column;
  }

  .menu-category-head p {
    text-align: left;
  }

  .builder-step {
    grid-template-columns: 1fr;
  }

  .pickup {
    min-height: 330px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 154px;
  }

  .site-header {
    gap: 14px;
    padding-inline: 16px;
  }

  h1 {
    font-size: 58px;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 58px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-poke {
    right: 22%;
  }

  .hero-acai {
    right: 0;
  }

  .section-heading h2,
  .full-menu h2 {
    font-size: 44px;
  }

  .club-hero {
    min-height: 620px;
    padding: 72px 18px 58px;
    background:
      linear-gradient(180deg, rgba(104, 29, 43, 0.94), rgba(104, 29, 43, 0.66)),
      url("https://wainalo.com/assets/images/wainalo-bags-counter.png") center / cover;
  }

  .club-hero h1 {
    font-size: 58px;
  }

  .club-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .club-benefits,
  .club-faq,
  .club-band,
  .club-form-section {
    padding-inline: 18px;
  }

  .club-benefit-grid,
  .club-faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .club-benefit-card {
    min-height: 0;
  }

  .club-form {
    padding: 20px;
  }

  .bowl-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bowl-card img {
    width: min(82vw, 280px);
    margin: 0 auto;
  }

  .filters {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: space-between;
    border-radius: 24px;
  }

  .filter {
    flex: 1 1 30%;
    min-width: 0;
    padding-inline: 8px;
  }

  .menu-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 0;
  }

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

  .menu-card img {
    width: 86px;
    height: 86px;
  }

  .menu-card-menu img {
    width: 104px;
    height: 104px;
  }

  .builder-hero {
    padding: 58px 18px 40px;
  }

  .builder-hero h1 {
    font-size: 58px;
  }

  .builder-layout {
    padding: 34px 18px 54px;
  }

  .builder-step {
    gap: 14px;
    padding: 20px;
  }

  .drink-card {
    min-height: 0;
  }

  .dessert-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .dessert-card img {
    width: 112px;
    max-height: 128px;
  }

  .refreshment-card,
  .refreshment-card-featured {
    grid-column: auto;
    min-height: 0;
    padding: 18px;
  }

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

  .pickup img {
    min-height: 0;
  }

  .legal-hero {
    padding: 58px 18px 44px;
  }

  .legal-section {
    padding: 22px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-table div,
  .allergen-template div {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: center;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand-block {
    align-items: center;
    justify-self: center;
  }

  .footer-credit {
    max-width: 520px;
    white-space: normal;
  }

  .footer-links {
    justify-content: center;
    justify-self: center;
    text-align: center;
  }
}
