:root {
  --ink: #173128;
  --muted: #627067;
  --paper: #fffaf0;
  --cream: #fff5df;
  --leaf: #1f8c4c;
  --mint: #daf3cf;
  --orange: #f48b24;
  --ruby: #b92845;
  --gold: #f4c542;
  --shadow: 0 24px 70px rgba(37, 40, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 49, 40, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 49, 40, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #fff8e8 0%, #f4fbeb 42%, #fff4e2 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 240, 0.82);
  border-bottom: 1px solid rgba(23, 49, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-weight: 900;
  font-size: 1.08rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(31, 140, 76, 0.16);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.4rem);
  color: var(--muted);
  font-weight: 750;
}

nav a {
  padding: 0.55rem 0;
}

.cart-toggle,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 850;
}

.cart-toggle strong {
  display: grid;
  place-items: center;
  min-width: 25px;
  min-height: 25px;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(92vh - 70px);
  padding: clamp(1.6rem, 4vw, 4rem) clamp(1rem, 5vw, 5rem) 3rem;
  background:
    linear-gradient(115deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.9) 36%, rgba(218, 243, 207, 0.72) 36%, rgba(218, 243, 207, 0.46) 66%, rgba(244, 139, 36, 0.22) 66%, rgba(244, 139, 36, 0.08) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.34), rgba(255, 250, 240, 0.86)),
    url("assets/hi-c-spic.jpeg") left -110px top -120px / 380px auto no-repeat,
    url("assets/verde-rush.jpeg") right -120px bottom -130px / 460px auto no-repeat,
    url("assets/bottle-lineup.jpeg") center bottom / cover no-repeat;
  opacity: 0.16;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.2) 68%, rgba(255, 250, 240, 0.72)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

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

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.1rem;
  max-width: 12ch;
  font-size: clamp(2.9rem, 7vw, 6.1rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.hero-text,
.intro p,
.membership-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.cart-toggle:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--leaf);
  color: white;
  box-shadow: 0 12px 28px rgba(31, 140, 76, 0.24);
}

.ghost {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(23, 49, 40, 0.12);
}

.full {
  width: 100%;
}

.hero-stage {
  position: relative;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% 0 -4% 7%;
  z-index: -1;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(218, 243, 207, 0.85), rgba(244, 197, 66, 0.46), rgba(244, 139, 36, 0.22));
  transform: rotate(-2deg);
  animation: panelBreath 8s ease-in-out infinite;
}

.lineup {
  width: min(100%, 700px);
  margin-inline: auto;
  border: 10px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(23, 49, 40, 0.22);
  animation: bottleRise 900ms ease both;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  min-width: 150px;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(23, 49, 40, 0.14);
  backdrop-filter: blur(14px);
  animation: drift 4.5s ease-in-out infinite;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-card strong {
  font-size: 1.35rem;
}

.float-two {
  right: 0;
  top: 10%;
  animation-delay: -1.8s;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 5rem);
  overflow: hidden;
  border-radius: 12px;
  background: rgba(23, 49, 40, 0.1);
  box-shadow: 0 18px 48px rgba(23, 49, 40, 0.13);
  transform: translateY(-1.6rem);
}

.strip div {
  display: grid;
  gap: 0.2rem;
  min-height: 110px;
  padding: 1.25rem;
  background: white;
}

.strip strong {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
}

.strip span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-top: -1.5rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.35)),
    linear-gradient(135deg, rgba(31, 140, 76, 0.08), rgba(244, 197, 66, 0.16));
}

.intro::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 1.5rem;
  width: min(260px, 28vw);
  aspect-ratio: 1;
  background: url("assets/kay-joy-logo.svg?v=2") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1rem;
}

.menu-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.15), rgba(255, 255, 255, 0.6)),
    linear-gradient(90deg, rgba(180, 40, 69, 0.07), rgba(31, 140, 76, 0.07));
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.74)),
    url("assets/all-smiles.jpeg") right center / 520px auto no-repeat;
  opacity: 0.38;
  pointer-events: none;
}

.menu-section > * {
  position: relative;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 16px 40px rgba(23, 49, 40, 0.1);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease, box-shadow 180ms ease;
}

.product-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 24px 62px rgba(23, 49, 40, 0.18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.product-meta {
  min-height: 3.2rem;
  color: var(--muted);
  line-height: 1.45;
}

.ingredients {
  display: grid;
  gap: 0.2rem;
  min-height: 4.2rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ingredients span {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-row,
.cart-row,
.checkout-footer,
.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 950;
}

.mini-button {
  min-height: 42px;
  padding: 0.65rem 0.8rem;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 900;
}

.membership {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(23, 49, 40, 0.88), rgba(31, 140, 76, 0.7)),
    url("assets/verde-rush.jpeg") center / cover no-repeat;
  color: white;
}

.membership .eyebrow,
.membership-copy p,
.membership-copy ul {
  color: rgba(255, 255, 255, 0.78);
}

.membership h2,
.membership-copy li {
  color: white;
}

.membership-copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink);
  font-weight: 760;
}

.membership-card {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  min-height: 360px;
  padding: 2rem;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76)),
    url("assets/verde-rush.jpeg") center / cover;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.membership-card strong {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
}

.pass-label {
  width: max-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--gold);
  font-weight: 950;
}

.membership-options {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.membership-options legend {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.membership-options label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem;
  border: 1px solid rgba(23, 49, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.membership-options input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.16rem;
  accent-color: var(--leaf);
}

.membership-options span {
  display: grid;
  gap: 0.15rem;
}

.membership-options strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.membership-options small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.pickup {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(246, 251, 239, 0.95)),
    repeating-linear-gradient(90deg, rgba(31, 140, 76, 0.06) 0 1px, transparent 1px 30px);
}

.checkout {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(23, 49, 40, 0.1);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.checkout-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 980px;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(23, 49, 40, 0.1);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.checkout-cta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.4rem;
}

.checkout-cta p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pickup-location {
  display: inline-grid;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(31, 140, 76, 0.16);
  border-radius: 8px;
  background: rgba(218, 243, 207, 0.42);
  color: var(--ink);
  font-weight: 900;
}

.pickup-location span {
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 49, 40, 0.15);
  border-radius: 8px;
  background: #fffcf5;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-page {
  min-height: 100vh;
}

.checkout-shell {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem) 5rem;
}

.checkout-hero {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin-bottom: 2rem;
}

.checkout-hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.checkout-hero p:last-child {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.checkout-hero .hero-location {
  width: max-content;
  max-width: 100%;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 1.25rem;
  align-items: start;
}

.checkout-card,
.order-review {
  border: 1px solid rgba(23, 49, 40, 0.1);
  border-radius: 14px;
  background: white;
  box-shadow: 0 16px 42px rgba(23, 49, 40, 0.09);
}

.checkout-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.checkout-card-heading {
  display: flex;
  align-items: start;
  gap: 0.85rem;
}

.checkout-card-heading > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 950;
}

.checkout-card-heading h2 {
  margin-bottom: 0.2rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.checkout-card-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.payment-methods label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  border: 1px solid rgba(23, 49, 40, 0.13);
  border-radius: 8px;
  background: #fffcf5;
  cursor: pointer;
  text-align: center;
}

.payment-methods input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--leaf);
}

.card-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 0.8fr 0.7fr;
  gap: 1rem;
}

.square-payment-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(32, 71, 44, 0.14);
  border-radius: 8px;
  background: rgba(246, 255, 242, 0.78);
}

.square-payment-panel strong {
  color: var(--leaf);
}

.square-payment-panel p {
  margin: 0;
  color: var(--muted);
}

.embedded-card-shell {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(23, 49, 40, 0.1);
  border-radius: 8px;
  background: #fffdf8;
}

#card-container {
  min-height: 90px;
}

.order-review {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.order-review-header,
.checkout-totals div,
.checkout-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-review-header a {
  color: var(--leaf);
  font-weight: 900;
}

.checkout-items {
  display: grid;
  gap: 0.8rem;
}

.checkout-line {
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 10px;
  background: #fffcf5;
}

.checkout-line p {
  margin: 0.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkout-line span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.checkout-empty {
  gap: 0.65rem;
}

.checkout-totals {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 49, 40, 0.1);
}

.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  padding: 1.2rem;
  background: #fffdf7;
  box-shadow: -28px 0 70px rgba(23, 49, 40, 0.2);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(23, 49, 40, 0.1);
}

.cart-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 950;
}

.cart-items {
  display: grid;
  gap: 0.75rem;
  overflow: auto;
  padding: 1rem 0;
}

.cart-line {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(23, 49, 40, 0.09);
  border-radius: 10px;
  background: white;
}

.cart-line strong {
  font-size: 1rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.qty button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.cart-empty {
  display: none;
  margin: 1rem 0;
  padding: 1.2rem;
  border-radius: 12px;
  background: var(--cream);
  color: var(--muted);
}

.cart-empty strong {
  color: var(--ink);
}

.cart-summary {
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 49, 40, 0.1);
}

.total {
  font-size: 1.25rem;
}

.success-shell {
  min-height: calc(100vh - 94px);
  display: grid;
  place-items: center;
}

.success-card {
  max-width: 780px;
}

.success-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.success-details div {
  padding: 14px;
  border: 1px solid rgba(32, 71, 44, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.success-details span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.success-details strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  background: rgba(23, 49, 40, 0.28);
  opacity: 0;
  transition: opacity 260ms ease;
}

.scrim.is-open {
  pointer-events: auto;
  opacity: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 60;
  width: min(92vw, 520px);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, 160%);
  transition: transform 240ms ease;
}

.toast.is-open {
  transform: translate(-50%, 0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .brand img {
  box-shadow: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.socials a {
  display: grid;
  gap: 0.15rem;
  min-width: 150px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.socials span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(88vh - 70px);
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 250, 240, 0.96), rgba(246, 251, 239, 0.7)),
    url("assets/bottle-lineup.jpeg") right bottom / 720px auto no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.95), rgba(255, 250, 240, 0.68) 58%, rgba(255, 250, 240, 0.38)),
    repeating-linear-gradient(135deg, rgba(31, 140, 76, 0.07) 0 1px, transparent 1px 20px);
}

.about-copy,
.about-photo-wrap {
  position: relative;
  z-index: 1;
}

.about-copy {
  max-width: 720px;
}

.about-copy h1 {
  max-width: 10ch;
}

.about-copy p:not(.eyebrow),
.story-text p,
.values-section p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.7;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.about-photo-wrap {
  justify-self: center;
  width: min(100%, 420px);
  padding: 0.8rem;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(244, 197, 66, 0.5), rgba(218, 243, 207, 0.7)),
    white;
  box-shadow: 0 30px 90px rgba(23, 49, 40, 0.2);
  transform: rotate(1.5deg);
}

.about-photo-wrap img {
  width: 100%;
  max-height: 620px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44)),
    linear-gradient(135deg, rgba(180, 40, 69, 0.07), rgba(31, 140, 76, 0.08));
}

.story-text {
  display: grid;
  gap: 1rem;
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.values-section article {
  min-height: 260px;
  padding: 1.4rem;
  border: 1px solid rgba(23, 49, 40, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(23, 49, 40, 0.1);
}

.values-section span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 950;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(120deg, rgba(23, 49, 40, 0.9), rgba(31, 140, 76, 0.72)),
    url("assets/all-smiles.jpeg") center / cover no-repeat;
  color: white;
}

.about-cta .eyebrow,
.about-cta h2 {
  color: white;
}

.about-cta h2 {
  margin-bottom: 0;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 650ms ease, opacity 650ms ease;
}

.hero .reveal {
  transform: none;
  opacity: 1;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes pulseBlob {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.04);
  }
}

@keyframes panelBreath {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(-1deg) scale(1.02);
  }
}

@keyframes bottleRise {
  from {
    transform: translateY(30px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .intro,
  .membership,
  .checkout-layout,
  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
  }

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

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

  .order-review {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
  }

  .strip,
  .menu-grid,
  .values-section,
  .form-grid,
  .form-grid.two,
  .card-grid,
  .payment-methods,
  .success-details {
    grid-template-columns: 1fr;
  }

  .float-two {
    position: static;
    margin: 0.8rem 0 0;
  }

  .section-heading,
  .checkout-footer,
  .checkout-cta,
  .about-cta,
  .site-footer {
    display: grid;
    justify-content: stretch;
  }

  .socials {
    justify-content: stretch;
  }

  .socials a {
    min-width: 100%;
  }
}

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