/* ============================================================
   HOME · Pagina Luz
   ============================================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  padding: clamp(2rem, 5vw, 3.5rem) 0 4rem;
  display: flex; flex-direction: column;
  background: var(--cream);
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  top: 6vh;
  right: -8vw;
  width: 62vw; max-width: 900px;
  aspect-ratio: 1/1;
  color: var(--yellow);
  opacity: .85;
  z-index: 0;
}
.hero-sun svg { width: 100%; height: 100%; }
.hero-wave-bg {
  position: absolute;
  left: -10%; right: -10%; bottom: 0;
  height: 30vh;
  color: var(--orange);
  z-index: 0;
  opacity: .9;
}
.hero-wave-bg svg { width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  flex: 1;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 13vw, 14rem);
  line-height: .86;
  letter-spacing: -.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "wght" 380;
  text-wrap: balance;
  max-width: 12ch;
}
.hero-title .l1 { display: block; }
.hero-title .l2 {
  display: block;
  font-style: italic;
  color: var(--burgundy);
  font-variation-settings: "opsz" 144, "wght" 380;
  padding-left: 1.5ch;
}
.hero-bottom {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
@media (max-width: 880px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 1.75rem; }
}
.hero-lede {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.35;
  color: var(--ink-2);
  font-variation-settings: "opsz" 60;
  max-width: 36ch;
}
.hero-coord {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}
.hero-coord b { color: var(--ink); font-weight: 500; }
.hero-cta {
  display: flex; gap: .65rem; flex-wrap: wrap; justify-content: flex-end;
}
@media (max-width: 880px) { .hero-cta { justify-content: flex-start; } }

.scroll-hint {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 3;
}
.scroll-hint .line {
  width: 1px; height: 32px;
  background: var(--ink);
  transform-origin: top;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(.3); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* CHAPTER */
.chapter {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--cream);
}
.chapter.invert {
  background: var(--ink);
  color: var(--cream);
}
.chapter.invert h1, .chapter.invert h2, .chapter.invert h3 { color: var(--cream); }
.chapter.invert h1 em, .chapter.invert h2 em, .chapter.invert h3 em { color: var(--yellow); }
.chapter.invert .eyebrow { color: var(--yellow); }

.ch-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1.5rem;
  opacity: .98;
}
.ch-num {
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.ch-head h2 {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  text-align: right;
  font-style: italic;
  line-height: 1.05;
}

/* MANIFESTO */
.manifest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 880px) { .manifest { grid-template-columns: 1fr; } }
.manifest-text { position: sticky; top: 12vh; }
.manifest-text h2 {
  font-size: clamp(2rem, 5.2vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1.75rem;
}
.manifest-text p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-2);
  font-variation-settings: "opsz" 60;
  max-width: 38ch;
  margin-bottom: 1rem;
}
.manifest-stack { display: flex; flex-direction: column; gap: 2rem; }
.manifest-card {
  background: var(--sand);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.manifest-card.alt { background: var(--ink); color: var(--cream); }
.manifest-card.alt h3 { color: var(--cream); }
.manifest-card.alt h3 em { color: var(--yellow); }
.manifest-card .icon-block {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  font-variation-settings: "opsz" 60;
  flex-shrink: 0;
}
.manifest-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: .75rem;
  line-height: 1.05;
}
.manifest-card p {
  font-family: var(--f-sans);
  font-size: .95rem;
  color: inherit;
  opacity: .8;
}

/* RIZOS */
.rizos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .rizos { grid-template-columns: 1fr 1fr; } }
.rizo {
  position: relative;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background var(--tx);
  min-height: 320px;
}
.rizo:last-child { border-right: 0; }
@media (max-width: 760px) {
  .rizo:nth-child(2) { border-right: 0; }
  .rizo:nth-child(1), .rizo:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.rizo:hover { background: var(--sand); }
.rizo .rno {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.rizo .rsvg {
  width: 80px; height: 80px;
  color: var(--burgundy);
  display: grid; place-items: center;
}
.rizo .rsvg svg { width: 100%; height: 100%; }
.rizo h3 { font-size: 1.5rem; line-height: 1; }
.rizo h3 em { font-style: italic; color: var(--burgundy); }
.rizo p { font-size: .85rem; color: var(--muted); }
.rizo .rlink {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* RITUAL */
.ritual {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 880px) { .ritual { grid-template-columns: 1fr; } }
.ritual-pinned { position: sticky; top: 14vh; }
.ritual-pinned h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .96;
  margin-bottom: 1.25rem;
}
.ritual-pinned p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
  color: rgba(252, 242, 232, .8);
  font-variation-settings: "opsz" 60;
  max-width: 32ch;
}
.ritual-list { display: flex; flex-direction: column; gap: 1.5rem; }
.r-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid rgba(252, 242, 232, .15);
  border-radius: 24px;
  background: rgba(252, 242, 232, .03);
  transition: all var(--tx);
}
.r-step:hover { background: rgba(252, 242, 232, .07); border-color: var(--yellow); }
.r-step .rnum {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--yellow);
  font-variation-settings: "opsz" 144;
  flex-shrink: 0;
}
.r-step h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: .5rem;
}
.r-step .verb {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .5rem;
}
.r-step p {
  font-size: .95rem;
  color: rgba(252, 242, 232, .75);
  margin-bottom: 1rem;
}
.r-step .rprod {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: .4rem;
}
.r-step .rprod::before {
  content: ""; width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 999px;
}

/* INGREDIENTES */
.ingr-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ingr-scroll::-webkit-scrollbar { display: none; }
.ingr {
  flex-shrink: 0;
  width: min(360px, 80vw);
  scroll-snap-align: start;
  background: var(--sand);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.ingr.alt { background: var(--pink); color: var(--ink); }
.ingr.alt2 { background: var(--yellow); }
.ingr .label {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ingr h3 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: .75rem;
  line-height: 1;
}
.ingr p {
  font-size: .92rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}
.ingr .botanic {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.ingr .botanic dt {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
}
.ingr .botanic dd {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: .5rem;
  font-variation-settings: "opsz" 60;
}
.ingr-svg {
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 60%;
  opacity: .15;
  color: var(--burgundy);
}
.ingr-cta {
  flex-shrink: 0;
  width: min(360px, 80vw);
  scroll-snap-align: start;
  display: grid; place-items: center;
  text-align: center;
  background: var(--ink); color: var(--cream);
  border-radius: 24px;
  padding: 2.5rem;
}
.ingr-cta h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: 1rem; }
.ingr-cta p { color: rgba(252, 242, 232, .7); font-size: .9rem; margin-bottom: 1.25rem; }

/* BEFORE / AFTER */
.ba {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 28px;
  overflow: hidden;
  user-select: none;
  box-shadow: 0 30px 80px -30px rgba(31, 26, 26, .35);
}
.ba .pane { position: absolute; inset: 0; }
.ba .pane-after { clip-path: inset(0 0 0 var(--clip, 50%)); }
.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: .35rem .7rem;
  background: var(--cream);
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 4px;
  color: var(--ink);
}
.ba-label.l { left: 1rem; }
.ba-label.r { right: 1rem; background: var(--burgundy); color: var(--cream); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--clip, 50%);
  width: 3px;
  background: var(--cream);
  transform: translateX(-50%);
}
.ba-handle::after {
  content: "↔";
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 1.5rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.ba-pane-mock {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: rgba(252, 242, 232, .8);
}
.ba-pane-mock.before {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #4d3d36, #2a1f1c);
}
.ba-pane-mock.after {
  background:
    radial-gradient(50% 60% at 50% 40%, color-mix(in oklab, var(--yellow) 28%, transparent), transparent 70%),
    linear-gradient(135deg, color-mix(in oklab, var(--orange) 70%, var(--burgundy)), var(--burgundy));
}
.ba-pane-mock .ph-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.5);
  color: var(--cream);
  padding: .3rem .5rem;
  border-radius: 4px;
}

.ba-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 760px) { .ba-foot { grid-template-columns: 1fr; } }
.ba-fact { border-top: 2px solid var(--burgundy); padding-top: 1rem; }
.ba-fact .v {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  color: var(--burgundy);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.ba-fact .l {
  font-size: .9rem;
  color: var(--muted);
  margin-top: .35rem;
  max-width: 28ch;
}

/* BENTO */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1rem;
}
.bento-cell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease);
}
.bento-cell:hover { transform: translateY(-4px); }
.bento-cell .b-cat {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bento-cell .b-name {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  margin: .5rem 0 .75rem;
  color: var(--ink);
}
.bento-cell .b-name em { font-style: italic; color: var(--burgundy); }
.bento-cell .b-price {
  font-family: var(--f-mono);
  font-size: .82rem;
  color: var(--ink);
  font-weight: 500;
}
.bento-cell .b-add {
  position: absolute;
  bottom: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--cream);
  display: grid; place-items: center;
  transition: all var(--tx);
}
.bento-cell .b-add:hover { background: var(--orange); transform: scale(1.08); }
.bento-cell .b-add.is-added { background: var(--yellow); color: var(--ink); }

.bc-1 { grid-column: span 4; grid-row: span 2; background: var(--sand); }
/* Product photos: fitted panel anchored to the right of the card */
.b-bottle {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 44%;
  z-index: 1;
}
.b-bottle .oc-asset { object-fit: cover; object-position: center; }
.bento-cell .b-add { z-index: 4; }
.bc-1 { padding-right: 46%; }
.bc-1 .b-bottle { width: 44%; }
.bc-1 .b-name { font-size: clamp(2.5rem, 5vw, 4.5rem); max-width: 8ch; }
.bc-2 { grid-column: span 2; grid-row: span 1; background: var(--burgundy); color: var(--cream); }
.bc-2 .b-cat { color: rgba(252,242,232,.7); }
.bc-2 .b-name { color: var(--cream); }
.bc-2 .b-name em { color: var(--yellow); }
.bc-2 .b-price { color: var(--cream); }
.bc-3 { grid-column: span 2; grid-row: span 1; background: var(--yellow); position: relative; }
.bc-3 .b-cat, .bc-3 .b-name, .bc-3 .b-price { color: var(--ink); }
.bc-3 { padding-right: 44%; }
.bc-3 .b-bottle { width: 42%; }
.bc-4 { padding-right: 42%; }
.bc-4 .b-bottle { width: 40%; }
.bc-4 { grid-column: span 3; background: var(--ink); color: var(--cream); }
.bc-4 .b-cat { color: rgba(252,242,232,.7); }
.bc-4 .b-name { color: var(--cream); }
.bc-4 .b-name em { color: var(--yellow); font-style: italic; }
.bc-4 .stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: auto;
}
.bc-4 .stats > div { border-top: 1px solid rgba(252,242,232,.2); padding-top: .75rem; }
.bc-4 .stats .v { font-family: var(--f-display); font-style: italic; font-size: 2rem; color: var(--yellow); line-height: 1; }
.bc-4 .stats .l { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; margin-top: .4rem; }
.bc-5 { grid-column: span 3; background: var(--pink); }
.bc-5 .quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  font-variation-settings: "opsz" 60;
  margin-bottom: 1rem;
}
.bc-5 .who { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 880px) {
  .bento { grid-template-columns: 1fr; }
  .bc-1, .bc-2, .bc-3, .bc-4, .bc-5 { grid-column: span 1; }
  .bc-1, .bc-3, .bc-4 { padding-right: 1.5rem; padding-bottom: 250px; }
  .b-bottle { top: auto; left: 0; right: 0; bottom: 0; width: 100%; height: 240px; }
}

/* TESTIMONIOS */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 880px) { .testis { grid-template-columns: 1fr; } }
.testi {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: all var(--tx);
}
.testi:hover { background: var(--sand); border-color: var(--burgundy); }
.testi .stars { color: var(--orange); font-size: 1rem; letter-spacing: .2em; }
.testi blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.testi .who { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.testi .av {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--burgundy), var(--orange));
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 600;
}
.testi .nm { font-size: .9rem; font-weight: 500; }
.testi .me { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .15rem; }

/* COMMUNITY */
.community {
  background: var(--burgundy);
  color: var(--cream);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.community h2 {
  color: var(--cream);
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: .96;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.community h2 em { color: var(--yellow); font-style: italic; }
.community p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.4;
  color: rgba(252, 242, 232, .85);
  font-variation-settings: "opsz" 60;
  max-width: 40ch;
  margin-bottom: 2.5rem;
}
.community .ccta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.community .btn { background: var(--yellow); color: var(--ink); }
.community .btn::after { background: var(--cream); }
.community .btn:hover { color: var(--ink); }
.community .btn-ghost { color: var(--cream); border-color: rgba(252, 242, 232, .35); }
.community .btn-ghost::after { background: var(--cream); }
.community .btn-ghost:hover { color: var(--burgundy); border-color: var(--cream); }
.community-sun {
  position: absolute;
  right: -10%; top: -20%;
  width: 60%;
  opacity: .12;
  color: var(--yellow);
}
