/* ═══════════════════════════════════════════════════
   MUSE WATER — style.css
═══════════════════════════════════════════════════ */

:root {
  --deep:   #014248;
  --ocean:  #025C65;
  --teal:   #008E99;
  --stone:  #C3C4BF;
  --mist:   #EEF2F3;
  --white:  #FAF8F4;
  --cream:  #F2EFE9;
  --ink:    #071618;
  --ease-liquid: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --pad:  130px 80px;
  --max:  1200px;
  --nav:  72px;
}

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

html { font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--deep);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

::selection {
  background: rgba(0, 142, 153, 0.15);
  color: var(--deep);
}

/* ══════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════ */
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 142, 153, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-liquid), height .35s var(--ease-liquid),
              background .3s, border-color .3s;
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-expanded {
  width: 40px !important;
  height: 40px !important;
  background: rgba(0, 142, 153, 0.07) !important;
  border-color: rgba(0, 142, 153, 0.4) !important;
}

/* ══════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

/* Logo image placeholder in preloader */
.pre-logo-img {
  height: clamp(36px, 5vw, 64px);
  width: auto;
  display: block;
  opacity: 0;
  animation: preFadeUp .9s var(--ease-liquid) .2s forwards;
}

.pre-bar-wrap {
  width: 100px;
  height: 1px;
  background: rgba(195, 196, 191, .3);
  overflow: hidden;
}

.pre-bar {
  height: 100%;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  animation: preBarFill 2s var(--ease-liquid) .4s forwards;
}

@keyframes preFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes preBarFill {
  to { transform: scaleX(1); }
}

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav);
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s, box-shadow .5s;
}

#main-nav.scrolled {
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 142, 153, .1);
}

/* Nav logo — wraps the logo img placeholder */
.nav-logo {
  display: flex;
  align-items: center;
  opacity: 0;
}

/* Logo image placeholder in navbar */
/* Replace src="./assets/logo.png" with your actual logo file */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  opacity: 0;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(1, 66, 72, .6);
  transition: color .2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0, 142, 153, .4);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background .3s, border-color .3s;
  opacity: 0;
}

.nav-cta:hover {
  background: rgba(0, 142, 153, .08);
  border-color: var(--teal);
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .65);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  font-weight: 200;
  letter-spacing: .12em;
  line-height: .9;
  color: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
margin-top: 30px;
  opacity: 0;
  transform: translateY(40px);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: rgb(255, 255, 255);
  letter-spacing: .06em;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(10px);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.hero-scroll-cue span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.871), transparent);
  animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1);    }
  50%       { opacity: .9; transform: scaleY(1.05); }
}

/* ══════════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════════ */
#manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.manifesto-grid-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}

.mgb-line {
  width: 1px;
  background: rgba(0, 142, 153, .05);
  height: 100%;
}

.manifesto-inner {
  text-align: center;
  padding: 80px 40px;
  max-width: 960px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 200;
  line-height: 1.15;
  color: var(--deep);
  letter-spacing: .02em;
}

.manifesto-quote em {
  font-style: italic;
  color: var(--teal);
}

.manifesto-cite {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .5);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 20px;
}

.manifesto-cite::before,
.manifesto-cite::after {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(0, 142, 153, .25);
}

/* ══════════════════════════════════════════════════
   BRAND INTRODUCTION
══════════════════════════════════════════════════ */
#brand-intro {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#brand-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(0, 142, 153, .05) 0%, transparent 65%);
  pointer-events: none;
}

.bi-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* — Image side — */
.bi-image-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.bi-img-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  overflow: visible;
}

/* Product image placeholder */
/* Swap src="./assets/muse-product.jpg" with your real product photo */
.bi-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Subtle tinted placeholder when image is not yet set */
  background: rgba(0, 142, 153, 0.04);
  border: 1px solid rgba(0, 142, 153, 0.1);
}

/* Corner ornaments */
.bi-img-ornament { position: absolute; inset: 0; pointer-events: none; }

.bio-corner {
  position: absolute;
  display: block;
}

.bio-corner--tl {
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  border-top: 1px solid rgba(0, 142, 153, .3);
  border-left: 1px solid rgba(0, 142, 153, .3);
}

.bio-corner--br {
  bottom: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-bottom: 1px solid rgba(0, 142, 153, .3);
  border-right: 1px solid rgba(0, 142, 153, .3);
}

.bi-img-caption { padding-left: 2px; }

.bic-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .45);
}

/* — Text side — */
.bi-text-side {
  display: flex;
  flex-direction: column;
}

.bi-overline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bi-overline::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--teal);
  opacity: .5;
}

.bi-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7.5vw, 108px);
  font-weight: 200;
  line-height: .97;
  color: var(--deep);
  margin-bottom: 44px;
  letter-spacing: .02em;
}

.bi-headline em {
  font-style: italic;
  color: var(--teal);
}

.bi-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(1, 66, 72, .6);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 20px;
}

.bi-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 142, 153, .1);
  border-bottom: 1px solid rgba(0, 142, 153, .1);
  margin-top: 12px;
  margin-bottom: 44px;
}

.bi-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bi-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
}

.bi-stat-unit {
  font-size: 13px;
  margin-left: 1px;
}

.bi-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .55);
}

.bi-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(0, 142, 153, .15);
  align-self: center;
}

.bi-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0, 142, 153, .4);
  padding: 14px 30px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease-liquid);
}

.bi-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 142, 153, .08);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-liquid);
}

.bi-cta:hover::before { transform: translateX(0); }
.bi-cta:hover .cta-arrow { transform: translateX(5px); }

/* ══════════════════════════════════════════════════
   CHAPTER BASE
══════════════════════════════════════════════════ */
.chapter          { position: relative; background: var(--cream); }
.chapter-light    { background: var(--white); }
.chapter-track    { min-height: 100vh; position: relative; }

.chapter-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  gap: 80px;
}

.chapter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 200;
  line-height: 1;
  color: rgba(0, 142, 153, .05);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  letter-spacing: -.02em;
  pointer-events: none;
}

.chapter-left {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.chapter-right {
  flex: 1;
  position: relative;
  z-index: 2;
}

.chapter-overline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.chapter-overline::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--teal);
  opacity: .5;
}

.chapter-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 32px;
}

.chapter-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(1, 66, 72, .65);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 18px;
}

.chapter-text-stack { padding-left: 48px; }

/* ══════════════════════════════════════════════════
   THE SOURCE (Chapter 01)
══════════════════════════════════════════════════ */
#story-source { background: var(--white); }

#story-source .chapter-number { left: -40px; }

.source-facts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 142, 153, .1);
}

.sf-item  { display: flex; flex-direction: column; gap: 4px; }

.sf-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--deep);
}

.sf-key {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .55);
}

.sf-div {
  width: 1px;
  height: 32px;
  background: rgba(0, 142, 153, .15);
  align-self: center;
}

/* Topo draw animation (used by JS-injected source visual) */
.topo-path {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  transition: stroke-dashoffset 2s var(--ease-liquid);
  transition-delay: var(--delay, 0s);
}

.topo-path.drawn { stroke-dashoffset: 0; }

/* Geological layers (JS-injected into #source-visual) */
.geo-svg { width: 100%; max-width: 420px; height: auto; }

.geo-layer {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease-liquid), transform 0.7s var(--ease-liquid);
}

.geo-layer.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   OUR STORY (Chapter 02)
══════════════════════════════════════════════════ */
#story-our-story { background: var(--white); }

.story-sticky {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 72px;
  padding: var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  position: sticky;
  top: 0;
  min-height: 100vh;
}

.story-num-bg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 16vw, 240px);
  font-weight: 200;
  color: rgba(0, 142, 153, .04);
  line-height: 1;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
  letter-spacing: -.04em;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
}

.story-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 32px;
}

.story-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(1, 66, 72, .6);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 460px;
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.story-beat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 142, 153, .08);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .7s var(--ease-liquid), transform .7s var(--ease-liquid);
}

.story-beat:first-child { border-top: 1px solid rgba(0, 142, 153, .08); }
.story-beat.visible     { opacity: 1; transform: translateX(0); }
.story-beat:nth-child(2).visible { transition-delay: .12s; }
.story-beat:nth-child(3).visible { transition-delay: .24s; }
.story-beat:nth-child(4).visible { transition-delay: .36s; }

.beat-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .5);
}

.beat-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.3;
}

.story-slogan-band {
  display: flex;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 142, 153, .1);
  width: 100%;
}

.ssb-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  color: var(--deep);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-liquid), transform .7s var(--ease-liquid);
  letter-spacing: .04em;
}

.ssb-word.visible { opacity: 1; transform: translateY(0); }
.ssb-em { color: var(--teal); transition-delay: .15s; }
#ssw-2  { transition-delay: .3s; }

/* ══════════════════════════════════════════════════
   THE FLOW
══════════════════════════════════════════════════ */
#the-flow {
  position: relative;
  height: 380px;
  background: var(--white);
  overflow: hidden;
}

#flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#fp1 { stroke: url(#flowGrad1); stroke-width: 2; }
#fp2 { stroke: url(#flowGrad2); stroke-width: 1.5; }
#fp3 { stroke: rgba(195, 196, 191, .25); stroke-width: 1; }

.flow-node      { fill: var(--teal); opacity: .75; }
.flow-node--mid { fill: var(--teal); opacity: 1; }
.flow-node--end { fill: var(--stone); opacity: .6; }

.flow-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-label-left  { left: 64px; top: 40%; }
.flow-label-right { right: 64px; text-align: right; }

.flow-edition-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.flow-label-left .flow-edition-tag  { color: rgba(0, 142, 153, .65); }
.flow-label-right .flow-edition-tag { color: rgba(1, 66, 72, .45); }

.flow-edition-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
}

.flow-label-left .flow-edition-name  { color: var(--deep); }
.flow-label-right .flow-edition-name { color: rgba(1, 66, 72, .55); }

.flow-center {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flow-center-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .45);
}

/* ══════════════════════════════════════════════════
   HOPE SECTION
══════════════════════════════════════════════════ */
#hope {
  background: var(--mist);
  padding: var(--pad);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hope-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  width: 100%;
  opacity: .08;
  pointer-events: none;
}

.hope-wave-bg path { fill: var(--ocean); }

/* ── EDITIONS (shared) ── */
.edition-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.edition-layout--reversed .edition-left  { order: 2; }
.edition-layout--reversed .edition-right { order: 1; }

.edition-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 142, 153, .4);
  color: var(--teal);
  padding: 7px 18px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 40px;
}

.edition-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 200;
  letter-spacing: .1em;
  line-height: .95;
  color: var(--mist);
  margin-bottom: 28px;
}

.edition-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 440px;
}

.edition-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 56px;
}

.edition-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  color: rgba(238, 242, 243, .6);
  line-height: 1.75;
}

.feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}

.edition-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease-liquid);
}

.edition-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform .35s var(--ease-liquid);
}

.edition-cta:hover::before { transform: translateX(0); }
.edition-cta:hover .cta-arrow { transform: translateX(5px); }

.cta-arrow {
  transition: transform .3s var(--ease-liquid);
  display: inline-block;
}

.aura-cta { color: var(--teal); border: 1px solid rgba(0, 142, 153, .4); }
.aura-cta::before { background: rgba(0, 142, 153, .1); }

.edition-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}

/* Bottle rings (decorative, Aura section) */
.bottle-rings {
  position: absolute;
  inset: 0;
  color: rgba(0, 142, 153, .08);
  pointer-events: none;
}

.bottle-rings svg { width: 100%; height: 100%; }

/* ── Bottle image placeholders (replaces JS-injected SVGs) ── */
/* Swap src with "./assets/aura-bottle.png" or "./assets/hope-bottle.png" */
.bottle-img {
  position: relative;
  /* width: 200px; */
  height: 500px;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .5));
  animation: bottleFloat 5s ease-in-out infinite;
  /* Tinted placeholder until real image is supplied */
  /* background: rgba(0, 142, 153, 0.04);
  border: 1px dashed rgba(0, 142, 153, 0.15); */
 
}

.bottle-aura-img {
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .5));
   border-radius: 10px;
}

.bottle-hope-img {
  filter: drop-shadow(0 30px 60px rgba(1, 66, 72, .18));
  animation: bottleFloat 5s ease-in-out infinite 1s;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-18px); }
}

.bottle-glow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.aura-glow { background: rgba(0, 142, 153, .2); }
.hope-glow { background: rgba(0, 142, 153, .15); }

/* ── Hope-specific overrides ── */
.hope-badge   { border-color: rgba(1, 66, 72, .25); color: var(--ocean); }
.hope-title   { color: var(--deep); }
.hope-tagline { color: var(--ocean); }
.hope-features .edition-feature { color: rgba(2, 92, 101, .7); }
.hope-dot     { background: var(--ocean); }

.hope-cta          { color: var(--white); background: var(--deep); }
.hope-cta::before  { background: var(--ocean); }

.hope-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

/* ══════════════════════════════════════════════════
   AURA SECTION
══════════════════════════════════════════════════ */
#aura {
  background: var(--deep);
  padding: var(--pad);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.aura-geo-bg {
  position: absolute;
  inset: 0;
  color: rgba(0, 142, 153, .07);
  pointer-events: none;
}

.aura-geo-bg svg { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════
   CLOSE / CTA
══════════════════════════════════════════════════ */
#close {
  background: var(--cream);
  padding: var(--pad);
}

.section-inner { max-width: var(--max); margin: 0 auto; }
.close-inner   { text-align: center; }

.close-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.close-eyebrow::before,
.close-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(0, 142, 153, .2);
}

.close-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 200;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 16px;
}

.close-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: rgba(1, 66, 72, .45);
  margin-bottom: 72px;
}

.close-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--deep);
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .3s;
  display: inline-block;
}

.btn-primary:hover { background: var(--ocean); }

.btn-secondary {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(1, 66, 72, .6);
  background: transparent;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid rgba(1, 66, 72, .2);
  cursor: pointer;
  transition: border-color .3s, color .3s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--ocean); color: var(--deep); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
#footer { background: var(--deep); padding: 80px 80px 48px; }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .28em;
  color: rgba(238, 242, 243, .55);
  display: block;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(195, 196, 191, .38);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(0, 142, 153, .5);
  display: block;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(195, 196, 191, .38);
  transition: color .2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(195, 196, 191, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  color: rgba(195, 196, 191, .22);
}

.footer-pledge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(0, 142, 153, .4);
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-liquid), transform .9s var(--ease-liquid);
}

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

.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .34s; }
.reveal-d4 { transition-delay: .46s; }
.reveal-d5 { transition-delay: .58s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad: 100px 48px; }
  .edition-layout { gap: 60px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --pad: 80px 24px; }
  
  
  
 
  .ds-particle-canvas { display: none; }


  #main-nav { padding: 0 24px; }
  .nav-links { display: none; }

  .bi-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bi-img-frame { max-width: 320px; }

  .edition-layout,
  .edition-layout--reversed {
    grid-template-columns: 1fr;
  }

  .edition-layout--reversed .edition-left  { order: 1; }
  .edition-layout--reversed .edition-right { order: 2; }

  .edition-right,
  .hope-left { display: none; }

  .chapter-sticky {
    flex-direction: column;
    gap: 40px;
  }

  .chapter-text-stack { padding-left: 0; }

  .chapter-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .geo-svg { max-width: 300px; }

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

  .footer-inner { grid-template-columns: 1fr; }

  #footer { padding: 60px 24px 40px; }

  .flow-label-left  { left: 24px; top: 54%; }
  .flow-label-right { right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
