:root {
  --black: #0b0b0b;
  --black-soft: #14120d;
  --gold: #c9a227;
  --gold-bright: #ffcf39;
  --honey: #ffbf00;
  --cream: #fff5d8;
  --muted: rgba(255, 245, 216, 0.72);
  --line: rgba(255, 191, 0, 0.24);
  --lime: #b9f83d;
  --orange: #ff7a18;
  --strawberry: #b90f24;
  --display: Impact, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --logo: "Archivo Black", Impact, "Helvetica Neue", Arial, sans-serif;
  --ui: "Inter", Arial, sans-serif;
  --page-gutter: clamp(18px, 5vw, 80px);
  --content-max: 1280px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 2%, rgba(255, 191, 0, 0.16), transparent 26rem),
    radial-gradient(circle at 8% 44%, rgba(185, 15, 36, 0.08), transparent 18rem),
    linear-gradient(180deg, #050505 0%, var(--black) 48%, #060503 100%);
  font-family: var(--ui);
}

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

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

#honeycomb-bg,
#pollen-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#honeycomb-bg {
  z-index: -3;
  opacity: 0.62;
}

#pollen-canvas {
  z-index: 10;
  mix-blend-mode: screen;
}

.cursor-orb {
  position: fixed;
  z-index: 40;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 191, 0, 0.7);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 26px rgba(255, 191, 0, 0.45);
  transition: opacity 180ms ease, width 220ms ease, height 220ms ease;
}

.cursor-orb.is-active {
  width: 36px;
  height: 36px;
}

.cursor-drop {
  position: fixed;
  z-index: 39;
  width: 6px;
  height: 6px;
  border-radius: 50% 44% 56% 48%;
  pointer-events: none;
  background: radial-gradient(circle at 35% 30%, #fff5b2, var(--honey) 55%, transparent 72%);
  filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.7));
  animation: cursorDrop 680ms ease-out forwards;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 18px);
  min-height: clamp(104px, 9vw, 126px);
  padding: 8px var(--page-gutter);
  max-width: 100%;
  overflow: visible;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.42) 70%, transparent);
  backdrop-filter: blur(10px);
}

.site-header--no-logo {
  min-height: clamp(76px, 6.8vw, 96px);
}

.site-header--no-logo .main-nav {
  justify-content: flex-start;
}

.brand-mark,
.footer-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  overflow: visible;
}

.brand-mark {
  flex: 0 0 auto;
  min-height: clamp(82px, 8vw, 100px);
}

.brand-mark img,
.footer-logo img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-mark img {
  max-width: clamp(148px, 16vw, 214px);
  max-height: clamp(92px, 8vw, 122px);
  height: clamp(92px, 8vw, 122px);
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 191, 0, 0.18));
}

.main-nav,
.header-social {
  display: flex;
  align-items: center;
}

.main-nav {
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
  gap: clamp(14px, 2.7vw, 44px);
  color: rgba(255, 245, 216, 0.72);
  font-size: clamp(0.62rem, 0.7vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a[aria-current="page"] {
  color: #fff4c0;
}

.header-social {
  flex: 0 0 auto;
  gap: 10px;
}

.header-social a:not(.header-order),
.social-actions a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-bright);
  border: 1px solid rgba(255, 191, 0, 0.34);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: rgba(11, 11, 11, 0.68);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.header-social svg,
.social-actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-order,
.ghost-button,
.order-button,
.luxury-button,
.preview-send,
.preview-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-family: var(--ui);
  font-size: clamp(0.66rem, 0.75vw, 0.74rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.header-order {
  min-height: 42px;
  padding: 0 20px;
  color: #0e0a02;
  clip-path: polygon(14% 0, 86% 0, 100% 50%, 86% 100%, 14% 100%, 0 50%);
  background: linear-gradient(135deg, #ffe78a, var(--honey));
  box-shadow: 0 14px 34px rgba(255, 191, 0, 0.2);
}

.section-panel {
  position: relative;
  min-height: auto;
  padding-block: clamp(76px, 8vw, 118px);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  scroll-margin-top: clamp(104px, 9vw, 126px);
  isolation: isolate;
}

.page-shell {
  padding-top: clamp(124px, 10vw, 158px);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(min(100%, 340px), 0.95fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  overflow: visible;
  padding-top: clamp(112px, 10vw, 140px);
}

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

.hero::before {
  right: -12vw;
  top: 5vh;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.18), rgba(255, 191, 0, 0.06) 38%, transparent 67%);
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36%;
  background:
    radial-gradient(ellipse at 58% 88%, rgba(255, 191, 0, 0.28), transparent 32%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.hero-copy,
.story-copy,
.contact-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

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

h1,
h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.9;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  font-size: clamp(4rem, 8.2vw, 8.8rem);
}

.hero-copy h1 {
  max-width: 600px;
  font-size: clamp(2.8rem, 4.65vw, 4.95rem);
}

.hero-title {
  display: grid;
  gap: clamp(10px, 1.3vw, 16px);
}

.hero-title-logo {
  width: clamp(112px, 11vw, 168px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 191, 0, 0.28));
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(3.1rem, 6.2vw, 6.8rem);
}

h3 {
  margin: 0;
  color: #fff9e8;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 700;
  line-height: 0.9;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p,
.section-copy p,
.story-copy > p,
.contact-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-copy p {
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  max-width: 100%;
}

.luxury-button {
  position: relative;
  min-height: 58px;
  padding: 0 clamp(20px, 2.1vw, 28px);
  gap: 12px;
  overflow: hidden;
  color: #130d03;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  background: linear-gradient(135deg, #ffe991, var(--honey) 54%, #c87b11);
  box-shadow: 0 20px 52px rgba(255, 191, 0, 0.28);
}

.luxury-button::before {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-60%) rotate(18deg);
  transition: transform 620ms ease;
}

.luxury-button:hover::before {
  transform: translateX(64%) rotate(18deg);
}

.luxury-button span,
.luxury-button svg {
  position: relative;
  z-index: 1;
}

.luxury-button span,
.ghost-button,
.order-button,
.header-order {
  min-width: 0;
  overflow-wrap: anywhere;
}

.luxury-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ghost-button {
  min-height: 58px;
  padding: 0 clamp(18px, 2vw, 24px);
  color: var(--cream);
  border: 1px solid rgba(255, 191, 0, 0.36);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  background: rgba(12, 12, 12, 0.62);
}

.header-order:hover,
.luxury-button:hover,
.ghost-button:hover,
.order-button:hover,
.header-social a:hover,
.social-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(255, 191, 0, 0.34);
}

.header-social a:hover,
.social-actions a:hover {
  color: #0c0801;
  background: linear-gradient(135deg, #fff0a1, var(--honey));
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-proof li {
  padding: 10px 13px;
  color: rgba(255, 245, 216, 0.86);
  border: 1px solid rgba(255, 191, 0, 0.24);
  background: rgba(255, 191, 0, 0.06);
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product {
  position: relative;
  z-index: 2;
  min-height: clamp(360px, 50vw, 720px);
  display: grid;
  place-items: center;
  min-width: 0;
}

.product-photo,
.story-photo {
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: min(100%, 520px);
  aspect-ratio: 0.8;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, 0.24);
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
  background: rgba(255, 191, 0, 0.08);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.45), 0 0 48px rgba(255, 191, 0, 0.12);
}

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

.hero-bottle-photo {
  width: min(78%, 430px);
  aspect-ratio: 620 / 1326;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  transform: rotate(-8deg);
  transform-origin: 50% 58%;
  border-color: rgba(255, 207, 57, 0.46);
  background: rgba(185, 248, 61, 0.08);
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.52), 0 0 58px rgba(255, 191, 0, 0.2);
}

.hero-bottle-photo img {
  object-position: center;
}

.hero-trio-photo {
  width: min(100%, 760px);
  aspect-ratio: 1834 / 1722;
  overflow: visible;
  border: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
  transform: none;
  transform-origin: 50% 62%;
}

.hero-trio-photo img {
  object-fit: contain;
  filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.48));
}

.hero-pack-photo {
  width: min(100%, 660px);
  aspect-ratio: 1080 / 991;
  clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0 50%);
  background: #030301;
}

.hero-pack-photo img {
  object-position: center top;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 245, 216, 0.46);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--honey);
  transform: translateX(-50%);
  animation: scrollCue 1.6s ease-in-out infinite;
}

.section-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered p {
  margin-inline: auto;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5.5vw, 78px);
}

.story-media {
  position: relative;
  min-height: clamp(390px, 42vw, 520px);
  display: grid;
  place-items: center;
}

.story-photo {
  width: min(100%, 520px);
  aspect-ratio: 0.8;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, 0.24);
  clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
  background: rgba(255, 191, 0, 0.08);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.38);
}

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

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

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

.story-points div {
  padding: 22px;
  border: 1px solid rgba(255, 191, 0, 0.22);
  background: rgba(255, 191, 0, 0.06);
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
}

.story-points span {
  color: var(--honey);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.story-points strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: 1.55rem;
}

.story-points p {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-showcase {
  --product-accent: var(--lime);
  --product-accent-deep: #203a0d;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(min(100%, 300px), 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  overflow: visible;
  scroll-margin-top: 108px;
}

.product-showcase::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  bottom: 8%;
  z-index: -2;
  width: clamp(220px, 27vw, 460px);
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--product-accent) 12%, transparent) 34%, color-mix(in srgb, var(--product-accent) 23%, transparent) 100%),
    radial-gradient(ellipse at 100% 50%, color-mix(in srgb, var(--product-accent) 22%, transparent), transparent 72%);
  filter: blur(12px);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 22% 100%, 0 50%);
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 100%);
  transition: background 260ms ease, opacity 260ms ease;
}

.showcase-visual,
.showcase-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.showcase-stage {
  display: grid;
  grid-template-columns: clamp(64px, 6vw, 78px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  min-width: 0;
}

.showcase-focus {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.showcase-thumbs {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 12px;
}

.flavor-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(64px, 6vw, 76px);
  min-height: clamp(84px, 7vw, 98px);
  padding: 8px 6px 10px;
  overflow: hidden;
  color: rgba(255, 245, 216, 0.82);
  border: 1px solid rgba(255, 191, 0, 0.22);
  clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
  background:
    linear-gradient(180deg, rgba(255, 191, 0, 0.12), rgba(8, 8, 8, 0.84)),
    #0d0d0d;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.flavor-thumb img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  transform: scale(1.04);
  transition: opacity 220ms ease, transform 220ms ease;
}

.flavor-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.76));
}

.flavor-thumb span {
  align-self: end;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flavor-thumb:hover,
.flavor-thumb.is-active {
  color: #fff8dd;
  border-color: color-mix(in srgb, var(--product-accent) 72%, var(--honey));
  box-shadow: 0 0 28px color-mix(in srgb, var(--product-accent) 38%, transparent);
  transform: translateX(5px);
}

.flavor-thumb:hover img,
.flavor-thumb.is-active img {
  opacity: 0.78;
  transform: scale(1);
}

.showcase-main {
  position: relative;
  min-height: clamp(380px, 44vw, 660px);
  display: grid;
  place-items: center;
  isolation: isolate;
  width: min(100%, 680px);
}

.showcase-main::before {
  content: "";
  position: absolute;
  inset: 4% 1% 1%;
  z-index: -3;
  clip-path: polygon(16% 0, 84% 0, 100% 50%, 84% 100%, 16% 100%, 0 50%);
  border: 1px solid rgba(255, 191, 0, 0.22);
  background:
    radial-gradient(circle at 52% 35%, color-mix(in srgb, var(--product-accent) 54%, transparent), transparent 42%),
    linear-gradient(145deg, color-mix(in srgb, var(--product-accent-deep) 58%, #080808), #090909 74%);
  transition: background 260ms ease, border-color 260ms ease;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 8% 6%;
  z-index: -2;
  clip-path: polygon(16% 0, 84% 0, 100% 50%, 84% 100%, 16% 100%, 0 50%);
  opacity: 0.28;
  background:
    linear-gradient(30deg, transparent 0 22px, rgba(255, 245, 216, 0.14) 23px 24px, transparent 25px 48px),
    linear-gradient(150deg, transparent 0 26px, rgba(255, 191, 0, 0.14) 27px 28px, transparent 29px 54px);
}

.showcase-glow {
  position: absolute;
  inset: auto 10% 8%;
  height: 22%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--product-accent) 42%, transparent), transparent 66%);
  filter: blur(4px);
}

.showcase-photo {
  width: min(76%, 510px);
  aspect-ratio: 0.8;
  overflow: hidden;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
  border: 1px solid color-mix(in srgb, var(--product-accent) 48%, rgba(255, 191, 0, 0.22));
  background: rgba(255, 191, 0, 0.08);
  box-shadow: 0 46px 92px rgba(0, 0, 0, 0.48), 0 0 54px color-mix(in srgb, var(--product-accent) 18%, transparent);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 260ms ease;
}

.product-showcase.is-switching .showcase-photo img {
  opacity: 0.46;
  transform: scale(1.018);
}

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

.showcase-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--product-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-copy h2 {
  color: #fff8df;
}

.showcase-copy .showcase-title {
  max-width: 790px;
  color: #fff8df;
  font-size: clamp(3.1rem, 6.2vw, 6.8rem);
}

.showcase-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.showcase-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.showcase-facts li {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  color: rgba(255, 245, 216, 0.9);
  border: 1px solid color-mix(in srgb, var(--product-accent) 34%, rgba(255, 191, 0, 0.2));
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  background: color-mix(in srgb, var(--product-accent) 9%, rgba(7, 7, 7, 0.78));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.showcase-actions--under-image {
  width: min(100%, 560px);
  justify-content: center;
  margin-top: 0;
}

.showcase-actions--under-image .ghost-button {
  min-width: 170px;
}

.showcase-actions--under-image .showcase-more {
  min-width: min(100%, 280px);
  min-height: 70px;
  padding-inline: clamp(28px, 3.4vw, 42px);
  color: #120d03;
  border-color: rgba(255, 235, 145, 0.72);
  background: linear-gradient(135deg, #fff0a1, var(--honey) 58%, #c87b11);
  box-shadow: 0 22px 58px rgba(255, 191, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
}

.showcase-actions--under-image .luxury-button {
  min-width: min(100%, 330px);
  max-width: 100%;
}

.showcase-more {
  cursor: pointer;
}

.packs {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  overflow: visible;
}

.pack-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.pack-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255, 191, 0, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 191, 0, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 191, 0, 0.1), rgba(8, 8, 8, 0.9)),
    #080807;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.36);
}

.pack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(30deg, transparent 0 28px, rgba(255, 191, 0, 0.14) 29px 30px, transparent 31px 58px),
    linear-gradient(150deg, transparent 0 28px, rgba(255, 191, 0, 0.1) 29px 30px, transparent 31px 58px);
  background-size: 74px 128px;
}

.pack-visual {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #060503;
}

.pack-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.pack-copy > span {
  color: var(--honey);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pack-copy h3 {
  color: #fff8df;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.pack-copy p {
  max-width: 52ch;
  margin: 0;
}

.pack-copy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pack-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 245, 216, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pack-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--honey);
  transform: rotate(45deg);
}

.pack-button {
  justify-self: start;
  margin-top: 6px;
}

.flavors {
  min-height: auto;
  padding-top: clamp(82px, 8vw, 118px);
}

.flavor-hive {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
  margin-top: clamp(48px, 7vw, 82px);
}

.product-cell {
  --accent: var(--honey);
  position: relative;
  min-height: clamp(460px, 36vw, 560px);
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 36px);
  isolation: isolate;
  clip-path: polygon(14% 0, 86% 0, 100% 50%, 86% 100%, 14% 100%, 0 50%);
  border: 1px solid rgba(255, 191, 0, 0.24);
  background:
    radial-gradient(circle at 50% 26%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 40%),
    linear-gradient(145deg, rgba(255, 191, 0, 0.12), rgba(8, 8, 8, 0.9));
  transition: transform 280ms ease, filter 280ms ease;
}

.product-cell::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  clip-path: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.86) 82%),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 20px);
}

.product-cell::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  box-shadow: 0 0 18px rgba(255, 191, 0, 0.55);
  transform: scaleX(0.4);
  opacity: 0.65;
  transition: transform 280ms ease, opacity 280ms ease;
}

.product-cell:hover {
  transform: translateY(-12px);
  filter: drop-shadow(0 0 32px color-mix(in srgb, var(--accent) 45%, transparent));
}

.product-cell:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.limon {
  --accent: var(--lime);
}

.naranja {
  --accent: var(--orange);
}

.fresa {
  --accent: #ff405a;
}

.product-cell .product-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}

.product-cell .product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-cell:hover .product-photo img {
  transform: scale(1.045);
}

.product-info {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
}

.product-info span {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-info p {
  max-width: 250px;
  margin: 12px auto 22px;
  font-size: 0.92rem;
}

.order-button {
  min-height: 48px;
  padding: 0 22px;
  color: #0c0801;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  background: linear-gradient(135deg, #fff0a1, var(--honey));
}

.gallery {
  display: grid;
  grid-template-columns: minmax(min(100%, 260px), 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.gallery-hive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 120px), 1fr));
  grid-auto-rows: minmax(220px, 20vw);
  gap: 14px;
}

.feed-hex {
  position: relative;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
  border: 1px solid rgba(255, 191, 0, 0.24);
  background: rgba(255, 191, 0, 0.06);
}

.feed-large {
  grid-row: span 2;
}

.feed-hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-hex::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.66));
}

.feed-hex figcaption {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  z-index: 2;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(min(100%, 260px), 0.4fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  min-height: 58svh;
}

.contact.page-shell {
  min-height: calc(100svh - 112px);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(min(100%, 280px), 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 90px);
}

.brand-story__media {
  position: sticky;
  top: 124px;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 38vw, 520px);
}

.brand-story__copy {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

@media (min-width: 981px) {
  .brand-story__copy {
    padding-right: clamp(64px, 8vw, 128px);
  }
}

.brand-story__copy h1,
.contact-copy h1 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.7rem);
  font-weight: 700;
  line-height: 0.9;
  text-wrap: balance;
}

.story-essay {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.story-essay p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.72;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.story-values div,
.contact-panel {
  border: 1px solid rgba(255, 191, 0, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 191, 0, 0.08), rgba(7, 7, 7, 0.78)),
    rgba(7, 7, 7, 0.72);
}

.story-values div {
  min-height: 148px;
  display: grid;
  align-content: center;
  padding: 24px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.story-values strong,
.contact-panel h2 {
  color: #fff6d2;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 0.98;
}

.story-values p,
.contact-panel p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.story-cta {
  margin-top: 32px;
}

.contact-panel {
  padding: clamp(24px, 4vw, 38px);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

.contact-panel h2 {
  margin: 0;
}

.contact-panel .social-actions {
  margin-top: 24px;
}

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

.social-actions a {
  width: 70px;
  height: 70px;
  color: #100b02;
  border-color: rgba(255, 225, 106, 0.74);
  background: linear-gradient(135deg, #fff0a1, var(--honey) 58%, #c87b11);
  box-shadow: 0 18px 48px rgba(255, 191, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.social-actions a[aria-label="WhatsApp"] {
  color: #031509;
  border-color: rgba(120, 255, 166, 0.82);
  background: linear-gradient(135deg, #67f18e, #16c75d 62%, #0d8f42);
  box-shadow: 0 18px 48px rgba(22, 199, 93, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.social-actions svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.05;
}

.site-footer {
  position: relative;
  min-height: clamp(168px, 18vw, 230px);
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(min(100%, 260px), 430px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(20px, 3vw, 38px) clamp(18px, 5vw, 76px);
  overflow: visible;
  color: #fff;
  border-top: 1px solid rgba(255, 191, 0, 0.16);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 191, 0, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.96), #000 58%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, transparent 0 28px, rgba(255, 191, 0, 0.14) 29px 30px, transparent 31px 58px),
    linear-gradient(150deg, transparent 0 28px, rgba(255, 191, 0, 0.1) 29px 30px, transparent 31px 58px);
  background-size: 74px 128px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.footer-signature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(min(100%, 86px), 142px) minmax(0, 1fr);
  align-items: end;
  justify-self: start;
  gap: clamp(14px, 2.2vw, 28px);
  max-width: 520px;
  margin: 0;
}

.footer-logo {
  justify-content: start;
}

.footer-logo img {
  width: clamp(96px, 10vw, 150px);
  max-width: 150px;
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 191, 0, 0.28));
}

.footer-contact {
  display: grid;
  gap: clamp(9px, 1vw, 14px);
  justify-items: start;
}

.footer-owner {
  margin: 0;
  color: #fff;
  font-family: var(--logo);
  font-size: clamp(1.35rem, 2.35vw, 2.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: #fff;
  border: 0;
  background: transparent;
  font-family: var(--logo);
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.footer-contact-item:hover,
.footer-contact-item:focus-visible {
  color: var(--gold-bright);
  transform: translateX(4px);
  filter: drop-shadow(0 0 14px rgba(255, 191, 0, 0.22));
  outline: none;
}

.footer-icon {
  flex: 0 0 auto;
  width: clamp(26px, 2.2vw, 32px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #050505;
  border-radius: 50%;
  background: #ffe9fb;
  box-shadow: 0 0 18px rgba(255, 233, 251, 0.18);
}

.footer-icon svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-message {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: max-content;
  max-width: none;
  margin-right: clamp(76px, 8vw, 124px);
  color: rgba(255, 245, 216, 0.7);
  text-align: right;
}

.footer-message p {
  margin: 0;
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.footer-message p + p {
  margin-top: 8px;
  color: rgba(255, 245, 216, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  margin-top: 12px;
}

.footer-legal button {
  padding: 0;
  color: var(--gold-bright);
  border: 0;
  background: transparent;
  font: 800 0.72rem/1.2 var(--ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: #fff2a8;
  outline: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.legal-modal__panel {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100vw - 36px));
  max-height: min(84svh, 680px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  color: var(--cream);
  border: 1px solid rgba(255, 191, 0, 0.34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 191, 0, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 191, 0, 0.12), rgba(8, 8, 8, 0.98)),
    #090909;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.58), 0 0 42px rgba(255, 191, 0, 0.12);
  transform: translateY(20px) scale(0.98);
  transition: transform 240ms ease;
}

.legal-modal.is-open .legal-modal__panel {
  transform: translateY(0) scale(1);
}

.legal-modal__close {
  top: 14px;
  right: 14px;
}

.legal-modal__panel h3 {
  max-width: calc(100% - 70px);
  font-size: clamp(2.45rem, 3.3vw, 3.55rem);
  line-height: 0.94;
}

.legal-modal__content {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-modal__content p {
  margin: 0;
  color: rgba(255, 245, 216, 0.78);
  line-height: 1.62;
}

.legal-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 191, 0, 0.2);
}

.legal-modal__actions[hidden] {
  display: none;
}

.legal-modal__actions .ghost-button,
.legal-modal__actions .luxury-button {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.62rem;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 60;
  width: min(450px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  color: var(--cream);
  border: 1px solid rgba(255, 191, 0, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 191, 0, 0.12), rgba(3, 3, 3, 0.96)),
    #090909;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 36px rgba(255, 191, 0, 0.16);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

body.has-product-modal .cookie-banner {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.42;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-actions .ghost-button,
.cookie-actions .luxury-button {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.6rem;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(82px, 9vw, 108px);
  z-index: 140;
  padding: 11px 16px;
  color: #0c0801;
  border: 1px solid rgba(255, 245, 216, 0.4);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0a1, var(--honey));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 191, 0, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 12px;
  touch-action: none;
  max-width: calc(100vw - 28px);
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 118px;
  height: 64px;
  padding: 0 19px;
  color: #061009;
  border: 0;
  touch-action: none;
  clip-path: polygon(14% 0, 86% 0, 100% 50%, 86% 100%, 14% 100%, 0 50%);
  background: linear-gradient(135deg, #45e576, #16c75d 58%, #0fa84d);
  box-shadow: 0 18px 42px rgba(22, 199, 93, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  cursor: grab;
  animation: whatsPulse 3.2s ease-in-out infinite;
}

.whatsapp-float:active {
  cursor: grabbing;
}

.whatsapp-widget.is-dragging .whatsapp-float {
  animation: none;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-float span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-preview {
  display: none;
  width: min(292px, calc(100vw - 32px));
  padding: 14px;
  color: var(--cream);
  border: 1px solid rgba(255, 191, 0, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 191, 0, 0.12), rgba(3, 3, 3, 0.96)),
    #090909;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 36px rgba(255, 191, 0, 0.16);
}

.whatsapp-widget.is-open .whatsapp-preview {
  display: grid;
  gap: 8px;
}

.whatsapp-widget.is-open::before {
  content: "";
  display: none;
}

.whatsapp-preview strong {
  font-family: var(--display);
  font-size: 1.38rem;
  line-height: 1;
}

.whatsapp-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.preview-message {
  display: grid;
  gap: 8px;
}

.preview-message span {
  color: var(--honey);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-message textarea {
  width: 100%;
  min-height: 68px;
  max-height: 120px;
  resize: vertical;
  padding: 10px 11px;
  color: #fff8df;
  border: 1px solid rgba(255, 191, 0, 0.3);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 245, 216, 0.06);
  font: 500 0.92rem/1.45 var(--ui);
}

.preview-message textarea:focus {
  border-color: rgba(255, 191, 0, 0.68);
  box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.12);
}

.preview-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.preview-send {
  min-height: 40px;
  margin-top: 6px;
  padding: 0 18px;
  color: #061009;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  background: linear-gradient(135deg, #45e576, #16c75d);
  cursor: pointer;
}

.preview-close {
  min-height: 28px;
  padding: 0 4px;
  color: rgba(255, 245, 216, 0.74);
  background: transparent;
  cursor: pointer;
}

.preview-x {
  justify-self: end;
}

[data-reveal] {
  will-change: opacity, transform;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.product-modal__panel {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100vw - 36px));
  max-height: min(86svh, 800px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  padding: clamp(18px, 2.6vw, 28px);
  color: var(--cream);
  border: 1px solid rgba(255, 191, 0, 0.32);
  border-radius: 10px;
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
  background:
    radial-gradient(circle at 19% 8%, color-mix(in srgb, var(--product-accent, var(--honey)) 22%, transparent), transparent 30%),
    radial-gradient(circle at 96% 92%, rgba(255, 191, 0, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 191, 0, 0.13), rgba(8, 8, 8, 0.98)),
    #090909;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.58), 0 0 42px rgba(255, 191, 0, 0.12);
  transform: translateY(20px) scale(0.98);
  transition: transform 240ms ease;
}

.product-modal.is-open .product-modal__panel {
  transform: translateY(0) scale(1);
}

.product-modal__panel:focus {
  outline: none;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: clamp(44px, 5vw, 58px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0c0801;
  border: 0;
  clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
  background: linear-gradient(135deg, #fff0a1, var(--honey));
  cursor: pointer;
  font-weight: 900;
}

.modal-visual {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
}

.modal-photo {
  width: min(100%, 310px);
  overflow: hidden;
  align-self: start;
  aspect-ratio: 0.8;
  clip-path: polygon(16% 0, 84% 0, 100% 50%, 84% 100%, 16% 100%, 0 50%);
  border: 1px solid rgba(255, 191, 0, 0.24);
  background: rgba(255, 191, 0, 0.08);
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-visual .modal-order {
  width: min(100%, 280px);
  min-height: 44px;
  font-size: 0.68rem;
}

.modal-copy > span {
  color: var(--honey);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-copy h3 {
  margin-top: 6px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.9;
}

.modal-copy p {
  max-width: 58ch;
  margin: 10px 0 0;
}

.modal-details {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.modal-detail h4 {
  margin: 0 0 10px;
  color: var(--honey);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modal-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal-detail li {
  padding: 7px 10px;
  color: rgba(255, 245, 216, 0.88);
  border: 1px solid rgba(255, 191, 0, 0.24);
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  background: rgba(255, 191, 0, 0.08);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nutrition-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 8px;
  margin: 0;
}

.nutrition-cards {
  display: contents;
}

.nutrition-card {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  justify-items: stretch;
  align-items: center;
  overflow: hidden;
  padding: 9px 9px 10px;
  color: #13263a;
  border: 1px solid rgba(255, 239, 177, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fffcea, #fff0b2),
    #fff5c7;
  box-shadow:
    inset 0 -4px 0 rgba(8, 20, 33, 0.96),
    0 12px 22px rgba(0, 0, 0, 0.22);
}

.nutrition-card::after {
  display: none;
}

.nutrition-card > * {
  position: relative;
  z-index: 1;
}

.nutrition-card__label {
  max-width: 100%;
  min-height: 1.35em;
  color: #13263a;
  font-size: clamp(0.54rem, 0.58vw, 0.64rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.nutrition-card__detail {
  display: grid;
  grid-template-rows: auto auto;
  gap: 3px;
  align-content: center;
  justify-items: center;
  align-self: stretch;
  width: 100%;
  margin: 0;
  min-width: 0;
  min-height: 0;
}

.nutrition-card__main {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  max-width: 100%;
  color: #13263a;
}

.nutrition-card__value {
  margin-top: 0;
  color: #13263a;
  font-family: var(--ui);
  font-size: clamp(1.18rem, 1.62vw, 1.52rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.nutrition-card__unit {
  margin: 0;
  color: #13263a;
  font-size: clamp(0.48rem, 0.58vw, 0.56rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.nutrition-card__unit:empty {
  display: none;
}

.nutrition-card small {
  max-width: 100%;
  color: rgba(19, 38, 58, 0.76);
  font-size: clamp(0.48rem, 0.56vw, 0.54rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.nutrition-card:not(.has-note) .nutrition-card__detail {
  grid-template-rows: 1fr;
}

.nutrition-list > div:not(.nutrition-card):not(.nutrition-cards) {
  display: grid;
  grid-template-columns: minmax(138px, 0.85fr) minmax(0, 1fr);
  gap: 10px;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 191, 0, 0.18);
  background: rgba(255, 245, 216, 0.045);
}

.nutrition-list > div:not(.nutrition-card) dt {
  color: rgba(255, 245, 216, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nutrition-list > div:not(.nutrition-card) dd {
  margin: 0;
  color: #fff8df;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.has-product-modal,
.has-legal-modal {
  overflow: hidden;
}

@keyframes cursorDrop {
  0% {
    opacity: 0.9;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, 70%, 0) scale(0.3);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

@keyframes whatsPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(22, 199, 93, 0.28), 0 0 0 0 rgba(22, 199, 93, 0.35);
  }
  50% {
    box-shadow: 0 18px 42px rgba(22, 199, 93, 0.28), 0 0 0 11px rgba(22, 199, 93, 0);
  }
}

@media (max-width: 1200px) {
  :root {
    --page-gutter: clamp(18px, 4vw, 56px);
  }

  h1 {
    font-size: clamp(3.4rem, 8vw, 7.2rem);
  }

  h2,
  .showcase-copy .showcase-title {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
  }

  .hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(min(100%, 300px), 0.9fr);
    gap: clamp(44px, 5vw, 74px);
  }

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

  .hero-copy h1 {
    max-width: 570px;
    font-size: clamp(2.65rem, 5vw, 4.7rem);
  }

  .product-showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(min(100%, 280px), 0.78fr);
  }

  .pack-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

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

  .footer-message {
    justify-self: start;
    margin-right: 0;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .site-header {
    min-height: 132px;
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .site-header--no-logo {
    min-height: 104px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: clamp(14px, 4vw, 28px);
    font-size: 0.64rem;
  }

  .header-social {
    margin-left: auto;
  }

  .hero,
  .story,
  .product-showcase,
  .gallery,
  .brand-story,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 26px;
    padding-top: 144px;
  }

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

  .hero-bottle-photo {
    width: min(70vw, 330px);
  }

  .hero-trio-photo {
    width: min(92vw, 620px);
  }

  .flavor-hive {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .showcase-stage {
    max-width: 720px;
    margin-inline: auto;
  }

  .showcase-photo {
    width: min(64vw, 430px);
  }

  .brand-story__media {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .story-values {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

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

  .footer-message {
    justify-self: start;
    margin-right: 0;
    text-align: left;
  }

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

  .product-cell {
    min-height: 500px;
  }

  .story-media {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  #honeycomb-bg {
    opacity: 0.78;
  }

  #pollen-canvas {
    opacity: 0.42;
  }

  .showcase-main {
    min-height: clamp(320px, 62vw, 480px);
  }

  .showcase-photo {
    width: min(58vw, 360px);
  }

  .product-cell:hover,
  .flavor-thumb:hover,
  .header-order:hover,
  .luxury-button:hover,
  .ghost-button:hover,
  .order-button:hover {
    transform: none;
  }
}

@media (max-width: 660px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand . order"
      "nav nav nav";
    align-items: center;
    min-height: auto;
    row-gap: 3px;
    padding: 6px 14px 8px;
  }

  .site-header--no-logo {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "nav order";
    min-height: auto;
  }

  .brand-mark {
    grid-area: brand;
    min-height: 66px;
    min-width: 0;
  }

  .brand-mark img {
    height: clamp(64px, 18vw, 78px);
    max-height: 78px;
    max-width: min(36vw, 142px);
  }

  .main-nav {
    position: static;
    grid-area: nav;
    order: initial;
    width: 100%;
    max-width: none;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0;
    overflow: visible;
    padding: 0 2px;
    font-size: clamp(0.49rem, 2.4vw, 0.58rem);
  }

  .site-header--no-logo .main-nav {
    align-self: center;
  }

  .site-header--no-logo .header-social a:not(.header-order) {
    display: none;
  }

  .main-nav a {
    min-width: 0;
    padding: 7px 2px 8px;
    text-align: center;
    white-space: nowrap;
  }

  .header-social {
    grid-area: order;
    justify-self: end;
    align-self: center;
    display: flex;
    gap: 6px;
    margin-left: 0;
  }

  .header-social a:not(.header-order) {
    display: grid;
    width: 34px;
    height: 34px;
    background: rgba(11, 11, 11, 0.78);
    border-color: rgba(255, 191, 0, 0.36);
  }

  .header-social a:not(.header-order) svg {
    width: 16px;
    height: 16px;
  }

  .header-order {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.62rem;
  }

  .section-panel {
    min-height: auto;
    padding-block: 60px;
    padding-inline: 18px;
    scroll-margin-top: 112px;
  }

  .page-shell {
    padding-top: 112px;
  }

  .hero {
    min-height: auto;
    align-content: start;
    gap: 18px;
    padding-top: 92px;
    padding-bottom: 48px;
  }

  .hero-title-logo {
    width: clamp(86px, 28vw, 120px);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10.4vw, 2.9rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  h3 {
    font-size: 3rem;
  }

  .hero-copy p,
  .section-copy p,
  .story-copy > p,
  .contact-copy p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-copy p {
    max-width: 34ch;
    margin-top: 14px;
    padding-right: 54px;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 350px);
    gap: 10px;
    margin-top: 16px;
  }

  .luxury-button,
  .ghost-button {
    width: min(100%, 350px);
    min-height: 50px;
  }

  .hero-product {
    min-height: clamp(210px, 58vw, 280px);
  }

  .hero-photo {
    width: min(64vw, 220px);
  }

  .hero-bottle-photo {
    width: min(58vw, 210px);
    transform: rotate(-7deg);
  }

  .hero-trio-photo {
    width: min(94vw, 360px);
    transform: none;
  }

  .hero-pack-photo {
    width: min(86vw, 330px);
  }

  .scroll-cue {
    display: none;
  }

  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 350px);
    gap: 7px;
  }

  .hero-proof li {
    flex: 1 1 96px;
    min-width: 0;
    padding: 7px 8px;
    font-size: 0.58rem;
    text-align: center;
  }

  .product-cell {
    min-height: 430px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  }

  .product-showcase {
    gap: 14px;
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .showcase-stage {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .showcase-focus {
    order: 1;
    gap: 12px;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    order: 2;
    gap: 9px;
  }

  .flavor-thumb {
    width: 100%;
    min-height: 70px;
  }

  .flavor-thumb span {
    font-size: 0.6rem;
  }

  .showcase-main {
    min-height: clamp(246px, 64vw, 318px);
  }

  .showcase-photo {
    width: min(58vw, 198px);
  }

  .showcase-label {
    margin-bottom: 12px;
  }

  .product-showcase > .showcase-copy {
    display: none;
  }

  .showcase-copy p {
    margin-top: 16px;
  }

  .showcase-facts {
    display: none;
  }

  .showcase-facts li {
    min-height: 48px;
    font-size: 0.68rem;
  }

  .showcase-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 318px);
    margin-top: 0;
  }

  .showcase-actions--under-image {
    margin-top: 0;
  }

  .showcase-actions .ghost-button,
  .showcase-actions .luxury-button {
    width: min(100%, 318px);
    min-height: 44px;
  }

  .showcase-actions--under-image .showcase-more {
    min-height: 58px;
    font-size: 0.72rem;
  }

  .packs {
    gap: 26px;
  }

  .pack-grid {
    gap: 16px;
  }

  .pack-copy {
    padding: 22px 18px 24px;
  }

  .pack-copy h3 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .pack-button {
    width: min(100%, 320px);
  }

  .story-points {
    grid-template-columns: 1fr;
  }

  .brand-story__media {
    min-height: clamp(170px, 46vw, 218px);
  }

  .brand-story .story-photo {
    width: min(52vw, 200px);
  }

  .brand-story__copy h1,
  .contact-copy h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .story-values div,
  .contact-panel {
    clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0 50%);
  }

  .contact-panel {
    padding: 28px 22px;
  }

  .story-points div {
    clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0 50%);
  }

  .gallery-hive {
    grid-template-columns: 1fr;
    grid-auto-rows: 292px;
  }

  .feed-large {
    grid-row: span 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
    padding: 22px 20px 84px;
  }

  .footer-signature {
    grid-template-columns: minmax(64px, 82px) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    max-width: 100%;
    text-align: left;
    justify-items: start;
  }

  .footer-logo img {
    width: min(21vw, 82px);
    max-width: 82px;
  }

  .footer-contact {
    justify-items: start;
    gap: 8px;
  }

  .footer-owner {
    font-size: clamp(1.12rem, 5.4vw, 1.42rem);
  }

  .footer-contact-list {
    gap: 8px;
    width: 100%;
  }

  .footer-contact-item {
    justify-content: flex-start;
    gap: 7px;
    width: 100%;
    font-size: clamp(0.58rem, 2.85vw, 0.7rem);
  }

  .footer-icon {
    width: 22px;
  }

  .footer-contact-item span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-message {
    justify-self: start;
    width: auto;
    max-width: min(100%, 360px);
    margin-right: 0;
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-message p {
    font-size: 0.78rem;
    white-space: normal;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: calc(64px + env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  .cookie-actions .ghost-button,
  .cookie-actions .luxury-button {
    width: 100%;
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.56rem;
  }

  .legal-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .legal-modal__actions .ghost-button,
  .legal-modal__actions .luxury-button {
    width: 100%;
  }

  .whatsapp-widget {
    --mobile-whatsapp-right: 10px;
    right: var(--mobile-whatsapp-right);
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 92;
    justify-items: end;
    touch-action: none;
  }

  .whatsapp-float {
    position: static;
    right: auto;
    bottom: auto;
    z-index: 90;
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
    cursor: grab;
    touch-action: none;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-widget.is-open .whatsapp-preview {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: min(292px, calc(100vw - 32px));
    max-width: 440px;
    margin-inline: auto;
    gap: 8px;
    padding: 14px;
    padding-right: 14px;
    max-height: min(60svh, 360px);
    overflow-y: auto;
    border-color: rgba(255, 191, 0, 0.42);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 191, 0, 0.12);
  }

  .whatsapp-widget.is-open::before {
    display: none;
  }

  .preview-actions {
    grid-template-columns: 1fr auto;
  }

  .preview-x {
    position: static;
    justify-self: end;
    display: grid;
    place-items: center;
    width: auto;
    min-height: 28px;
    padding: 0;
    color: rgba(255, 245, 216, 0.74);
    font-size: 0.68rem;
    clip-path: none;
    background: transparent;
  }

  .whatsapp-preview strong {
    font-size: 1.45rem;
  }

  .whatsapp-preview p {
    font-size: 0.92rem;
  }

  .preview-message textarea {
    min-height: 76px;
    max-height: 96px;
    resize: none;
  }

  .preview-send,
  .preview-close {
    min-height: 42px;
  }

  .preview-close.preview-x {
    width: auto;
    min-height: 28px;
  }

  .whatsapp-float span {
    display: none;
  }

  .product-modal {
    align-items: center;
    padding: 4px;
  }

  .legal-modal {
    align-items: end;
    padding: 0;
  }

  .product-modal__panel {
    width: min(100%, 430px);
    height: auto;
    max-height: calc(100svh - 8px);
    overflow: hidden;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 5px;
    align-items: start;
    padding: 8px;
    clip-path: none;
    border-radius: 12px;
    transform: translateY(14px) scale(0.98);
  }

  .product-modal.is-open .product-modal__panel {
    transform: translateY(0) scale(1);
  }

  .legal-modal__panel {
    width: 100%;
    max-height: 92svh;
    padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
  }

  .legal-modal__panel h3 {
    max-width: calc(100% - 48px);
    font-size: clamp(2.1rem, 10.5vw, 2.75rem);
    line-height: 0.92;
  }

  .legal-modal__content {
    gap: 10px;
    margin-top: 16px;
  }

  .legal-modal__content p {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .legal-modal.is-open .legal-modal__panel {
    transform: translateY(0);
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .modal-photo {
    width: clamp(52px, 15vw, 70px);
    margin-inline: auto;
  }

  .modal-visual {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: clamp(52px, 15vw, 70px) minmax(0, 1fr);
    align-items: center;
    gap: 7px;
  }

  .modal-copy {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    display: grid;
    grid-template-rows: auto;
    align-content: start;
    padding-right: 0;
  }

  .modal-copy > span {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }

  .modal-copy h3 {
    margin-top: 2px;
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .modal-copy p {
    margin-top: 3px;
    font-size: 0.6rem;
    line-height: 1.18;
  }

  .modal-details {
    min-height: 0;
    gap: 4px;
    margin-top: 4px;
    overflow: visible;
  }

  .modal-detail h4 {
    margin-bottom: 3px;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .modal-detail ul {
    display: block;
    color: rgba(255, 245, 216, 0.76);
    font-size: 0.43rem;
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
  }

  .modal-detail li {
    display: inline;
    padding: 0;
    color: inherit;
    border: 0;
    clip-path: none;
    background: transparent;
    font-size: inherit;
    letter-spacing: 0.04em;
  }

  .modal-detail li:not(:last-child)::after {
    content: ", ";
  }

  .nutrition-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .nutrition-cards {
    display: contents;
  }

  .nutrition-card {
    min-height: 62px;
    padding: 7px 6px 8px;
    border-radius: 7px;
    box-shadow:
      inset 0 -3px 0 rgba(8, 20, 33, 0.96),
      0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .nutrition-card__label {
    font-size: clamp(0.42rem, 1.55vw, 0.52rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
  }

  .nutrition-card__main {
    gap: 2px;
  }

  .nutrition-card__value {
    font-size: clamp(0.9rem, 3.7vw, 1.16rem);
  }

  .nutrition-card__unit,
  .nutrition-card small {
    font-size: clamp(0.34rem, 1.3vw, 0.43rem);
  }

  .nutrition-card__unit {
    margin-top: 0;
  }

  .nutrition-card small {
    white-space: normal;
  }

  .nutrition-list > div:not(.nutrition-card):not(.nutrition-cards) {
    display: none;
  }

  .nutrition-list > div:not(.nutrition-card) dt {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nutrition-list > div:not(.nutrition-card) dd {
    font-size: 0.58rem;
    text-align: right;
    white-space: nowrap;
  }

  .modal-visual .modal-order {
    justify-self: start;
    width: min(100%, 210px);
    min-height: 28px;
    padding-inline: 12px;
    font-size: 0.42rem;
  }

  .modal-visual .modal-order svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 14px;
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand-mark img {
    height: clamp(62px, 19vw, 74px);
    max-width: min(38vw, 132px);
  }

  .header-order {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 0.56rem;
  }

  .header-social {
    gap: 4px;
  }

  .header-social a:not(.header-order) {
    width: 30px;
    height: 30px;
  }

  .header-social a:not(.header-order) svg {
    width: 15px;
    height: 15px;
  }

  .main-nav {
    font-size: clamp(0.44rem, 2.45vw, 0.52rem);
    letter-spacing: 0.045em;
  }

  .main-nav a {
    padding-inline: 1px;
  }

  .section-panel {
    padding-block: clamp(48px, 13vw, 60px);
    padding-inline: 14px;
    scroll-margin-top: 104px;
  }

  .hero {
    padding-top: 106px;
  }

  h1 {
    max-width: min(100%, 305px);
    font-size: clamp(1.98rem, 10.2vw, 2.62rem);
  }

  h2,
  .showcase-copy .showcase-title {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions,
  .showcase-actions {
    width: min(100%, 320px);
  }

  .luxury-button,
  .ghost-button {
    width: 100%;
    padding-inline: 18px;
  }

  .showcase-thumbs {
    gap: 7px;
  }

  .flavor-thumb {
    min-height: 78px;
    padding-inline: 4px;
  }

  .flavor-thumb span {
    font-size: clamp(0.48rem, 2.6vw, 0.56rem);
  }

  .showcase-photo {
    width: min(56vw, 188px);
  }

  .brand-story__media {
    min-height: clamp(160px, 42vw, 198px);
  }

  .brand-story .story-photo {
    width: min(48vw, 180px);
  }

  .story-values div,
  .contact-panel {
    padding-inline: 18px;
  }

  .footer-signature {
    grid-template-columns: minmax(58px, 74px) minmax(0, 1fr);
    gap: 10px;
  }

  .footer-logo img {
    width: min(19vw, 74px);
  }
}

@media (max-width: 360px) {
  .nutrition-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .nutrition-card {
    min-height: 60px;
    padding: 7px 5px 8px;
  }

  .nutrition-card__label {
    font-size: 0.42rem;
  }

  .nutrition-card__value {
    font-size: 0.92rem;
  }

  .nutrition-card__unit,
  .nutrition-card small {
    font-size: 0.34rem;
  }
}

@media (max-width: 660px) and (max-height: 720px) {
  .product-modal__panel {
    padding: 6px;
    gap: 4px;
  }

  .modal-photo {
    width: clamp(44px, 12vw, 58px);
  }

  .modal-visual {
    grid-template-columns: clamp(44px, 12vw, 58px) minmax(0, 1fr);
    gap: 6px;
  }

  .modal-copy h3 {
    font-size: clamp(1.4rem, 7vw, 1.78rem);
  }

  .modal-copy p {
    font-size: 0.55rem;
    line-height: 1.12;
  }

  .modal-detail h4 {
    margin-bottom: 2px;
    font-size: 0.43rem;
  }

  .modal-detail ul {
    font-size: 0.39rem;
    line-height: 1.04;
  }

  .nutrition-card {
    min-height: 56px;
    padding: 6px 5px 7px;
  }

  .nutrition-card__value {
    font-size: clamp(0.82rem, 3.3vw, 1rem);
  }

  .modal-visual .modal-order {
    width: min(100%, 190px);
    min-height: 26px;
    font-size: 0.38rem;
  }
}

@media (pointer: coarse) {
  .cursor-orb,
  .cursor-drop {
    display: none;
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
