:root{
  --limestone:#F4F1E8;
  --basalt:#1D2318;
  --moss:#55694A;
  --clay:#B6875A;
  --mist:#E4E7DD;
}

html{
  scroll-behavior:smooth;
}

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

html,body{height:100%;}

body{
  font-family:'Public Sans', sans-serif;
  background:var(--basalt);
  color:var(--limestone);
  overflow-x:hidden;
}

.hero{
  position:relative;
  width:100%;
  height:100vh; /* fallback para navegadores viejos sin soporte de dvh */
  height:100dvh; /* altura real visible en móvil, sin la barra del navegador */
  min-height:640px;
  overflow:hidden;
}

/* ---------- VIDEO BACKGROUND (hybrid: YouTube desktop / local mobile) ----------
   The container itself carries bg.png as a real CSS background, so it's
   always there underneath — if the YouTube embed is blocked (ad-blocker,
   no connection to YouTube) or the mobile mp4 fails to load, the photo
   just stays visible with nothing on top of it. No JS fallback needed. */
.hero-video-container{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:0;
  background-image:url('img/bg.png');
  background-size:cover;
  background-position:center;
}

/* Base video element (used for the mobile <video> — desktop uses the
   iframe rule below instead). Simple, reliable cover-fit: no need for
   the old width/height:auto centering trick here, since object-fit
   works natively on <video> and doesn't depend on metadata timing. */
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border:0;
}

/* YouTube iframe: classic 16:9 "always cover" trick — sized off the
   viewport so it never letterboxes regardless of window shape.
   Needed here (and only here) because an <iframe> can't use
   object-fit, so we oversize it and re-center it instead. */
.hero-video--youtube{
  position:absolute;
  top:50%;
  left:50%;
  width:100vw;
  height:56.25vw;
  min-height:100vh;
  min-width:177.78vh;
  transform:translate(-50%, -50%);
  pointer-events:none;
}

/* Dark scrim so text stays legible over any footage.
   Two layers: a soft top/bottom fade for the nav and scroll cue,
   plus a gentle radial shadow centered behind the text block so the
   headline and CTAs keep contrast no matter what's playing in the video. */
.hero-scrim{
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 55% at 26% 48%, rgba(20,24,15,0.42) 0%, rgba(20,24,15,0.18) 45%, transparent 75%),
    linear-gradient(180deg, rgba(29,35,24,0.45) 0%, rgba(29,35,24,0.08) 26%, rgba(29,35,24,0.22) 60%, rgba(20,24,15,0.8) 100%);
  z-index:1;
}

/* Subtle grain — gives the video an artisanal, tactile feel instead of glossy stock footage */
.hero-grain{
  position:absolute;
  inset:0;
  z-index:2;
  opacity:0.16;
  mix-blend-mode:overlay;
  pointer-events:none;
}

/* ---------- NAVBAR ---------- */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 5vw;
  transition:padding 0.4s ease, background 0.4s ease;
}

.navbar.scrolled{
  padding:16px 5vw;
  background:rgba(29,35,24,0.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.logo{
  display:flex;
  align-items:center;
  gap:4px;
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:1.05rem;
  letter-spacing:0.01em;
  color:var(--limestone);
  text-decoration:none;
  opacity:0.92;
}

.logo-mark{
  width:16px;
  height:16px;
  flex-shrink:0;
}

.logo-mark path{
  fill:none;
  stroke:var(--clay);
  stroke-width:1.4;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:clamp(20px, 3vw, 40px);
  list-style:none;
}

.nav-menu a{
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--limestone);
  text-decoration:none;
  font-weight:500;
  opacity:0.82;
  position:relative;
  padding-bottom:4px;
  transition:opacity 0.25s ease;
}

.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:1px;
  background:var(--clay);
  transition:width 0.3s ease;
}

.nav-menu a:hover{opacity:1;}
.nav-menu a:hover::after{width:100%;}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:20px;
  height:1px;
  background:var(--limestone);
  display:block;
}

/* ---------- HERO CONTENT ---------- */
.hero-content{
  position:relative;
  z-index:5;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 5vw;
  max-width:760px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.72rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--mist);
  opacity:0.85;
  margin-bottom:22px;
}

.eyebrow .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--clay);
  display:inline-block;
}

h1{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(2.6rem, 6.6vw, 5.2rem);
  line-height:1.04;
  letter-spacing:-0.01em;
  color:var(--limestone);
}

h1 em{
  font-style:normal;
  font-weight:340;
  color:var(--mist);
}

.hero-sub{
  margin-top:26px;
  max-width:420px;
  font-size:1rem;
  line-height:1.65;
  color:var(--mist);
  opacity:0.88;
  font-weight:400;
}

.hero-cta{
  margin-top:40px;
  display:flex;
  align-items:center;
  gap:18px;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  background:var(--limestone);
  color:var(--basalt);
  text-decoration:none;
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:600;
  border-radius:2px;
  transition:background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover{
  background:var(--clay);
  transform:translateY(-1px);
}

.btn-primary svg{
  width:14px;
  height:14px;
  transition:transform 0.3s ease;
}
.btn-primary:hover svg{transform:translateX(3px);}

.btn-ghost{
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--limestone);
  text-decoration:none;
  opacity:0.75;
  border-bottom:1px solid rgba(244,241,232,0.35);
  padding-bottom:3px;
  transition:opacity 0.25s ease;
}
.btn-ghost:hover{opacity:1;}

/* ---------- SCROLL CUE: falling droplet ---------- */
.scroll-cue{
  position:absolute;
  bottom:38px;
  left:5vw;
  z-index:5;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  cursor:pointer;
}

.scroll-cue span{
  font-size:0.68rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--mist);
  opacity:0.6;
}

.droplet-track{
  position:relative;
  width:1px;
  height:34px;
  background:rgba(228,231,221,0.25);
  overflow:hidden;
}

.droplet{
  position:absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
  width:5px;
  height:7px;
  background:var(--clay);
  border-radius:0 50% 50% 50%;
  transform:translateX(-50%) rotate(45deg);
  animation:drip 2.4s ease-in infinite;
}

@keyframes drip{
  0%{top:-8px; opacity:0;}
  15%{opacity:1;}
  85%{opacity:1;}
  100%{top:34px; opacity:0;}
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:820px){
  .nav-menu{
    position:absolute;
    top:64px;
    right:5vw;
    flex-direction:column;
    align-items:flex-end;
    gap:18px;
    background:rgba(29,35,24,0.92);
    backdrop-filter:blur(10px);
    padding:22px 24px;
    border-radius:2px;
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:all 0.3s ease;
  }
  .nav-menu.open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .nav-toggle{display:flex;}
  .hero-sub{max-width:100%;}
  .scroll-cue{display:none;}
}

@media (prefers-reduced-motion: reduce){
  .droplet{animation:none; top:10px; opacity:0.7;}
  .navbar, .nav-menu a::after, .btn-primary, .btn-primary svg{transition:none;}
  .no-check{transition:none;}
}

/* ==========================================================
   JABONES — product section (full-bleed, sits below hero)
   Grid is fixed at 3 columns on purpose: when the catalog grows
   to 6 or 9 soaps, new <article class="soap-card"> items just
   wrap onto additional rows automatically — no CSS changes needed.
   ========================================================== */

.jabones{
  width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--limestone);
  color:var(--basalt);
  padding:110px 5vw 60px;
  scroll-margin-top:0;
}

.jabones-header{
  max-width:560px;
  margin:0 0 44px;
  text-align:center;
}

.eyebrow-dark{
  color:var(--moss);
  justify-content:center;
}

.jabones h2{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.9rem, 3.6vw, 2.7rem);
  line-height:1.1;
  letter-spacing:-0.01em;
  color:var(--basalt);
}

.jabones h2 em{
  font-style:normal;
  font-weight:340;
  color:var(--moss);
}

.jabones-sub{
  margin:16px auto 0;
  max-width:400px;
  font-size:0.94rem;
  line-height:1.6;
  color:var(--basalt);
  opacity:0.66;
}

.soap-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 220px));
  gap:28px;
  justify-content:center;
  width:100%;
  max-width:900px;
}

.soap-card{
  display:flex;
  flex-direction:column;
  background:#FBF9F3;
  border:1px solid rgba(29,35,24,0.08);
  border-radius:3px;
  overflow:hidden;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.soap-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px -22px rgba(29,35,24,0.22);
}

.soap-visual{
  position:relative;
  aspect-ratio:4/3;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* Tonal swatches derived from the same palette — stand in for
   product photography until real soap shots are dropped in. */
.soap-visual[data-tone="1"]{
  background:linear-gradient(155deg, #6b7d5d 0%, #3f4d34 100%);
}
.soap-visual[data-tone="2"]{
  background:linear-gradient(155deg, #8a9880 0%, #55694A 100%);
}
.soap-visual[data-tone="3"]{
  background:linear-gradient(155deg, #c79b6c 0%, #9c7148 100%);
}

.soap-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.soap-info{
  padding:16px 18px 20px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.soap-tag{
  align-self:flex-start;
  font-size:0.6rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--moss);
  border:1px solid rgba(85,105,74,0.35);
  border-radius:20px;
  padding:4px 10px;
  margin-bottom:10px;
}

.soap-name{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-size:1.05rem;
  color:var(--basalt);
  margin-bottom:5px;
}

.soap-desc{
  font-size:0.76rem;
  line-height:1.45;
  color:var(--basalt);
  opacity:0.6;
  margin-bottom:9px;
}

.soap-ingredients{
  font-size:0.7rem;
  letter-spacing:0.02em;
  color:var(--basalt);
  opacity:0.5;
  margin-bottom:14px;
}

.soap-footer{
  display:flex;
  align-items:baseline;
  gap:8px;
  padding-top:12px;
  margin-top:auto;
  border-top:1px solid rgba(29,35,24,0.1);
}

.soap-price{
  font-family:'Fraunces', serif;
  font-size:0.98rem;
  font-weight:500;
  color:var(--basalt);
}

.soap-weight{
  font-size:0.68rem;
  letter-spacing:0.03em;
  color:var(--basalt);
  opacity:0.5;
}

.soap-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:12px;
  font-size:0.68rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--basalt);
  text-decoration:none;
  opacity:0.85;
  transition:opacity 0.25s ease, gap 0.25s ease;
}

.soap-link svg{
  width:11px;
  height:11px;
}

.soap-link:hover{
  opacity:1;
  gap:9px;
}

/* ---------- RESPONSIVE: Jabones ---------- */
@media (max-width:1024px){
  .soap-grid{grid-template-columns:repeat(2, minmax(0, 240px));}
}

@media (max-width:640px){
  .jabones{padding:110px 6vw 60px; min-height:auto;}
  .soap-grid{grid-template-columns:minmax(0, 260px); gap:24px;}
  .jabones-header{margin-bottom:36px;}
}

/* ==========================================================
   INGREDIENTES — shared icon styling for both concepts
   ========================================================== */
.ing-icon svg{width:100%;height:100%;display:block;}
.ing-icon path,
.ing-icon circle,
.ing-icon ellipse,
.ing-icon line{
  fill:none;
  stroke:currentColor;
  stroke-width:1.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* ==========================================================
   OPCIÓN A — Índice editorial
   Full-screen dark section, typographic list with hairline
   dividers. Minimal, reads like an apothecary ledger.
   ========================================================== */
.ingredientes-a{
  width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--basalt);
  color:var(--limestone);
  padding:120px 5vw 70px;
}

.ia-header{
  text-align:center;
  max-width:520px;
  margin-bottom:56px;
}

.ia-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:0.72rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--mist);
  opacity:0.85;
  margin-bottom:18px;
}
.ia-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--clay);display:inline-block;}

.ia-title{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.9rem, 3.6vw, 2.7rem);
  line-height:1.1;
  letter-spacing:-0.01em;
  color:var(--limestone);
}
.ia-title em{font-style:normal;font-weight:340;color:var(--mist);}

.ia-sub{
  margin-top:16px;
  font-size:0.94rem;
  line-height:1.6;
  color:var(--mist);
  opacity:0.68;
}

.ia-list{
  width:100%;
  max-width:760px;
  border-top:1px solid rgba(244,241,232,0.14);
}

.ia-row{
  display:flex;
  align-items:center;
  gap:22px;
  padding:20px 6px;
  border-bottom:1px solid rgba(244,241,232,0.14);
  transition:background 0.3s ease;
}
.ia-row:hover{background:rgba(244,241,232,0.045);}

.ia-icon{
  flex:0 0 auto;
  width:26px;
  height:26px;
  color:var(--mist);
  opacity:0.8;
  transition:color 0.3s ease;
}
.ia-row:hover .ia-icon{color:var(--clay); opacity:1;}

.ia-text{flex:1; min-width:0;}

.ia-name{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-size:1.15rem;
  color:var(--limestone);
}

.ia-desc{
  margin-top:4px;
  font-size:0.8rem;
  line-height:1.5;
  color:var(--mist);
  opacity:0.58;
}

.ia-tag{
  flex:0 0 auto;
  font-size:0.62rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--mist);
  border:1px solid rgba(244,241,232,0.25);
  border-radius:20px;
  padding:5px 12px;
  white-space:nowrap;
}

@media (max-width:640px){
  .ingredientes-a{min-height:auto; padding:100px 6vw 60px;}
  .ia-row{gap:14px;}
  .ia-tag{display:none;}
}

/* ==========================================================
   OPCIÓN B — Mesa de ingredientes
   Full-screen dark section, scattered circular "seals" —
   flat-lay feel, more visual/organic than Opción A.
   ========================================================== */
.ingredientes-b{
  width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--basalt);
  color:var(--limestone);
  padding:120px 5vw 70px;
}

.ib-header{
  text-align:center;
  max-width:520px;
  margin-bottom:56px;
}

.ib-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:0.72rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--mist);
  opacity:0.85;
  margin-bottom:18px;
}
.ib-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--clay);display:inline-block;}

.ib-title{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.9rem, 3.6vw, 2.7rem);
  line-height:1.1;
  letter-spacing:-0.01em;
  color:var(--limestone);
}
.ib-title em{font-style:normal;font-weight:340;color:var(--mist);}

.ib-sub{
  margin-top:16px;
  font-size:0.94rem;
  line-height:1.6;
  color:var(--mist);
  opacity:0.68;
}

.ib-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  gap:30px 22px;
  max-width:820px;
}

/* Curated scatter — not a strict grid, feels more like items
   set down on a table than tiled in rows. */
.ib-seal{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  width:148px;
  background:none;
  border:none;
  padding:0;
  font:inherit;
  color:inherit;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:opacity 0.45s ease;
}

.ib-seal:nth-child(2){margin-top:38px;}
.ib-seal:nth-child(3){margin-top:6px;}
.ib-seal:nth-child(4){margin-top:14px;}
.ib-seal:nth-child(5){margin-top:-8px;}
.ib-seal:nth-child(6){margin-top:30px;}

/* Spotlight: hovering the grid dims every seal except the one
   being hovered/focused/tapped — pure CSS, no JS required. */
.ib-grid:hover .ib-seal,
.ib-grid:focus-within .ib-seal{opacity:0.5;}
.ib-grid .ib-seal:hover,
.ib-grid .ib-seal:focus-visible,
.ib-grid .ib-seal.is-active{opacity:1;}

.ib-circle{
  position:relative;
  width:108px;
  height:108px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  box-shadow:inset 0 0 0 1px rgba(244,241,232,0.15), 0 0 0 0 rgba(182,135,94,0);
  transform:scale(1);
  transition:transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ib-seal:hover .ib-circle,
.ib-seal:focus-visible .ib-circle,
.ib-seal.is-active .ib-circle{
  transform:scale(1.08);
  box-shadow:inset 0 0 0 1px rgba(244,241,232,0.15), 0 0 0 5px rgba(182,135,94,0.22);
}

.ib-circle[data-tone="1"]{background:linear-gradient(155deg, #6b7d5d 0%, #3f4d34 100%);}
.ib-circle[data-tone="2"]{background:linear-gradient(155deg, #8a9880 0%, #55694A 100%);}
.ib-circle[data-tone="3"]{background:linear-gradient(155deg, #c79b6c 0%, #9c7148 100%);}

.ib-icon{
  width:36px;
  height:36px;
  color:var(--limestone);
  opacity:0.9;
  transition:transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.ib-seal:hover .ib-icon,
.ib-seal:focus-visible .ib-icon,
.ib-seal.is-active .ib-icon{transform:scale(0.92);}

.ib-name{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-size:0.98rem;
  color:var(--limestone);
  margin-bottom:6px;
  transition:color 0.35s ease;
}
.ib-seal:hover .ib-name,
.ib-seal:focus-visible .ib-name,
.ib-seal.is-active .ib-name{color:var(--clay);}

/* Description is reserved space (not display:none) so revealing
   it never shifts layout — it just fades and lifts into place. */
.ib-desc{
  font-size:0.72rem;
  line-height:1.42;
  color:var(--mist);
  opacity:0;
  transform:translateY(-4px);
  transition:opacity 0.4s ease, transform 0.4s ease;
}
.ib-seal:hover .ib-desc,
.ib-seal:focus-visible .ib-desc,
.ib-seal.is-active .ib-desc{
  opacity:0.68;
  transform:translateY(0);
}

@media (max-width:640px){
  .ingredientes-b{min-height:auto; padding:100px 6vw 60px;}
  .ib-seal{width:118px;}
  .ib-circle{width:86px; height:86px;}
  .ib-seal:nth-child(n){margin-top:0 !important;}
  .ib-grid{gap:26px 16px;}
  /* Spotlight dimming feels odd on touch; keep all seals at full
     opacity and rely on tap-to-reveal (is-active) instead. */
  .ib-grid:hover .ib-seal{opacity:1;}
}

@media (prefers-reduced-motion: reduce){
  .ib-circle, .ib-icon, .ib-name, .ib-desc, .ib-seal{transition:none;}
}

/* ==========================================================
   NOSOTROS — full-screen manifesto, light section (rhythm:
   hero dark → jabones light → ingredientes dark → nosotros light)
   ========================================================== */
.nosotros{
  position:relative;
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--limestone);
  color:var(--basalt);
  padding:120px 5vw;
  overflow:hidden;
}

/* Oversized, barely-there droplet — the logo mark blown up as a
   quiet watermark instead of any stock imagery. */
.no-watermark{
  position:absolute;
  top:-8%;
  right:-6%;
  width:min(52vw, 620px);
  height:auto;
  color:var(--basalt);
  opacity:0.045;
  pointer-events:none;
  z-index:0;
}
.no-watermark path{fill:currentColor;}

.nosotros-inner{
  position:relative;
  z-index:1;
  width:100%;
  max-width:700px;
}

.no-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.72rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--moss);
  opacity:0.9;
  margin-bottom:28px;
}
.no-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--clay);display:inline-block;}

.no-statement{
  font-family:'Fraunces', serif;
  font-style:normal;
  font-weight:440;
  font-size:clamp(1.7rem, 3.4vw, 2.5rem);
  line-height:1.28;
  letter-spacing:-0.005em;
  color:var(--basalt);
  max-width:620px;
}

.no-text{
  margin-top:32px;
  max-width:520px;
  font-size:1rem;
  line-height:1.75;
  color:var(--basalt);
  opacity:0.68;
}

.no-values{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid rgba(29,35,24,0.14);
}

.no-value{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1 1 180px;
  padding-right:24px;
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--basalt);
  opacity:0.72;
}

.no-check{
  flex-shrink:0;
  width:18px;
  height:18px;
  color:var(--clay);
  opacity:0;
  transform:scale(0.4);
  transition:opacity 0.5s ease, transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.no-check circle,
.no-check path{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.no-value.is-visible .no-check{
  opacity:1;
  transform:scale(1);
}

@media (max-width:640px){
  .nosotros{min-height:auto; padding:100px 6vw 90px;}
  .no-watermark{width:70vw; top:-4%; right:-14%;}
  .no-values{flex-direction:column; gap:16px;}
  .no-value{flex:0 0 auto; padding-right:0;}
}

/* ==========================================================
   CONTACTO — compact CTA strip, not full-screen on purpose.
   Sits between Nosotros (light) and the footer (near-black),
   so it stays dark and reads as one continuous "closing" beat.
   ========================================================== */
.contacto{
  width:100%;
  background:var(--basalt);
  color:var(--limestone);
  padding:110px 5vw 100px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.contacto h2{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(2rem, 4.4vw, 3.1rem);
  line-height:1.12;
  letter-spacing:-0.01em;
  color:var(--limestone);
  margin-top:20px;
}
.contacto h2 em{font-style:normal; font-weight:340; color:var(--mist);}

.contacto-sub{
  margin-top:18px;
  max-width:440px;
  font-size:1rem;
  line-height:1.65;
  color:var(--mist);
  opacity:0.72;
}

.contact-channels{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin-top:44px;
}

.contact-channel{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border:1px solid rgba(244,241,232,0.25);
  border-radius:30px;
  color:var(--limestone);
  text-decoration:none;
  font-size:0.78rem;
  letter-spacing:0.07em;
  text-transform:uppercase;
  font-weight:600;
  transition:border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.contact-channel svg{width:16px; height:16px; flex-shrink:0;}
.contact-channel:hover{
  border-color:var(--clay);
  background:rgba(182,135,94,0.1);
  transform:translateY(-2px);
}

@media (max-width:640px){
  .contacto{padding:90px 6vw 80px;}
  .contact-channels{flex-direction:column; width:100%; max-width:280px;}
  .contact-channel{justify-content:center;}
}

/* ==========================================================
   FOOTER — thin, near-black, courtesy close of the site.
   Pixelfox credit sits centered as its own row, bottom-middle.
   ========================================================== */
.site-footer{
  width:100%;
  background:#14180f;
  color:var(--mist);
  padding:52px 5vw 28px;
}

.footer-main{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(244,241,232,0.1);
}

.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:26px;
  list-style:none;
}
.footer-nav a{
  font-size:0.7rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--mist);
  opacity:0.72;
  text-decoration:none;
  transition:opacity 0.25s ease;
}
.footer-nav a:hover{opacity:1;}

.footer-social{
  display:flex;
  gap:12px;
}
.footer-social a{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(244,241,232,0.18);
  color:var(--mist);
  transition:border-color 0.3s ease, color 0.3s ease;
}
.footer-social svg{width:15px; height:15px;}
.footer-social a:hover{border-color:var(--clay); color:var(--clay);}

/* Pixelfox credit — centered, own row, bottom-middle of the footer */
.footer-credit{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:34px 0 18px;
  text-align:center;
}
.footer-credit img{
  width:30px;
  height:30px;
  filter:invert(1);
  opacity:0.55;
  transition:opacity 0.3s ease;
}
.footer-credit a{color:inherit; text-decoration:none;}
.footer-credit a:hover img,
.footer-credit a:hover .footer-credit-text{opacity:0.85;}
.footer-credit-text{
  display:block;
  font-size:0.72rem;
  letter-spacing:0.02em;
  text-transform:lowercase;
  color:var(--mist);
  opacity:0.5;
  transition:opacity 0.3s ease;
}
.footer-credit-text a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
  text-decoration-color:rgba(228,231,221,0.35);
  transition:color 0.25s ease, text-decoration-color 0.25s ease;
}
.footer-credit-text a:hover{
  color:var(--clay);
  text-decoration-color:var(--clay);
}

.footer-bottom{
  text-align:center;
  font-size:0.68rem;
  color:var(--mist);
  opacity:0.32;
  padding-top:4px;
}

@media (max-width:640px){
  .footer-main{flex-direction:column; text-align:center;}
}

/* ==========================================================
   PÁGINA DE PRODUCTO — jabón individual (jabon-antiacne.html
   y futuras páginas de producto reutilizan estas mismas clases)
   ========================================================== */

.producto-hero{
  width:100%;
  background:var(--limestone);
  color:var(--basalt);
  padding:150px 5vw 90px;
}

.producto-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--basalt);
  opacity:0.6;
  text-decoration:none;
  margin-bottom:48px;
  transition:opacity 0.25s ease, gap 0.25s ease;
}
.producto-back svg{width:13px; height:13px;}
.producto-back:hover{opacity:1; gap:11px;}

.producto-grid{
  display:grid;
  grid-template-columns:minmax(0, 440px) 1fr;
  gap:64px;
  max-width:1080px;
  margin:0 auto;
  align-items:start;
}

.producto-visual{
  position:relative;
  aspect-ratio:4/5;
  border-radius:3px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.producto-visual[data-tone="1"]{background:linear-gradient(155deg, #6b7d5d 0%, #3f4d34 100%);}
.producto-visual[data-tone="2"]{background:linear-gradient(155deg, #8a9880 0%, #55694A 100%);}
.producto-visual[data-tone="3"]{background:linear-gradient(155deg, #c79b6c 0%, #9c7148 100%);}
.producto-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.producto-visual .soap-icon-large{
  width:26%;
  height:26%;
  fill:none;
  stroke:rgba(244,241,232,0.85);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.producto-tag{
  display:inline-block;
  font-size:0.66rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--moss);
  border:1px solid rgba(85,105,74,0.35);
  border-radius:20px;
  padding:5px 14px;
  margin-bottom:18px;
}

.producto-info h1{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(2rem, 3.6vw, 2.9rem);
  line-height:1.08;
  letter-spacing:-0.01em;
  color:var(--basalt);
  margin-bottom:18px;
}

.producto-price-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  padding-bottom:24px;
  margin-bottom:24px;
  border-bottom:1px solid rgba(29,35,24,0.12);
}
.producto-price{
  font-family:'Fraunces', serif;
  font-size:1.5rem;
  font-weight:500;
  color:var(--basalt);
}
.producto-weight{
  font-size:0.8rem;
  color:var(--basalt);
  opacity:0.55;
}

.producto-desc{
  font-size:1rem;
  line-height:1.75;
  color:var(--basalt);
  opacity:0.72;
  max-width:480px;
}

.producto-ingredients-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.producto-chip{
  font-size:0.7rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--basalt);
  opacity:0.7;
  background:rgba(29,35,24,0.06);
  border-radius:20px;
  padding:7px 14px;
}

.producto-cta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
  margin-top:36px;
}

@media (max-width:820px){
  .producto-grid{grid-template-columns:1fr; gap:36px;}
  .producto-visual{max-width:420px; margin:0 auto;}
}
@media (max-width:640px){
  .producto-hero{padding:120px 6vw 60px;}
}

/* ---------- Beneficios (light, below hero) ---------- */
.producto-beneficios{
  width:100%;
  background:var(--limestone);
  color:var(--basalt);
  padding:0 5vw 100px;
}
.producto-beneficios-inner{
  max-width:1080px;
  margin:0 auto;
  padding-top:70px;
  border-top:1px solid rgba(29,35,24,0.12);
}
.producto-beneficios h2{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.5rem, 2.6vw, 2rem);
  color:var(--basalt);
  margin-bottom:36px;
}
.producto-beneficios-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.producto-beneficio{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.producto-beneficio svg{
  flex-shrink:0;
  width:20px;
  height:20px;
  margin-top:2px;
  color:var(--clay);
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.producto-beneficio p{
  font-size:0.92rem;
  line-height:1.55;
  color:var(--basalt);
  opacity:0.72;
}
@media (max-width:820px){
  .producto-beneficios-grid{grid-template-columns:1fr; gap:22px;}
}

/* ---------- Ingredientes del producto (dark, reuses ia-row look) ---------- */
.producto-ingredientes{
  width:100%;
  background:var(--basalt);
  color:var(--limestone);
  padding:90px 5vw;
}
.producto-ingredientes-inner{max-width:760px; margin:0 auto;}
.producto-ingredientes h2{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.5rem, 2.6vw, 2rem);
  color:var(--limestone);
  margin-bottom:36px;
}

/* ---------- Cómo usarlo (light, numbered — a real sequence) ---------- */
.producto-uso{
  width:100%;
  background:var(--limestone);
  color:var(--basalt);
  padding:90px 5vw;
}
.producto-uso-inner{max-width:760px; margin:0 auto;}
.producto-uso h2{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.5rem, 2.6vw, 2rem);
  color:var(--basalt);
  margin-bottom:36px;
}
.producto-steps{
  list-style:none;
  counter-reset:step;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.producto-steps li{
  counter-increment:step;
  display:flex;
  gap:18px;
  align-items:flex-start;
  font-size:0.95rem;
  line-height:1.6;
  color:var(--basalt);
  opacity:0.78;
}
.producto-steps li::before{
  content:counter(step);
  flex-shrink:0;
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid rgba(29,35,24,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Fraunces', serif;
  font-size:0.85rem;
  color:var(--clay);
  opacity:1;
}

/* ---------- CTA final de producto (dark) ---------- */
.producto-final-cta{
  width:100%;
  background:var(--basalt);
  color:var(--limestone);
  padding:90px 5vw 100px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.producto-final-cta h2{
  font-family:'Fraunces', serif;
  font-weight:440;
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  color:var(--limestone);
  margin-top:18px;
  margin-bottom:36px;
}
