/* ============================================
   SPA-SKY · Editorial Cinematic Redesign
   Mountain Source · Bottling Story
   ============================================ */

:root {
  /* Core palette — deep emerald-black with warm cream */
  --ink:        #0a1410;
  --ink-2:      #0f1c17;
  --ink-3:      #15251f;
  --ink-4:      #1f3329;
  --line:       rgba(247, 238, 219, 0.14);
  --line-soft:  rgba(247, 238, 219, 0.08);

  --cream:      #F7EEDB;
  --cream-2:    #EEE3C8;
  --cream-3:    #E2D6B6;
  --paper:      #F1E9D4;
  --paper-2:    #ECE3CB;

  --ink-light:  #142822;
  --ink-mute:   #4b5a52;
  --line-dark: rgba(20, 40, 34, 0.14);

  /* Single decisive accent */
  --gold:       #C8A24A;
  --gold-soft:  #E2C079;
  --gold-deep:  #8C6E2A;

  /* Brand red (kept faithful to bottle label) */
  --red:        #B8331C;

  /* Type */
  --f-display:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body:     'Geist', system-ui, -apple-system, sans-serif;
  --f-mono:     'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --hdr-h: 76px;
  --maxw: 1340px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;

  /* Easing */
  --ease: cubic-bezier(.22,.65,.31,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* z-index scale */
  --z-grain: 1;
  --z-hdr: 70;
  --z-mmenu: 60;
  --z-loader: 100;
  --z-modal: 90;
  --z-float: 40;
}

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

::selection { background: var(--gold); color: var(--ink); }

/* Premium scrollbar (Chromium/Webkit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: 10px;
  border: 2px solid var(--ink-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
/* Firefox */
* { scrollbar-width: thin; scrollbar-color: var(--gold-deep) var(--ink-2); }

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--hdr-h);
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Hide scroll until loader done */
}
body.is-loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Accessibility: visible keyboard focus (mouse clicks stay clean via :focus-visible) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.hdr.on-light :focus-visible,
.bottling :focus-visible,
.certs :focus-visible,
.faq :focus-visible,
.manifest :focus-visible,
.modal__panel :focus-visible {
  outline-color: var(--gold-deep);
}
/* Larger, comfortable tap targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .hdr__nav a, .lang__btn, .faqItem summary, .cCard, .btn, .bCard {
    -webkit-tap-highlight-color: rgba(200,162,74,0.18);
  }
}

.spa-sky-brand {
  font-family: var(--f-display);
  font-style: italic;
  letter-spacing: 0.005em;
  font-weight: 500;
  color: var(--red);
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain {
  position: fixed; inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0;
  z-index: var(--z-loader);
  background: radial-gradient(ellipse at center, #0f1c17 0%, #060c09 80%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
  /* Failsafe: if JS errors after boot, the loader still clears itself */
  animation: loaderFailsafe 0.8s var(--ease) 8s forwards;
}
/* No JavaScript at all → never show the loading screen (content is already there) */
html:not(.js) .loader { display: none; }
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }
@keyframes loaderFailsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.loader__inner { text-align: center; width: min(360px, 80vw); }
.loader__mark {
  width: 110px; height: auto;
  margin: 0 auto 36px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4)) brightness(1.05);
  animation: loaderFloat 3.5s ease-in-out infinite;
}
@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.loader__pct {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 64px;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.loader__line {
  width: 100%; height: 1px;
  background: rgba(247,238,219,0.12);
  overflow: hidden;
  margin-bottom: 14px;
}
.loader__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--cream));
  transition: width 0.25s var(--ease);
}
.loader__caption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(247,238,219,0.55);
  text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-hdr);
  height: var(--hdr-h);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: rgba(10, 20, 16, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-scrolled,
.hdr.on-light {
  background: rgba(10, 20, 16, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.hdr.on-light:not(.is-scrolled) {
  /* Override when on a light section */
  background: rgba(247, 238, 219, 0.82);
  border-bottom-color: var(--line-dark);
  color: var(--ink-light);
}
.hdr.on-light.is-scrolled {
  background: rgba(247, 238, 219, 0.88);
  border-bottom-color: var(--line-dark);
  color: var(--ink-light);
}

.hdr__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.hdr.on-light .hdr__brand { color: var(--ink-light); }
.hdr__mark { width: 34px; height: 34px; object-fit: contain; }
.hdr__brand-dash { padding: 0 2px; opacity: 0.6; font-weight: 300; }

.hdr__nav {
  display: flex; align-items: center; gap: 22px;
}
.hdr__nav a {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247,238,219,0.75);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s var(--ease);
}
.hdr__nav a:hover { color: var(--cream); }
.hdr.on-light .hdr__nav a { color: rgba(20,40,34,0.66); }
.hdr.on-light .hdr__nav a:hover { color: var(--ink-light); }
.hdr__nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.hdr__nav a:hover::after,
.hdr__nav a.is-active::after { width: 100%; left: 0; }

.hdr__right { display: flex; align-items: center; gap: 16px; }

.lang { display: inline-flex; align-items: center; gap: 4px; padding: 0; }
.lang__btn {
  padding: 6px 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(247,238,219,0.5);
  transition: color 0.2s var(--ease);
  text-transform: uppercase;
}
.hdr.on-light .lang__btn { color: rgba(20,40,34,0.5); }
.lang__btn:hover, .lang__btn.is-active { color: var(--cream); }
.hdr.on-light .lang__btn:hover, .hdr.on-light .lang__btn.is-active { color: var(--ink-light); }
.lang__btn.is-active { font-weight: 600; }

.hdr__cta {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hdr__cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.hdr.on-light .hdr__cta { color: var(--ink-light); border-color: var(--line-dark); }
.hdr.on-light .hdr__cta:hover { background: var(--ink-light); color: var(--cream); border-color: var(--ink-light); }

.burger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span {
  display: block; width: 16px; height: 1.4px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hdr.on-light .burger { border-color: var(--line-dark); }
.hdr.on-light .burger span { background: var(--ink-light); }
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile menu */
.mmenu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: var(--z-mmenu);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: var(--hdr-h) 32px 32px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.mmenu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mmenu__nav {
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  margin-bottom: 32px;
}
.mmenu__nav a {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.005em;
  color: var(--cream);
  font-weight: 400;
}
.mmenu__nav a:hover { color: var(--gold); }
.mmenu__lang { display: flex; gap: 12px; margin-bottom: 24px; }
.mmenu__cta {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--solid:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--cream); }
.btn--ghost-light {
  background: transparent;
  color: var(--ink-light);
  border-color: var(--line-dark);
}
.btn--ghost-light:hover { border-color: var(--ink-light); background: var(--ink-light); color: var(--cream); }
.btn--wa { background: #25D366; border-color: #25D366; color: #fff; }
.btn--wa:hover { background: #1ebd5b; border-color: #1ebd5b; }

/* ============================================
   CHAPTER LABEL
   ============================================ */
.chapter {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.chapter--light { color: rgba(247,238,219,0.6); }
.chapter__num {
  font-weight: 500;
  color: var(--gold);
}
.chapter__name {
  position: relative;
}
.chapter__name::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.5;
}

/* Section primitives */
.section__title {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink-light);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section__title--light { color: var(--cream); }
.section__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 640px;
  margin-bottom: 56px;
}
.section__lead--light { color: rgba(247,238,219,0.7); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--hdr-h) + 60px) 28px 90px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, transparent 0%, rgba(10,20,16,0.5) 70%, rgba(10,20,16,0.92) 100%),
    linear-gradient(180deg, rgba(10,20,16,0.5) 0%, rgba(10,20,16,0.0) 30%, rgba(10,20,16,0.0) 60%, rgba(10,20,16,0.85) 100%);
}

.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__top {
  margin-bottom: 32px;
}
.hero__pill {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,238,219,0.85);
  background: rgba(247,238,219,0.04);
  backdrop-filter: blur(6px);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(46px, 7.2vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 26px;
  max-width: 1000px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero__title .spa-sky-brand {
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.005em;
   color: var(--red);
}

.hero__lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(247,238,219,0.82);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 760px;
}
.heroCard {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(15, 28, 23, 0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.heroCard:hover { transform: translateY(-2px); border-color: rgba(200,162,74,0.6); }
.heroCard__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.heroCard__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.heroCard__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247,238,219,0.72);
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,238,219,0.55);
  animation: bobUp 2.4s ease-in-out infinite;
}
@keyframes bobUp { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-4px);} }

/* ============================================
   MANIFEST (cream paper section)
   ============================================ */
.manifest {
  background: var(--paper);
  color: var(--ink-light);
  padding: 120px 28px;
  position: relative;
}
.manifest::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.manifest__inner { max-width: var(--maxw); margin: 0 auto; }
.manifest__quote {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink-light);
  margin-bottom: 80px;
  max-width: 1100px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.manifest__quote em {
  font-style: italic;
  color: var(--gold-deep);
}

.manifest__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.manifest__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 580px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.stat {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}
.stat__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  color: var(--ink-light);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.stat__plus {
  color: var(--gold);
  font-weight: 400;
}
.stat__label {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.manifest__more {
  display: inline-flex; align-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease);
}
.manifest__more:hover { color: var(--gold-deep); }

/* ============================================
   SOURCE (cinematic image section)
   ============================================ */
.source {
  position: relative;
  min-height: 90vh;
  padding: 120px 28px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.source__media {
  position: absolute; inset: 0;
  background: var(--ink-2);
}
.source__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7);
}
.source__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,16,0.5) 0%, rgba(10,20,16,0.0) 30%, rgba(10,20,16,0.0) 50%, rgba(10,20,16,0.85) 100%);
}
.source__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.source__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin-bottom: 22px;
  max-width: 900px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.source__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(247,238,219,0.85);
  max-width: 680px;
}

/* ============================================
   MINERALS (dark)
   ============================================ */
.minerals {
  background: var(--ink);
  padding: 120px 28px;
  position: relative;
  overflow: hidden;
}
.minerals::before {
  content: "";
  position: absolute; left: 50%; top: -1px;
  width: 1px; height: 100px;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform: translateX(-50%);
}
.minerals__deco {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
  mix-blend-mode: screen;
}
.minerals__deco img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, #000 35%, transparent 75%);
          mask-image: radial-gradient(circle, #000 35%, transparent 75%);
}
.minerals__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }

.mGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.mCard {
  border: 1px solid var(--line);
  background: rgba(15, 28, 23, 0.5);
  padding: 28px 22px;
  border-radius: var(--r-md);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.mCard::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,162,74,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mCard:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,74,0.45);
  background: rgba(20, 40, 34, 0.6);
}
.mCard:hover::before { opacity: 1; }

.mCard__sym {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.mCard__name {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.mCard__role {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(247,238,219,0.6);
  line-height: 1.4;
}
.mCard--accent {
  background: linear-gradient(135deg, rgba(200,162,74,0.18) 0%, rgba(15,28,23,0.55) 100%);
  border-color: rgba(200,162,74,0.4);
}
.mCard--accent .mCard__sym { color: var(--gold-soft); }

/* ============================================
   BENEFITS (cream)
   ============================================ */
.benefits {
  background: var(--paper-2);
  color: var(--ink-light);
  padding: 120px 28px;
  position: relative;
}
.benefits__inner { max-width: var(--maxw); margin: 0 auto; }

.benefits__hint {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.bGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.bCard {
  text-align: left;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.4);
  padding: 32px 28px;
  min-height: 200px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.bCard:hover {
  background: var(--ink-light);
  border-color: var(--ink-light);
  transform: translateY(-3px);
}
.bCard:hover .bCard__num { color: var(--gold); }
.bCard:hover .bCard__title { color: var(--cream); }
.bCard:hover .bCard__plus { color: var(--cream); border-color: rgba(247,238,219,0.4); }

.bCard__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: auto;
  transition: color 0.3s var(--ease);
}
.bCard__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-light);
  letter-spacing: -0.005em;
  margin-top: 36px;
  transition: color 0.3s var(--ease);
}
.bCard__plus {
  position: absolute;
  top: 28px; right: 28px;
  width: 32px; height: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink-light);
  transition: all 0.3s var(--ease);
}
.bCard--wide { grid-column: span 3; min-height: auto; padding: 24px 28px; }
.bCard--wide .bCard__title { margin-top: 0; margin-left: 16px; flex: 1; font-size: 22px; }
.bCard--wide { flex-direction: row; align-items: center; }
.bCard--wide .bCard__num { margin-bottom: 0; }
.bCard--wide .bCard__plus { position: relative; top: auto; right: auto; }

.note {
  border-top: 1px solid var(--line-dark);
  padding-top: 36px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.note__media {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.note__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10,20,16,0.25));
  pointer-events: none;
}
.note__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.note__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.note__t {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-light);
  font-variation-settings: "opsz" 144;
}
.note__d {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 480px;
}
@media (max-width: 768px) {
  .note { grid-template-columns: 1fr; gap: 28px; }
  .note__media { max-width: 280px; aspect-ratio: 16/10; }
}

/* ============================================
   PRODUCTS (dark)
   ============================================ */
.products {
  background: var(--ink);
  padding: 120px 28px;
  position: relative;
}
.products__inner { max-width: var(--maxw); margin: 0 auto; }

.pGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pCard {
  background: linear-gradient(180deg, rgba(20,40,34,0.65) 0%, rgba(15,28,23,0.4) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.pCard:hover {
  transform: translateY(-6px);
  border-color: rgba(200,162,74,0.45);
}
.pCard__media {
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.pCard__media img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.4));
  transition: transform 0.4s var(--ease);
}
.pCard:hover .pCard__media img { transform: translateY(-4px) scale(1.04); }
.pCard__tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pCard__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.pCard__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247,238,219,0.7);
  margin-bottom: 18px;
  flex: 1;
}

/* ============================================
   BOTTLING / VIDEO
   ============================================ */
.bottling {
  background: var(--paper);
  color: var(--ink-light);
  padding: 120px 28px;
  position: relative;
}
.bottling__inner { max-width: var(--maxw); margin: 0 auto; }

.bottling__banner {
  position: relative;
  max-width: 1180px;
  margin: 36px auto 28px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--ink);
}
.bottling__banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.bottling__banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,16,0.0) 60%, rgba(10,20,16,0.6));
  pointer-events: none;
}

.videoBox {
  position: relative;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--line-dark);
  aspect-ratio: 16/9;
  max-width: 1180px;
  margin-left: auto; margin-right: auto;
}
.videoBox video {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.videoBox__playToggle {
  position: absolute;
  bottom: 20px; left: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(10,20,16,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247,238,219,0.3);
  display: none; /* shown only in JS when needed */
  align-items: center; justify-content: center;
  color: var(--cream);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.videoBox__playToggle:hover { transform: scale(1.05); background: rgba(10,20,16,0.8); }
.videoBox__playIcon { font-size: 18px; padding-left: 3px; }

.bottling__ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  max-width: 1180px;
  margin: 0 auto;
}
.tick {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.45;
}
.tick__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================
   CERTIFICATES
   ============================================ */
.certs {
  background: var(--paper-2);
  color: var(--ink-light);
  padding: 120px 28px;
}
.certs__inner { max-width: var(--maxw); margin: 0 auto; }

.certCard {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: 56px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 36px;
  max-width: 1080px;
}
.certCard__thumb {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 3/4;
  cursor: zoom-in;
  border: 1px solid var(--line-dark);
}
.certCard__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.certCard__thumb:hover img { transform: scale(1.04); }
.certCard__zoom {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(10,20,16,0.75);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.certCard__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.certCard__name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-light);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.certCard__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-bottom: 24px;
  max-width: 540px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--paper);
  color: var(--ink-light);
  padding: 120px 28px;
}
.faq__inner { max-width: 980px; margin: 0 auto; }

.faqList {
  border-top: 1px solid var(--line-dark);
}
.faqItem {
  border-bottom: 1px solid var(--line-dark);
}
.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink-light);
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary:hover { color: var(--gold-deep); }
.faqItem__sign {
  flex-shrink: 0;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 26px;
  color: var(--ink-mute);
  transition: transform 0.3s var(--ease);
  width: 32px; text-align: center;
}
.faqItem[open] .faqItem__sign { transform: rotate(45deg); color: var(--gold-deep); }
.faqItem__a {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 760px;
}

/* ============================================
   BRAND MOMENT — крупный логотип
   ============================================ */
.brandMoment {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,162,74,0.10), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 130px 28px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brandMoment::before,
.brandMoment::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,162,74,0.4), transparent);
}
.brandMoment::before { top: 0; }
.brandMoment::after { bottom: 0; }
.brandMoment__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.brandMoment__eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  padding: 8px 18px;
  border: 1px solid rgba(200,162,74,0.35);
  border-radius: 100px;
  background: rgba(200,162,74,0.06);
}
.brandMoment__logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  margin-bottom: 38px;
}
.brandMoment__line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,238,219,0.35), transparent);
}
.brandMoment__logo {
  width: clamp(170px, 22vw, 280px);
  height: auto;
  filter:
    drop-shadow(0 0 40px rgba(200,162,74,0.4))
    drop-shadow(0 14px 30px rgba(0,0,0,0.45));
  animation: brandFloat 8s ease-in-out infinite;
}
@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.brandMoment__brand {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brandMoment__dash {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  padding: 0 0.15em;
  font-weight: 300;
}
.brandMoment__tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(247,238,219,0.55);
}
@media (max-width: 640px) {
  .brandMoment { padding: 90px 22px 80px; }
  .brandMoment__eyebrow { margin-bottom: 36px; letter-spacing: 0.22em; font-size: 10px; padding: 7px 14px; }
  .brandMoment__line { max-width: 60px; }
  .brandMoment__logoWrap { gap: 16px; margin-bottom: 26px; }
  .brandMoment__logo { width: 130px; }
  .brandMoment__tag { letter-spacing: 0.28em; font-size: 10px; }
}

/* ============================================
   WHATSAPP BLOCK
   ============================================ */
.wa {
  background: var(--ink);
  padding: 100px 28px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--line);
}
.wa__inner { max-width: 720px; margin: 0 auto; }
.wa__t {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.wa__s {
  font-size: 16px;
  color: rgba(247,238,219,0.7);
  margin-bottom: 32px;
  line-height: 1.55;
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts {
  background: var(--ink-2);
  color: var(--cream);
  padding: 120px 28px 28px;
}
.contacts__inner { max-width: var(--maxw); margin: 0 auto; }

.contactsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}
.cCard {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(15, 28, 23, 0.4);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.cCard:hover {
  transform: translateY(-2px);
  border-color: rgba(200,162,74,0.5);
  background: rgba(20, 40, 34, 0.55);
}
.cCard__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,162,74,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cCard__body { flex: 1; }
.cCard__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,238,219,0.55);
  margin-bottom: 4px;
}
.cCard__val {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--cream);
}
.cCard__arrow {
  font-family: var(--f-mono);
  font-size: 20px;
  color: rgba(247,238,219,0.45);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.cCard:hover .cCard__arrow { transform: translateX(4px); color: var(--gold); }

.footer {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.footer__line {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.footer__brand img { width: 28px; height: 28px; }
.footer__brand-dash { padding: 0 2px; opacity: 0.6; font-weight: 300; }
.footer__note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,238,219,0.45);
}

/* ============================================
   FLOATING WA — premium with tooltip
   ============================================ */
.floatWA {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2EE76C 0%, #25D366 55%, #1eb858 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 14px 38px rgba(37, 211, 102, 0.42),
    0 4px 14px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 6px rgba(0,0,0,0.18);
  z-index: var(--z-float);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  text-decoration: none;
  animation: waEntry 0.7s var(--ease-out) 0.6s both;
}
.floatWA::after {
  content: "Написать в WhatsApp";
  position: absolute;
  right: calc(100% + 14px);
  top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.floatWA:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 18px 46px rgba(37, 211, 102, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.floatWA:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.floatWA::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: waPulse 2.2s ease-out infinite;
}
.floatWA svg {
  width: 28px; height: 28px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.85; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes waEntry {
  0%   { opacity: 0; transform: translateY(40px) scale(0.6); }
  60%  { transform: translateY(-4px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .floatWA { bottom: 18px; right: 18px; width: 56px; height: 56px; }
  .floatWA::after { display: none; }
  .floatWA svg { width: 25px; height: 25px; }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed; inset: 0;
  z-index: var(--z-modal);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__back {
  position: absolute; inset: 0;
  background: rgba(6, 12, 9, 0.75);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: min(720px, calc(100% - 32px));
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink-light);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--line-dark);
  transition: transform 0.3s var(--ease);
}
.modal.is-open .modal__panel { transform: translate(-50%, -50%); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(20, 40, 34, 0.08);
  color: var(--ink-light);
  font-size: 16px;
}
.modal__close:hover { background: var(--ink-light); color: var(--cream); }
.modal__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  padding-right: 40px;
  color: var(--ink-light);
}
.modal__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mute);
}
.modal__body p { margin-bottom: 12px; }
.modal__body ul { list-style: none; padding: 0; margin-top: 18px; }
.modal__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.modal__body ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.modal__body img {
  width: 100%;
  border-radius: var(--r-md);
  margin-top: 12px;
  border: 1px solid var(--line-dark);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hdr__nav { display: none; }
  .burger { display: flex; }
  .hdr__cta { display: none; }

  .mGrid { grid-template-columns: repeat(3, 1fr); }
  .pGrid { grid-template-columns: repeat(2, 1fr); }
  .bGrid { grid-template-columns: repeat(2, 1fr); }
  .bCard--wide { grid-column: span 2; }

  .manifest__grid { grid-template-columns: 1fr; gap: 40px; }
  .certCard { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .bottling__ticks { grid-template-columns: repeat(2, 1fr); }
  .note { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }
  .hdr { padding: 0 18px; gap: 12px; }
  .hdr__brand { font-size: 18px; }
  .hdr__mark { width: 28px; height: 28px; }
  .lang { gap: 2px; }
  .lang__btn { padding: 4px 6px; font-size: 10px; }

  .hero { padding: calc(var(--hdr-h) + 40px) 20px 90px; min-height: 100vh; }
  .hero__title { font-size: clamp(38px, 11vw, 60px); }
  .hero__cards { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { padding: 12px 22px; font-size: 13px; }

  .manifest, .source, .minerals, .benefits, .products, .bottling, .certs, .faq, .contacts, .wa {
    padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px;
  }
  .source { min-height: 70vh; }

  .mGrid { grid-template-columns: repeat(2, 1fr); }
  .mCard__sym { font-size: 44px; }

  .pGrid { grid-template-columns: 1fr; }
  .pCard__media { height: 240px; }

  .bGrid { grid-template-columns: 1fr; }
  .bCard { min-height: 160px; padding: 24px 22px; }
  .bCard--wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .bCard--wide .bCard__title { margin-left: 0; margin-top: 16px; }
  .bCard--wide .bCard__plus { position: absolute; top: 24px; right: 24px; }

  .bottling__ticks { grid-template-columns: 1fr 1fr; gap: 12px; }

  .contactsGrid { grid-template-columns: 1fr; }

  .modal__panel { padding: 28px 22px; }
  .footer__line { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   POLISH + MOBILE UX  (added in revision)
   ============================================ */

/* Balanced headings — fewer awkward single-word lines */
.hero__title, .section__title, .manifest__quote, .source__title,
.wa__t, .pCard__title, .certCard__name, .modal__title {
  text-wrap: balance;
}
.hero__lead, .section__lead, .manifest__lead, .source__lead, .pCard__text {
  text-wrap: pretty;
}

/* Modal: gentle scale-in entrance */
.modal__panel { transform: translate(-50%, -46%) scale(0.985); }
.modal.is-open .modal__panel { transform: translate(-50%, -50%) scale(1); }

/* Tactile feedback */
.btn:active { transform: translateY(1px); }
.cCard:active, .bCard:active, .pCard:active { transform: scale(0.99); }

/* Float WA respects iOS home indicator */
.floatWA { bottom: calc(26px + env(safe-area-inset-bottom, 0px)); }

@media (max-width: 768px) {
  .hdr { gap: 10px; }
  .hdr__brand-name { font-size: 17px; }

  /* Bigger, easier-to-hit language switch */
  .lang { gap: 4px; }
  .lang__btn {
    padding: 8px 9px; font-size: 12px;
    min-width: 36px; min-height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
  }
  .lang__btn.is-active { background: rgba(200,162,74,0.16); }
  .hdr.on-light .lang__btn.is-active { background: rgba(20,40,34,0.08); }

  .floatWA { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); right: 16px; }

  /* Mobile menu: comfortable, scrollable, pill language buttons */
  .mmenu { padding-top: calc(var(--hdr-h) + 22px); overflow-y: auto; justify-content: flex-start; }
  .mmenu__nav { gap: 12px; }
  .mmenu__nav a { font-size: 28px; padding: 6px 12px; }
  .mmenu__lang { gap: 8px; }
  .mmenu__lang .lang__btn {
    padding: 10px 18px; font-size: 14px; min-height: 44px;
    border: 1px solid var(--line); border-radius: 999px;
  }
  .mmenu__cta { width: 100%; max-width: 320px; text-align: center; padding: 16px 28px; }

  .heroCard { padding: 18px; }
  .cCard { padding: 18px; }
  .cCard__val { font-size: 15px; word-break: break-word; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(33px, 12vw, 46px); }
  .mGrid { gap: 12px; }
  .mCard { padding: 18px 14px; }
  .mCard__sym { font-size: 38px; }
  .section__title { font-size: clamp(28px, 8vw, 40px); }
}

/* ============================================
   PILL / EYEBROW — accented key word
   ============================================ */
.pillKey {
  color: var(--gold);
  font-weight: 600;
}
.eyebrowKey {
  color: var(--gold-soft);
  font-weight: 700;
}
.pillDot {
  font-style: normal;
  color: var(--gold);
  opacity: 0.55;
  padding: 0 9px;
}

/* ============================================
   MINI-GAME — Catch the Drop
   ============================================ */
.game {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(200,162,74,0.10), transparent 60%),
    var(--ink);
  padding: 120px 28px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.game .chapter__num { color: var(--gold); font-size: 14px; }
.game__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.game .section__title { color: var(--cream); }
.game .section__lead { color: rgba(247,238,219,0.7); margin-left: auto; margin-right: auto; }

.gameStage {
  position: relative;
  width: 100%;
  margin: 36px auto 0;
  aspect-ratio: 3 / 4;
  max-height: 600px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(15,28,23,0.7) 0%, rgba(10,20,16,0.95) 100%);
  overflow: hidden;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(247,238,219,0.05), 0 30px 60px rgba(0,0,0,0.35);
}
.gameStage:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
#gameCanvas { display: block; width: 100%; height: 100%; touch-action: none; cursor: grab; }
#gameCanvas:active { cursor: grabbing; }

.gameHud {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; gap: 10px;
  pointer-events: none;
}
.gameHud__cell {
  background: rgba(10,20,16,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 7px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 64px;
}
.gameHud__cell--lives { order: 0; }
.gameHud__label {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(247,238,219,0.5);
}
.gameHud__val {
  font-family: var(--f-display); font-size: 20px; font-weight: 500;
  color: var(--cream); line-height: 1; font-variation-settings: "opsz" 40;
}
#gameLives { color: var(--gold); letter-spacing: 2px; font-family: var(--f-body); font-size: 15px; }

.gameOverlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(10,20,16,0.78), rgba(6,12,9,0.92));
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.gameOverlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.gameOverlay__inner { max-width: 360px; text-align: center; }
.gameOverlay__drop { display: flex; justify-content: center; margin-bottom: 16px; animation: loaderFloat 3s ease-in-out infinite; }
.gameOverlay__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(26px, 4vw, 36px); color: var(--cream);
  margin-bottom: 12px; font-variation-settings: "opsz" 144;
}
.gameOverlay__score {
  font-family: var(--f-display); color: var(--gold);
  font-size: clamp(40px, 9vw, 64px); font-weight: 500; line-height: 1;
  margin-bottom: 14px; font-variation-settings: "opsz" 144;
}
.gameOverlay__score span:last-child {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,238,219,0.6); display: block; margin-top: 8px;
}
.gameOverlay__text { font-size: 15px; line-height: 1.55; color: rgba(247,238,219,0.72); margin-bottom: 22px; }
.gameOverlay__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gameOverlay .btn--ghost { color: var(--cream); border-color: var(--line); }
.gameOverlay .btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .game { padding: 80px 20px; }
  .gameStage { aspect-ratio: 4 / 5; max-height: 70vh; }
  .gameHud__cell { min-width: 56px; padding: 6px 10px; }
  .gameHud__val { font-size: 17px; }
  .gameOverlay__cta { flex-direction: column; }
  .gameOverlay__cta .btn { width: 100%; }
}
