/* ══════════════════════════════════════════════════════════
   PRODUCT PAGES — Shared CSS
   Apple-style scrolltelling · to-* class namespace
   Shared by: the-one.html, SOUL.html, native.html
══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.to-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 25% 60%, rgba(196,98,42,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 75% 30%, rgba(139,58,26,0.10) 0%, transparent 55%),
    var(--bg);
}
.to-hero-video {
  position: absolute; inset: -10% 0;
  width: 100%; height: 120%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  will-change: transform;
}
.to-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 100%);
  z-index: 1;
}
.to-hero-os {
  position: absolute;
  top: calc(var(--ann-height, 36px) + 80px);
  left: clamp(24px, 5vw, 64px);
  z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.to-hero-os span:first-child { color: var(--terracota); opacity: 0.9; }
.to-hero-os span { color: rgba(240,237,232,0.38); }
@media (max-width: 760px) { .to-hero-os { display: none; } }

.to-hero-content {
  position: relative; z-index: 2;
  padding: clamp(120px, 18vh, 200px) clamp(24px, 6vw, 80px) clamp(64px, 10vh, 120px);
  max-width: 900px;
}
.to-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.to-hero-h1 {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: clamp(52px, 10vw, 120px);
  color: var(--text);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.to-hero-claim {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 8px;
}
.to-hero-sub {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 40px;
}
.to-hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 760px) {
  .to-hero {
    min-height: auto;
  }
  .to-hero-content {
    padding: calc(var(--ann-height, 36px) + 96px) 20px 56px;
    max-width: none;
    width: 100%;
  }
  .to-hero-content > div[style*="display:flex"] {
    flex-direction: column;
    align-items: center !important;
    gap: 24px !important;
  }
  .to-hero-content > div[style*="display:flex"] > div {
    text-align: center !important;
    max-width: 100% !important;
  }
  .to-hero-h1 {
    text-align: center !important;
    font-size: clamp(40px, 16vw, 64px);
    line-height: 0.95;
  }
  .to-hero-btns,
  .to-hero-content div[style*="display:flex;gap:10px"] {
    width: 100%;
    justify-content: center;
  }
  .to-hero-btns .btn-solid,
  .to-hero-btns .btn-outline,
  .to-hero-content .btn-solid,
  .to-hero-content .btn-outline {
    min-height: 48px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.to-hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.to-hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--terracota), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}
.to-hero-scroll span {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 0.2em;
  color: var(--text-dim); text-transform: uppercase;
}

/* ── SCORE CINEMATIC ── */
.to-score {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  background: var(--bg-lab);
  overflow: hidden;
  padding: clamp(64px,10vh,120px) clamp(24px,6vw,64px);
}
.to-score-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: clamp(200px, 35vw, 420px);
  -webkit-text-stroke: 1px rgba(196,98,42,0.18);
  color: transparent;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.to-score-content {
  position: relative; z-index: 1;
  max-width: 680px;
}
.to-score-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 28px;
}
.to-score-h2 {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--text);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.to-score-h2 strong { font-weight: 600; }
.to-score-sub {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 520px;
}
.to-score-bar {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--separator);
  padding-top: 24px;
}
.to-score-stat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.to-score-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

/* ── ORIGIN SPLIT ── */
.to-origen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--bg-warm);
}
@media (max-width: 768px) {
  .to-origen {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .to-origen-foto,
  .to-origen-content {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
  }
  .to-origen-foto img {
    width: 100%;
    max-width: 100%;
  }
  .to-origen-content {
    padding: 56px 20px;
  }
  .to-origen-stats {
    flex-direction: column;
    gap: 18px;
  }
  .to-origen-stat {
    border-right: none;
    border-bottom: 1px solid rgba(240,237,232,0.08);
    margin-right: 0;
    padding: 0 0 18px;
  }
  .to-origen-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.to-origen-foto {
  position: relative; overflow: hidden;
  min-height: clamp(320px, 55vw, 100vh);
}
.to-origen-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.8s ease, transform 0.8s ease;
}
.to-origen-foto:hover img { filter: grayscale(0%); transform: scale(1.03); }
.to-origen-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(18,13,7,0.5) 100%);
}
.to-origen-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
  background: var(--bg-warm);
}
.to-origen-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.to-origen-h2 {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.1;
}
.to-origen-coords {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 32px;
}
.to-origen-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.5;
  padding-left: 20px;
  border-left: 2px solid rgba(196,98,42,0.35);
  margin: 0 0 20px;
}
.to-origen-firma {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.to-origen-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(240,237,232,0.08);
  padding-top: 28px;
}
.to-origen-stat {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(240,237,232,0.08);
  margin-right: 20px;
}
.to-origen-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.to-origen-stat-val {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 22px;
  color: var(--terracota);
  display: block;
  margin-bottom: 4px;
}
.to-origen-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── PROCESS ── */
.to-proceso {
  background: var(--bg-mid);
  border-top: 1px solid var(--separator);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
}
.to-proceso-inner { max-width: 1080px; margin: 0 auto; }
.to-proceso-top {
  margin-bottom: clamp(48px, 7vw, 80px);
}
.to-proceso-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.to-proceso-h2 {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.to-proceso-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracota);
}
.to-proceso-desc {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.to-proceso-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--separator);
}
@media (max-width: 640px) { .to-proceso-steps { grid-template-columns: 1fr; } }
.to-proceso-step {
  background: var(--bg-mid);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 36px);
  transition: background var(--mid);
}
.to-proceso-step:hover { background: rgba(196,98,42,0.04); }
.to-proceso-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--terracota);
  display: block;
  margin-bottom: 20px;
}
.to-proceso-step-title {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.to-proceso-step-body {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── TASTING NOTES ── */
.to-notas {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px);
}
.to-notas-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.to-notas-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(196,98,42,0.14) 0%, transparent 65%);
  z-index: 0;
}
.to-notas-content { position: relative; z-index: 1; max-width: 900px; }
.to-notas-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 48px;
}
.to-notas-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 52px;
}
.to-nota-word {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(36px, 7.5vw, 88px);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateX(-30px);
}
@media (max-width: 640px) {
  .to-notas-content {
    max-width: 100%;
    min-width: 0;
  }
  .to-nota-word {
    font-size: clamp(34px, 14vw, 58px);
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
.to-nota-sep {
  width: 32px; height: 1px;
  background: rgba(196,98,42,0.3);
  margin: 8px 0;
}
.to-notas-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.5;
}

/* ── SPECS ── */
.to-specs {
  background: var(--bg-vault);
  border-top: 1px solid var(--separator);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
}
.to-specs-inner { max-width: 1080px; margin: 0 auto; }
.to-specs-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
}
.to-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--separator);
}
@media (max-width: 640px) { .to-specs-grid { grid-template-columns: repeat(2, 1fr); } }
.to-spec-cell {
  background: var(--bg-vault);
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 32px);
  transition: background var(--mid);
}
.to-spec-cell:hover { background: rgba(196,98,42,0.04); }
.to-spec-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.to-spec-val {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  line-height: 1;
}
.to-spec-val.accent { color: var(--terracota); }

/* ── BREWING ── */
.to-brewing {
  background: var(--bg);
  border-top: 1px solid var(--separator);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
}
.to-brewing-inner { max-width: 1080px; margin: 0 auto; }
.to-brewing-top { margin-bottom: clamp(48px, 7vw, 72px); }
.to-brewing-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.to-brewing-h2 {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}
.to-brewing-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--separator);
}
@media (max-width: 640px) { .to-brewing-methods { grid-template-columns: 1fr; } }
.to-method {
  background: var(--bg);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: background var(--mid);
}
.to-method:hover { background: rgba(196,98,42,0.03); }
.to-method-name {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin: 0 0 6px;
  display: flex; align-items: center; gap: 8px;
}
.to-method-name::before {
  content: '';
  display: block; width: 6px; height: 6px;
  background: var(--terracota);
  border-radius: 50%;
  flex-shrink: 0;
}
.to-method-tagline {
  font-family: var(--font-main);
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.to-method-specs {
  display: flex; flex-direction: column; gap: 10px;
}
.to-method-row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(240,237,232,0.05);
  padding-bottom: 10px;
}
.to-method-row:last-child { border-bottom: none; padding-bottom: 0; }
.to-method-k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.to-method-v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  text-align: right;
}

/* ── BUY CTA ── */
.to-buy {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, rgba(196,98,42,0.18) 0%, transparent 65%),
    var(--bg-warm);
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px);
}
.to-buy-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.to-buy-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.to-buy-h2 {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.to-buy-sub {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 40px;
}
.to-buy-toggle {
  display: inline-flex;
  border: 1px solid var(--separator);
  margin-bottom: 24px;
}
.to-buy-toggle-btn {
  padding: 10px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  cursor: pointer;
  transition: background var(--fast), color var(--fast);
  border: none;
  background: none;
}
.to-buy-toggle-btn.active {
  background: var(--terracota);
  color: var(--bg);
}
.to-buy-price {
  display: block;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 40px;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.to-buy-price-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 32px;
}
.to-buy-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.to-buy-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-align: center;
}
.to-buy-sep {
  width: 40px; height: 1px;
  background: rgba(196,98,42,0.25);
  margin: 32px auto;
}
.to-buy-b2b {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ── B2B MEMBERSHIP PLANS (SOUL + native) ── */
.es-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--separator);
  margin-bottom: 40px;
  text-align: left;
}
@media (max-width: 900px) {
  .to-buy {
    min-height: auto;
    padding: 72px 20px;
  }
  .to-buy-sub {
    margin-bottom: 32px;
  }
  .to-buy-toggle {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .to-buy-toggle-btn {
    min-height: 48px;
    width: 100%;
  }
  .to-buy-cta .btn-solid,
  .to-buy-cta .btn-outline,
  .to-buy-cta .btn-ghost,
  .to-buy-individual .btn-solid,
  .to-buy-individual .btn-outline {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }
  .shipping-info {
    text-align: left;
  }
  .es-plans {
    grid-template-columns: 1fr;
    gap: 12px;
    background: transparent;
  }
  #sticky-buy {
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom)) !important;
    gap: 10px !important;
  }
  #sticky-buy .btn-solid {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.es-plan {
  background: var(--bg-vault);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: background var(--mid);
}
.es-plan:hover { background: rgba(196,98,42,0.05); }
.es-plan-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--terracota);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.es-plan-name {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  margin: 0 0 6px;
}
.es-plan-qty {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 24px;
}
.es-plan-price {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 36px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.es-plan-price-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 28px;
}
.es-plan-features {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--separator);
  padding-top: 20px;
}
.es-plan-feat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.es-plan-feat::before {
  content: '\2713  ';
  color: var(--terracota);
}
