/* ═══════════════════════════════════════════════════
   CHAGEE — Design Tokens
   Deep Forest · Gold · Matcha
   ═══════════════════════════════════════════════════ */
:root {
  --bg:        #08110A;
  --bg-2:      #0F1B10;
  --surface:   #172318;
  --surface-2: #1F3021;

  --gold:      #C8973D;
  --gold-l:    #E2C07A;
  --gold-d:    rgba(200,151,61,0.14);
  --matcha:    #6BB56B;
  --matcha-d:  rgba(107,181,107,0.14);

  --cream:     #F2EDE3;
  --cream-70:  rgba(242,237,227,0.70);
  --cream-35:  rgba(242,237,227,0.35);
  --cream-12:  rgba(242,237,227,0.12);
  --cream-06:  rgba(242,237,227,0.06);
  --line:      rgba(242,237,227,0.065);

  --f-serif: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --f-cn:    'Noto Serif SC', 'STSong', 'Songti SC', 'SimSun', serif;
  --f-body:  'Jost', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.4, 0, 0.2, 1);

  --hero-bg: #0D1225;
}

/* ═══════════════════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ═══════════════════════════════════════════════════
   Noise Grain Overlay
   ═══════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.024;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   Scroll Progress
   ═══════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-l));
  z-index: 200;
  transition: width 0.08s linear;
}

/* ═══════════════════════════════════════════════════
   Custom Cursor
   ═══════════════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              background 0.25s;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--cream-35);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              border-color 0.3s;
}

.cursor-dot.expand {
  width: 10px;
  height: 10px;
  background: var(--gold-l);
}

.cursor-ring.expand {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease-io),
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(8, 17, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-seal {
  width: 36px;
  height: 36px;
  opacity: 0.8;
  flex-shrink: 0;
}

.logo-en {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--cream);
}

.logo-sep {
  display: block;
  width: 1px;
  height: 14px;
  background: var(--cream-35);
  flex-shrink: 0;
}

.logo-cn {
  font-family: var(--f-cn);
  font-size: 13px;
  color: var(--cream-70);
  letter-spacing: 0.06em;
}

.nav-cta {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--cream-35);
  padding: 10px 22px;
  border-radius: 100px;
  cursor: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #07100A;
}

/* ═══════════════════════════════════════════════════
   Hero — Full-screen video + floating text
   ═══════════════════════════════════════════════════ */
.hero {
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}



.hero-cup-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
  will-change: transform;
}

.hero-cup-img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200, 151, 61, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

/* ─ Oversized background characters ─ */
.hero-bg-char {
  position: absolute;
  font-family: var(--f-cn);
  font-size: clamp(320px, 44vw, 700px);
  font-weight: 700;
  color: rgba(242, 237, 227, 0.07);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 2;
}

.hero-bg-char--l { left: -5vw; }
.hero-bg-char--r { right: -5vw; }

/* ─ Side vignettes ─ */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32%;
  z-index: 3;
  pointer-events: none;
}

.hero::before {
  left: 0;
  background: linear-gradient(to right, rgba(8,17,10,0.72) 0%, transparent 100%);
}

.hero::after {
  right: 0;
  background: linear-gradient(to left, rgba(8,17,10,0.72) 0%, transparent 100%);
}

/* ─ Left text overlay — upper-left corner ─ */
.hero-text-left {
  position: absolute;
  left: clamp(40px, 5vw, 80px);
  top: clamp(96px, 11vh, 128px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: heroFadeL 2s var(--ease-out) 2s forwards;
}

@keyframes heroFadeL {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: none; }
}

.hero-txt-eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-70);
  margin-bottom: 14px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

.hero-txt-line {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(48px, 5.6vw, 90px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-shadow: 0 0 40px rgba(0,0,0,0.9);
}

/* ─ Right text overlay — upper-right corner ─ */
.hero-text-right {
  position: absolute;
  right: clamp(40px, 5vw, 80px);
  top: clamp(96px, 11vh, 128px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  animation: heroFadeR 2s var(--ease-out) 2.2s forwards;
}

@keyframes heroFadeR {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}

@keyframes sideReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-txt-cn {
  font-family: var(--f-cn);
  font-size: clamp(28px, 3vw, 48px);
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(0,0,0,0.9);
}

.hero-txt-est {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-35);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* ─ Scroll indicator ─ */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-text {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-35);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.5s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1) translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   Marquee
   ═══════════════════════════════════════════════════ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeRoll 36s linear infinite;
}

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

.marquee-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-35);
}

.marquee-track .marquee-cn {
  font-family: var(--f-cn);
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--gold);
  text-transform: none;
}

.marquee-track .marquee-dot {
  color: var(--gold);
  opacity: 0.3;
  font-size: 10px;
}

/* ═══════════════════════════════════════════════════
   Pillars — Bento Card Grid
   ═══════════════════════════════════════════════════ */
.pillars {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 48px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.pillar-card {
  background: var(--surface);
  border-top: 2px solid var(--gold);
  padding: 56px 52px 60px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease-io);
}

.pillar-card:hover {
  background: var(--surface-2);
}

.pillar-card--wide {
  grid-column: 1 / -1;
  border-top-color: var(--gold-l);
}

.pillar-card-ghost {
  position: absolute;
  right: -0.05em;
  bottom: -0.18em;
  font-family: var(--f-cn);
  font-size: clamp(180px, 20vw, 340px);
  font-weight: 700;
  color: rgba(200,151,61,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pillar-card-num {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.pillar-card-title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.pillar-card-desc {
  font-size: 15px;
  color: var(--cream-70);
  line-height: 1.72;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════
   Feature: The Source — Full-bleed editorial
   ═══════════════════════════════════════════════════ */
.feature {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-img-wrap {
  position: absolute;
  inset: 0;
}

.feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.feature:hover .feature-img {
  transform: scale(1.04);
}

.feature-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,17,10,0.97) 0%,
    rgba(8,17,10,0.88) 30%,
    rgba(8,17,10,0.52) 56%,
    rgba(8,17,10,0.08) 82%,
    rgba(8,17,10,0) 100%
  );
  z-index: 1;
}

.feature-bg-char {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-cn);
  font-size: clamp(180px, 26vw, 460px);
  font-weight: 700;
  color: rgba(200,151,61,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.feature-content {
  position: relative;
  z-index: 3;
  padding: clamp(80px, 10vh, 140px) clamp(40px, 5vw, 80px);
  max-width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.feature-title {
  font-family: var(--f-serif);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.feature-title em {
  font-style: italic;
  color: var(--cream);
}

.feature-text {
  font-size: 16px;
  line-height: 1.78;
  color: var(--cream-70);
  max-width: 420px;
  margin-bottom: 40px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--matcha);
  border: 1px solid rgba(107,181,107,0.28);
  padding: 7px 16px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════
   Signature Drinks — Editorial List
   ═══════════════════════════════════════════════════ */
.drinks {
  position: relative;
  max-width: 100%;
  padding: 110px 0;
  overflow: hidden;
}

.drinks::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/cup-pattern/pattern-v4.png');
  background-size: 480px auto;
  background-repeat: repeat;
  opacity: 0.045;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.drinks-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.drinks-header {
  margin-bottom: 56px;
}

.drinks-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  margin-top: 14px;
  letter-spacing: -0.02em;
}

.drinks-list {
  border-top: 1px solid var(--line);
}

.drink-item {
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  position: relative;
  cursor: none;
  transition: background 0.3s var(--ease-io);
}

.drink-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
}

.drink-item:hover {
  background: rgba(242, 237, 227, 0.018);
}

.drink-item:hover::before {
  transform: scaleY(1);
}

.drink-item:hover .drink-item-name {
  color: var(--gold-l);
}

.drink-item:hover .drink-item-cn {
  opacity: 0.85;
}

.drink-item:hover .drink-item-arrow {
  transform: translate(4px, -4px);
  color: var(--gold);
}

.drink-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 16px;
}

.drink-item-left {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.drink-item-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.drink-item-num {
  font-family: var(--f-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
}

.drink-item-name {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
  transition: color 0.3s var(--ease-io);
}

.drink-item-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #07100A;
  background: var(--gold);
  padding: 4px 11px;
  border-radius: 100px;
  flex-shrink: 0;
  align-self: center;
  line-height: 1.4;
}

.drink-item-badge--new {
  background: var(--matcha);
}

.drink-item-cn {
  font-family: var(--f-cn);
  font-size: clamp(22px, 2.6vw, 38px);
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.45;
  transition: opacity 0.3s var(--ease-io);
}

.drink-item-arrow {
  color: var(--cream-35);
  transition: transform 0.3s var(--ease-out), color 0.3s;
  flex-shrink: 0;
}

.drink-item-bottom {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding-left: 52px;
}

.drink-item-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--cream-70);
  max-width: 520px;
}

.drink-item-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-35);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   Quote Section
   ═══════════════════════════════════════════════════ */
.quote-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 48px;
  background: linear-gradient(135deg, #0D2015 0%, #162B18 50%, #0B1A0D 100%);
}

.quote-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.quote-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,17,10,0.6), rgba(8,17,10,0.72));
}

.quote-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.1);
  z-index: 0;
}

.quote-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.42);
}

.quote-bg-img--fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.quote-pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/cup-pattern/pattern-v4.png');
  background-size: 520px auto;
  background-repeat: repeat;
  opacity: 0.07;
  mix-blend-mode: luminosity;
  z-index: 1;
}

.quote-block {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.quote-text {
  font-family: var(--f-serif);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.quote-text em {
  font-style: italic;
}

.quote-cite {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   Store CTA
   ═══════════════════════════════════════════════════ */
.stores-cta {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-2);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/cup-pattern/pattern-v4.png');
  background-size: 500px auto;
  background-repeat: repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-headline {
  font-family: var(--f-cn);
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 16px 0 40px;
}

.cta-regions {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-35);
  margin-bottom: 44px;
}

.cta-btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #07100A;
  background: var(--gold);
  padding: 14px 40px;
  border-radius: 100px;
  cursor: none;
  transition: background 0.22s;
}

.cta-btn:hover {
  background: var(--gold-l);
}

/* ═══════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 48px 44px;
  overflow: hidden;
}

.footer-giant {
  font-family: var(--f-serif);
  font-size: clamp(80px, 20vw, 300px);
  font-weight: 700;
  color: var(--cream-06);
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.footer-seal {
  width: clamp(72px, 8vw, 110px);
  height: clamp(72px, 8vw, 110px);
  opacity: 0.55;
  margin: 32px auto 0;
  display: block;
}

.footer-cn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 64px;
}

.footer-cn-text {
  font-family: var(--f-cn);
  font-size: clamp(18px, 2.4vw, 30px);
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-est {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-35);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream-35);
}

/* ═══════════════════════════════════════════════════
   Scroll Reveal
   ═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out),
              transform 0.85s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════
   Responsive — Tablet
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner { padding: 20px 32px; }
  .hero-text-left, .hero-text-right { padding: 0 28px; }
  .pillars { padding: 80px 32px; }
  .pillar-card { padding: 44px 40px 48px; }
  .feature-content { max-width: 62%; padding: 80px 48px; }
  .drinks { padding: 80px 0; }
  .drinks-inner { padding: 0 32px; }
  .cta-inner { padding: 60px 32px; }
  footer { padding: 72px 32px 40px; }
}

/* ═══════════════════════════════════════════════════
   Responsive — Mobile
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .nav-inner { padding: 16px 20px; }
  .logo-sep, .logo-cn { display: none; }

  .hero-cup-video { display: none; }
  .hero-cup-img { display: block; }
  .hero-bg-char { display: none; }
  .hero::before, .hero::after { display: none; }

  .hero-txt-line { font-size: clamp(44px, 12vw, 80px); }
  .hero-text-left { left: 24px; top: 88px; }
  .hero-text-right { display: none; }

  .pillars { padding: 64px 24px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card--wide { grid-column: 1; }
  .pillar-card { padding: 40px 32px 44px; }
  .pillar-card-ghost { font-size: clamp(140px, 36vw, 240px); }

  .feature { min-height: auto; min-height: 90vw; }
  .feature-img-wrap::after {
    background: linear-gradient(
      to top,
      rgba(8,17,10,0.97) 0%,
      rgba(8,17,10,0.85) 35%,
      rgba(8,17,10,0.3) 65%,
      rgba(8,17,10,0) 88%
    );
  }
  .feature-bg-char { display: none; }
  .feature-content { max-width: 100%; justify-content: flex-end; padding: 48px 24px; }

  .drinks { padding: 64px 0; }
  .drinks-inner { padding: 0 24px; }
  .cta-inner { padding: 60px 24px; }
  .cta-headline { font-size: clamp(56px, 14vw, 100px); }
  .drink-item { padding: 36px 0; }
  .drink-item-top { flex-direction: column; gap: 10px; align-items: flex-start; }
  .drink-item-right { gap: 14px; }
  .drink-item-name { font-size: clamp(22px, 6vw, 32px); }
  .drink-item-cn { font-size: clamp(18px, 4.5vw, 26px); }
  .drink-item-bottom { padding-left: 0; flex-direction: column; gap: 6px; }

  .quote-section { padding: 80px 24px; min-height: 50vh; }
  .stores-cta { padding: 80px 24px; }
  footer { padding: 56px 24px 36px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   Reduced Motion
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track { animation: none; }
  .hero-text-left, .hero-text-right { animation: none; opacity: 1; transform: none !important; }

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