/* ==========================================================================
   AVERA SIP • TAKE A SIP OF LIFE
   Premium FMCG Bottled Water Mobile-First Cinematic Experience
   Parent Company: Genix Agro (Subtle / Secondary)
   Color System: Avera Sip Red × Warm Ivory/Cream × Deep Charcoal Accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Red */
  --brand-red: #C81D25;
  --brand-red-dark: #9B1219;
  --brand-red-bright: #E22831;
  --brand-red-tint: rgba(200, 29, 37, 0.08);
  --brand-red-glow: rgba(200, 29, 37, 0.2);

  /* Warm Cream & Ivory Atmosphere */
  --bg-ivory: #FAF8F5;
  --bg-cream: #F4EFE6;
  --bg-sand: #ECE5D8;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-dark: #0A0B0A;
  --bg-dark-card: #141514;

  /* Typography Colors */
  --text-dark: #141514;
  --text-body: #343633;
  --text-muted: #6E706B;
  --text-faint: #9EA09A;
  --text-light: #FAF8F5;

  /* Borders & Shadows */
  --border-delicate: rgba(20, 21, 20, 0.07);
  --border-cream: rgba(200, 29, 37, 0.12);
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 16px 40px rgba(20, 21, 20, 0.04);
  --shadow-editorial: 0 25px 60px rgba(20, 21, 20, 0.08);
  --shadow-bottle: 0 45px 90px rgba(20, 21, 20, 0.18);

  /* Typography Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-brand: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Easing & Curves */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 0.25s ease;
  --transition-med: 0.5s var(--ease-editorial);
  --transition-slow: 0.9s var(--ease-editorial);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Standards (Zero Horizontal Overflow)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

body.is-loading * {
  transition: none !important;
}

::selection {
  background: var(--brand-red);
  color: #FFFFFF;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
}

/* --------------------------------------------------------------------------
   3. Minimal Scroll Progress Indicator
   -------------------------------------------------------------------------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--brand-red);
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 0 8px var(--brand-red);
  transition: width 0.08s linear;
}

/* Typography Utilities */
.text-red {
  color: var(--brand-red) !important;
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.d-block {
  display: block;
}

.d-none {
  display: none !important;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1.2rem;
}

/* --------------------------------------------------------------------------
   4. Ambient Scene Atmosphere
   -------------------------------------------------------------------------- */
.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  transition: transform 0.4s ease-out;
}

.glow-red {
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(200, 29, 37, 0.08) 0%, transparent 70%);
  top: 15%;
  right: -10%;
}

.glow-cream {
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle, rgba(236, 229, 216, 0.9) 0%, transparent 70%);
  bottom: 15%;
  left: -15%;
}

.natural-grain {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 16px 16px;
}

/* --------------------------------------------------------------------------
   5. Minimal Brand Bar (Safe Area Compliant)
   -------------------------------------------------------------------------- */
.brand-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: max(1.8rem, env(safe-area-inset-top)) clamp(20px, 6vw, 3.5rem) 1rem;
}

.brand-bar-inner {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-bar-logo {
  height: clamp(32px, 6vw, 42px);
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-bar-logo:hover {
  transform: scale(1.02);
}

.brand-bar-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.parent-prefix {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  line-height: 1.1;
}

.parent-name {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. Section 1: Hero Viewport
   -------------------------------------------------------------------------- */
.section-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(5.5rem, calc(env(safe-area-inset-top) + 4rem)) clamp(20px, 6vw, 3.5rem) max(2rem, env(safe-area-inset-bottom));
  overflow: hidden;
}

.hero-inner-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  will-change: transform, opacity;
}

.hero-container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.mark-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red);
}

.mark-label {
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand-red);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 11vw, 7.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.headline-block {
  display: block;
}

.hero-subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 1rem;
  max-width: 540px;
  line-height: 1.35;
}

.hero-lead-note {
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
}

.meta-parent {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Hero Bottle Stage */
.hero-bottle-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-bottle-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: clamp(340px, 50vh, 600px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stage-aura {
  position: absolute;
  width: min(460px, 85vw);
  height: min(460px, 85vw);
  background: radial-gradient(circle, rgba(200, 29, 37, 0.12) 0%, rgba(244, 239, 230, 0.6) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.bottle-holder {
  position: relative;
  z-index: 2;
  height: 94%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease-out;
}

.hero-bottle-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(20, 21, 20, 0.18));
  animation: float-gentle 6s infinite ease-in-out;
}

.bottle-floor-shadow {
  position: absolute;
  bottom: 10px;
  width: min(240px, 60vw);
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(20, 21, 20, 0.25) 0%, rgba(20, 21, 20, 0.04) 50%, transparent 80%);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 1;
  animation: float-shadow 6s infinite ease-in-out;
}

/* Scroll Cue */
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  z-index: 10;
}

.cue-text {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.cue-line {
  width: 2px;
  height: 28px;
  background: rgba(20, 21, 20, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.cue-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--brand-red);
  border-radius: 2px;
  animation: cue-slide 2s infinite ease-in-out;
}

/* --------------------------------------------------------------------------
   7. Section 2: Product Reveal
   -------------------------------------------------------------------------- */
.section-reveal {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem clamp(20px, 6vw, 3.5rem);
  background: linear-gradient(180deg, var(--bg-ivory) 0%, var(--bg-cream) 50%, var(--bg-ivory) 100%);
}

.reveal-container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}

.reveal-header {
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.reveal-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.reveal-intro {
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.reveal-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.editorial-block {
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-editorial);
  backdrop-filter: blur(12px);
}

.block-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-red);
  display: block;
  margin-bottom: 0.75rem;
}

.editorial-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.editorial-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.reveal-bottle-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(340px, 45vh, 560px);
}

.reveal-backlight {
  position: absolute;
  width: min(380px, 80vw);
  height: min(380px, 80vw);
  background: radial-gradient(circle, rgba(200, 29, 37, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.reveal-watermark {
  position: absolute;
  font-family: var(--font-brand);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 700;
  color: rgba(20, 21, 20, 0.03);
  letter-spacing: 0.25em;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.reveal-bottle-img {
  max-height: clamp(320px, 45vh, 540px);
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 40px rgba(20, 21, 20, 0.2));
  transition: transform 0.25s var(--ease-editorial);
}

/* --------------------------------------------------------------------------
   8. Section 3: Brand Story (Vertical Mobile Flow)
   -------------------------------------------------------------------------- */
.section-story {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem clamp(20px, 6vw, 3.5rem);
  background: var(--bg-cream);
}

.story-container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.story-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s var(--ease-editorial), transform 0.9s var(--ease-editorial);
  will-change: transform, opacity;
}

.story-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s var(--ease-editorial), transform 0.9s var(--ease-editorial);
  will-change: transform, opacity;
}

.story-slide-left.revealed,
.story-slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.story-photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
  background: var(--bg-ivory);
}

.story-photo-img {
  width: 100%;
  height: auto;
  max-height: clamp(340px, 48vh, 560px);
  object-fit: cover;
  transition: transform 0.8s var(--ease-editorial);
}

.story-photo-frame:hover .story-photo-img {
  transform: scale(1.02);
}

.story-photo-badge {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  background: rgba(250, 248, 245, 0.95);
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.photo-badge-logo {
  height: 28px;
  width: auto;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.story-pull-quote {
  border-left: 3px solid var(--brand-red);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.story-pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
}

.story-body {
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}

.story-signature {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sig-brand {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand-red);
}

.sig-parent {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   9. Full-Bleed Cinematic Video Viewports (100svh Snap)
   -------------------------------------------------------------------------- */
.section-film-viewport {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  background: #000000;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.film-viewport-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.97);
  opacity: 0.85;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
}

.film-viewport-stage.in-view {
  transform: scale(1);
  opacity: 1;
}

.film-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.video-film-1 {
  object-position: center center;
}

.video-film-2 {
  object-position: center center;
}

/* Vignette */
.film-cinematic-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.45) 80%, rgba(0, 0, 0, 0.8) 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

/* Staggered Cinematic Text Reveal */
.film-overlay-brand {
  position: absolute;
  top: max(2.5rem, calc(env(safe-area-inset-top) + 1.5rem));
  left: clamp(20px, 6vw, 3.5rem);
  z-index: 5;
  pointer-events: none;
}

.film-pill-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand-red-bright);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s var(--ease-editorial) 0.1s, transform 0.7s var(--ease-editorial) 0.1s;
}

.film-brand-tag {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.2rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s var(--ease-editorial) 0.25s, transform 0.7s var(--ease-editorial) 0.25s;
}

.film-brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s var(--ease-editorial) 0.4s, transform 0.8s var(--ease-editorial) 0.4s;
}

.film-viewport-stage.in-view .film-pill-tag,
.film-viewport-stage.in-view .film-brand-tag,
.film-viewport-stage.in-view .film-brand-title {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Controls (Touch target >= 44x44px) */
.film-controls-floating {
  position: absolute;
  bottom: max(2.5rem, calc(env(safe-area-inset-bottom) + 1.5rem));
  right: clamp(20px, 6vw, 3.5rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.film-round-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.film-round-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   10. Section 5: Product Showcase / Moment
   -------------------------------------------------------------------------- */
.section-showcase {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem clamp(20px, 6vw, 3.5rem);
  background: var(--bg-ivory);
}

.showcase-container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}

.showcase-header {
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.showcase-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.showcase-sub {
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: var(--text-muted);
}

.showcase-stage {
  position: relative;
  min-height: clamp(360px, 50vh, 640px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-aura {
  position: absolute;
  width: min(460px, 85vw);
  height: min(460px, 85vw);
  background: radial-gradient(circle, rgba(200, 29, 37, 0.12) 0%, rgba(244, 239, 230, 0.6) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.showcase-bottle-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.showcase-bottle-img {
  max-height: clamp(320px, 48vh, 560px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(20, 21, 20, 0.2));
  transition: transform 0.3s var(--ease-editorial);
}

.showcase-floor-shadow {
  position: absolute;
  bottom: 15px;
  width: min(250px, 60vw);
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(20, 21, 20, 0.25) 0%, rgba(20, 21, 20, 0.04) 50%, transparent 80%);
  border-radius: 50%;
  filter: blur(7px);
  z-index: 1;
}

.showcase-details {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.detail-item {
  pointer-events: auto;
  max-width: 320px;
  padding: clamp(1.2rem, 3.5vw, 2rem);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-editorial);
  backdrop-filter: blur(12px);
}

.detail-index {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-red);
  display: block;
  margin-bottom: 0.4rem;
}

.detail-item h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.detail-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Section 7: Final Coming Soon / Launch
   -------------------------------------------------------------------------- */
.section-launch {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem clamp(20px, 6vw, 3.5rem);
  background: var(--bg-cream);
}

.launch-container {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.launch-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-editorial);
  backdrop-filter: blur(20px);
}

.launch-logo-wrap {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.launch-logo {
  height: clamp(52px, 12vw, 72px);
  width: auto;
  object-fit: contain;
}

.launch-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.launch-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.8vw, 1.5rem);
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.launch-parent-line {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   12. Editorial Mobile/Desktop Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: #0A0B0A;
  color: #FFFFFF;
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(20px, 6vw, 3.5rem) max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #B0B0B0;
}

.footer-parent-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #707070;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.25rem;
}

.footer-copy {
  font-size: 0.76rem;
  color: #606060;
}

/* --------------------------------------------------------------------------
   13. Animations & Motion System
   -------------------------------------------------------------------------- */
@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

@keyframes float-shadow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(0.88);
    opacity: 0.45;
  }
}

@keyframes cue-slide {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(200%);
  }
}

.reveal-elem {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-editorial), transform 0.85s var(--ease-editorial);
}

.reveal-elem.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   14. Accessibility: Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-elem,
  .story-slide-left,
  .story-slide-right,
  .film-pill-tag,
  .film-brand-tag,
  .film-brand-title {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   15. Mobile & Tablet Specific Breakpoints (Desktop is Frozen)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-brand-mark, .hero-meta {
    justify-content: center;
  }

  .hero-subhead, .hero-lead-note {
    margin-left: auto;
    margin-right: auto;
  }

  .reveal-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reveal-bottle-center {
    order: -1;
    min-height: 400px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .showcase-stage {
    min-height: auto;
    flex-direction: column;
    gap: 2.5rem;
  }

  .showcase-details {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
  }

  .detail-item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .brand-bar {
    padding: max(1.2rem, env(safe-area-inset-top)) clamp(20px, 5vw, 24px) 0.8rem;
  }

  .brand-bar-logo {
    height: 34px;
  }

  .section-hero {
    padding: max(4.8rem, calc(env(safe-area-inset-top) + 3.8rem)) clamp(20px, 5vw, 24px) max(1.8rem, env(safe-area-inset-bottom));
  }

  .hero-container {
    gap: 1.8rem;
  }

  .hero-headline {
    font-size: clamp(38px, 10.5vw, 52px);
    line-height: 1.02;
    margin-bottom: 1.2rem;
  }

  .hero-subhead {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }

  .hero-lead-note {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .hero-bottle-stage {
    height: clamp(300px, 45vh, 400px);
  }

  .section-reveal,
  .section-story,
  .section-showcase,
  .section-launch {
    padding: 4.8rem clamp(20px, 5vw, 24px);
  }

  .story-headline {
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .showcase-headline {
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .showcase-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .launch-card {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 4vw, 2rem);
  }

  .launch-headline {
    font-size: clamp(36px, 9.5vw, 48px);
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0;
  }

  .footer-brand-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-parent-label {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-bottle-stage {
    height: clamp(280px, 42vh, 360px);
  }

  .film-overlay-brand {
    top: max(1.8rem, calc(env(safe-area-inset-top) + 1.2rem));
    left: 1.25rem;
  }

  .film-controls-floating {
    bottom: max(1.8rem, calc(env(safe-area-inset-bottom) + 1.2rem));
    right: 1.25rem;
  }
}
