/*
  Responsive implementation reference:
  Before changing tablet/PC responsive behavior in this file,
  read the case root document `responsive-task-spec.md`.
  Keep the 390px mobile view as the source of truth.
  Keep `references/design/lp-full.png` open as the full-page visual source of truth.
*/

@font-face {
  font-family: 'SCHABO';
  src: url('../fonts/SCHABO-Condensed.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'SCHABO-Regular';
  src: url('../fonts/SCHABO-Condensed.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Tenuity';
  src: url('../fonts/Tenuity.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Tenuity-Regular';
  src: url('../fonts/Tenuity.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Chunk';
  src: url('../fonts/Chunk.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Chunk-Regular';
  src: url('../fonts/Chunk.otf') format('opentype');
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --cream: #f0ebe0;
  --red: #cc2222;
  --figma-orange-red: #cf4731;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --body-font: vdl-logojrblack, 'Noto Sans JP', sans-serif;
  --artboard-mobile-max: 430px;
  --artboard-tablet-max: 720px;
  --artboard-desktop-max: 960px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #141414 0%, #090909 100%);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

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

/* SP限定の改行 — tablet/PC では非表示 */
.sp-only { display: none; }
@media (max-width: 767px) {
  .sp-only { display: inline; }
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal--fade {
  transform: translateY(30px);
}

.reveal--slide {
  transform: translateX(-40px);
}

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

.floating-awa-badge {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 80;
  display: block;
  width: clamp(88px, 24vw, 118px);
  pointer-events: none;
  user-select: none;
  animation: floatingBadgeBob 2.7s ease-in-out infinite;
}

.floating-awa-badge-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.12));
}

.floating-top-logo {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 75;
  width: clamp(108px, 25.2vw, 170px);
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.floating-top-logo-image {
  width: 100%;
  height: auto;
}

.hero-intro-badge,
.how-many-badge,
.commitment-badge,
.goods-store-badge,
.goods-card-badge {
  transform-origin: center center;
  animation: circularLogoSpin 18s linear infinite;
}

#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loading.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
  will-change: transform;
}

.loading-scene,
.loading-text-reveal {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-scene {
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: opacity, transform;
}

.loading-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16vw;
  aspect-ratio: 1;
  max-width: 180px;
  min-width: 64px;
  border-radius: 999px;
  background: var(--black);
  will-change: transform;
}

.loading-text-reveal {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.loading-text-reveal .loading-scene {
  opacity: 1;
  visibility: visible;
}

.loading-scene--start {
  opacity: 1;
  visibility: visible;
  background: var(--cream);
}

.loading-scene--hero,
.loading-scene--compact,
.loading-scene--tagline,
.loading-scene--message {
  background: var(--black);
}

.loading-scene--message {
  transform-origin: left center;
}

#main {
  opacity: 0;
  transition: opacity 0.45s ease;
}

#main.visible {
  opacity: 1;
}

.lp-shell {
  width: 100%;
  padding: 0;
}

.lp-artboard {
  width: min(100vw, var(--artboard-mobile-max));
  margin: 0 auto;
  overflow-x: hidden;
  background: #f0ebe0;
  box-shadow: var(--shadow);
  container-type: inline-size;
}

.lp-panel {
  position: relative;
}

.lp-panel + .lp-panel {
  margin-top: 0;
}

.lp-panel-image {
  width: 100%;
  height: auto;
}

.lp-panel--crop-top {
  overflow: hidden;
  background: var(--cream);
}

.lp-panel-image--crop-top {
  margin-top: -28%;
}

.lp-goods {
  background: #f0ebe0;
}

.hero {
  background: var(--cream);
  color: #111111;
}

.hero-main {
  position: relative;
  min-height: clamp(392px, 91.2cqi, 680px);
  overflow: hidden;
  padding: clamp(10px, 2.3cqi, 22px) 0 0;
}

.hero-logo,
.hero-mascot {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
}

.hero-logo {
  position: fixed;
  top: clamp(8px, 1.9cqi, 18px);
  left: 50%;
  z-index: 70;
  width: clamp(108px, 25.2cqi, 170px);
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.hero-wordmark {
  position: absolute;
  inset: clamp(62px, 14.4cqi, 126px) -8% auto;
  z-index: 1;
  color: #111111;
  font-family: 'Anton', 'SCHABO', 'Impact', sans-serif;
  line-height: 0.92;
  letter-spacing: -0.16em;
  text-align: center;
  text-transform: none;
}

.hero-wordmark span {
  display: block;
  white-space: nowrap;
  transform-origin: center center;
}

.hero-wordmark span:first-child {
  font-size: clamp(7.15rem, 26.6cqi, 13.5rem);
  transform: scaleX(1.26);
}

.hero-wordmark span:last-child {
  margin-top: clamp(22px, 4.6cqi, 38px);
  font-size: clamp(7.15rem, 26.6cqi, 13.5rem);
  transform: scaleX(1.24);
}

.hero-mascot {
  left: 50%;
  top: clamp(148px, 34.4cqi, 250px);
  z-index: 2;
  width: clamp(92px, 21.4cqi, 150px);
  transform: translateX(-50%);
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(28px, 6.5cqi, 56px);
  z-index: 3;
  padding: 0 clamp(12px, 2.8cqi, 28px);
  text-align: center;
}

.hero-lead {
  margin: 0;
  display: inline-block;
  color: #111111;
  font-family: var(--body-font);
  font-size: clamp(1.16rem, 2.92cqi, 1.95rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.06em;
  white-space: nowrap;
  text-align: center;
  transform: scaleX(1.08);
  transform-origin: center center;
}

.hero-marquee {
  overflow: hidden;
  background: #121212;
  border-top: 2px solid rgba(240, 235, 224, 0.85);
  border-bottom: 2px solid rgba(240, 235, 224, 0.85);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marqueeLeft 22s linear infinite;
  padding: 10px 0;
}

.hero-marquee-track span {
  position: relative;
  flex: none;
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 1.46rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-marquee-track span::after {
  content: "•";
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 18px;
  vertical-align: middle;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1;
}

.hero-intro {
  display: grid;
  grid-template-columns: clamp(104px, 24.2cqi, 180px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3.7cqi, 32px);
  padding: clamp(26px, 6cqi, 44px) clamp(16px, 3.7cqi, 40px) clamp(28px, 6.5cqi, 48px);
  background: #121212;
}

.hero-intro-badge {
  width: clamp(104px, 24.2cqi, 180px);
  max-width: none;
  height: auto;
  justify-self: center;
}

.hero-intro-copy {
  color: var(--cream);
  font-family: var(--body-font);
  font-size: clamp(1.2rem, 3.1cqi, 1.95rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.hero-intro-copy p {
  margin: 0;
  text-wrap: balance;
}

.hero-intro-copy p + p {
  margin-top: clamp(8px, 1.9cqi, 14px);
}

.what-is-marquee {
  overflow: hidden;
  background: var(--black);
  border-top: 2px solid rgba(240, 235, 224, 0.85);
  border-bottom: 2px solid rgba(240, 235, 224, 0.85);
}

.what-is-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marqueeLeft 22s linear infinite;
  padding: 10px 0;
}

.what-is-marquee-track span {
  position: relative;
  flex: none;
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 1.46rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.what-is-marquee-track span::after {
  content: "•";
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 18px;
  vertical-align: middle;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1;
}

.what-is {
  position: relative;
  overflow: hidden;
  background: var(--figma-orange-red);
  color: var(--black);
}

.what-is::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1px;
  z-index: 1;
  height: 96px;
  background: var(--cream);
  clip-path: polygon(
    0% 88%,
    4% 82%,
    8% 86%,
    12% 68%,
    17% 60%,
    21% 75%,
    25% 70%,
    29% 48%,
    32% 44%,
    35% 64%,
    39% 42%,
    43% 40%,
    47% 58%,
    52% 46%,
    57% 56%,
    62% 38%,
    67% 34%,
    72% 50%,
    77% 43%,
    82% 55%,
    87% 48%,
    92% 58%,
    96% 50%,
    100% 62%,
    100% 100%,
    0% 100%
  );
  pointer-events: none;
}

.what-is-body {
  position: relative;
  z-index: 2;
  padding: 34px 18px 74px;
}

.what-is-header {
  position: relative;
  min-height: 80px;
}

.what-is-title {
  margin: 0;
  font-family: 'SCHABO', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 4.45rem;
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-align: center;
  transform: translateY(-4px);
}

.what-is-scribble {
  position: absolute;
  right: 20px;
  top: 4px;
  display: block;
  width: 52px;
  height: auto;
}

.what-is-content {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 18px;
  align-items: stretch;
}

.what-is-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  width: 100%;
}

.what-is-packshot {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.what-is-packshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-is-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.what-is-logo {
  width: 100%;
  max-width: 124px;
  height: auto;
  margin: 0;
}

.what-is-kicker,
.what-is-description-line {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.what-is-kicker {
  padding-bottom: 0;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.what-is-description {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.8cqi, 8px);
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
}

.what-is-description-line {
  font-size: clamp(0.82rem, 2.3cqi, 1.42rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.what-is-handwriting {
  display: block;
  width: max-content;
  max-width: none;
  margin: 18px auto 0;
  color: var(--cream);
  font-family: 'Tenuity', cursive;
  font-size: 1.58rem;
  line-height: 0.84;
  letter-spacing: 0.038em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-1.8deg) scaleX(0.92);
  transform-origin: center center;
}

.how-many {
  position: relative;
  overflow: hidden;
  margin-top: -2px;
  padding: 34px 14px 18px;
  background: var(--cream);
  color: #111111;
}

.how-many::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--cream);
  z-index: 3;
  pointer-events: none;
}

.how-many-title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-family: 'SCHABO', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(4.45rem, 18.5cqi, 8rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
}

.how-many-copy,
.how-many-subcopy {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #111111;
  font-family: var(--body-font);
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
}

.how-many-copy {
  margin-top: 32px;
  font-size: clamp(1.3rem, 3.2cqi, 2.4rem);
  line-height: 1.1;
  transform: scaleX(0.96);
  transform-origin: center center;
}

.how-many-copy-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.02em;
  vertical-align: 0.01em;
}

.how-many-copy-number {
  display: inline-block;
  font-size: 1.14em;
  line-height: 0.9;
  vertical-align: -0.02em;
}

.how-many-copy-circle {
  position: absolute;
  left: -0.58em;
  top: -0.78em;
  width: calc(100% + 1.14em);
  max-width: none;
  height: auto;
  transform: rotate(6deg);
  pointer-events: none;
}

.how-many-subcopy {
  margin-top: 6px;
  font-size: clamp(1.32rem, 3.3cqi, 2.5rem);
  line-height: 1.04;
}

.how-many-stage {
  position: relative;
  margin-top: 18px;
  min-height: clamp(220px, 62cqi, 440px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--figma-orange-red);
}

.how-many-carton,
.how-many-glass,
.how-many-badge,
.how-many-arrow {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
}

.how-many-carton {
  left: 7%;
  top: 6%;
  z-index: 1;
  width: 35%;
  transform: rotate(-2deg);
  transform-origin: center center;
}

.how-many-glass {
  left: 36%;
  top: 30%;
  z-index: 2;
  width: 28%;
  transform: rotate(3deg);
  transform-origin: center center;
}

.how-many-badge {
  right: 5%;
  top: 6%;
  z-index: 3;
  width: 29%;
}

.how-many-arrow {
  right: 7%;
  bottom: 22%;
  z-index: 2;
  width: 31%;
}

.how-many-handwriting {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 1;
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--cream);
  font-family: 'Tenuity', cursive;
  font-style: italic;
  font-size: clamp(2.4rem, 7cqi, 5rem);
  line-height: 0.8;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transform: rotate(-1.8deg);
  transform-origin: center center;
}

.how-to-drink {
  position: relative;
  background: #151515;
  overflow: visible;
}

.how-to-drink-stage {
  position: relative;
  min-height: 100svh;
  padding: 34px 14px 28px;
  background: #151515;
  overflow: hidden;
  isolation: isolate;
  z-index: 20;
}

.how-to-drink-title {
  margin: 0 0 20px;
  font-family: 'SCHABO', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(4.35rem, 18cqi, 8rem);
  line-height: 0.78;
  text-align: center;
  letter-spacing: -0.02em;
}

.how-to-drink-title span:first-child {
  color: #f0ebe0;
}

.how-to-drink-title span:last-child {
  color: var(--figma-orange-red);
}

.drink-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 6px;
  min-height: clamp(250px, 64cqi, 320px);
  border-radius: 24px;
  padding: 12px 4px 10px 12px;
  border: 2px solid rgba(240, 235, 224, 0.84);
  overflow: hidden;
  align-items: start;
}

.drink-card-copy {
  min-width: 0;
}

.drink-card:nth-of-type(1) {
  z-index: 1;
}

.drink-card:nth-of-type(2) {
  z-index: 2;
  margin-top: -228px;
}

.drink-card:nth-of-type(3) {
  z-index: 3;
  margin-top: -196px;
}

.drink-card--dark {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: clamp(290px, 76cqi, 382px);
  background: #151515;
  color: #f0ebe0;
}

.drink-card--light {
  background: #f0ebe0;
  color: #111111;
  border-color: #f0ebe0;
}

.drink-card--accent {
  background: var(--figma-orange-red);
  color: #f0ebe0;
  border-color: var(--figma-orange-red);
}

.drink-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px;
  padding: 4px 0 4px 26px;
  color: #111111;
  font-family: 'Tenuity', cursive;
  font-size: clamp(1.72rem, 4.1cqi, 2.65rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  transform: rotate(-2.8deg);
  transform-origin: left center;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
}

.drink-card-tag--night {
  width: clamp(195px, 48cqi, 270px);
  min-width: clamp(195px, 48cqi, 270px);
  min-height: clamp(50px, 12cqi, 68px);
  padding-top: 6px;
  padding-bottom: 10px;
  padding-left: 34px;
  background-image: url('../images/drink-tag-club-floor.png');
}

.drink-card-tag--bar {
  width: clamp(215px, 52cqi, 300px);
  min-width: clamp(215px, 52cqi, 300px);
  min-height: clamp(50px, 12cqi, 68px);
  padding-top: 6px;
  padding-left: 30px;
  color: #f0ebe0;
  background-image: url('../images/drink-tag-bar-low-light.png');
}

.drink-card-tag--club {
  width: clamp(190px, 45cqi, 260px);
  min-width: clamp(190px, 45cqi, 260px);
  min-height: clamp(52px, 12.2cqi, 70px);
  padding-top: 4px;
  padding-left: 22px;
  background-image: url('../images/drink-tag-night-alone.png');
}

.drink-card-lead {
  margin: 0 0 10px;
  display: inline-block;
  font-family: var(--body-font);
  font-size: clamp(1rem, 2.6cqi, 1.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.drink-card--dark .drink-card-lead {
  margin-bottom: 12px;
  font-size: clamp(0.94rem, 2.4cqi, 1.7rem);
  letter-spacing: -0.025em;
  color: #111111;
  -webkit-text-stroke: 0.38px #f0ebe0;
  text-shadow:
    0.38px 0 0 #f0ebe0,
    -0.38px 0 0 #f0ebe0,
    0 0.38px 0 #f0ebe0,
    0 -0.38px 0 #f0ebe0;
}

.drink-card--light .drink-card-lead {
  color: #f0ebe0;
  -webkit-text-stroke: 0.4px #111111;
  text-shadow:
    0.4px 0 0 #111111,
    -0.4px 0 0 #111111,
    0 0.4px 0 #111111,
    0 -0.4px 0 #111111;
}

.drink-card--accent .drink-card-lead {
  color: var(--figma-orange-red);
  -webkit-text-stroke: 0.4px #f0ebe0;
  text-shadow:
    0.4px 0 0 #f0ebe0,
    -0.4px 0 0 #f0ebe0,
    0 0.4px 0 #f0ebe0,
    0 -0.4px 0 #f0ebe0;
}

.drink-specs {
  margin: 0;
  width: fit-content;
  max-width: 100%;
}

.drink-specs div {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: baseline;
  gap: clamp(0.3rem, 0.8cqi, 0.6rem);
  width: max-content;
}

.drink-specs dt,
.drink-specs dd {
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(0.6rem, 1.6cqi, 1.6rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.drink-specs dt {
  white-space: nowrap;
}

.drink-specs dd {
  justify-self: end;
  white-space: nowrap;
}

.drink-card-note {
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(0.7rem, 1.95cqi, 0.9rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.drink-card-notes {
  margin-top: 10px;
}

.drink-card-notes .drink-card-note + .drink-card-note {
  margin-top: 2px;
}

.drink-card-art {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: clamp(144px, 37.4cqi, 288px);
  padding-top: 4px;
}

.drink-card-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.drink-card--light .drink-card-art img {
  width: 92%;
}

.drink-card--accent .drink-card-art img {
  width: 91%;
}

.commitment {
  position: relative;
  aspect-ratio: 1440 / 1065;
  overflow: hidden;
  background: var(--cream);
}

.commitment-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.commitment-beans,
.commitment-blob,
.commitment-badge {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.commitment-beans {
  top: -16%;
  left: -7%;
  width: 128%;
  z-index: 2;
}

.commitment-blob {
  left: 4%;
  bottom: 14%;
  width: 82%;
  z-index: 1;
}

.commitment-title {
  position: absolute;
  top: 21.25%;
  left: 18%;
  z-index: 2;
  margin: 0;
  color: #f0eee9;
  font-family: 'SCHABO', 'Impact', sans-serif;
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(4rem, 16cqi, 9rem);
  line-height: 0.78;
  letter-spacing: 0.05em;
  text-shadow:
    1px 0 0 rgba(18, 18, 18, 0.68),
    -1px 0 0 rgba(18, 18, 18, 0.68),
    0 1px 0 rgba(18, 18, 18, 0.68),
    0 -1px 0 rgba(18, 18, 18, 0.68),
    0 4px 14px rgba(0, 0, 0, 0.14);
}

.commitment-copy {
  position: absolute;
  top: 55.5%;
  left: 3.4%;
  z-index: 2;
  width: 72%;
}

.commitment-pill {
  margin: 0 0 4%;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.48em 1.08em 0.42em;
  border-radius: 999px;
  background: #121212;
  color: #f0eee9;
  font-family: var(--body-font);
  font-size: clamp(0.76rem, 3vw, 0.92rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.14;
  letter-spacing: -0.03em;
  white-space: nowrap;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.commitment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.commitment-list li {
  position: relative;
  margin: 0;
  padding-left: 0.8em;
  color: #111111;
  font-family: var(--body-font);
  font-size: clamp(0.98rem, 3.75vw, 1.15rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 0.6px rgba(240, 238, 233, 0.98);
  text-shadow:
    0.6px 0 0 rgba(240, 238, 233, 0.98),
    -0.6px 0 0 rgba(240, 238, 233, 0.98),
    0 0.6px 0 rgba(240, 238, 233, 0.98),
    0 -0.6px 0 rgba(240, 238, 233, 0.98);
}

.commitment-list li + li {
  margin-top: 1.4%;
}

.commitment-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.commitment-badge {
  right: 1.8%;
  bottom: 4.5%;
  z-index: 2;
  width: 23.5%;
}

.areyou {
  margin-top: -2px;
  padding: 0 0 18px;
  background: var(--cream);
}

.areyou-stage {
  position: relative;
  min-height: clamp(260px, 60cqi, 520px);
  overflow: hidden;
}

.areyou-cloud,
.areyou-brush,
.areyou-glass {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.areyou-cloud--left {
  left: -2%;
  top: -2px;
  width: 32%;
  z-index: 2;
}

.areyou-cloud--right {
  right: 20%;
  top: clamp(130px, 30.2cqi, 220px);
  width: 28%;
  z-index: 3;
}

.areyou-brush {
  left: -18%;
  top: clamp(28px, 6.5cqi, 52px);
  width: 118%;
  z-index: 1;
}

.areyou-copy {
  position: absolute;
  left: 12.8%;
  top: clamp(90px, 20.9cqi, 164px);
  z-index: 3;
  width: 68%;
}

.areyou-copy::before {
  content: "";
  position: absolute;
  left: -16%;
  top: clamp(-50px, -11.5cqi, -36px);
  width: 118%;
  height: clamp(92px, 21.4cqi, 156px);
  background: url('../images/areyou-ring-orange.png') center / contain no-repeat;
  transform: rotate(-3deg);
}

.areyou-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  transform: translateX(-8%);
  color: var(--cream);
  font-family: var(--body-font);
  font-size: clamp(0.98rem, 2.35cqi, 1.35rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.areyou-title {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--cream);
  font-family: 'Tenuity', cursive;
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(1.75rem, 4.5cqi, 2.8rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  transform: rotate(-2deg);
}

.areyou-glass {
  right: -8%;
  top: clamp(-70px, -16cqi, -40px);
  z-index: 4;
  width: 43%;
}

.areyou-order {
  display: block;
  width: calc(100% - 38px);
  max-width: clamp(360px, 84cqi, 560px);
  margin: 0 auto;
}

.insta-strip {
  padding: 10px 0 18px;
  background: var(--cream);
}

.insta-strip-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  will-change: scroll-position;
}

.insta-strip-scroller::-webkit-scrollbar {
  display: none;
}

.insta-strip-scroller.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.insta-strip-scroller.is-auto-scrolling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.insta-strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 56%;
  gap: 14px;
  padding: 0 16px 0 0;
}

.insta-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 212px;
  border: 3px solid rgba(18, 18, 18, 0.86);
  border-radius: 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 14px 18px;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.insta-card:first-child {
  margin-left: 16px;
}

.insta-card-icon {
  width: auto;
  max-width: 74px;
  max-height: 78px;
  height: auto;
}

.insta-card-label {
  margin: 26px 0 0;
  color: #121212;
  font-family: var(--body-font);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 0.35px rgba(18, 18, 18, 0.9);
}

.coming-soon {
  padding: 30px 0 14px;
  background: var(--cream);
  overflow: hidden;
}

.coming-soon-line {
  margin: 0;
  color: #111111;
  font-family: 'Tenuity', cursive;
  font-size: clamp(2.6rem, 11.8cqi, 6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.coming-soon-line:nth-child(2) {
  transform: rotate(-1.2deg);
}

.coming-soon-line:nth-child(3) {
  margin-top: 4px;
  transform: rotate(-0.4deg);
}

.coming-soon-line:nth-child(4) {
  margin-top: 4px;
  transform: rotate(-1.4deg);
}

.goods-store {
  position: relative;
  z-index: 1;
  min-height: clamp(430px, 111.5cqi, 750px);
  padding: 0;
  overflow: hidden;
  background: var(--cream);
}

.goods-store-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #cf4731;
  font-family: 'Chunk', 'Impact', sans-serif;
  font-size: clamp(8.35rem, 34.3cqi, 20rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.goods-store-bg span {
  position: absolute;
  display: block;
}

.goods-store-bg span:first-child {
  left: 50%;
  top: 9%;
  transform: translateX(-50%) scaleX(0.98) scaleY(1.02) rotate(-2deg);
}

.goods-store-bg span:last-child {
  left: 50%;
  top: 37%;
  transform: translateX(-50%) scaleX(0.98) scaleY(1.02) rotate(-2.4deg);
}

.goods-store-copy {
  position: absolute;
  z-index: 3;
  left: auto;
  right: 9%;
  top: 45%;
  width: 58%;
  padding: 0 10px 0 0;
  text-align: right;
}

.goods-store-title {
  margin: 0;
  color: #111111;
  font-family: var(--body-font);
  font-size: clamp(2.78rem, 7.2cqi, 5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(6px, 1.05cqi, 12px);
}

.goods-store-title span {
  display: block;
  white-space: nowrap;
  position: relative;
}

.goods-store-title span:first-child {
  color: #f3eee6;
  text-shadow:
    2px 0 0 #111111,
    -2px 0 0 #111111,
    0 2px 0 #111111,
    0 -2px 0 #111111;
}

.goods-store-badge,
.goods-store-model {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.goods-store-badge {
  display: none;
}

.goods-store-model {
  display: none;
  right: -3%;
  bottom: -88px;
  z-index: 4;
  width: 43%;
}

.goods-grid {
  position: relative;
  z-index: 5;
  margin-top: -52px;
  padding: 0 0 26px;
  background: var(--cream);
}

.goods-card {
  position: relative;
}

.goods-card-panel {
  position: relative;
  overflow: hidden;
}

.goods-card--tee .goods-card-panel {
  min-height: 236px;
  background: var(--cream);
  overflow: visible;
  clip-path: inset(-220px 0 0 0);
}

.goods-card-panel--tee::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 16px;
  width: 82%;
  height: 76%;
  border-radius: 0 0 26px 26px;
  background: #cf4731;
  transform: skewY(-3.6deg);
  transform-origin: top left;
  z-index: 1;
}

.goods-card-name {
  position: absolute;
  z-index: 3;
  margin: 0;
  font-family: var(--body-font);
  font-size: 2.72rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.goods-card-name--light {
  color: var(--cream);
}

.goods-card-name--dark {
  color: #111111;
}

.goods-card--tee .goods-card-name {
  left: 29%;
  bottom: 74px;
  font-size: 2.28rem;
  letter-spacing: -0.03em;
  z-index: 6;
  transform: rotate(-4deg);
}

.goods-card-badge,
.goods-card-model,
.goods-card-coin,
.goods-card-cloud,
.goods-card-glass {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
}

.goods-card-badge {
  left: 6%;
  top: 30px;
  z-index: 2;
  width: 19%;
}

.goods-card-model {
  right: 1%;
  bottom: -2px;
  z-index: 2;
  width: 40%;
}

.goods-card--tee .goods-card-badge {
  display: block;
  left: 18%;
  top: 8px;
  z-index: 5;
  width: 24%;
}

.goods-card--tee .goods-card-model {
  display: block;
  right: -5%;
  bottom: 38px;
  z-index: 4;
  width: 63%;
}

.goods-card-row {
  position: relative;
  display: block;
  min-height: 346px;
  margin-top: -10px;
}

.goods-card--coin,
.goods-card--glass {
  position: absolute;
  top: 0;
}

.goods-card--coin {
  left: -4%;
  top: -44px;
  width: 60%;
  z-index: 1;
  transform: rotate(3.4deg);
  transform-origin: top left;
}

.goods-card--glass {
  right: -3%;
  top: 28px;
  width: 55%;
  z-index: 2;
  transform: rotate(2.2deg);
  transform-origin: top left;
}

.goods-card--coin .goods-card-panel,
.goods-card--glass .goods-card-panel {
  min-height: 286px;
}

.goods-card--coin .goods-card-panel {
  min-height: 228px;
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  clip-path: inset(0 round 16px);
  isolation: isolate;
}

.goods-card--glass .goods-card-panel {
  background: var(--cream);
  border-radius: 16px;
  border-left: 2px solid rgba(18, 18, 18, 0.82);
  border-top: 2px solid rgba(18, 18, 18, 0.82);
  border-right: 2px solid rgba(18, 18, 18, 0.82);
  border-bottom: 2px solid rgba(18, 18, 18, 0.82);
}

.goods-card--coin .goods-card-name {
  left: 12%;
  top: 10px;
  color: var(--cream);
  font-size: 2.2rem;
}

.goods-card--glass .goods-card-name {
  left: 9%;
  top: 12px;
  font-size: 2.34rem;
}

.goods-card-coin {
  left: -30%;
  bottom: -36%;
  width: 126%;
}

.goods-card-cloud {
  left: 2%;
  bottom: -6px;
  width: 56%;
  opacity: 0.96;
}

.goods-card-glass {
  right: -10%;
  bottom: -18px;
  width: 58%;
}

.same-base {
  padding: clamp(26px, 6cqi, 44px) clamp(16px, 3.7cqi, 36px) clamp(18px, 4.2cqi, 30px);
  background: #151515;
  overflow: hidden;
}

.same-base-heading {
  display: block;
  width: 100%;
  height: auto;
}

.same-base-lockup {
  width: min(100%, clamp(340px, 79cqi, 700px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.same-base-line {
  display: inline-block;
  margin: 0;
  color: var(--cream);
  font-family: 'Tenuity', cursive;
  letter-spacing: 0.09em;
  white-space: nowrap;
  transform: matrix(1, 0, -0.17, 0.98, 0, 0);
  transform-origin: left bottom;
}

.same-base-line--top {
  font-size: clamp(3.3rem, 13.8cqi, 6rem);
  line-height: 0.85;
}

.same-base-line--bottom {
  margin-top: 12px;
  font-size: clamp(3.15rem, 13.1cqi, 5.72rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
}

.lp-inline-cta {
  display: flex;
  justify-content: center;
  padding: clamp(18px, 5vw, 28px) clamp(16px, 4vw, 24px) clamp(18px, 5vw, 28px);
  background: #f0ebe0;
}

.lp-inline-cta--dark {
  background: #151515;
  padding-top: 8px;
  padding-bottom: 28px;
}

.lp-inline-cta--dark .lp-order-button {
  max-width: 338px;
}

.lp-order-button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 390px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 999px;
  transition: transform 0.18s ease;
}

.lp-order-button::before {
  content: '';
  position: absolute;
  left: 1.15%;
  top: 6.8%;
  z-index: 3;
  width: 17.2%;
  aspect-ratio: 1;
  background: url('../images/badge-shisa-circle.png') center / contain no-repeat;
  transform-origin: center center;
  animation: circularLogoSpin 18s linear infinite;
  pointer-events: none;
}

.lp-order-button::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url('../images/cta-hover-red.png') center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.lp-order-button--dark-badge::before {
  background-image: url('../images/commitment-badge-black.png');
}

.areyou-order::after,
.lp-footer-order::after {
  background-image: url('../images/goods-drink-packshot.png');
}

.lp-order-button:hover {
  transform: translateY(-2px);
}

.lp-order-button:hover::after,
.lp-order-button:focus-visible::after {
  opacity: 1;
}

.lp-order-button img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.lp-order-button:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.85);
  outline-offset: 6px;
  border-radius: 999px;
}

.lp-inline-cta--dark .lp-order-button:focus-visible {
  outline-color: rgba(255, 255, 255, 0.92);
}

.lp-footer-cta {
  display: flex;
  justify-content: center;
  padding: clamp(18px, 5vw, 28px) clamp(16px, 4vw, 24px) clamp(12px, 4vw, 20px);
  background: #f0ebe0;
}

.lp-footer-order {
  width: 100%;
  max-width: 390px;
}

.lp-footer-order,
.lp-footer-order img {
  display: block;
}

.footer-brand {
  position: relative;
  min-height: clamp(286px, 52.8cqi, 430px);
  overflow: hidden;
  background: var(--cream);
}

.footer-brand-marquee,
.footer-brand-splash,
.footer-brand-mascot {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.footer-brand-marquee--top {
  left: -8%;
  top: 60px;
  z-index: 2;
  width: 150%;
  transform: rotate(-3.5deg);
}

.footer-brand-marquee--bottom {
  left: -2%;
  top: 102px;
  z-index: 2;
  width: 158%;
  transform: rotate(2.8deg);
}

.footer-brand-splash {
  left: -13%;
  bottom: -175px;
  z-index: 3;
  width: 126%;
}

.footer-brand-mascot {
  right: 1%;
  bottom: clamp(64px, 11.4cqi, 108px);
  z-index: 4;
  width: 20.5%;
}

.footer-brand-wordmark {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 4;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 0;
  color: #ffffff;
  white-space: nowrap;
  transform: translateX(-50%);
}

.footer-brand-wordmark-main,
.footer-brand-wordmark-sub {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0.86;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 1.15px rgba(18, 18, 18, 0.98);
  transform: scaleX(1.03) scaleY(0.88);
  transform-origin: center bottom;
  text-shadow:
    1px 0 0 rgba(18, 18, 18, 0.98),
    -1px 0 0 rgba(18, 18, 18, 0.98),
    0 1px 0 rgba(18, 18, 18, 0.98),
    0 -1px 0 rgba(18, 18, 18, 0.98),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-brand-wordmark-main {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(2.45rem, 8.5cqi, 4.5rem);
}

.footer-brand-wordmark-sub {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(2.45rem, 8.5cqi, 4.5rem);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(390px, calc(100vw - 24px));
  animation: modalIn 0.24s ease;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Footer crossing bands ── */
.footer-band {
  position: absolute;
  left: -40%;
  width: 180%;
  overflow: hidden;
  background: var(--black);
  border-top: 2px solid rgba(240, 235, 224, 0.85);
  border-bottom: 2px solid rgba(240, 235, 224, 0.85);
}

.footer-band--top {
  top: 43%;
  transform: rotate(-8deg);
  z-index: 2;
}

.footer-band--bottom {
  top: 47%;
  transform: rotate(8deg);
  z-index: 1;
}

.footer-band-track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 7px 0;
  width: max-content;
  animation: marqueeLeft 28s linear infinite;
}

.footer-band-track--reverse {
  animation-direction: normal;
}

.footer-band-track span {
  flex: none;
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.footer-band-track span::after {
  content: "•";
  display: inline-block;
  margin-left: 18px;
  vertical-align: middle;
  color: var(--cream);
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatingBadgeBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes circularLogoSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-awa-badge,
  .hero-intro-badge,
  .how-many-badge,
  .commitment-badge,
  .goods-store-badge,
  .goods-card-badge {
    animation: none;
  }

  .lp-order-button::before {
    animation: none;
  }

  .lp-order-button::after {
    transition: none;
  }
}

@media (max-width: 360px) {
  .how-many {
    padding-left: 12px;
    padding-right: 12px;
  }

  .how-many-title {
    font-size: 4rem;
  }

  .how-many-copy {
    font-size: 1.06rem;
  }

  .how-many-subcopy {
    font-size: 1.12rem;
  }

  .how-many-stage {
    min-height: 316px;
  }

  .how-many-handwriting {
    font-size: 2.68rem;
  }

  .footer-brand {
    min-height: 262px;
  }

  .footer-brand-marquee--top {
    top: 0px;
    width: 152%;
  }

  .footer-brand-marquee--bottom {
    top: 22px;
    width: 160%;
  }

  .footer-brand-splash {
    left: -16%;
    bottom: -380px;
    width: 132%;
  }

  .footer-brand-mascot {
    right: 0;
    bottom: 56px;
    width: 21.5%;
  }

  .footer-brand-wordmark {
    gap: 10px;
    left: 50%;
    bottom: 14px;
    max-width: calc(100% - 20px);
  }

  .commitment-copy {
    width: 74%;
  }

  .commitment-pill {
    font-size: 0.72rem;
  }

  .commitment-list li {
    font-size: 0.92rem;
  }

  .areyou-stage {
    min-height: 262px;
  }

  .areyou-copy {
    left: 9%;
    width: 61%;
  }

  .areyou-kicker {
    font-size: 0.8rem;
  }

  .areyou-title {
    font-size: 1.9rem;
  }

  .areyou-order {
    width: calc(100% - 28px);
  }

  .insta-strip-track {
    grid-auto-columns: 62%;
    gap: 12px;
  }

  .insta-card {
    min-height: 196px;
    padding: 22px 12px 16px;
  }

  .coming-soon {
    padding: 34px 0 30px;
  }

  .coming-soon-line {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .lp-shell {
    padding: 24px 0;
  }

  .lp-artboard {
    width: min(100vw - 48px, var(--artboard-tablet-max));
    border-radius: 12px;
    overflow: hidden;
  }

  .coming-soon {
    padding: 38px 0 20px;
  }

  .lp-footer-cta {
    position: relative;
    z-index: 5;
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .footer-brand {
    min-height: max(430px, 100svh);
    overflow: visible;
  }

  .insta-strip-scroller {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .insta-strip-track {
    grid-auto-columns: calc(48vw - 28px);
    gap: 20px;
    padding: 0 28px 0 0;
  }

  .insta-card {
    min-height: 260px;
  }

  .insta-card:first-child {
    margin-left: 28px;
  }

  .footer-brand-splash {
    left: -10%;
    bottom: -242px;
    width: 120%;
  }

  .footer-brand-mascot {
    bottom: 2px;
  }

  .footer-brand-wordmark {
    bottom: -24px;
    gap: 14px;
  }

  .modal-content {
    width: min(100vw - 48px, 520px);
  }

  /* what-is: enlarge the copy and keep it as a tight, readable block */
  .what-is-header {
    min-height: clamp(164px, 24cqi, 208px);
  }

  .what-is-title {
    font-size: clamp(6.7rem, 15.5cqi, 8.6rem);
    line-height: 0.84;
    transform: translateY(10px);
  }

  .what-is-content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(22px, 3.2cqi, 36px);
  }

  .what-is-copy {
    align-self: center;
    max-inline-size: clamp(320px, 50cqi, 430px);
  }

  .what-is-brand {
    grid-template-columns: max-content auto;
    align-items: end;
    max-inline-size: clamp(300px, 43cqi, 380px);
    gap: clamp(12px, 1.85cqi, 18px);
  }

  .what-is-logo {
    max-width: clamp(170px, 24.6cqi, 208px);
  }

  .what-is-kicker {
    font-size: clamp(1.68rem, 3.55cqi, 2.18rem);
    transform: translateY(-4px);
  }

  .what-is-description {
    margin-top: clamp(16px, 2.2cqi, 24px);
    gap: clamp(10px, 1.6cqi, 14px);
  }

  .what-is-description-line {
    max-inline-size: 16.5em;
    font-size: clamp(1.22rem, 3.4cqi, 1.78rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .what-is-handwriting {
    margin-top: clamp(24px, 3.4cqi, 34px);
    font-size: clamp(2rem, 4.9cqi, 2.95rem);
    line-height: 0.82;
    letter-spacing: 0.03em;
    transform: rotate(-1.8deg) scaleX(0.95);
  }

  .what-is-scribble {
    right: clamp(42px, 5.8cqi, 68px);
    top: clamp(20px, 2.9cqi, 34px);
    width: clamp(96px, 13.8cqi, 122px);
  }

  /* hero-intro: avoid "で" orphaned at line start; pretty avoids short trailing lines */
  .hero-intro-copy p {
    text-wrap: pretty;
  }

  /* areyou: glass bottom at tablet is ~410px; reduce stage height to avoid empty cream gap */
  .areyou-stage {
    overflow: visible;
    min-height: clamp(430px, 60.5cqi, 560px);
  }

  .areyou-cloud--left {
    left: -0.5%;
    top: clamp(14px, 1.9cqi, 22px);
    width: clamp(150px, 21.5cqi, 194px);
  }

  .areyou-cloud--right {
    right: clamp(138px, 18.8cqi, 194px);
    top: clamp(300px, 41.5cqi, 362px);
    width: clamp(182px, 24.5cqi, 232px);
  }

  .areyou-brush {
    left: -20%;
    top: clamp(82px, 11.6cqi, 118px);
    width: 124%;
  }

  .areyou-copy {
    left: clamp(62px, 9.1cqi, 92px);
    top: clamp(138px, 19.7cqi, 184px);
    width: clamp(480px, 67cqi, 618px);
  }

  .areyou-copy::before {
    left: -4.5%;
    top: clamp(-18px, -2.4cqi, -8px);
    width: clamp(360px, 80cqi, 500px);
    height: clamp(122px, 18.5cqi, 170px);
    transform: rotate(-4deg);
  }

  .areyou-kicker {
    max-inline-size: 12.8em;
    font-size: clamp(1.88rem, 4.15cqi, 2.72rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  .areyou-kicker .sp-only {
    display: inline;
  }

  .areyou-title {
    margin: clamp(20px, 2.7cqi, 30px) 0 0;
    font-size: clamp(4rem, 9cqi, 5.8rem);
    line-height: 0.88;
    letter-spacing: 0.015em;
    transform: rotate(-3deg);
  }

  .areyou-glass {
    right: -7.5%;
    top: clamp(-92px, -10.8cqi, -42px);
    width: clamp(286px, 39.5cqi, 364px);
  }

  .commitment-copy {
    width: 76%;
  }

  .commitment-pill {
    font-size: clamp(1.24rem, 2.95cqi, 1.62rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .commitment {
    overflow: visible;
    clip-path: inset(0 -200vmax -200vmax -200vmax);
  }

  .commitment-list li {
    font-size: clamp(1.22rem, 2.8cqi, 1.68rem);
    line-height: 1.12;
    -webkit-text-stroke: 0.8px rgba(240, 238, 233, 0.98);
    text-shadow:
      0.8px 0 0 rgba(240, 238, 233, 0.98),
      -0.8px 0 0 rgba(240, 238, 233, 0.98),
      0 0.8px 0 rgba(240, 238, 233, 0.98),
      0 -0.8px 0 rgba(240, 238, 233, 0.98);
  }

  .commitment-beans {
    width: 140vw;
    left: 50%;
    transform: translateX(-50%);
  }

  /* HOW TO DRINK: scale recipe text and columns at tablet+ */
  .drink-card {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(14px, 1.9cqi, 20px);
    padding: clamp(14px, 1.9cqi, 18px) clamp(14px, 1.9cqi, 18px) clamp(12px, 1.6cqi, 16px);
  }

  .drink-card:nth-of-type(2) {
    margin-top: clamp(-276px, -36.8cqi, -230px);
  }

  .drink-card:nth-of-type(3) {
    margin-top: clamp(-236px, -31.5cqi, -194px);
  }

  .drink-card-copy {
    padding-top: clamp(4px, 0.8cqi, 8px);
  }

  .drink-card-tag {
    display: block;
    margin-bottom: clamp(10px, 1.5cqi, 14px);
    padding: clamp(5px, 0.8cqi, 8px) 0 clamp(5px, 0.8cqi, 8px) clamp(28px, 4cqi, 38px);
    font-size: clamp(2rem, 4.2cqi, 2.7rem);
    transform: rotate(-2.6deg);
  }

  .drink-card-tag--night {
    width: clamp(250px, 36cqi, 330px);
    min-width: clamp(250px, 36cqi, 330px);
    min-height: clamp(62px, 9cqi, 84px);
  }

  .drink-card-tag--bar {
    width: clamp(290px, 42cqi, 390px);
    min-width: clamp(290px, 42cqi, 390px);
    min-height: clamp(66px, 9.4cqi, 88px);
    padding-top: clamp(8px, 1.1cqi, 12px);
    padding-left: clamp(34px, 4.8cqi, 46px);
  }

  .drink-card-tag--club {
    width: clamp(220px, 31cqi, 300px);
    min-width: clamp(220px, 31cqi, 300px);
    min-height: clamp(60px, 8.6cqi, 82px);
    padding-top: clamp(8px, 1.05cqi, 11px);
    padding-left: clamp(34px, 4.8cqi, 44px);
  }

  .drink-card-lead,
  .drink-card--dark .drink-card-lead {
    display: block;
    width: max-content;
    margin-bottom: clamp(14px, 1.8cqi, 16px);
    font-size: clamp(1.24rem, 2.45cqi, 1.7rem);
    line-height: 1.02;
  }

  .drink-specs dt,
  .drink-specs dd {
    font-size: clamp(1.5rem, 2.85cqi, 2.05rem);
    line-height: 1;
  }

  .drink-specs div {
    grid-template-columns: max-content max-content;
    gap: clamp(0.7rem, 1.4cqi, 1rem);
  }

  .drink-card-notes {
    margin-top: clamp(12px, 1.5cqi, 14px);
  }

  .drink-card-note {
    font-size: clamp(0.86rem, 1.45cqi, 1.02rem);
    line-height: 1.14;
  }

  .drink-card-art {
    min-height: clamp(220px, 31cqi, 320px);
    padding-top: 0;
    padding-left: 0;
    padding-right: clamp(6px, 1cqi, 14px);
  }

  .drink-card-art img {
    width: 100%;
    max-width: 100%;
  }

  .drink-card--dark .drink-card-art img {
    width: 98%;
  }

  .drink-card--light .drink-card-art img {
    width: 96%;
  }

  .drink-card--accent .drink-card-art img {
    width: 95%;
  }

  .goods-grid {
    margin-top: clamp(-88px, -12.4cqi, -64px);
    background: transparent;
    isolation: isolate;
  }

  .goods-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cream);
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
    z-index: -1;
    pointer-events: none;
  }

  .goods-store-badge,
  .goods-store-model {
    display: none;
  }

  .goods-card--tee .goods-card-panel {
    min-height: clamp(292px, 41cqi, 360px);
    clip-path: inset(-320px 0 0 0);
  }

  .goods-card-panel--tee::before {
    left: 14%;
    top: clamp(10px, 1.1cqi, 16px);
    width: 98%;
    height: 94%;
    border-radius: 0 0 34px 34px;
    transform: skewY(-3.8deg);
  }

  .goods-card--tee .goods-card-badge {
    left: 6%;
    top: clamp(-24px, -2.2cqi, -8px);
    width: clamp(166px, 22.8cqi, 206px);
  }

  .goods-card--tee .goods-card-model {
    right: -6%;
    bottom: clamp(22px, 3.1cqi, 42px);
    width: clamp(386px, 54.5cqi, 520px);
  }

  .goods-card--tee .goods-card-name {
    left: 28%;
    bottom: clamp(46px, 6.6cqi, 74px);
    font-size: clamp(3.72rem, 6.5cqi, 4.6rem);
  }

  .goods-card--coin {
    left: -2%;
    top: clamp(-52px, -7.4cqi, -32px);
    width: 62%;
  }

  .goods-card--coin .goods-card-panel {
    min-height: clamp(250px, 35.5cqi, 308px);
    border-radius: 18px;
  }

  .goods-card--coin .goods-card-name {
    left: 8%;
    top: clamp(14px, 1.8cqi, 18px);
    font-size: clamp(3rem, 5.2cqi, 3.8rem);
  }

  .goods-card--glass .goods-card-name {
    font-size: clamp(3rem, 5.2cqi, 3.8rem);
  }

  .goods-card-coin {
    left: -30%;
    bottom: -62%;
    width: 116%;
  }

  .lp-artboard {
    overflow: visible;
    clip-path: inset(0 -100vmax -64px -100vmax round 12px);
  }

  .hero,
  .hero-intro,
  .how-to-drink,
  .commitment,
  .goods-store,
  .footer-brand {
    --section-bleed-bg: transparent;
    position: relative;
    isolation: isolate;
  }

  .hero::before,
  .hero-intro::before,
  .how-to-drink::before,
  .commitment::before,
  .goods-store::before,
  .footer-brand::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background: var(--section-bleed-bg);
    box-shadow: 0 0 0 100vmax var(--section-bleed-bg);
    clip-path: inset(0 -100vmax);
    z-index: -1;
    pointer-events: none;
  }

  .hero::before {
    --section-bleed-bg: #f0ebe0;
  }

  .hero-intro::before {
    --section-bleed-bg: #121212;
  }

  .how-to-drink::before {
    --section-bleed-bg: #0a0a0a;
  }

  .commitment::before {
    --section-bleed-bg: var(--cream);
  }

  .goods-store::before {
    --section-bleed-bg: var(--cream);
  }

  .footer-brand::before {
    --section-bleed-bg: var(--cream);
  }

  .footer-brand {
    background: var(--cream);
  }

  .footer-band-track {
    gap: 48px;
    padding: 18px 0;
  }

  .footer-band-track span {
    font-size: 2rem;
  }

  .hero {
    overflow: visible;
  }

  .goods-store {
    overflow: visible;
  }

  .what-is {
    overflow: visible;
  }

  .what-is::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #cf4731;
    box-shadow: 0 0 0 100vmax #cf4731;
    clip-path: inset(0 -100vmax);
    pointer-events: none;
  }

  .what-is::after {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
  }

  .what-is-marquee {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .how-many {
    overflow: visible;
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .how-many-stage {
    position: relative;
    min-height: clamp(280px, 28cqi, 430px);
    border-radius: 0;
    box-shadow: 0 0 0 100vmax var(--figma-orange-red);
    clip-path: inset(0 -100vmax);
  }

  .how-many-carton {
    left: 12%;
    top: 12%;
    width: 22%;
    transform: rotate(-3deg);
  }

  .how-many-glass {
    left: 40%;
    top: 40%;
    width: 18%;
    transform: rotate(4deg);
  }

  .how-many-badge {
    right: 13%;
    top: 10%;
    width: 18%;
  }

  .how-many-arrow {
    right: 18%;
    bottom: 14%;
    width: 16%;
  }

  .how-many-handwriting {
    bottom: 10px;
    font-size: clamp(2.4rem, 4.4cqi, 4.2rem);
  }

  .areyou {
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .insta-strip {
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .coming-soon {
    overflow: visible;
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .same-base {
    background: var(--black);
    padding: clamp(32px, 5cqi, 56px) clamp(16px, 2.5cqi, 32px);
  }

  .same-base-lockup {
    width: 100%;
    margin: 0;
  }

  .same-base-line--top {
    font-size: clamp(5rem, 16cqi, 10rem);
  }

  .same-base-line--bottom {
    font-size: clamp(4.8rem, 15.3cqi, 9.5rem);
  }

  .lp-inline-cta--dark {
    background: var(--black);
  }

  .hero-marquee,
  :is([class$='-marquee'], [class*='-marquee ']):not(.footer-brand-marquee):not(.what-is-marquee):not([class*='-marquee-track']) {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .hero-wordmark span:first-child,
  .hero-wordmark span:last-child {
    font-size: clamp(10rem, 22cqi, 15.5rem);
  }

  .hero-mascot {
    width: clamp(150px, 24cqi, 200px);
  }

  .hero-main {
    min-height: clamp(680px, 100cqi, 820px);
  }
}

@media (min-width: 1200px) {
  .how-many {
    overflow: visible;
    padding-left: clamp(24px, 2.2vw, 40px);
    padding-right: clamp(24px, 2.2vw, 40px);
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .how-many-stage {
    position: relative;
    width: min(100%, 760px);
    min-height: clamp(300px, 23vw, 360px);
    margin: 22px auto 0;
    border-radius: 34px;
    overflow: hidden;
    background: var(--figma-orange-red);
    box-shadow: none;
    clip-path: none;
  }

  .how-many-carton {
    left: 28%;
    top: 6%;
    width: clamp(164px, 11.2vw, 196px);
    transform: rotate(-3deg);
  }

  .how-many-glass {
    left: 42%;
    top: 22%;
    width: clamp(152px, 10.2vw, 182px);
    transform: rotate(4deg);
  }

  .how-many-badge {
    right: 5%;
    top: 6%;
    width: clamp(118px, 8.8vw, 150px);
  }

  .how-many-arrow {
    right: 12%;
    bottom: 17%;
    width: clamp(96px, 7vw, 122px);
  }

  .how-many-handwriting {
    bottom: 10px;
    z-index: 4;
    font-size: clamp(2.2rem, 3.1cqi, 3.2rem);
    line-height: 0.82;
  }

  .floating-top-logo {
    top: clamp(8px, 1vw, 16px);
    width: clamp(148px, 12vw, 220px);
  }

  .floating-awa-badge {
    right: clamp(14px, 1.6vw, 28px);
    bottom: clamp(12px, 1.4vw, 24px);
    width: clamp(190px, 14vw, 260px);
  }

  .lp-shell {
    padding: 32px 0;
  }

  .lp-artboard {
    width: min(100vw - 96px, var(--artboard-desktop-max));
    clip-path: inset(0 -100vmax -64px -100vmax round 12px);
  }

  .coming-soon {
    padding: 48px 0 24px;
  }

  .lp-footer-cta {
    position: relative;
    z-index: 5;
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .footer-brand {
    min-height: max(430px, 100svh);
    overflow: visible;
  }

  .insta-strip-scroller {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .insta-strip-track {
    grid-auto-columns: calc(33vw - 24px);
    gap: 24px;
    padding: 0 36px 0 0;
  }

  .insta-card {
    min-height: 300px;
  }

  .insta-card:first-child {
    margin-left: 36px;
  }

  .footer-brand-splash {
    left: -8%;
    bottom: -380px;
    width: 116%;
  }

  .footer-brand-mascot {
    bottom: 4px;
  }

  .footer-brand-wordmark {
    bottom: -24px;
    gap: 18px;
  }

  .modal-content {
    width: min(100vw - 96px, 560px);
  }

  .commitment-copy {
    width: 78%;
  }

  .commitment-pill {
    font-size: clamp(1.44rem, 2.85cqi, 1.96rem);
    line-height: 1;
  }

  .commitment-list li {
    font-size: clamp(1.42rem, 2.45cqi, 1.92rem);
    line-height: 1.08;
    -webkit-text-stroke: 0.92px rgba(240, 238, 233, 0.98);
    text-shadow:
      0.92px 0 0 rgba(240, 238, 233, 0.98),
      -0.92px 0 0 rgba(240, 238, 233, 0.98),
      0 0.92px 0 rgba(240, 238, 233, 0.98),
      0 -0.92px 0 rgba(240, 238, 233, 0.98);
  }

  .commitment {
    overflow: visible;
    clip-path: inset(0 -200vmax -200vmax -200vmax);
  }

  .commitment-beans {
    width: 140vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .what-is-content {
    gap: clamp(28px, 3.3cqi, 42px);
  }

  .what-is-header {
    min-height: clamp(176px, 21.5cqi, 224px);
  }

  .what-is-title {
    font-size: clamp(7rem, 14.1cqi, 8.9rem);
    transform: translateY(12px);
  }

  .what-is-copy {
    max-inline-size: clamp(360px, 45cqi, 460px);
  }

  .what-is-brand {
    max-inline-size: clamp(332px, 39.8cqi, 418px);
    gap: clamp(14px, 1.7cqi, 20px);
  }

  .what-is-logo {
    max-width: clamp(192px, 22.6cqi, 236px);
  }

  .what-is-kicker {
    font-size: clamp(1.9rem, 3.55cqi, 2.42rem);
    transform: translateY(-5px);
  }

  .what-is-description {
    margin-top: clamp(18px, 2cqi, 26px);
  }

  .what-is-description-line {
    max-inline-size: 15.8em;
    font-size: clamp(1.3rem, 3.05cqi, 1.86rem);
  }

  .what-is-handwriting {
    margin-top: clamp(28px, 3.1cqi, 40px);
    font-size: clamp(2.45rem, 4.75cqi, 3.55rem);
    line-height: 0.8;
    letter-spacing: 0.028em;
    transform: rotate(-1.8deg) scaleX(0.97);
  }

  .what-is-scribble {
    right: clamp(54px, 6.1cqi, 82px);
    top: clamp(24px, 2.8cqi, 38px);
    width: clamp(112px, 13.1cqi, 140px);
  }

  .goods-grid {
    margin-top: clamp(-110px, -11.5cqi, -84px);
    background: transparent;
    isolation: isolate;
  }

  .goods-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cream);
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
    z-index: -1;
    pointer-events: none;
  }

  .goods-store-badge,
  .goods-store-model {
    display: none;
  }

  .goods-card--tee .goods-card-panel {
    min-height: clamp(344px, 37cqi, 420px);
    clip-path: inset(-360px 0 0 0);
  }

  .goods-card-panel--tee::before {
    left: 12%;
    top: clamp(12px, 1cqi, 18px);
    width: 102%;
    height: 98%;
    border-radius: 0 0 40px 40px;
  }

  .goods-card--tee .goods-card-badge {
    left: 5%;
    top: clamp(-34px, -2.6cqi, -12px);
    width: clamp(198px, 21.2cqi, 252px);
  }

  .goods-card--tee .goods-card-model {
    right: -6%;
    bottom: clamp(20px, 2.2cqi, 38px);
    width: clamp(500px, 55.5cqi, 650px);
  }

  .goods-card--tee .goods-card-name {
    left: 30%;
    bottom: clamp(54px, 5.6cqi, 84px);
    font-size: clamp(4.7rem, 6.6cqi, 5.9rem);
  }

  .goods-card--coin {
    left: -1%;
    top: clamp(-70px, -7.2cqi, -42px);
    width: 64%;
  }

  .goods-card--coin .goods-card-panel {
    min-height: clamp(286px, 30.8cqi, 352px);
    border-radius: 22px;
  }

  .goods-card--coin .goods-card-name {
    left: 7%;
    top: clamp(18px, 1.7cqi, 22px);
    font-size: clamp(3.7rem, 5cqi, 4.8rem);
  }

  .goods-card--glass .goods-card-name {
    font-size: clamp(3.7rem, 5cqi, 4.8rem);
  }

  .goods-card-coin {
    left: -28%;
    bottom: -60%;
    width: 120%;
  }

  .areyou-stage {
    overflow: visible;
    min-height: clamp(510px, 54cqi, 620px);
  }

  .areyou-cloud--left {
    left: -0.2%;
    top: clamp(18px, 1.6cqi, 24px);
    width: clamp(164px, 18.6cqi, 222px);
  }

  .areyou-cloud--right {
    right: clamp(184px, 19.2cqi, 248px);
    top: clamp(344px, 37.5cqi, 412px);
    width: clamp(196px, 20.6cqi, 248px);
  }

  .areyou-brush {
    left: -22%;
    top: clamp(102px, 11.4cqi, 136px);
    width: 127%;
  }

  .areyou-copy {
    left: clamp(88px, 9.4cqi, 118px);
    top: clamp(164px, 18.3cqi, 210px);
    width: clamp(560px, 63cqi, 712px);
  }

  .areyou-copy::before {
    left: -5%;
    top: clamp(-14px, -1.3cqi, -6px);
    width: clamp(432px, 74cqi, 586px);
    height: clamp(140px, 16.8cqi, 192px);
  }

  .areyou-kicker {
    max-inline-size: 12.4em;
    font-size: clamp(2.18rem, 4.2cqi, 3rem);
  }

  .areyou-title {
    margin-top: clamp(26px, 2.8cqi, 34px);
    font-size: clamp(4.9rem, 8.7cqi, 6.5rem);
    line-height: 0.86;
  }

  .areyou-glass {
    right: -8%;
    top: clamp(-126px, -10.8cqi, -56px);
    width: clamp(320px, 35.8cqi, 410px);
  }

  /* HOW TO DRINK: fill card height at PC */
  .drink-card {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(18px, 2cqi, 24px);
    padding: clamp(18px, 1.9cqi, 22px) clamp(18px, 1.9cqi, 22px) clamp(16px, 1.7cqi, 18px);
  }

  .drink-card:nth-of-type(2) {
    margin-top: clamp(-314px, -32.2cqi, -260px);
  }

  .drink-card:nth-of-type(3) {
    margin-top: clamp(-270px, -27.8cqi, -220px);
  }

  .drink-card-copy {
    padding-top: clamp(4px, 0.5cqi, 8px);
  }

  .drink-card-tag {
    margin-bottom: clamp(12px, 1.2cqi, 16px);
    padding: clamp(6px, 0.7cqi, 10px) 0 clamp(6px, 0.7cqi, 10px) clamp(34px, 3.3cqi, 46px);
    font-size: clamp(2.36rem, 3.95cqi, 3.1rem);
    transform: rotate(-2.4deg);
  }

  .drink-card-tag--night {
    width: clamp(300px, 34cqi, 370px);
    min-width: clamp(300px, 34cqi, 370px);
    min-height: clamp(74px, 8.6cqi, 96px);
  }

  .drink-card-tag--bar {
    width: clamp(345px, 39cqi, 430px);
    min-width: clamp(345px, 39cqi, 430px);
    min-height: clamp(78px, 8.9cqi, 100px);
    padding-top: clamp(10px, 1.05cqi, 14px);
    padding-left: clamp(40px, 4cqi, 52px);
  }

  .drink-card-tag--club {
    width: clamp(255px, 29cqi, 325px);
    min-width: clamp(255px, 29cqi, 325px);
    min-height: clamp(72px, 8.2cqi, 92px);
    padding-top: clamp(10px, 1cqi, 13px);
    padding-left: clamp(38px, 3.7cqi, 48px);
  }

  .drink-card-lead,
  .drink-card--dark .drink-card-lead {
    font-size: clamp(1.42rem, 2.15cqi, 1.92rem);
    margin-bottom: clamp(14px, 1.3cqi, 18px);
    line-height: 1.02;
  }

  .drink-specs dt,
  .drink-specs dd {
    font-size: clamp(1.82rem, 2.75cqi, 2.35rem);
    line-height: 0.98;
  }

  .drink-specs div {
    grid-template-columns: max-content max-content;
    gap: clamp(0.85rem, 1.25cqi, 1.15rem);
  }

  .drink-card-note {
    font-size: clamp(0.92rem, 1.25cqi, 1.08rem);
  }

  .drink-card-notes {
    margin-top: clamp(12px, 1.2cqi, 16px);
  }

  .drink-card-art {
    min-height: clamp(244px, 28cqi, 340px);
    padding-right: clamp(10px, 1.25cqi, 18px);
  }

  .drink-card--dark .drink-card-art img {
    width: 96%;
  }

  .drink-card--light .drink-card-art img {
    width: 94%;
  }

  .drink-card--accent .drink-card-art img {
    width: 93%;
  }

  .what-is::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #cf4731;
    box-shadow: 0 0 0 100vmax #cf4731;
    clip-path: inset(0 -100vmax);
    pointer-events: none;
  }

  .what-is::after {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
  }

  .how-many {
    overflow: visible;
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .how-many-stage {
    width: min(100%, 840px);
    min-height: 380px;
    margin: 24px auto 0;
    border-radius: 36px;
    background: var(--figma-orange-red);
    box-shadow: none;
    clip-path: none;
  }

  .how-many-carton {
    left: 28%;
    top: 6%;
    width: 198px;
  }

  .how-many-glass {
    left: 42%;
    top: 22%;
    width: 192px;
  }

  .how-many-badge {
    right: 5%;
    top: 6%;
    width: 156px;
  }

  .how-many-arrow {
    right: 7%;
    bottom: 22%;
    width: 122px;
  }

  .how-many-handwriting {
    bottom: 12px;
    font-size: 3.3rem;
  }

  .areyou {
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .insta-strip {
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .coming-soon {
    overflow: visible;
    box-shadow: 0 0 0 100vmax var(--cream);
    clip-path: inset(0 -100vmax);
  }

  .same-base {
    background: var(--black);
    padding: clamp(40px, 4.5cqi, 64px) clamp(20px, 2cqi, 36px);
  }

  .same-base-lockup {
    width: 100%;
    margin: 0;
  }

  .same-base-line--top {
    font-size: clamp(7rem, 17cqi, 12rem);
  }

  .same-base-line--bottom {
    font-size: clamp(6.7rem, 16.2cqi, 11.5rem);
  }

  .lp-inline-cta--dark {
    background: var(--black);
  }

  .hero-main {
    min-height: clamp(640px, 74cqi, 780px);
    padding-top: clamp(12px, 1.5cqi, 18px);
    overflow: visible;
  }

  .hero-logo {
    top: clamp(10px, 1.2cqi, 14px);
    width: clamp(120px, 13.5cqi, 146px);
  }

  .hero-wordmark {
    inset: clamp(88px, 10cqi, 122px) -6% auto;
    line-height: 0.82;
    letter-spacing: -0.15em;
  }

  .hero-wordmark span:first-child,
  .hero-wordmark span:last-child {
    font-size: clamp(13.5rem, 21cqi, 18.5rem);
  }

  .hero-wordmark span:first-child {
    transform: scaleX(1.12);
  }

  .hero-wordmark span:last-child {
    margin-top: clamp(14px, 3cqi, 24px);
    transform: scaleX(1.1);
  }

  .hero-mascot {
    top: clamp(142px, 16.7cqi, 198px);
    width: clamp(188px, 22.6cqi, 246px);
  }

  .hero-copy {
    bottom: clamp(22px, 3.6cqi, 36px);
  }

  .hero-lead {
    font-size: clamp(1.95rem, 2.9cqi, 2.7rem);
    letter-spacing: 0.03em;
    transform: scaleX(1.08);
  }
}
