/* ============================================================
   HONEY WAX — section layouts
   ============================================================ */

/* ---------- top bar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: oklch(0.99 0.01 90);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  flex: 0 0 auto;
}
.brand-name {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  letter-spacing: 0.01em; line-height: 1;
}
.brand-name small {
  display: block; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: 3px; font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s ease; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
}
.lang button {
  background: transparent; border: 0; color: var(--ink-soft); cursor: pointer;
  padding: 6px 11px; font: inherit; transition: all 0.2s ease;
}
.lang button.on { background: var(--ink); color: var(--bg); }

/* cart button in nav */
.nav-cart {
  position: relative; padding: 0; width: 44px; height: 44px; border-radius: 50%;
  display: inline-grid; place-items: center;
}
.nav-cart svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.nav-cart-count {
  position: absolute; top: -3px; right: -3px; z-index: 2;
  box-shadow: 0 0 0 2px var(--bg);
}
/* ---- burger + mobile menu ---- */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; padding: 0 10px; background: transparent; border: 0; cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px; background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: color-mix(in oklab, var(--bg) 96%, transparent);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 clamp(28px, 9vw, 56px);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: none; }
.nav-mobile a {
  font-family: var(--serif); font-size: clamp(1.9rem, 8vw, 2.8rem); font-weight: 400;
  color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile-cta {
  margin-top: 22px; align-self: flex-start;
  font-family: var(--sans) !important; font-size: 1rem !important; font-weight: 600 !important;
  color: oklch(0.16 0.02 196) !important; background: var(--accent);
  padding: 14px 30px !important; border-radius: 999px; border-bottom: 0 !important;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 861px) {
  .nav-mobile { display: none; }
}

/* ---------- hero ---------- */
.hero { padding-top: 140px; padding-bottom: 90px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(48px, 8.2vw, 116px);
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--accent-deep); font-style: italic; }
.hero p.lede {
  font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft);
  max-width: 38ch; margin-bottom: 36px; text-wrap: pretty;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 16px;
}
.hero-price { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; }
.hero-price-note { font-size: 14px; color: var(--ink-soft); }
.hero-visual { position: relative; }
.hero-visual image-slot {
  width: 100%; height: clamp(440px, 52vw, 600px); border-radius: 220px 220px 18px 18px;
}
/* ---- 3D hero stage ---- */
.hero-3d {
  position: relative;
  width: 100%; height: clamp(440px, 52vw, 600px);
  border-radius: 220px 220px 18px 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 18%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, var(--bg-2), oklch(0.255 0.045 252 / 0.04));
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.6), 0 30px 60px -40px oklch(0.255 0.045 252 / 0.5);
  cursor: grab;
}
.hero-3d:active { cursor: grabbing; }
.hero-3d-canvas { display: block; width: 100%; height: 100%; }
.hero-3d-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.55; pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); line-height: 1.5;
  box-shadow: 0 18px 40px -28px var(--ink);
  rotate: -8deg;
}
.hero-badge b { font-family: var(--serif); font-size: 22px; color: var(--accent-deep); display:block; letter-spacing: 0; text-transform: none; }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .hero h1 { font-size: clamp(46px, 13vw, 80px); }
}

/* ---------- ingredients ---------- */
.ingredients { padding-block: clamp(80px, 11vw, 150px); background: var(--bg-2); position: relative; }
.ingr--bee { position: relative; }
.ingr-comb {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; display: block;
  -webkit-mask-image: radial-gradient(120% 120% at 50% 38%, #000 0%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 120% at 50% 38%, #000 0%, #000 55%, transparent 100%);
}
.ingr--bee > *:not(.ingr-comb) { position: relative; z-index: 1; }
.ingr--resin { position: relative; }
.ingr-resin {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; display: block;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}
.ingr--resin > *:not(.ingr-resin) { position: relative; z-index: 1; }
.ingr--coco { position: relative; }
.ingr-coco {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; display: block;
  -webkit-mask-image: radial-gradient(130% 120% at 60% 35%, #000 0%, #000 56%, transparent 100%);
  mask-image: radial-gradient(130% 120% at 60% 35%, #000 0%, #000 56%, transparent 100%);
}
.ingr--coco > *:not(.ingr-coco) { position: relative; z-index: 1; }
.ingr--castor { position: relative; }
.ingr-botanic {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; display: block;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
}
.ingr--castor > *:not(.ingr-botanic) { position: relative; z-index: 1; }
.sec-head { max-width: 620px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(34px, 5vw, 62px); margin: 20px 0 18px; }
.sec-head p { font-size: 18px; color: var(--ink-soft); text-wrap: pretty; }
.ingr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.ingr {
  background: var(--surface); padding: 30px 26px 34px;
  display: flex; flex-direction: column; min-height: 270px;
  transition: background 0.3s ease;
}
.ingr:hover { background: color-mix(in oklab, var(--surface) 92%, var(--accent)); }
.ingr-n { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); letter-spacing: 0.1em; }
.ingr-name { font-family: var(--serif); font-size: 27px; font-weight: 600; margin-top: auto; line-height: 1.05; }
.ingr-origin {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); margin: 10px 0 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.ingr-origin::before { content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.ingr-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 900px) { .ingr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ingr-grid { grid-template-columns: 1fr; } .ingr { min-height: 0; } }

/* ---------- story ---------- */
.story { padding-block: clamp(80px, 12vw, 160px); }
.story-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.story-visual image-slot { width: 100%; height: clamp(440px, 46vw, 620px); border-radius: 14px; }
.story-text h2 { font-size: clamp(34px, 5vw, 64px); margin: 20px 0 28px; }
.story-text p { font-size: 18px; color: var(--ink-soft); margin-bottom: 20px; max-width: 46ch; text-wrap: pretty; }
.story-sign { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--ink); margin-top: 8px; }
@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { max-width: 380px; }
}

/* ---------- ocean ---------- */
.ocean { padding-block: clamp(80px, 12vw, 160px); background: var(--ink); color: var(--bg); }
.ocean .eyebrow { color: color-mix(in oklab, var(--accent) 70%, white); }
.ocean .eyebrow::before { background: color-mix(in oklab, var(--accent) 70%, white); }
.ocean-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 6vw, 80px); align-items: end; }
.ocean h2 { font-size: clamp(34px, 5.2vw, 66px); margin: 22px 0 0; color: var(--bg); }
.ocean p { font-size: 19px; line-height: 1.65; color: color-mix(in oklab, var(--bg) 78%, var(--ink)); text-wrap: pretty; }
.ocean-stats { display: flex; gap: 0; border-top: 1px solid color-mix(in oklab, var(--bg) 22%, transparent); margin-top: 64px; padding-top: 30px; }
.ostat { flex: 1; }
.ostat-v { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 600; line-height: 1; color: var(--bg); }
.ostat-u { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in oklab, var(--bg) 60%, var(--ink)); margin-top: 10px; }
@media (max-width: 720px) { .ocean-grid { grid-template-columns: 1fr; align-items: start; } }

/* ---------- shop / manifesto ---------- */
.shop { padding-block: clamp(80px, 12vw, 150px); text-align: center; }
.shop--manifesto {
  display: block;
  padding-block: clamp(90px, 14vh, 160px) clamp(80px, 12vw, 150px);
}
.manifesto {
  max-width: 1100px; margin: 0 auto; text-align: center;
  min-height: 62vh; display: flex; flex-direction: column; justify-content: center;
}
.manifesto-kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 14px; margin-bottom: clamp(34px, 6vw, 64px);
}
.manifesto-rule { width: 40px; height: 1px; background: var(--accent); display: inline-block; }
.manifesto-line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 auto;
}
.manifesto-row { display: block; white-space: nowrap; }
.manifesto-accent { font-style: italic; color: var(--accent); }
.manifesto-note {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); margin: clamp(34px, 6vw, 60px) auto 0; max-width: 40ch;
}
.manifesto-cta { display: flex; justify-content: center; margin-top: clamp(36px, 5vw, 54px); }
.manifesto-cta .btn { padding: 17px 40px; font-size: 16px; }

/* split layout: manifesto (left) + FAQ (right) */
.manifesto--split {
  max-width: 1240px; text-align: left;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center; min-height: 0;
}
.manifesto--split .manifesto-line { margin: 0; }
.manifesto--split .manifesto-row { white-space: normal; }
.manifesto--split .manifesto-note { margin-left: 0; margin-right: 0; }
.manifesto--split .manifesto-cta { justify-content: flex-start; }
.manifesto--split .faq { margin: 0; max-width: none; }
.manifesto--split .faq-title { text-align: left; }
@media (max-width: 900px) {
  .manifesto--split { grid-template-columns: 1fr; gap: clamp(48px, 9vw, 72px); }
}

/* ---- FAQ accordion ---- */
.faq { max-width: 760px; margin: 0 auto; margin-top: clamp(70px, 11vw, 130px); }
.faq-title {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; margin-bottom: 34px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  list-style: none; cursor: pointer; padding: 24px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: clamp(1.05rem, 2.1vw, 1.35rem); color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }
.faq-ico { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--accent); transition: transform 0.28s ease, opacity 0.28s ease;
}
.faq-ico::before { width: 16px; height: 2px; }
.faq-ico::after { width: 2px; height: 16px; }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq-item[open] .faq-q { color: var(--accent); }
.faq-a { padding: 0 8px 26px; max-width: 64ch; }
.faq-a p { color: var(--ink-soft); line-height: 1.65; font-size: 1rem; text-wrap: pretty; }
.faq-item[open] .faq-a { animation: faqIn 0.4s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding-block: 64px 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer .brand-name { font-size: 26px; }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 22px; max-width: 24ch; margin-top: 18px; line-height: 1.3; }
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }
.footer-col-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.footer-link-btn {
  background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 14.5px; color: var(--ink-soft); transition: color 0.2s ease;
}
.footer-link-btn:hover { color: var(--ink); }

/* legal modal */
.legal-overlay {
  position: fixed; inset: 0; z-index: 1300;
  background: oklch(0.12 0.02 200 / 0.62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: clamp(14px, 4vw, 48px);
  animation: legalFade 0.3s ease;
}
@keyframes legalFade { from { opacity: 0; } to { opacity: 1; } }
.legal-panel {
  width: min(720px, 100%); max-height: 86vh; display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 100px -40px oklch(0 0 0 / 0.8);
  animation: legalRise 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes legalRise { from { transform: translateY(18px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.legal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px clamp(20px, 4vw, 34px); border-bottom: 1px solid var(--line-soft);
  background: color-mix(in oklab, var(--bg) 50%, transparent);
}
.legal-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--ink); letter-spacing: -0.01em; }
.legal-close {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-soft);
  background: var(--surface); color: var(--ink-soft); cursor: pointer; display: grid; place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.legal-close:hover { color: var(--ink); border-color: var(--accent); }
.legal-close svg { width: 18px; height: 18px; }
.legal-body { overflow-y: auto; padding: clamp(20px, 4vw, 34px); }
.legal-updated { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.legal-section { margin-bottom: 24px; }
.legal-section h3 { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; color: var(--ink); margin-bottom: 9px; }
.legal-section p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.62; margin-bottom: 8px; }
.legal-section ul { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }
.legal-section li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal-section a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--ink); }
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-section em { color: var(--ink-soft); opacity: 0.78; font-size: 0.9em; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase; }

/* ============================================================
   DARK FOREST–OCEAN WORLD  (data-direction="abyss")
   Sections float as glass over the persistent 3D canvas.
   ============================================================ */
[data-direction="abyss"] .brand-mark { color: oklch(0.16 0.02 196); }
.hw-logo {
  display: block; background-repeat: no-repeat;
  background-position: left center; background-size: contain;
  background-image: url("assets/honeywax-logo.png");
}
[data-direction="abyss"] .hw-logo { background-image: url("assets/honeywax-logo-dark.png"); }
[data-direction="abyss"] .nav-links a { color: oklch(0.92 0.02 160); text-shadow: 0 1px 10px oklch(0.12 0.03 200 / 0.7); }
[data-direction="abyss"] .nav-links a:hover { color: #fff; }
[data-direction="abyss"] .nav::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 180%; z-index: -1;
  pointer-events: none;
  background: linear-gradient(color-mix(in oklab, var(--bg) 80%, transparent), transparent);
}

/* lift type off the bright water with a foot scrim */
[data-direction="abyss"] .hero--world::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 0;
  pointer-events: none;
  background: linear-gradient(transparent, color-mix(in oklab, var(--bg) 62%, transparent));
}

/* hero = full-bleed window onto the 3D forest */
[data-direction="abyss"] .hero--world {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 132px; overflow: visible;
}
[data-direction="abyss"] .hero--world::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(96deg,
    color-mix(in oklab, var(--bg) 88%, transparent) 0%,
    color-mix(in oklab, var(--bg) 66%, transparent) 38%,
    color-mix(in oklab, var(--bg) 18%, transparent) 70%,
    transparent 100%);
}
[data-direction="abyss"] .hero-inner { position: relative; z-index: 1; width: 100%; }
[data-direction="abyss"] .hero-copy { max-width: 760px; }
/* cinematic title sitting over the footage — guaranteed legible */
[data-direction="abyss"] .hero .display {
  font-size: clamp(3.1rem, 7.6vw, 6.8rem);
  line-height: 0.98; letter-spacing: -0.015em;
  color: #f1f8f2;
  text-shadow: 0 2px 12px rgba(4,18,18,0.55), 0 18px 70px rgba(4,18,18,0.45);
}
[data-direction="abyss"] .hero h1 .accent { font-style: italic; color: #8fe9bf; text-shadow: 0 2px 22px rgba(20,80,60,0.6); }

/* ---- word-by-word cinematic reveal (fade + rise, no clipping mask) ---- */
.hero-title { overflow: visible; }
.word-mask { display: inline-block; margin-right: 0.28em; }
.float-group { display: inline-block; white-space: nowrap; will-change: transform; }
.float-group.accent { font-style: italic; color: #8fe9bf; padding: 0 0.06em 0 0.04em; }
.word {
  display: inline-block;
  opacity: 0; transform: translateY(0.6em);
  transition: opacity 0.85s ease, transform 1.05s cubic-bezier(0.16, 0.9, 0.2, 1);
  will-change: opacity, transform;
}
.hero-title.lift .word { opacity: 1; transform: none; }

/* ---- cinematic intro: footage resolves from blur + dark (filter only;
   JS owns the videos' transform for parallax) ---- */
#hw-video-bg .bgvid { transition: filter 1.7s ease; }
#hw-video-bg.intro .bgvid { filter: blur(18px) brightness(0.38) saturate(0.78); }
[data-direction="abyss"] .hero p.lede { max-width: 44ch; color: #dfeee8; text-shadow: 0 1px 10px rgba(4,18,18,0.6); }
[data-direction="abyss"] .hero .hero-eyebrow { color: #aee9cf; }
[data-direction="abyss"] .hero-scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
[data-direction="abyss"] .hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(#8fe9bf, transparent);
  animation: hwDrip 2.6s ease-in-out infinite;
}
@keyframes hwDrip {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  65%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* content sections become frosted glass so type stays crisp */
[data-direction="abyss"] .ingredients,
[data-direction="abyss"] .shop,
[data-direction="abyss"] .footer {
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-top: 1px solid var(--line-soft);
}
[data-direction="abyss"] .story { background: transparent; }

[data-direction="abyss"] .ingr,
[data-direction="abyss"] .range-chip {
  background: var(--surface);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
[data-direction="abyss"] .ingr-grid { background: var(--line-soft); border-color: var(--line-soft); }
[data-direction="abyss"] .ingr:hover { background: color-mix(in oklab, var(--surface) 80%, var(--accent)); }

/* ocean = the moment the world turns to sea: fully open, light type */
[data-direction="abyss"] .ocean { background: transparent; color: var(--ink); }
[data-direction="abyss"] .ocean h2,
[data-direction="abyss"] .ocean .ostat-v { color: var(--ink); }
[data-direction="abyss"] .ocean p { color: var(--ink-soft); }
[data-direction="abyss"] .ocean .eyebrow,
[data-direction="abyss"] .ocean .eyebrow::before { color: var(--accent); background: none; }
[data-direction="abyss"] .ocean .eyebrow::before { background: var(--accent); }
[data-direction="abyss"] .ocean-stats { border-top-color: var(--line); }
[data-direction="abyss"] .ostat-u { color: var(--ink-soft); }
[data-direction="abyss"] .ocean-deep-pad { padding-block: clamp(120px, 22vw, 320px); }

/* soft glow under big serif numerals */
[data-direction="abyss"] .shop-price { text-shadow: 0 0 50px var(--accent-soft); }

/* ============================================================
   MOBILE / PHONE  (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .nav { padding: 12px 18px; }
  .nav-right { gap: 8px; }
  .lang button { padding: 6px 9px; }

  /* hero: tighter type so long words never overflow */
  .hero { padding-top: 104px; padding-bottom: 70px; }
  [data-direction="abyss"] .hero--world { min-height: 92vh; padding-top: 104px; padding-bottom: 110px; }
  [data-direction="abyss"] .hero .display { font-size: clamp(2.5rem, 12vw, 3.4rem); line-height: 1.02; }
  .hero .lede, [data-direction="abyss"] .hero p.lede { font-size: 16.5px; max-width: 100%; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-scroll { display: none; }

  /* generic section rhythm */
  .sec-head h2 { font-size: clamp(30px, 9vw, 40px); }
  .story-text h2, .ocean h2 { font-size: clamp(30px, 9vw, 42px); }
  .story-text p, .ocean p, .sec-head p { font-size: 16.5px; }

  /* ocean stats: let the 3 figures breathe / wrap */
  .ocean-stats { flex-wrap: wrap; gap: 22px 16px; }
  .ostat { flex: 1 1 40%; }

  /* manifesto */
  .manifesto { min-height: 0; }
  .manifesto-cta .btn, .manifesto--split .manifesto-cta .btn { width: 100%; justify-content: center; }

  /* footer stacks cleanly */
  .footer-grid { flex-direction: column; gap: 30px; }
  .footer-tag { font-size: 19px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* legal modal full-height comfort */
  .legal-panel { max-height: 92vh; border-radius: 18px; }

  /* cart drawer full width feel already capped at 92vw — good */
}

/* extra-narrow: hide language toggle to save the row */
@media (max-width: 380px) {
  .lang { display: none; }
}
