/* ============================================================
   Lore Fili Peluquería (Lorena Filippi) × AIZURG — demo personalizada
   Contrato: lorefili-assets/design.md (editorial-premium cálido)
   Hero: base del export de Claude Design (tokens preservados).
   Liquid glass: receta feDisplacementMap (referencia codepen-liquid-glass,
   reimplementada — inspiration-only). Capas .lg-* las monta app.js.
   ============================================================ */

/* ---- fuentes (self-host) ---- */
@font-face {
  font-family: "Fraunces";
  src: url("/lorefili-assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/lorefili-assets/fonts/fraunces-italic-var.woff2") format("woff2");
  font-weight: 300 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/lorefili-assets/fonts/hanken-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}

/* ---- tokens (== design.md · acento anclado a su craft: colorista) ---- */
:root {
  --crema:   #F5EDE3;
  --crema-2: #EBE0D2;
  --carta:   #FBF7F0;   /* superficie de cards sobre crema */
  --cacao:   #2B211B;
  --cacao-2: #5C4C3F;
  --muted:   #8A7867;
  --miel:    #D9A75B;   /* decorativo, nunca texto chico */
  --cobre:   #9C4F26;   /* acento AA-safe */
  --linea:   #DBCEBD;
  --linea-dark: rgba(245, 237, 227, 0.16);
  --crema-dark-2: rgba(245, 237, 227, 0.62);

  /* whatsapp (artefacto real-world, exento de la paleta) */
  --wa-header: #075E54;
  --wa-bg: #EFE7DD;
  --wa-out: #D9FDD3;
  --wa-check: #53BDEB;

  /* tienda Biogreen (marca aliada — SOLO en #tienda) */
  --bg-pino: #1F3A30;
  --bg-pino-2: #16352A;
  --bg-dorado: #C8A24A;
  --bg-blush: #E8A9BF;
  --bg-crema: #EFE6DA;

  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;

  /* motion tokens (doctrine §4.0) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-hover: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-micro: 130ms;
  --dur-ui: 200ms;

  --wrap: 1200px;
  --nav-h: 76px;
}

/* ---- base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--cacao);
  background: var(--crema);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--miel); color: var(--cacao); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--cacao); color: var(--crema); padding: 12px 20px;
}
.skip:focus { left: 0; }

/* ---- botones ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 100px;
  transition: transform var(--dur-ui) var(--ease-hover),
              background var(--dur-ui) var(--ease-hover),
              box-shadow var(--dur-ui) var(--ease-hover);
  will-change: transform;
}
.btn-dark { background: var(--cacao); color: var(--crema); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(43, 33, 27, 0.55); }
.btn-dark:active { transform: translateY(0); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

.btn-line {
  display: inline-flex; align-items: center;
  font-weight: 600; font-size: 15px; color: var(--cacao);
  padding: 15px 6px 13px; position: relative;
}
.btn-line::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 8px;
  height: 1.5px; background: var(--cobre);
  transform: scaleX(0.35); transform-origin: left;
  transition: transform var(--dur-ui) var(--ease-out);
}
.btn-line:hover::after { transform: scaleX(1); }

/* ---- nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur-ui) ease, box-shadow var(--dur-ui) ease, border-color var(--dur-ui) ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--crema) 86%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom-color: var(--linea);
}
.nav-in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  font-family: var(--serif); font-size: 25px; font-weight: 420;
  letter-spacing: 0.005em; color: var(--cacao); white-space: nowrap;
}
.brand em { font-style: italic; font-weight: 380; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--cacao-2); position: relative; padding: 4px 0;
  transition: color var(--dur-ui) ease;
}
.nav-links a:hover { color: var(--cobre); }
.nav .btn-dark { padding: 11px 26px; font-size: 14px; }

/* ---- eyebrow / s-num ---- */
.eyebrow, .s-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cobre); display: inline-flex; align-items: center; gap: 16px;
}
.eyebrow-c { justify-content: center; }
.eyebrow::before, .s-num::before, .eyebrow-c::after {
  content: ""; display: block; width: 46px; height: 1px; background: var(--cobre);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.7s var(--ease-out);
}
.eyebrow-c::before { transform-origin: right; }
.eyebrow-c::after { transform-origin: left; }
.eyebrow.drawn::before, .eyebrow-c.drawn::after, .s-num.drawn::before { transform: scaleX(1); }
.s-dark .s-num, .s-tienda .s-num { color: var(--miel); }
.s-dark .s-num::before, .s-tienda .s-num::before { background: var(--miel); }

/* ---- tipos ---- */
.h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.9rem, 9vw, 7rem);
  line-height: 0.98; letter-spacing: -0.028em;
  text-wrap: balance;
}
.h1 em { font-style: italic; font-weight: 380; color: var(--cobre); }
.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.04; letter-spacing: -0.015em;
  text-wrap: balance;
}
.h2 em { font-style: italic; font-weight: 380; }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.62; color: var(--cacao-2);
  max-width: 34em; text-wrap: pretty;
}
.s-dark .lead { color: var(--crema-dark-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
  /* material refractable: el glow de la zona CTA y las hairlines viven en el
     BACKGROUND del hero (la réplica del liquid glass copia esto) */
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(217, 167, 91, 0.16), transparent 60%),
    radial-gradient(44% 26% at 50% 63%, rgba(217, 167, 91, 0.17), transparent 72%),
    repeating-linear-gradient(180deg, transparent 0 179px, rgba(43, 33, 27, 0.05) 179px 180px),
    var(--crema);
}
.hero-in {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: clamp(22px, 3.4vh, 40px);
  padding-top: clamp(24px, 6vh, 70px); padding-bottom: clamp(30px, 6vh, 64px);
}
.hero .h1 { max-width: 15ch; }
.hero .lead { text-align: center; }
.hero-cta { display: flex; align-items: center; gap: clamp(10px, 2vw, 26px); flex-wrap: wrap; justify-content: center; }
.hero-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 760px; }
.hero-tags li {
  font-size: 14px; font-weight: 500; color: var(--cacao-2);
  padding: 9px 20px; border: 1px solid var(--linea); border-radius: 100px;
  background: color-mix(in srgb, var(--crema) 55%, #fff 45%);
  transition: border-color var(--dur-ui) ease, color var(--dur-ui) ease, transform var(--dur-ui) var(--ease-hover);
}
.hero-tags li:hover { border-color: var(--cobre); color: var(--cobre); transform: translateY(-2px); }
.hero-strip { border-top: 1px solid var(--linea); }
.hero-strip-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; min-height: 62px; }
.hero-strip span { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hs-mid { color: var(--cacao-2) !important; letter-spacing: 0.05em !important; text-transform: none !important; font-weight: 500 !important; font-size: 13px !important; }
.hs-mid em { font-style: normal; color: var(--cobre); font-weight: 600; }
.hs-r { text-align: right; }

/* ============================================================
   SECCIONES
   ============================================================ */
.s { padding: clamp(96px, 14vh, 170px) 0; }
.s-alt { background: var(--crema-2); }
.s-dark { background: var(--cacao); color: var(--crema); }
.cols {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.s-head > * + * { margin-top: 26px; }
.s-head .h2 { margin-top: 30px; }
.s-lead { color: var(--cacao-2); line-height: 1.65; max-width: 36em; }
.s-dark .s-lead { color: var(--crema-dark-2); }
.s-note { font-size: 13.5px; color: var(--cobre); letter-spacing: 0.02em; }
.s-dark .s-note { color: var(--miel); }

/* antes / ahora (el hook de su bio) */
.before-after { border-left: 2px solid var(--linea); padding-left: 20px; }
.ba-before { font-size: 14.5px; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(138, 120, 103, 0.55); }
.ba-after { font-size: 15px; font-weight: 600; color: var(--cobre); margin-top: 6px; }

/* stats */
.stats { display: flex; gap: clamp(32px, 4vw, 64px); margin-top: 40px; flex-wrap: wrap; }
.stats dt { font-family: var(--serif); font-weight: 340; font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: 1; }
.stats dd { margin-top: 8px; font-size: 13px; color: var(--crema-dark-2); max-width: 15em; }
.stats .u { font-size: 0.5em; font-style: italic; }

/* ============================================================
   01 · BOOKING (turnero)
   ============================================================ */
.booking {
  background: var(--carta);
  border: 1px solid var(--linea);
  border-radius: 6px;
  padding: clamp(26px, 3.4vw, 46px);
}
.bk-steps { display: flex; gap: 4px; margin-bottom: 30px; border-bottom: 1px solid var(--linea); }
.bk-steps span {
  flex: 1;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cacao-2);
  padding-bottom: 12px; border-bottom: 2px solid transparent; margin-bottom: -1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bk-steps span.on { color: var(--cobre); border-bottom-color: var(--cobre); }
.bk-steps span.done { color: var(--cacao); }
.bk-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 22px; }
.bk-title em { font-style: italic; }

.svc {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  width: 100%; text-align: left;
  padding: 17px 2px;
  border-bottom: 1px solid var(--linea);
  transition: padding-left var(--dur-ui) var(--ease-out);
}
.svc:hover { padding-left: 12px; }
.svc .nm { font-family: var(--serif); font-size: 19px; font-weight: 420; }
.svc .du { font-size: 12px; color: var(--cacao-2); letter-spacing: 0.06em; margin-left: 10px; }
.svc .pr { font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--cobre); white-space: nowrap; }
.svc.sel .nm::after { content: " ·"; color: var(--cobre); }

.bk-days { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 8px; }
.bk-days button {
  border: 1px solid var(--linea); padding: 13px 4px; text-align: center; border-radius: 4px;
  transition: border-color var(--dur-micro) var(--ease-hover), background-color var(--dur-micro) var(--ease-hover);
}
.bk-days button:hover { border-color: var(--cobre); }
.bk-days button.sel { background: var(--cacao); color: var(--crema); border-color: var(--cacao); }
.bk-days .dow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: inherit; opacity: 0.6; display: block; }
.bk-days .dnum { font-family: var(--serif); font-size: 23px; line-height: 1.2; display: block; }
.bk-days .mon { font-size: 10.5px; opacity: 0.6; display: block; }

.bk-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.bk-times button {
  border: 1px solid var(--linea); padding: 13px 4px; border-radius: 4px;
  font-size: 14px; letter-spacing: 0.04em;
  transition: border-color var(--dur-micro) var(--ease-hover), background-color var(--dur-micro) var(--ease-hover);
}
.bk-times button:hover { border-color: var(--cobre); }
.bk-times button.off { opacity: 0.32; text-decoration: line-through; cursor: not-allowed; }

.bk-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; }
.bk-back { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cacao-2); transition: color var(--dur-ui); }
.bk-back:hover { color: var(--cobre); }

.bk-field { margin-bottom: 20px; }
.bk-field label {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cacao-2); margin-bottom: 6px;
}
.bk-field input {
  width: 100%;
  font: 400 17px var(--sans); color: var(--cacao);
  background: transparent;
  border: none; border-bottom: 1px solid var(--linea);
  padding: 8px 0; border-radius: 0;
  transition: border-color var(--dur-ui);
}
.bk-field input:focus { outline: none; border-bottom-color: var(--cobre); }
.bk-recap { border-top: 1px solid var(--linea); margin-top: 8px; }
.bk-recap .row { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--linea); font-size: 14px; }
.bk-recap .row span { color: var(--cacao-2); }
.bk-note { margin-top: 14px; font-size: 11.5px; letter-spacing: 0.04em; color: var(--cacao-2); }

.bk-ok { text-align: center; }
.bk-check { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--cobre); display: grid; place-items: center; margin: 4px auto 18px; }
.bk-check svg { width: 24px; height: 24px; stroke: var(--cobre); stroke-width: 2; fill: none; }
.bk-ok h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; }
.bk-ok h3 em { font-style: italic; }
.bk-ok > p { color: var(--cacao-2); font-size: 14.5px; margin-top: 8px; }

/* ---- whatsapp mock (compartido: booking-confirm, sección 02 y tienda) ---- */
.wa { background: var(--wa-bg); border-radius: 10px; overflow: hidden; text-align: left; box-shadow: 0 18px 50px -22px rgba(43, 33, 27, 0.45); }
.wa-head { background: var(--wa-header); color: #fff; display: flex; align-items: center; gap: 11px; padding: 12px 16px; }
.wa-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--miel); color: #fff;
  font-family: var(--serif); font-size: 12.5px;
  display: grid; place-items: center; flex: none;
}
.wa-head .nm { font-size: 14.5px; font-weight: 600; line-height: 1.2; }
.wa-head .st { font-size: 11.5px; opacity: 0.75; }
.wa-body { padding: 18px 14px 20px; display: flex; flex-direction: column; gap: 9px; }
.bub {
  max-width: 82%;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13.8px; line-height: 1.45;
  color: var(--cacao); /* no heredar crema de .s-dark: AA sobre burbuja blanca */
  background: #fff;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(43, 33, 27, 0.16);
}
.bub.out { background: var(--wa-out); align-self: flex-end; }
.bub .t { display: block; font-size: 10px; color: rgba(43, 33, 27, 0.45); text-align: right; margin-top: 3px; }
.bub .t b { color: var(--wa-check); font-weight: 600; }
.bub-actions { display: flex; gap: 8px; margin-top: 8px; }
.bub-actions span { flex: 1; text-align: center; border-top: 1px solid rgba(43, 33, 27, 0.14); padding-top: 7px; color: #0B7DDA; font-size: 13px; font-weight: 600; }
.wa-sys { align-self: center; background: rgba(43, 33, 27, 0.06); font-size: 11.5px; color: rgba(43, 33, 27, 0.6); padding: 5px 14px; border-radius: 20px; text-align: center; }

/* ---- 02: teléfono ---- */
.phone-stage { display: flex; justify-content: center; }
.phone {
  width: min(350px, 86vw);
  border: 9px solid #14100C;
  border-radius: 42px;
  overflow: hidden;
  background: var(--wa-bg);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.55);
}
.phone .wa { border-radius: 0; box-shadow: none; }
.phone .wa-body { min-height: 430px; justify-content: flex-end; }

/* ---- 03: asistente ---- */
.mono {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--miel); color: var(--crema);
  font-family: var(--serif); font-size: 15px;
  display: grid; place-items: center; flex: none;
}
.chat-card { background: var(--carta); border: 1px solid var(--linea); border-radius: 6px; display: flex; flex-direction: column; overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 18px 24px; border-bottom: 1px solid var(--linea); }
.chat-head .mono { width: 36px; height: 36px; font-size: 13px; }
.chat-head .nm { font-family: var(--serif); font-size: 16.5px; }
.chat-head .st { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cobre); }
.chat-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; min-height: 300px; max-height: 380px; overflow-y: auto; }
.cbub { max-width: 85%; padding: 11px 15px; font-size: 14.5px; line-height: 1.5; border-radius: 4px; }
.cbub.in { background: var(--crema-2); align-self: flex-start; }
.cbub.out { background: var(--cacao); color: var(--crema); align-self: flex-end; }
.typing { display: flex; gap: 4px; padding: 12px 15px; background: var(--crema-2); align-self: flex-start; border-radius: 4px; }
.typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--cacao-2); animation: tblink 1s infinite var(--ease-inout); }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes tblink { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 24px 18px; }
.chat-chips button {
  border: 1px solid var(--linea); border-radius: 20px;
  padding: 8px 16px; font-size: 12.5px; letter-spacing: 0.03em;
  transition: border-color var(--dur-micro) var(--ease-hover), color var(--dur-micro) var(--ease-hover);
}
.chat-chips button:hover { border-color: var(--cobre); color: var(--cobre); }
.chat-input { display: flex; gap: 12px; border-top: 1px solid var(--linea); padding: 14px 24px; }
.chat-input input { flex: 1; font: 400 15px var(--sans); background: transparent; border: none; color: var(--cacao); }
.chat-input input:focus { outline: none; }
.chat-input button { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cobre); }

/* ============================================================
   04 · TIENDA — micro-paleta Biogreen (SOLO esta sección)
   ============================================================ */
.s-tienda {
  background:
    radial-gradient(90% 70% at 88% 8%, rgba(200, 162, 74, 0.14), transparent 55%),
    linear-gradient(168deg, var(--bg-pino) 0%, var(--bg-pino-2) 100%);
  color: var(--bg-crema);
}
.s-tienda .s-lead { color: rgba(239, 230, 218, 0.72); }
.s-tienda .h2 em { color: var(--bg-dorado); }
.t-head { max-width: 640px; }
.t-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(44px, 6vh, 72px);
  align-items: start;
}
.t-fig-frame { position: relative; display: block; }
.t-fig img { border-radius: 8px; box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.6); }
.t-fig figcaption { margin-top: 12px; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(239, 230, 218, 0.55); }
.t-products { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.8vw, 24px); }
.t-card {
  border-radius: 8px;
  padding: clamp(18px, 2vw, 28px);
  min-height: 230px;
  display: flex; flex-direction: column;
  position: relative;
}
/* material por línea de producto (gradientes ricos = lo que refracta el chip) */
.t-blush { background: radial-gradient(120% 90% at 80% 0%, rgba(255, 255, 255, 0.35), transparent 55%), linear-gradient(155deg, #E8A9BF, #B76E8C); color: #3A1E2A; }
.t-pino  { background: radial-gradient(120% 90% at 80% 0%, rgba(200, 162, 74, 0.28), transparent 55%), linear-gradient(155deg, #2E6350, #16352A); color: var(--bg-crema); }
.t-miel  { background: radial-gradient(120% 90% at 80% 0%, rgba(255, 255, 255, 0.4), transparent 55%), linear-gradient(155deg, #D8B36A, #9C7434); color: #33230C; }
.t-carta { background: radial-gradient(120% 90% at 80% 0%, rgba(255, 255, 255, 0.5), transparent 55%), linear-gradient(155deg, #EFE6DA, #C4AD92); color: #3B2E20; }
.t-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }
.t-name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.05; margin-top: 12px; }
.t-name em { font-style: italic; }
.t-desc { font-size: 13px; opacity: 0.75; margin-top: 6px; flex: 1; }
.t-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-top: 18px; }
.t-price s { font-size: 11.5px; opacity: 0.6; display: block; }
.t-price b { font-size: 18px; font-weight: 700; display: block; }
.t-pts { font-size: 10.5px; letter-spacing: 0.06em; opacity: 0.7; display: block; margin-top: 2px; }

/* barra del pedido */
.t-order { margin-top: clamp(32px, 4vh, 52px); }
.t-order-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border: 1px solid rgba(239, 230, 218, 0.22);
  border-radius: 100px;
  padding: 12px 12px 12px 28px;
  /* material con vida bajo el botón glass: hairlines doradas sobre pino
     (el glass sobre fondo plano desaparece — necesita contraste que refractar) */
  background:
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(200, 162, 74, 0.28) 22px 24px),
    radial-gradient(120% 160% at 12% 0%, rgba(232, 169, 191, 0.16), transparent 55%),
    linear-gradient(120deg, rgba(46, 99, 80, 0.8), rgba(22, 53, 42, 0.92));
}
#tCount { font-size: 14px; color: rgba(239, 230, 218, 0.85); }
#tWa { max-width: 520px; margin: 26px auto 0; }
.t-note { margin-top: 20px; font-size: 11.5px; letter-spacing: 0.04em; color: rgba(239, 230, 218, 0.55); text-align: center; }

/* ============================================================
   LIQUID GLASS (.lg) — capas montadas por app.js
   Receta: canvas→PNG→feDisplacementMap→CSS filter sobre réplica
   del fondo (NO backdrop-filter: Safari no soporta filtros SVG ahí).
   Fallback sin JS / RM: vidrio esmerilado estándar (legible siempre).
   ============================================================ */
.lg {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  /* fallback: translúcido esmerilado (se reemplaza cuando JS monta la refracción) */
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(7px) saturate(1.15);
  -webkit-backdrop-filter: blur(7px) saturate(1.15);
  box-shadow: 0 8px 26px -12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.lg.lg-live { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.lg-label { position: relative; z-index: 3; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.lg-clip { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; z-index: 0; }
/* ventana del tamaño del elemento: acá vive el filter (su región queda
   alineada al pill); adentro, la réplica corrida del fondo */
.lg-window { position: absolute; inset: 0; }
.lg-refract { position: absolute; will-change: transform; }
.lg-tint { position: absolute; inset: 0; background: rgba(255, 255, 255, 0.18); }
.lg-glint {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 28%),
    radial-gradient(80% 120% at 85% 110%, rgba(255, 255, 255, 0.22), transparent 60%);
  mix-blend-mode: screen;
}
/* glint sweep en hover (barato: CSS, sin recalcular el filtro) */
.lg::after {
  content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.38) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.lg:hover::after { transform: translateX(120%); }

/* variantes */
.lg-chip { padding: 10px 20px; font-size: 13px; }
.lg-pill {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  padding: 11px 20px; font-size: 11.5px; letter-spacing: 0.06em;
}
.btn-glass { padding: 14px 28px; font-size: 14.5px; border-radius: 100px; border-color: rgba(255, 255, 255, 0.5); }
.btn-glass .lg-tint, .lg-pill .lg-tint { background: rgba(255, 255, 255, 0.24); }

/* CTA del hero: vidrio caramelo (el craft de la colorista) sobre crema */
.btn-glass-cta {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px -14px rgba(156, 79, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-glass-cta .lg-label { color: var(--cacao); font-weight: 700; }
.btn-glass-cta .lg-tint { background: rgba(217, 167, 91, 0.22); }
.btn-glass-cta:hover { transform: translateY(-2px); }

/* pill "Reservar" del nav: vidrio sobre el contenido que scrollea.
   Fallback (Safari/Firefox/sin JS): esmerilado estándar. Chrome/Edge:
   app.js le monta backdrop-filter: url(#mapa) → refracción en vivo. */
.nav-glass {
  padding: 11px 26px; font-size: 14px;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 24px -12px rgba(43, 33, 27, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.nav-glass .lg-label { color: var(--cacao); font-weight: 600; }
.nav-glass:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.75); }
/* tinta del label según el material de fondo (AA) */
.t-blush .lg-chip .lg-label, .t-miel .lg-chip .lg-label, .t-carta .lg-chip .lg-label { color: inherit; }
.t-pino .lg-chip .lg-label, .lg-pill .lg-label, .btn-glass .lg-label, .btn-glass { color: #FFFFFF; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); }
.lg[disabled] { opacity: 0.45; cursor: not-allowed; }
.lg:not([disabled]):hover { border-color: rgba(255, 255, 255, 0.6); }

/* ---- cierre ---- */
.s-cierre { text-align: center; }
.s-cierre .s-num { justify-content: center; }
.s-cierre .s-num::after { content: ""; width: 26px; height: 1px; background: var(--miel); flex: none; transform: scaleX(0); transition: transform 0.7s var(--ease-out); }
.s-cierre .s-num.drawn::after { transform: scaleX(1); }
.s-cierre .h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); margin: 30px auto 0; }
.s-cierre .lead { margin: 28px auto 0; }

/* ---- footer ---- */
.foot { border-top: 1px solid var(--linea); padding: 30px 0 36px; }
.foot-in { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 12px; color: var(--cacao-2); letter-spacing: 0.03em; }
.foot a { color: var(--cobre); }
.foot a:hover { text-decoration: underline; }

/* ============================================================
   MOTION — estados iniciales (solo body.motion; RM todo visible)
   ============================================================ */
body.motion .rv { opacity: 0; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .cols, .t-grid { grid-template-columns: 1fr; }
  .t-fig { max-width: 460px; }
  .phone .wa-body { min-height: 360px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  :root { --nav-h: 66px; }
  .brand { font-size: 22px; }
  .hero-strip-in { flex-direction: column; gap: 8px; text-align: center; padding: 18px 0; }
  .hs-r { text-align: center; }
  .hero-tags li { font-size: 13px; padding: 8px 16px; }
  .btn, .btn-line { font-size: 14px; }
  .bk-steps span { font-size: 9px; letter-spacing: 0.06em; }
  .stats { gap: 26px; }
  .t-products { grid-template-columns: 1fr; }
  .t-order-bar { border-radius: 24px; justify-content: center; padding: 16px; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .rv { opacity: 1 !important; }
  .eyebrow::before, .eyebrow-c::after, .s-num::before, .s-cierre .s-num::after { transform: scaleX(1) !important; }
  .lg::after { display: none; }
}
