:root {
  --ink: #08234f;
  --ink-soft: rgba(8, 35, 79, 0.72);
  --paper: #fff8de;
  --lemon: #ffe66f;
  --lime: #dfff79;
  --berry: #ff5a95;
  --coral: #ff704f;
  --orange: #ff9f2f;
  --sky: #57c9ff;
  --mint: #53e0a8;
  --active-flavor: #ff5a95;
  --shadow-soft: 0 22px 54px rgba(8, 35, 79, 0.14);
  --shadow-pop: 0 12px 0 rgba(8, 35, 79, 0.92), 0 28px 58px rgba(8, 35, 79, 0.16);
  --radius: 28px;
  --section-y: clamp(78px, 9vw, 126px);
  --section-x: clamp(18px, 5vw, 72px);
  --display-font: "Avenir Next", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --text-font: "Avenir Next", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffd856;
  font-family: var(--text-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 5%, rgba(255, 90, 149, 0.3), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.24), transparent 27%),
    radial-gradient(circle at 9% 28%, rgba(223, 255, 121, 0.72), transparent 18%),
    radial-gradient(circle at 88% 41%, rgba(87, 201, 255, 0.24), transparent 23%),
    radial-gradient(circle at 15% 62%, rgba(255, 112, 79, 0.24), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255, 90, 149, 0.22), transparent 25%),
    radial-gradient(circle at 12% 94%, rgba(223, 255, 121, 0.64), transparent 22%),
    linear-gradient(180deg, #fff06b 0%, #ffbd66 23%, #dfff79 42%, #ffd85d 59%, #ffaf68 78%, #fff06b 100%);
}

main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 28%, rgba(255, 255, 255, 0.12) 56%, transparent 78%),
    radial-gradient(circle at 74% 15%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 23% 49%, rgba(255, 255, 255, 0.12), transparent 20%);
  content: "";
  pointer-events: none;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(8, 35, 79, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 44px rgba(8, 35, 79, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  transform: translateX(-50%);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(8, 35, 79, 0.13);
}

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

.brand-text {
  white-space: nowrap;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
}

.hero {
  --hero-scatter: 0;
  --hero-cluster-opacity: 1;
  --hero-strip-opacity: 1;
  position: relative;
  display: grid;
  min-height: 100dvh;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 86px) 96px;
  background: transparent;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(590px, 100%);
  align-self: start;
  margin-top: clamp(0px, 2vh, 24px);
  pointer-events: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0 0 14px;
  border: 1px solid rgba(8, 35, 79, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.04em;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(68px, 12vw, 172px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.84;
}

.hero h1 span {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero h1 span:nth-child(2) {
  transform: translateY(0.08em);
}

.hero-copy {
  max-width: 460px;
  margin: 28px 0 28px;
  color: rgba(8, 35, 79, 0.78);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 300;
  line-height: 1.58;
}

.hero-brand-logo {
  position: absolute;
  top: clamp(118px, 15vh, 150px);
  right: clamp(42px, 9vw, 130px);
  z-index: 4;
  display: block;
  width: clamp(150px, 13vw, 210px);
  height: auto;
  opacity: calc(1 - var(--hero-scatter) * 0.62);
  filter: drop-shadow(0 16px 30px rgba(8, 35, 79, 0.14));
  pointer-events: none;
  transform:
    translate3d(0, calc(var(--hero-scatter) * -18px), 0)
    scale(calc(1 - var(--hero-scatter) * 0.06));
  transform-origin: 50% 50%;
  user-select: none;
  will-change: opacity, transform;
}

.hero-product-cluster {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: var(--hero-cluster-opacity);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.12s linear;
  will-change: opacity;
}

.hero-product-cluster::before {
  position: absolute;
  left: 68%;
  top: 66%;
  width: min(760px, 58vw);
  height: min(250px, 19vw);
  border-radius: 50%;
  background: rgba(8, 35, 79, 0.12);
  filter: blur(24px);
  content: "";
  opacity: calc(1 - var(--hero-scatter) * 0.42);
  transform: translate(-50%, -50%) scale(calc(1 - var(--hero-scatter) * 0.34));
  will-change: opacity, transform;
}

.hero-drink {
  --x: 50%;
  --y: 58%;
  --w: clamp(108px, 10vw, 172px);
  --base-rot: 0deg;
  --enter-x: 0vw;
  --enter-y: 0vh;
  --enter-rot: 0deg;
  --scatter-x: 0vw;
  --scatter-y: 0vh;
  --scatter-rot: 0deg;
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: var(--z, 1);
  width: var(--w);
  margin: 0;
  opacity: 0;
  transform:
    translate(-50%, -50%)
    translate3d(calc(var(--scatter-x) * var(--hero-scatter)), calc(var(--scatter-y) * var(--hero-scatter)), 0)
    rotate(calc(var(--base-rot) + (var(--scatter-rot) * var(--hero-scatter))))
    scale(calc(1 - (var(--hero-scatter) * 0.16)));
  transform-origin: 50% 72%;
  animation: drinkGather 1050ms cubic-bezier(0.16, 0.9, 0.22, 1.12) both;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero-drink img {
  display: block;
}

.hero-drink img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(8, 35, 79, 0.22));
  transform: translate3d(0, 0, 0);
  animation: drinkIdle 4.8s ease-in-out infinite alternate;
  backface-visibility: hidden;
  user-select: none;
}

.hero-drink-apple {
  --x: 50%;
  --y: 46%;
  --w: clamp(150px, 15vw, 228px);
  --z: 5;
  --base-rot: -5deg;
  --enter-x: -62vw;
  --enter-y: -38vh;
  --enter-rot: -32deg;
  --scatter-x: -44vw;
  --scatter-y: -34vh;
  --scatter-rot: -20deg;
  animation-delay: 80ms;
}

.hero-drink-pomelo {
  --x: 66%;
  --y: 45%;
  --w: clamp(146px, 14.4vw, 220px);
  --z: 6;
  --base-rot: 2deg;
  --enter-x: -58vw;
  --enter-y: 34vh;
  --enter-rot: 24deg;
  --scatter-x: -42vw;
  --scatter-y: 36vh;
  --scatter-rot: 18deg;
  animation-delay: 190ms;
}

.hero-drink-hawthorn {
  --x: 82%;
  --y: 46%;
  --w: clamp(140px, 13.8vw, 212px);
  --z: 4;
  --base-rot: 5deg;
  --enter-x: 54vw;
  --enter-y: -36vh;
  --enter-rot: 28deg;
  --scatter-x: 40vw;
  --scatter-y: -34vh;
  --scatter-rot: 24deg;
  animation-delay: 130ms;
}

.hero-drink-lemon {
  --x: 86%;
  --y: 76%;
  --w: clamp(166px, 16.2vw, 252px);
  --z: 8;
  --base-rot: 6deg;
  --enter-x: 64vw;
  --enter-y: 32vh;
  --enter-rot: 36deg;
  --scatter-x: 50vw;
  --scatter-y: 38vh;
  --scatter-rot: 26deg;
  animation-delay: 20ms;
}

.hero-drink-pear {
  --x: 71%;
  --y: 76%;
  --w: clamp(154px, 15vw, 232px);
  --z: 7;
  --base-rot: -1deg;
  --enter-x: 0vw;
  --enter-y: 58vh;
  --enter-rot: -14deg;
  --scatter-x: -8vw;
  --scatter-y: 48vh;
  --scatter-rot: -10deg;
  animation-delay: 260ms;
}

.hero-drink-grapefruit {
  --x: 51%;
  --y: 78%;
  --w: clamp(156px, 15.2vw, 236px);
  --z: 9;
  --base-rot: -4deg;
  --enter-x: 0vw;
  --enter-y: -58vh;
  --enter-rot: 12deg;
  --scatter-x: 8vw;
  --scatter-y: -46vh;
  --scatter-rot: 12deg;
  animation-delay: 330ms;
}

.hero-actions,
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(8, 35, 79, 0.14);
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 28px rgba(8, 35, 79, 0.12);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.36);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.button:hover {
  box-shadow: 0 20px 42px rgba(8, 35, 79, 0.16);
  transform: translate3d(0, -3px, 0);
}

.button:active {
  box-shadow: 0 8px 18px rgba(8, 35, 79, 0.14);
  transform: translate3d(0, 1px, 0) scale(0.98);
}

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

.hero-strip {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 22px;
  left: clamp(18px, 5vw, 70px);
  z-index: 4;
  opacity: var(--hero-strip-opacity);
  transform: translate3d(0, calc(var(--hero-scatter) * -18px), 0);
  transition: opacity 0.12s linear;
  will-change: opacity, transform;
}

.hero-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(14px);
}

.section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: var(--section-y) var(--section-x);
  scroll-margin-top: 112px;
}

.section:not(.hero)::after {
  position: absolute;
  top: calc(var(--section-y) * 0.38);
  left: 50%;
  z-index: 2;
  width: clamp(52px, 7vw, 92px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(8, 35, 79, 0.32), transparent);
  content: "";
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(-50%);
}

.section-head {
  width: min(1060px, 100%);
  margin: 0 auto 28px;
}

.section-title-line {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1.5vw, 16px);
  margin: 0 0 12px;
}

.section-title-line h2,
.section-title-line .eyebrow,
.feature-title-line .feature-badge {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
}

.section .section-title-line h2 {
  margin: 0;
}

.section-title-line .eyebrow {
  min-height: 0;
  margin-top: clamp(10px, 1.25vw, 18px);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(8, 35, 79, 0.56);
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: none;
}

.section h2,
.feature-badge,
.feature-panel h3,
.dialog-copy h2,
.contact-copy h3,
.stats strong {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
}

.section h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 7vw, 92px);
}

.section p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.feature-section {
  display: grid;
  min-height: min(820px, calc(100dvh - 88px));
  align-items: center;
  background: transparent;
}

.feature-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.98fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.feature-visual {
  --feature-color: var(--berry);
  position: relative;
  transform: translate3d(0, 0, 0);
}

.feature-product-stage {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.92), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.44), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--feature-color) 48%, #ffffff), #fff26d);
  box-shadow: var(--shadow-pop);
}

.feature-product-stage::before {
  position: absolute;
  width: 44%;
  height: 44%;
  right: -16%;
  top: -14%;
  border: 3px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  content: "";
}

.feature-product-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
  animation: productFloat 6.8s ease-in-out infinite alternate;
}

.feature-flavor-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--active-flavor);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(8, 35, 79, 0.14);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--active-flavor) 32%, rgba(8, 35, 79, 0.16));
}

.feature-panel {
  position: relative;
  z-index: 1;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(38px, 7vw, 92px);
  font-weight: 300;
  line-height: 0.96;
}

.feature-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 56px);
}

.feature-panel > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  min-height: 56px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.flavor-wheel {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.flavor-wheel button,
.filter-bar button,
.product-more,
.dialog-close,
.dialog-nav,
.gallery-controls button {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(8, 35, 79, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 24px rgba(8, 35, 79, 0.1);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.18;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.flavor-wheel button {
  background: var(--c);
  color: #fff;
  text-shadow: 0 1px 8px rgba(8, 35, 79, 0.14);
}

.flavor-wheel button:hover,
.flavor-wheel button.active,
.filter-bar button:hover,
.product-more:hover,
.dialog-close:hover,
.dialog-nav:hover,
.gallery-controls button:hover {
  box-shadow: 0 18px 34px rgba(8, 35, 79, 0.14);
  transform: translate3d(0, -3px, 0);
}

.flavor-wheel button.active {
  filter: saturate(1.16) brightness(1.03);
}

.products-section {
  display: grid;
  min-height: calc(100dvh - 80px);
  align-content: center;
  background: transparent;
}

.products-section .section-head {
  display: block;
}

.products-section .section-head > p {
  margin-bottom: 10px;
}

.filter-bar {
  display: flex;
  width: min(1060px, 100%);
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 18px;
}

.filter-bar button {
  min-height: 36px;
  padding: 0 14px;
}

.filter-bar button.active {
  background: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  width: min(1060px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  touch-action: pan-y;
}

.product-card {
  --card-a: #ff6f98;
  --card-b: #ffe66f;
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 30px;
  padding: 12px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(145deg, var(--card-a), var(--card-b));
  box-shadow: 0 18px 38px rgba(8, 35, 79, 0.14);
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.26s ease, opacity 0.2s ease;
}

.product-card::after {
  position: absolute;
  width: 96px;
  height: 96px;
  right: -36px;
  top: -34px;
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  content: "";
}

.product-card:hover {
  box-shadow: 0 28px 58px rgba(8, 35, 79, 0.18);
  transform: translate3d(0, -7px, 0);
}

.product-card.is-hidden {
  display: none;
}

.product-card.gallery-active.gallery-enter:not(.is-hidden) {
  animation: productCardSwitchIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.product-jelly {
  --card-a: #ffdf4f;
  --card-b: #bfff66;
}

.product-squeeze {
  --card-a: #ff5a95;
  --card-b: #ffbf57;
}

.product-juice {
  --card-a: #53e0a8;
  --card-b: #ffe66f;
}

.product-blend {
  --card-a: #ffe54a;
  --card-b: #d97824;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.78), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(255, 245, 166, 0.72), transparent 28%),
    linear-gradient(145deg, #fff06a 0%, #ffc928 42%, #e9902e 72%, #9c4d1f 100%);
}

.product-blend::after {
  border-color: rgba(255, 255, 255, 0.52);
}

.product-blend .product-art {
  background: rgba(255, 255, 255, 0.28);
}

.product-flavored {
  --card-a: #ff704f;
  --card-b: #ff5a95;
}

.product-art {
  position: relative;
  z-index: 1;
  display: grid;
  aspect-ratio: 1 / 1;
  width: 100%;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300;
  line-height: 1;
}

.product-art.has-product-image {
  background: rgba(255, 255, 255, 0.2);
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.01);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.product-card:hover .product-art img {
  transform: translate3d(0, -4px, 0) scale(1.06);
}

.product-card p,
.product-card h3,
.product-more {
  position: relative;
  z-index: 1;
}

.product-card p {
  margin: 13px 2px 4px;
  color: rgba(8, 35, 79, 0.74);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.product-card h3 {
  margin: 0 2px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.product-more {
  width: 100%;
  min-height: 34px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.gallery-controls {
  display: none;
}

.about-section {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: transparent;
  color: var(--ink);
}

.about-section::before {
  position: absolute;
  inset: calc(var(--section-y) * 0.18) clamp(0px, 2vw, 28px);
  z-index: -1;
  border: 0;
  border-radius: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1) 48%, rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.14), transparent 34%);
  box-shadow: none;
  content: "";
  backdrop-filter: blur(20px) saturate(1.08);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 24%, #000 50%, rgba(0, 0, 0, 0.82) 76%, transparent 100%);
  pointer-events: none;
}

.contact-section .section-head {
  text-align: center;
}

.contact-section .section-title-line {
  justify-content: center;
}

.about-section p {
  color: var(--ink-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stats div {
  min-height: 112px;
  border: 1px solid rgba(8, 35, 79, 0.12);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 38px rgba(8, 35, 79, 0.1);
  backdrop-filter: blur(14px);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 44px;
}

.stats span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.contact-section {
  background: transparent;
}

.contact-layout {
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.qr-placeholder {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(45deg, var(--ink) 0 12px, #fff 12px 24px);
  box-shadow: 0 22px 48px rgba(8, 35, 79, 0.16);
}

.qr-placeholder.has-image {
  background: #fff;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-placeholder span {
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.contact-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(34px, 6vw, 70px);
}

.contact-copy .contact-email {
  margin: 12px 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 400;
}

.contact-copy .contact-email a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-copy .contact-email a.is-copied {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.contact-copy [data-save-qr] {
  margin-top: 4px;
}

.button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.62;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px clamp(18px, 5vw, 72px) 38px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.site-footer a {
  color: #fff;
}

.site-footer .icp-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.site-footer .icp-link:hover {
  color: #fff;
}

.product-dialog {
  width: min(920px, calc(100vw - 32px));
  max-height: min(860px, calc(100dvh - 32px));
  overflow: auto;
  border: 0;
  border-radius: 34px;
  padding: 0;
  background: #fff8de;
  color: var(--ink);
  box-shadow: 0 38px 110px rgba(8, 35, 79, 0.36);
}

.product-dialog::backdrop {
  background: rgba(8, 18, 43, 0.58);
  backdrop-filter: blur(12px);
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  min-height: 42px;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.dialog-art {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffdf4f, #bfff66);
  color: #fff;
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 300;
}

.dialog-art.has-product-image {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(135deg, #ffdf4f 0%, #bfff66 100%);
}

.dialog-image-stage {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  padding: 24px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.dialog-image-stage:active {
  cursor: grabbing;
}

.dialog-image-stage img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 44px rgba(8, 35, 79, 0.16);
  object-fit: cover;
}

.dialog-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  min-height: 46px;
  background: rgba(8, 35, 79, 0.88);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  transform: translate3d(0, -50%, 0);
}

.dialog-nav:hover {
  transform: translate3d(0, calc(-50% - 3px), 0);
}

.dialog-nav-prev {
  left: 14px;
}

.dialog-nav-next {
  right: 14px;
}

.dialog-image-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.dialog-copy {
  padding: clamp(28px, 5vw, 56px);
}

.dialog-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 68px);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  border-radius: 18px;
  padding: 12px;
  background: rgba(8, 35, 79, 0.06);
}

.detail-list dt {
  font-size: 13px;
  font-weight: 600;
}

.detail-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.58s ease, transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes drinkGather {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate3d(var(--enter-x), var(--enter-y), 0)
      rotate(var(--enter-rot))
      scale(0.72);
  }
  72% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      translate3d(calc(var(--scatter-x) * var(--hero-scatter) * 0.2), calc(var(--scatter-y) * var(--hero-scatter) * 0.2), 0)
      rotate(calc(var(--base-rot) * 0.75))
      scale(1.045);
  }
  100% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      translate3d(calc(var(--scatter-x) * var(--hero-scatter)), calc(var(--scatter-y) * var(--hero-scatter)), 0)
      rotate(calc(var(--base-rot) + (var(--scatter-rot) * var(--hero-scatter))))
      scale(calc(1 - (var(--hero-scatter) * 0.16)));
  }
}

@keyframes drinkIdle {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes productFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1.04) rotate(-0.4deg);
  }
  to {
    transform: translate3d(0, -12px, 0) scale(1.075) rotate(0.7deg);
  }
}

@keyframes productCardSwitchIn {
  from {
    opacity: 0.18;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .feature-grid,
  .about-section,
  .contact-layout,
  .product-dialog[open] {
    grid-template-columns: 1fr;
  }

  .products-section .section-head {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 9px 9px 9px 14px;
  }

  .brand-text {
    font-size: clamp(17px, 5vw, 21px);
  }

  .nav-toggle {
    display: grid;
    align-content: center;
    gap: 4px;
  }

  .site-nav {
    position: absolute;
    top: 60px;
    right: 0;
    display: none;
    width: min(258px, calc(100vw - 24px));
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 54px rgba(8, 35, 79, 0.18);
    backdrop-filter: blur(18px);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 100dvh;
    align-items: start;
    padding: 92px 18px 94px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(56px, 23vw, 92px);
  }

  .hero-copy {
    max-width: 292px;
    margin: 18px 0 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-brand-logo {
    top: 104px;
    right: 14px;
    width: min(24vw, 112px);
  }

  .hero-product-cluster::before {
    left: 50%;
    top: 68%;
    width: 88vw;
    height: 24vw;
    filter: blur(18px);
  }

  .hero-drink-apple {
    --x: 20%;
    --y: 57%;
    --w: 23vw;
    --scatter-x: -58vw;
    --scatter-y: -22vh;
  }

  .hero-drink-pomelo {
    --x: 50%;
    --y: 56%;
    --w: 23vw;
    --scatter-x: -56vw;
    --scatter-y: 36vh;
  }

  .hero-drink-hawthorn {
    --x: 80%;
    --y: 56%;
    --w: 22vw;
    --scatter-x: 54vw;
    --scatter-y: -30vh;
  }

  .hero-drink-lemon {
    --x: 80%;
    --y: 76%;
    --w: 27vw;
    --scatter-x: 60vw;
    --scatter-y: 36vh;
  }

  .hero-drink-pear {
    --x: 50%;
    --y: 77%;
    --w: 25vw;
    --scatter-x: -8vw;
    --scatter-y: 48vh;
  }

  .hero-drink-grapefruit {
    --x: 20%;
    --y: 77%;
    --w: 25vw;
    --z: 9;
    --scatter-x: 8vw;
    --scatter-y: -46vh;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-strip {
    right: 0;
    bottom: 14px;
    left: 0;
    flex-wrap: nowrap;
    padding: 0 18px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-strip::-webkit-scrollbar {
    display: none;
  }

  .hero-strip span {
    flex: 0 0 auto;
    min-height: 32px;
    font-size: 12px;
  }

  .section {
    --section-y: 56px;
    --section-x: 18px;
    padding: var(--section-y) var(--section-x);
    scroll-margin-top: 86px;
  }

  .section:not(.hero)::after {
    top: 24px;
    width: 58px;
    opacity: 0.42;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .section-title-line {
    gap: 8px;
    margin-bottom: 10px;
  }

  .section-title-line .eyebrow {
    margin-top: 13px;
    font-size: clamp(12px, 3.6vw, 14px);
  }

  .section h2 {
    font-size: clamp(36px, 14vw, 58px);
  }

  .section p {
    font-size: 14px;
    line-height: 1.62;
  }

  .feature-section {
    min-height: auto;
  }

  .feature-grid {
    gap: 18px;
  }

  .feature-product-stage {
    width: min(336px, 100%);
    margin: 0 auto;
    border-radius: 28px;
  }

  .feature-flavor-tag {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 16px;
  }

  .feature-badge {
    font-size: clamp(36px, 14vw, 58px);
  }

  .feature-panel h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .feature-panel > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.58;
  }

  .feature-points {
    display: none;
  }

  .flavor-wheel {
    grid-template-columns: repeat(5, minmax(54px, 1fr));
    gap: 9px;
    margin-top: 16px;
  }

  .flavor-wheel button {
    min-height: 46px;
    padding: 0 6px;
    font-size: 14px;
  }

  .products-section {
    min-height: auto;
  }

  .filter-bar {
    flex-wrap: nowrap;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-bar button {
    flex: 0 0 auto;
    min-width: 74px;
    padding: 0 12px;
    font-size: 13px;
  }

  .product-grid {
    display: block;
    width: min(342px, 100%);
    padding: 0;
    overflow: visible;
    cursor: grab;
    user-select: none;
  }

  .product-grid:active {
    cursor: grabbing;
  }

  .product-card {
    display: none;
    width: 100%;
    border-radius: 30px;
    padding: 14px;
  }

  .product-card.gallery-active:not(.is-hidden) {
    display: block;
  }

  .product-art {
    border-radius: 24px;
    font-size: 38px;
  }

  .product-card p {
    margin-top: 12px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card h3 {
    min-height: 28px;
    font-size: 22px;
  }

  .product-more {
    min-height: 38px;
    margin-top: 12px;
  }

  .about-section {
    gap: 18px;
  }

  .about-section::before {
    inset: 10px 0;
    border-radius: 30px;
    backdrop-filter: blur(18px) saturate(1.08);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 22%, #000 50%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
  }

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

  .stats div {
    min-height: 76px;
    border-radius: 18px;
    padding: 12px 8px;
    text-align: center;
  }

  .stats strong {
    margin-bottom: 4px;
    font-size: 28px;
  }

  .stats span {
    font-size: 12px;
  }

  .contact-section .section-head,
  .contact-layout {
    text-align: center;
  }

  .contact-layout {
    justify-items: center;
    gap: 18px;
  }

  .qr-placeholder {
    width: min(240px, 72vw);
  }

  .contact-copy h3 {
    font-size: 36px;
  }

  .contact-copy .contact-email {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .product-dialog {
    width: min(360px, calc(100vw - 24px));
    max-height: calc(100dvh - 24px);
    border-radius: 28px;
  }

  .dialog-image-stage {
    padding: 16px;
  }

  .dialog-image-stage img {
    border-radius: 22px;
  }

  .dialog-nav {
    display: none;
  }

  .dialog-copy {
    padding: 18px 18px 22px;
  }

  .dialog-copy h2 {
    margin-bottom: 10px;
    font-size: 31px;
  }

  .dialog-copy > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 1.55;
  }

  .detail-list {
    gap: 8px;
    margin-top: 14px;
  }

  .detail-list div {
    grid-template-columns: 76px 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .site-footer {
    flex-direction: column;
    padding: 32px 18px 36px;
  }
}

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