/* Clean Skin BCN — Selling pages */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&family=Mr+De+Haviland&display=swap');

:root {
  --rose: #b8897a;
  --rose-light: #d4b5a8;
  --rose-dark: #8f6558;
  --cream: #faf7f4;
  --cream-2: #f3ece6;
  --white: #fff;
  --black: #141010;
  --heading: #1f1816;
  --text: #5a524e;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;
  --font-script: 'Mr De Haviland', cursive;
  --max: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 64px rgba(20, 16, 16, .1);
  --wa: #25d366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  /* padding for fixed header — keeps logo/menu always on screen while scrolling */
  padding-top: 3.55rem;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { width: min(var(--max), 90vw); margin: 0 auto; }

/* Header — always visible while scrolling */
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 244, .97);
  /* no backdrop-filter: it makes position:fixed nav trap inside the header */
  border-bottom: 1px solid rgba(184, 137, 122, .12);
}
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 5;
}
.menu-btn span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--heading);
  margin-left: auto;
  transition: transform .25s ease, opacity .2s ease;
}
.top.is-nav-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.top.is-nav-open .menu-btn span:nth-child(2) {
  opacity: 0;
}
.top.is-nav-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  background: rgba(20, 16, 16, .35);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.top.is-nav-open .nav-backdrop {
  display: block;
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem 1rem; padding: .65rem 0;
  flex-wrap: nowrap;
}
.brand {
  display: inline-flex; align-items: center;
  flex-shrink: 0; cursor: pointer;
  max-width: min(180px, 28vw);
  position: relative; z-index: 2;
}
.brand img {
  height: 36px; width: auto; max-width: 100%;
  object-fit: contain;
}
.brand span { display: none !important; }

.nav {
  display: flex; flex-wrap: nowrap; gap: .05rem .28rem;
  align-items: center; justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  position: relative; z-index: 2;
  /* visible so Promociones dropdown is not clipped */
  overflow: visible;
}
.nav a {
  display: inline-block;
  font-size: .62rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--heading);
  padding: .5rem .32rem;
  position: relative; z-index: 3;
  pointer-events: auto !important;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover, .nav a.on { color: var(--rose); }
.nav a.cta:hover,
.nav a.cta.on { color: #fff !important; }
.nav .cta {
  background: var(--black); color: #fff !important;
  padding: .5rem .75rem !important;
  margin-left: .1rem;
  flex-shrink: 0;
}
.nav .cta:hover { background: var(--rose-dark); color: #fff !important; }
.nav .cta--ofertas {
  background: var(--rose);
  color: #fff !important;
  margin-left: .35rem;
}
.nav .cta--ofertas:hover {
  background: var(--rose-dark);
  color: #fff !important;
}
.nav .cta--ofertas.on {
  background: var(--rose-dark);
  color: #fff !important;
}

.nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 20;
}
.nav-drop-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: .25rem;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: .5rem .32rem !important;
  margin: 0 !important;
  font-family: var(--font-b) !important;
  font-size: .62rem !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  line-height: 1.7 !important;
  color: var(--heading) !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  white-space: nowrap;
  height: auto !important;
  width: auto !important;
  min-height: 0 !important;
  min-width: 0 !important;
}
.nav-drop-trigger:hover,
.nav-drop.is-open > .nav-drop-trigger,
.nav-drop-trigger.on {
  color: var(--rose) !important;
}
.nav-drop-trigger::after {
  content: "";
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .55;
  margin-top: 1px;
  flex-shrink: 0;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  padding: .45rem 0;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(184, 137, 122, .22);
  box-shadow: 0 16px 40px rgba(40, 24, 20, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 2000;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -10px;
  height: 10px;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: block !important;
  padding: .55rem 1rem !important;
  font-size: .65rem !important;
  letter-spacing: .1em;
  white-space: nowrap;
  color: var(--heading) !important;
  text-transform: none;
}
.nav-drop-menu a:hover {
  background: rgba(247, 239, 233, .95);
  color: var(--rose) !important;
}
.nav-drop.is-on > .nav-drop-trigger { color: var(--rose) !important; }

/* Drawer footer / close — mobile only */
.nav-foot,
.nav-close { display: none; }

.promo-was {
  font-size: .85rem;
  color: var(--muted, #6b5e5a);
  margin: -.35rem 0 1rem;
}
.promo-was s { opacity: .7; }
.promo-integrate {
  font-size: .92rem;
  color: var(--rose-dark);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 .85rem;
  max-width: 34rem;
}
.hero-visual--product {
  /* sizing handled with .hero--promo / .hero-visual--product below */
}

/* —— Restored core layout (Sesiones / shared) —— */
section { padding: 4.5rem 0; }
.section-kicker {
  text-align: center; font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--rose); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500; color: var(--heading); text-align: center;
  margin-bottom: .75rem; line-height: 1.12;
}
.section-lead {
  text-align: center; max-width: 620px; margin: 0 auto 2.75rem;
  font-weight: 300; font-size: 1.05rem;
}
.hero h1 {
  font-family: var(--font-d); font-weight: 500; color: var(--heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.05; margin-bottom: 1rem;
}
.hero .lead {
  font-weight: 300; font-size: 1.05rem; max-width: 32rem; margin-bottom: 1.25rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.menu-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: grid;
  grid-template-rows: 220px auto;
  height: auto;
  align-self: start;
  color: inherit;
  text-decoration: none;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card img {
  width: 100%; height: 220px; object-fit: cover; display: block;
}
.menu-card .body { padding: 1.35rem 1.25rem 1.55rem; }
.menu-card .tag {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .4rem;
}
.menu-card h2 {
  font-family: var(--font-d); font-size: 1.55rem; color: var(--heading);
  font-weight: 500; margin-bottom: .45rem; line-height: 1.15;
}
.menu-card .body > p {
  font-size: .9rem; font-weight: 300; color: var(--text); margin: 0;
}
.menu-card .meta {
  display: flex; align-items: baseline; gap: .45rem;
  margin: .85rem 0 1.1rem; font-size: .85rem; color: var(--heading);
}
.menu-card .meta b {
  font-family: var(--font-d); font-size: 1.35rem; font-weight: 600;
}
.menu-card .meta .sep { opacity: .45; }
.menu-card .btn { pointer-events: none; }

/* Verified reviews badge */
.verified-badge {
  text-align: center;
  margin-bottom: 2rem;
}
.verified-badge .label {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: #1b2233;
  letter-spacing: -0.01em;
  margin-bottom: .65rem;
}
.verified-row {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.verified-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: #5faf4a;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.verified-check svg { width: 14px; height: 14px; display: block; }
.verified-stars { display: flex; gap: 3px; }
.verified-stars .gstar {
  width: 22px; height: 22px;
  background: #f5c542;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.verified-score {
  display: inline-flex;
  align-items: baseline;
  gap: .28rem;
  margin-left: .15rem;
  font-family: var(--font-b);
  color: #1b2233;
  line-height: 1;
}
.verified-rating {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1b2233;
}
.verified-count {
  font-size: .92rem;
  font-weight: 500;
  color: #5c6578;
}
.verified-meta {
  margin: .45rem 0 0;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9a918b;
  font-weight: 500;
}
.t-stars { display: flex; gap: 3px; margin-bottom: .85rem; }
.t-stars .pstar {
  width: 15px; height: 15px;
  background: #9b7ebd;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.t-head {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .85rem;
}
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: #8b6b5e;
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-b); font-weight: 600; font-size: 1.15rem;
}
.t-avatar.v { background: #9b7ebd; }
.t-avatar.b { background: #6b5a54; }
.t-avatar.r { background: #b8897a; }
.t-meta .city {
  display: block; font-size: .78rem; color: #9a918b; font-weight: 400; margin-bottom: .1rem;
}
.t-meta .name {
  display: block; font-size: 1rem; font-weight: 700; color: #1a1514;
}
.t-body {
  font-size: .92rem; line-height: 1.55; color: #4a4542; font-weight: 400;
  flex: 1;
}
.t-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  background: #f0e4de;
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.5rem;
  min-height: 280px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}


/* Drawer from tablet down — desktop (≥981px) keeps the full horizontal nav */
@media (max-width: 980px) {
  .top {
    overflow: visible;
    transform: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    contain: none !important;
  }
  .top-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .5rem;
    width: 100%;
  }
  .brand {
    max-width: min(150px, 46vw);
    grid-column: 1;
    justify-self: start;
  }
  .brand img { height: 32px; }
  .menu-btn {
    display: inline-flex !important;
    grid-column: 2;
    justify-self: end;
    align-items: center;
    margin-left: 0;
    width: 2.75rem;
    height: 2.75rem;
    z-index: 1102;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-btn span {
    width: 1.45rem;
    background: var(--heading);
  }
  .nav-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1090 !important;
    background: rgba(20, 16, 16, .4);
  }
  .nav-backdrop[hidden] { display: none !important; }
  body.is-nav-open .nav-backdrop:not([hidden]),
  .top.is-nav-open ~ .nav-backdrop:not([hidden]),
  .nav-backdrop.is-on:not([hidden]) {
    display: block !important;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(20rem, 86vw) !important;
    height: 100% !important;
    height: 100dvh !important;
    max-width: 100vw;
    max-height: none !important;
    flex: none !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 3.6rem 1.25rem 1.25rem !important;
    margin: 0 !important;
    background: var(--cream) !important;
    border-left: 1px solid rgba(184, 137, 122, .18);
    box-shadow: -18px 0 48px rgba(20, 16, 16, .14);
    transform: translate3d(105%, 0, 0);
    transition: transform .3s var(--ease), visibility .3s;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 1100 !important;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    visibility: hidden;
  }
  .nav.is-open,
  body.is-nav-open .nav,
  .top.is-nav-open .nav {
    transform: translate3d(0, 0, 0) !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }
  .nav-close {
    display: flex !important;
    position: absolute;
    top: .85rem;
    right: .85rem;
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close span {
    position: absolute;
    width: 1.35rem;
    height: 2px;
    background: var(--heading);
    display: block;
  }
  .nav-close span:first-child {
    transform: rotate(45deg);
  }
  .nav-close span:last-child {
    transform: rotate(-45deg);
  }
  .top.is-nav-open .menu-btn,
  body.is-nav-open .menu-btn {
    z-index: 1102;
  }
  .nav a,
  .nav-drop {
    width: 100%;
  }
  .nav-drop {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
  }
  .nav-drop-trigger {
    width: 100% !important;
    justify-content: space-between !important;
    font-size: .78rem !important;
    padding: .85rem .35rem !important;
    letter-spacing: .08em !important;
    border-bottom: 1px solid rgba(184, 137, 122, .12) !important;
  }
  .nav-drop.is-open > .nav-drop-trigger::after {
    transform: rotate(180deg);
    opacity: .9;
  }
  .nav-drop-trigger::after {
    transition: transform .25s var(--ease);
  }
  .nav-drop-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    border: 0 !important;
    background: rgba(243, 236, 230, .55) !important;
    padding: 0 !important;
    min-width: 0 !important;
    max-height: 0;
    overflow: hidden !important;
    display: block !important;
    transition: max-height .35s var(--ease), padding .25s ease;
  }
  .nav-drop.is-open .nav-drop-menu {
    max-height: 28rem;
    padding: .15rem 0 .45rem .75rem !important;
  }
  .nav-drop-menu a {
    font-size: .72rem !important;
    padding: .55rem .2rem !important;
    border-bottom: 1px solid rgba(184, 137, 122, .08) !important;
    text-transform: none !important;
    letter-spacing: .04em !important;
  }
  /* kill desktop hover-open inside the drawer */
  .nav-drop:hover .nav-drop-menu {
    max-height: 0;
    padding: 0 !important;
  }
  .nav-drop.is-open:hover .nav-drop-menu,
  .nav-drop.is-open .nav-drop-menu {
    max-height: 28rem;
    padding: .15rem 0 .45rem .75rem !important;
  }
  .nav a {
    font-size: .78rem;
    padding: .85rem .35rem;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(184, 137, 122, .12);
    background: transparent;
  }
  .nav > a {
    display: block;
    width: 100%;
  }
  .nav .cta,
  .nav .cta--ofertas {
    display: block !important;
    width: 100% !important;
    margin: .85rem 0 0 !important;
    text-align: center !important;
    border-bottom: 0 !important;
    padding: .95rem 1rem !important;
    border-radius: 2px;
  }
  .nav .cta {
    background: var(--black) !important;
    color: #fff !important;
  }
  .nav .cta--ofertas {
    background: var(--rose) !important;
    color: #fff !important;
    margin-top: 1.1rem !important;
  }
  .nav .cta--ofertas + .cta {
    margin-top: .55rem !important;
  }
  .nav-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    gap: .85rem;
    margin-top: 1.15rem;
    padding: 1.1rem 0 1.25rem;
    border-top: 1px solid rgba(184, 137, 122, .16);
    width: 100%;
    flex: 0 0 auto;
  }
  .nav-reviews {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding: .35rem .35rem .15rem;
    margin: 0;
  }
  .nav-reviews-kicker {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--heading);
    margin: 0;
  }
  .nav-reviews-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    flex-wrap: wrap;
  }
  .nav-reviews .verified-check {
    width: 22px;
    height: 22px;
  }
  .nav-reviews .verified-check svg {
    width: 11px;
    height: 11px;
  }
  .nav-reviews .verified-stars .gstar {
    width: 16px;
    height: 16px;
  }
  .nav-reviews .verified-rating {
    font-size: 1.15rem;
  }
  .nav-reviews .verified-count {
    font-size: .82rem;
  }
  .nav-reviews-meta {
    margin: 0;
    font-size: .62rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9a918b;
    font-weight: 500;
    line-height: 1.4;
    max-width: 20ch;
  }
  .nav-reviews-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    flex-wrap: wrap;
  }
  .nav-reviews-links a,
  .nav-reviews-links span {
    font-size: .68rem !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    color: var(--rose-dark) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .nav-reviews-links span {
    text-decoration: none;
    color: #c4bbb4 !important;
  }
  .nav-foot-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding-top: 0;
    margin-top: .15rem;
  }
  .nav-foot .seal--nav {
    width: 108px;
    height: 108px;
    margin: 0 auto .05rem;
  }
  .nav-foot .seal-text {
    font-size: 12px;
    letter-spacing: .22em;
  }
  .nav-foot-kicker {
    font-family: var(--font-b);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--heading);
    margin: .15rem 0 0;
  }
  .nav-foot-label {
    font-family: var(--font-b);
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rose);
    margin: .35rem 0 .05rem;
  }
  .nav-foot-info {
    display: flex;
    flex-direction: column;
    gap: .32rem;
    width: 100%;
    margin-top: .05rem;
  }
  .nav-foot-info a {
    display: block;
    width: 100%;
    font-size: .72rem !important;
    font-weight: 400 !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    color: var(--text) !important;
    padding: .2rem 0 !important;
    border-bottom: 0 !important;
    line-height: 1.45;
  }
  .nav-foot-info a:hover {
    color: var(--rose) !important;
  }
  .nav-foot-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .45rem;
    width: 100%;
    margin-top: .85rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(184, 137, 122, .14);
  }
  .nav-foot-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 2.75rem;
    padding: .75rem .45rem !important;
    border-bottom: 0 !important;
    font-size: .62rem !important;
    font-weight: 600 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #fff !important;
    line-height: 1.2;
    border-radius: 2px;
  }
  .nav-foot-btn--book {
    background: var(--rose) !important;
  }
  .nav-foot-btn--book:hover {
    background: var(--rose-dark) !important;
    color: #fff !important;
  }
  .nav-foot-btn--wa {
    background: var(--wa) !important;
  }
  .nav-foot-btn--wa:hover {
    filter: brightness(.95);
    color: #fff !important;
  }
  body.nav-lock { overflow: hidden; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.75rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; border: none; cursor: pointer;
  transition: all .35s var(--ease);
}
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { filter: brightness(.95); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--heading); color: var(--heading); background: transparent; }
.btn-ghost:hover { background: var(--heading); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.btn-sm {
  padding: .55rem 1rem !important;
  font-size: .62rem !important;
  letter-spacing: .12em !important;
  margin-top: .85rem;
  display: inline-flex;
}

/* Hero */
.hero {
  min-height: 0;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(212, 181, 168, .35), transparent 55%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 55%, #ebe2da 100%);
}
/* Home hero — small air under sticky header */
.hero--sync {
  padding-top: 1rem;
  margin-top: .35rem;
}
.hero--sync .hero-copy {
  padding-top: 2rem;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem 5vw 1.75rem max(5vw, calc((100vw - var(--max)) / 2));
  animation: rise .9s var(--ease) both;
}
.hero-visual {
  position: relative; min-height: 380px;
  animation: fadein 1.1s var(--ease) .15s both;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 420px;
}
/* Promo / treatment heroes: before–after split photography */
.hero--promo .hero-visual,
.hero-visual--diagram {
  min-height: 0;
  max-height: none;
  background: #f3eee8;
  display: block;
  padding: 0;
  overflow: hidden;
}
.hero--promo .hero-visual img,
.hero-visual--diagram img {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: min(520px, 58vh);
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}
.hero-visual--product {
  min-height: 0;
  max-height: 420px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 1.5rem 1.75rem;
}
.hero-visual--product img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 360px;
  min-height: 0;
  object-fit: contain;
}
.hero-visual--live {
  min-height: 420px;
  height: 100%;
  isolation: isolate;
}
.hero-slides {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #1f1816;
}
.hero-slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.is-on {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 420px;
  display: block;
  background: #2a2220;
}
.hero-slide--ofertas-serve img {
  object-position: 32% center;
}
.hero-ui {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .55rem;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(20, 16, 16, .58) 52%);
  padding: 2.75rem 0 .9rem;
}
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 0 1rem;
  pointer-events: auto;
}
.hero-arrow {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(20, 16, 16, .4);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, color .2s;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, .92);
  color: var(--heading);
  border-color: transparent;
}
.hero-caption {
  margin: 0 auto;
  min-width: 0;
  max-width: min(92%, 36rem);
  padding: 0 1rem;
  text-align: center;
  font-family: var(--font-b);
  font-size: clamp(.68rem, 1.6vw, .78rem);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.35;
}
.hero-rail {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem .1rem;
  pointer-events: auto;
  max-width: 100%;
}
.hero-rail::-webkit-scrollbar { display: none; }
.hero-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(20, 16, 16, .35);
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-b);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem .75rem;
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, color .2s;
}
.hero-pill:hover,
.hero-pill.is-on {
  background: rgba(255, 255, 255, .92);
  color: var(--heading);
  border-color: transparent;
}
.hero-slide--contain {
  background: #1f1816;
}
.hero-slide--contain img {
  object-fit: contain !important;
  object-position: center !important;
  background: #1f1816;
}

/* Mobile / tablet: full pictures fit the frame (no face crop) — desktop unchanged */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero--sync .hero-copy {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }
  .hero-visual,
  .hero-visual--live {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .hero-visual img,
  .hero-slide img,
  .hero--promo .hero-visual img,
  .hero-visual--diagram img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: contain !important;
    object-position: center center !important;
  }
  .hero-slide--ofertas-serve img {
    object-position: center center !important;
  }
  .hero-visual--product {
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .hero-visual--product img {
    max-height: 100%;
    object-fit: contain !important;
  }
  .menu-card {
    grid-template-rows: auto auto;
  }
  .menu-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f3eee8;
  }
  .teaser-media {
    background: #ebe6e1;
  }
  .teaser-media img {
    object-fit: contain;
    object-position: center;
  }
  .pro-photo img {
    object-fit: contain;
    object-position: center top;
    background: #f3eee8;
  }
  .offer-quiz-card-media img,
  .offer-tile-media img,
  .path-treat-card img,
  .promo-card-media img,
  .promo-media img,
  .promo-detail-media img,
  .blog-card-media img,
  .blog-hero img,
  .blog-article-hero,
  .serve-hero-art {
    object-fit: contain !important;
    object-position: center center !important;
  }
  .offer-quiz-card-media,
  .offer-tile-media,
  .promo-card-media {
    background: #f3eee8;
  }
  .serve-hero-stage {
    aspect-ratio: 4 / 3;
    background: #1f1816;
  }
}

/* Quiz teaser — same oil/pintura surface as Ofertas hero photo */
.menu-card--quiz {
  display: grid;
  grid-template-rows: 1fr;
  align-self: stretch;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #3a4a8a url("../img/ofertas/quiz-teaser-paint.png?v=1") center / cover no-repeat;
  box-shadow: 0 22px 48px rgba(40, 48, 90, .28);
  border-radius: 0;
  color: #fff;
}
.menu-card--quiz::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(28, 32, 58, .72) 0%,
      rgba(40, 48, 90, .55) 42%,
      rgba(55, 70, 120, .28) 72%,
      rgba(90, 100, 160, .12) 100%
    );
}
.menu-card--quiz::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: soft-light;
  background:
    repeating-linear-gradient(
      -32deg,
      transparent 0 7px,
      rgba(255, 255, 255, .05) 7px 9px
    );
}
.menu-card--quiz:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(40, 48, 90, .36);
}
.menu-card--quiz .body--quiz-teaser {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 18rem;
  padding: 1.85rem 1.55rem 1.9rem;
}
.menu-card--quiz .body--quiz-teaser .tag {
  color: rgba(255, 236, 220, .9);
  letter-spacing: .18em;
}
.menu-card--quiz .body--quiz-teaser h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.05rem);
  color: #fff;
  text-shadow: 0 2px 22px rgba(20, 24, 50, .45);
  margin-bottom: .55rem;
}
.menu-card--quiz .body--quiz-teaser > p {
  color: rgba(255, 250, 245, .9);
  font-weight: 300;
  max-width: 28ch;
  text-shadow: 0 1px 10px rgba(20, 24, 50, .35);
}
.menu-card--quiz .body--quiz-teaser .btn {
  margin-top: 1.2rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, .92);
  color: var(--heading);
  border: none;
  box-shadow: 0 10px 28px rgba(20, 24, 50, .22);
}
.menu-card--quiz .body--quiz-teaser .btn:hover,
.menu-card--quiz:hover .body--quiz-teaser .btn {
  background: #fff;
  color: var(--heading);
}
.prod-brand[id="meder"] {
  scroll-margin-top: 5.5rem;
}
.ofertas-compose {
  position: relative;
  margin: 0;
  max-width: none;
  min-height: 0;
  display: grid;
  place-items: center;
}
.ofertas-blob {
  position: relative;
  width: min(200px, 46%);
  aspect-ratio: 4 / 5;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  border-radius: 58% 42% 48% 52% / 42% 52% 48% 58%;
  box-shadow: 0 22px 48px rgba(92, 64, 55, .18);
  background: #d9cbc0;
}
.ofertas-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}
.ofertas-glass {
  position: absolute;
  z-index: 2;
  width: min(148px, 38%);
  padding: .7rem .75rem .8rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: 0 12px 28px rgba(92, 64, 55, .12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  backdrop-filter: blur(14px) saturate(1.12);
  color: var(--heading);
  pointer-events: none;
}
.ofertas-compose.is-in .ofertas-glass { opacity: 1; transform: none; }
.ofertas-glass h3 {
  font-family: var(--font-d);
  font-size: .92rem;
  font-weight: 500;
  margin: 0 0 .25rem;
  line-height: 1.15;
}
.ofertas-glass p {
  margin: 0;
  font-size: .72rem;
  line-height: 1.35;
  color: var(--text);
}
.ofertas-ico {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: .4rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 137, 122, .45);
  color: var(--rose);
}
.ofertas-ico svg { width: .95rem; height: .95rem; display: block; }
.ofertas-compose--card {
  position: absolute;
  inset: 0;
  margin: 0;
  max-width: none;
  min-height: 0;
  display: grid;
  place-items: center;
}
.ofertas-compose--card .ofertas-glass--1 { top: 6%; left: 3%; right: auto; bottom: auto; }
.ofertas-compose--card .ofertas-glass--2 { top: 8%; right: 3%; left: auto; bottom: auto; }
.ofertas-compose--card .ofertas-glass--3 { bottom: 8%; left: 3%; right: auto; top: auto; }
.ofertas-compose--card .ofertas-glass--4 { bottom: 6%; right: 3%; left: auto; top: auto; }

/* Hero Ofertas — same Aestetika compose as the menu card */
.hero-slide--ofertas {
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%, #fff 0%, transparent 68%),
    linear-gradient(180deg, #f7f1ec 0%, #efe4da 100%) !important;
  display: block !important;
}
.hero-slide--ofertas > img { display: none !important; }
.hero-slide--ofertas .ofertas-compose--hero {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  display: block !important;
  padding: 0 0 3.25rem !important;
}
.hero-slide--ofertas .ofertas-blob {
  position: absolute !important;
  left: 50% !important;
  top: 46% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1 !important;
  width: min(280px, 48%) !important;
  height: min(350px, 68%) !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  border-radius: 64% 36% 52% 48% / 42% 58% 42% 58% !important;
  box-shadow: 0 22px 48px rgba(92, 64, 55, .18) !important;
  background-color: #d9cbc0 !important;
  background-image: url("../img/yuliya/alt-close.png?v=of8") !important;
  background-size: cover !important;
  background-position: center 16% !important;
  background-repeat: no-repeat !important;
}
.hero-slide--ofertas .ofertas-blob img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 16% !important;
  min-height: 0 !important;
  transform: none !important;
  display: block !important;
}
.hero-slide--ofertas .ofertas-glass {
  position: absolute !important;
  z-index: 2 !important;
  width: min(168px, 28%) !important;
  padding: .75rem .8rem .85rem !important;
  opacity: 1 !important;
  transform: none !important;
  border-radius: 1.1rem !important;
  background: rgba(255, 255, 255, .78) !important;
  border: 1px solid rgba(255, 255, 255, .85) !important;
  box-shadow: 0 12px 28px rgba(92, 64, 55, .12) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  backdrop-filter: blur(14px) saturate(1.12);
  pointer-events: none;
  color: var(--heading);
}
.hero-slide--ofertas .ofertas-glass h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 .25rem;
  line-height: 1.15;
}
.hero-slide--ofertas .ofertas-glass p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.35;
  color: var(--text);
}
.hero-slide--ofertas .ofertas-ico {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: .45rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 137, 122, .45);
  color: var(--rose);
}
.hero-slide--ofertas .ofertas-ico svg { width: 1rem; height: 1rem; }
.hero-slide--ofertas .ofertas-glass--1 { top: 10% !important; left: 5% !important; right: auto !important; bottom: auto !important; }
.hero-slide--ofertas .ofertas-glass--2 { top: 12% !important; right: 5% !important; left: auto !important; bottom: auto !important; }
.hero-slide--ofertas .ofertas-glass--3 { bottom: 14% !important; left: 5% !important; right: auto !important; top: auto !important; }
.hero-slide--ofertas .ofertas-glass--4 { bottom: 12% !important; right: 5% !important; left: auto !important; top: auto !important; }
@media (max-width: 900px) {
  .serve-hero-stage { aspect-ratio: 4 / 3; }
  .serve-hero-copy {
    top: auto;
    bottom: .85rem;
    right: .85rem;
    left: .85rem;
    width: auto;
  }
  .offer-tile-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .offer-tile-foot { grid-template-columns: 1fr auto; }
  .path-treat-grid { grid-template-columns: 1fr; }
  .path-gate-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .includes, .steps-row, .protocol-months { grid-template-columns: 1fr; }
  .marquee .t-card { flex-basis: 260px; }
}

/* Auto marquee reviews — right to left */
.marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  padding: .5rem 0 1.5rem;
}
.marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: marquee-rtl 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .t-card {
  flex: 0 0 300px;
  min-height: 260px;
}
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Paso a paso + treatment detail layout (restored) */
.includes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.include {
  background: var(--white);
  padding: 0 0 1.25rem;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.include:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.include-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: .9rem;
  background: var(--cream-2);
}
.include-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.include:hover .include-photo img { transform: scale(1.04); }
.include .n {
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--rose);
  display: block;
  margin: 0 1.1rem .25rem;
}
.include h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: var(--heading);
  font-weight: 500;
  margin: 0 1.1rem .35rem;
}
.include p {
  font-size: .88rem;
  font-weight: 300;
  margin: 0 1.1rem;
}

.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.benefits-product {
  margin: 0;
  background: linear-gradient(160deg, #fff 0%, #f7efe9 55%, #f0e6df 100%);
  border: 1px solid rgba(184, 137, 122, .14);
  display: grid;
  place-items: center;
  padding: 1.75rem 1.5rem;
  min-height: 280px;
}
.benefits-product img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(40, 24, 20, .14));
}
.benefits h2,
.benefits .section-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--heading);
  font-weight: 500;
  margin-bottom: 1rem;
}
.benefits-grid h2 { text-align: left; }
.benefits .wrap:not(.benefits-grid) .checks {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.benefits .wrap:not(.benefits-grid) .btn-row {
  justify-content: center;
}

/* Beneficios + home recommend — same fitted grid as promo pages */
.benefits-grid--recommend {
  align-items: stretch;
}
.benefits-grid--recommend .benefits-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits-grid--recommend .benefits-copy h2 {
  text-align: left;
  margin-bottom: 1rem;
}
.benefits-grid--recommend .checks {
  max-width: none;
  margin: 0;
}
.benefits-grid--recommend .btn-row {
  justify-content: flex-start;
  margin-top: 1.5rem;
}
.benefits-recommend {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.benefits-home-title {
  margin: 0 0 .85rem;
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.3;
}
.benefits-product--link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.benefits-product--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.benefits-product--link img {
  flex: 1;
  width: auto;
  max-width: 72%;
  max-height: 240px;
  margin: 0 auto;
  object-fit: contain;
}
.benefits-product-foot {
  width: 100%;
  padding: 1rem 0 0;
  text-align: left;
}
.benefits-product-foot .tag {
  margin: 0;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
}
.benefits-product-foot h3 {
  margin: .3rem 0 .2rem;
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.2;
}
.benefits-product-tagline {
  margin: 0 0 .75rem;
  font-size: .88rem;
  color: var(--muted, #7a6f6a);
}
@media (max-width: 900px) {
  .benefits-grid--recommend {
    grid-template-columns: 1fr;
  }
}
.checks li {
  padding: .55rem 0 .55rem 1.6rem;
  position: relative;
  font-weight: 300;
  border-bottom: 1px solid var(--cream-2);
}
.checks li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: .65rem;
  top: .85rem;
}

.steps { background: var(--cream-2); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  background: var(--cream);
  padding: 0 0 1.25rem;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  animation: rise .7s var(--ease) forwards;
}
.step:nth-child(1) { animation-delay: .05s; }
.step:nth-child(2) { animation-delay: .15s; }
.step:nth-child(3) { animation-delay: .25s; }
.step:nth-child(4) { animation-delay: .35s; }
.step-photo {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: .85rem;
  background: var(--cream-2);
  max-height: 180px;
}
.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.step:hover .step-photo img { transform: scale(1.05); }
.step .num {
  font-family: var(--font-d);
  font-size: 2rem;
  color: var(--rose-light);
  line-height: 1;
  margin: 0 1.1rem .35rem;
}
.step h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: var(--heading);
  font-weight: 500;
  margin: 0 1.1rem .35rem;
}
.step p {
  font-size: .9rem;
  font-weight: 300;
  margin: 0 1.1rem;
}

.ideal {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.chip {
  background: var(--white);
  border: 1px solid var(--rose-light);
  padding: .55rem 1rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--heading);
}

.protocol-months {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.protocol-month {
  background: var(--white);
  padding: 0 0 1.25rem;
  overflow: hidden;
  border-top: 3px solid var(--rose);
}
.protocol-month .m-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: .85rem;
}
.protocol-month .m-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.protocol-month .m {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 1.1rem .5rem;
}
.protocol-month h3 {
  font-family: var(--font-d);
  font-size: 1.25rem;
  color: var(--heading);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 1.1rem .4rem;
}
.protocol-month p {
  font-size: .88rem;
  font-weight: 300;
  margin: 0 1.1rem;
}

.protocol-edu {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 1.25rem auto 0;
  height: auto;
}

/* Protocolo option picker */
.pack-options { padding: 0 0 .5rem; }
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.option-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(184, 137, 122, .22);
  background: var(--white);
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.option-card.is-on {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}
.option-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-2, #f3ebe6);
  position: relative;
}
.option-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.option-photo--live img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}
.option-photo--live img.is-on {
  opacity: 1;
  z-index: 1;
}
.pack-path-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-top: 1.5rem;
}
.pack-path-strip figure {
  margin: 0;
  background: var(--white);
  overflow: hidden;
}
.pack-path-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.pack-path-strip figcaption {
  padding: .65rem .7rem .8rem;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(31, 24, 22, .62);
  line-height: 1.35;
}
@media (max-width: 720px) {
  .pack-path-strip { grid-template-columns: 1fr 1fr; }
}
.option-body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.option-tag {
  display: block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .35rem;
}
.option-body h3 {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 .4rem;
}
.option-body p {
  margin: 0 0 .85rem;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--muted, #7a6f6a);
}
.option-price {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--heading);
}

.pack-upsell {
  background: linear-gradient(160deg, #1f1816, #2a2220);
  color: #fff;
  padding: 3.5rem 0;
}
.pack-upsell .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.pack-upsell h2 {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: .75rem;
  color: #fff;
}
.pack-upsell p {
  font-weight: 300;
  opacity: .88;
  margin-bottom: 1rem;
}
.pack-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 169, 98, .35);
  padding: 1.5rem;
}
.pack-card strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.6rem;
  margin-bottom: .35rem;
  color: #e8d5a3;
}

.packs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.packs-table th,
.packs-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-2);
  font-weight: 300;
}
.packs-table th {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.packs-table td:first-child { font-weight: 500; color: var(--heading); }
.packs-table .save { color: var(--rose-dark); font-weight: 500; }

@media (max-width: 900px) {
  .includes,
  .steps-row,
  .protocol-months { grid-template-columns: 1fr 1fr; }
  .benefits-grid,
  .pack-upsell .wrap,
  .option-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .includes,
  .steps-row,
  .protocol-months { grid-template-columns: 1fr; }
}

.brand span { display: none !important; } /* logo already says CLEAN SKIN */
.review-links {
  margin-top: .85rem;
  display: flex; justify-content: center; align-items: center; gap: .65rem;
  flex-wrap: wrap;
}
.review-links a {
  font-size: .78rem; font-weight: 500; color: var(--rose-dark);
  letter-spacing: .04em; text-decoration: underline; text-underline-offset: 3px;
}
.review-links a:hover { color: var(--heading); }
.review-links span { color: #c4bbb4; }
a.t-card {
  text-decoration: none; color: inherit; cursor: pointer;
}
a.t-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,16,16,.1); }
.t-source {
  display: block; margin-top: auto; padding-top: .75rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: #9b7ebd;
}

/* Profesional / Yuliya — small photo left + copy right */
.pro {
  background: var(--cream);
  padding: 4.5rem 0;
}
.pro-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 2rem 2.75rem;
  align-items: center;
}
.pro-photo {
  margin: 0;
  max-width: 280px;
  width: 100%;
}
.pro-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: var(--shadow);
}
.pro-copy .section-kicker {
  text-align: left;
  margin-bottom: .55rem;
}
.pro-copy .section-title {
  text-align: left;
  margin-bottom: .85rem;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}
.pro-name {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--heading);
  font-weight: 500;
  margin-bottom: .25rem;
}
.pro-role {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .65rem;
}
.pro-langs {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.pro-langs .flag {
  font-size: 1.35rem;
  line-height: 1;
}
.pro-lead {
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--text);
  max-width: 34rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .pro-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: start;
  }
  .pro-photo {
    max-width: 220px;
  }
}

/* ——— Pre-footer journal teaser ——— */
.blog-teaser {
  padding: 4.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(184, 137, 122, .12);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.teaser-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.teaser-intro h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.15;
  margin: 1.15rem 0 .75rem;
  max-width: 14ch;
}
.teaser-intro p {
  font-weight: 300;
  font-size: .95rem;
  max-width: 32ch;
}
.seal {
  position: relative;
  width: 180px; height: 180px;
  margin: 0;
  flex-shrink: 0;
}
.seal-svg {
  width: 100%; height: 100%;
  animation: seal-spin 18s linear infinite;
}
.seal-text {
  fill: var(--rose);
  font-family: var(--font-b);
  font-size: 13.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.seal-core {
  position: absolute;
  inset: 28% 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}
.seal-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}
@keyframes seal-spin {
  to { transform: rotate(360deg); }
}
.teaser-card {
  display: block;
  transition: transform .4s var(--ease);
}
.teaser-card:hover { transform: translateY(-4px); }
.teaser-card--map {
  cursor: default;
}
.teaser-card--map:hover { transform: none; }
.teaser-media,
.teaser-map {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: #ebe6e1;
  margin-bottom: .85rem;
  position: relative;
}
.teaser-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.teaser-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  display: block;
}
.teaser-card--map h3,
.teaser-card h3 {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: .35rem;
}
.teaser-link {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 500;
}

/* Products */
.page-hero { padding: 3.5rem 0 1rem; }
.page-hero h1 {
  font-family: var(--font-d); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500; color: var(--heading); margin-bottom: .75rem;
}
.prod-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 1.35rem;
}
.prod-scope > .section-title + .prod-filters,
.prod-scope > .prod-brand-title + .prod-filters {
  margin-top: .35rem;
}
.prod-filter {
  border: 1px solid rgba(184,137,122,.35);
  background: transparent;
  padding: .55rem 1rem;
  font: inherit; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; color: var(--heading);
  transition: background .25s, color .25s, border-color .25s;
}
.prod-filter.is-on,
.prod-filter:hover {
  background: var(--heading); color: #fff; border-color: var(--heading);
}
.prod-card.is-filtered-out { display: none !important; }
.prod-brand[hidden],
.prod-block[hidden] { display: none !important; }
.prod-empty {
  padding: 0 0 1.25rem;
  text-align: left;
  color: var(--muted, #7a6f6a);
  font-size: .9rem;
}
.prod-brand { margin-top: 2rem; }
.prod-brand:first-of-type { margin-top: 1.25rem; }
.prod-brand-title {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  color: var(--heading);
  letter-spacing: .02em;
  margin: 0 0 1.15rem;
}
.prod-brand .prod-grid { padding-bottom: 1.25rem; }
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  padding-bottom: 3rem;
}
.prod-card {
  background: var(--white); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: grid; grid-template-rows: 260px auto;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod-card img {
  width: 100%; height: 260px;
  object-fit: contain;
  background: #fff;
  padding: 1.15rem;
}
.prod-card .body { padding: 1.25rem 1.25rem 1.5rem; }
.prod-card .tag {
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose);
}
.prod-card h2 {
  font-family: var(--font-d); font-size: 1.35rem; color: var(--heading);
  font-weight: 500; margin: .35rem 0 .4rem; line-height: 1.2;
}
.prod-detail { padding: 3rem 0 2rem; }
.prod-detail-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: start;
}
.prod-detail-img {
  width: 100%; aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.prod-detail h1 {
  font-family: var(--font-d); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500; color: var(--heading); margin-bottom: .5rem;
}
.prod-h {
  font-family: var(--font-d); font-size: 1.35rem; color: var(--heading);
  font-weight: 500; margin: 1.5rem 0 .5rem;
}

/* Product modal — square table over blurred page */
html.prod-modal-lock { overflow: hidden; }
.prod-modal {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.prod-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.prod-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 16, .28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}
.prod-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 94vw);
  max-height: min(90vh, 720px);
  background: #fff;
  box-shadow: 0 28px 80px rgba(20, 16, 16, .2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(14px) scale(.98);
  transition: transform .32s ease;
}
.prod-modal.is-open .prod-modal-panel {
  transform: translateY(0) scale(1);
}
.prod-modal-x {
  position: absolute;
  top: .55rem;
  right: .6rem;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .95);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--heading);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.prod-modal-x:hover { color: var(--rose); }
.prod-modal-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(70vw, 420px);
  max-height: min(90vh, 720px);
  overflow: hidden;
}
.prod-modal-media {
  background: #faf7f4;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(184, 137, 122, .18);
}
.prod-modal-media img {
  width: 100%;
  height: 100%;
  max-height: min(52vh, 380px);
  object-fit: contain;
}
.prod-modal-copy {
  padding: 1.35rem 1.4rem 1.25rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.prod-modal-kind {
  margin: 0;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
}
.prod-modal-copy h2 {
  margin: 0;
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.15;
}
.prod-modal-tagline {
  margin: 0 0 .35rem;
  color: var(--muted, #7a6f6a);
  font-size: .95rem;
  line-height: 1.4;
}
.prod-modal-h {
  margin: .55rem 0 .15rem;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading);
}
.prod-modal-why,
.prod-modal-how {
  margin: 0;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--text, #3a3330);
}
.prod-modal-bullets {
  margin: .45rem 0 .2rem;
  padding-left: 1.1rem;
  font-size: .82rem;
}
.prod-modal-bullets li { margin: .18rem 0; }
.prod-modal-actions {
  margin-top: auto;
  padding-top: .75rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.prod-modal-actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
}
@media (max-width: 720px) {
  .prod-modal-table {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(180px, 36%) auto;
    max-height: min(92vh, 780px);
  }
  .prod-modal-media {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 137, 122, .18);
    padding: 1rem;
  }
  .prod-modal-media img {
    max-height: 180px;
  }
}

/* Blog — Glowing-inspired journal */
.blog-hero {
  padding: 3rem 0 2rem;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(212,181,168,.25), transparent 60%),
    var(--cream);
}
.blog-hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center;
}
.blog-hero h1 {
  font-family: var(--font-d); font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500; color: var(--heading); line-height: 1.05; margin-bottom: .75rem;
}
.blog-hero img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow);
}
.blog-hero .seal-core img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}
.blog-hero-seal {
  display: grid;
  place-items: center;
  min-height: 0;
  background: transparent;
}
.seal--hero {
  width: min(240px, 62vw);
  height: min(240px, 62vw);
  background: transparent;
}
.blog-hero-mark,
.blog-brand-seal,
.blog-brand-ring,
.blog-brand-sign,
.blog-brand-word,
.blog-brand-sub,
.blog-brand-line {
  /* legacy — unused */
  display: none;
}
.blog-filters {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.75rem;
}
.blog-filter {
  border: 1px solid rgba(184,137,122,.35);
  background: transparent;
  padding: .55rem 1rem;
  font: inherit; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; color: var(--heading);
  transition: background .25s, color .25s, border-color .25s;
}
.blog-filter.is-on,
.blog-filter:hover {
  background: var(--heading); color: #fff; border-color: var(--heading);
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding-bottom: 3.5rem;
}
.blog-grid--sm { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  background: var(--white);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-media { aspect-ratio: 4/3; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 1.15rem 1.2rem 1.4rem; }
.blog-meta {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .45rem;
}
.blog-meta a { color: inherit; }
.blog-card h2 {
  font-family: var(--font-d); font-size: 1.35rem; font-weight: 500;
  color: var(--heading); line-height: 1.2; margin-bottom: .45rem;
}
.blog-card-body p { font-size: .9rem; font-weight: 300; margin-bottom: .75rem; }
.blog-article { padding: 3rem 0 1rem; max-width: 760px; }
.blog-article h1 {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: var(--heading); line-height: 1.1; margin: .5rem 0 1.25rem;
}
.blog-article-hero {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 1.75rem;
}
.blog-article-body {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: var(--text);
}
.blog-article-body p { margin-bottom: 1.1rem; }
.blog-why-title {
  font-family: var(--font-d); font-size: 1.45rem; font-weight: 500;
  color: var(--heading); margin: 0 0 1rem;
}
.blog-gallery {
  display: grid; gap: .85rem; margin: 0 0 1.75rem;
}
.blog-gallery img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  background: #f3eee8;
}
.blog-product {
  margin: 2rem 0 0; padding: 1.5rem; background: #faf7f4; text-align: center;
}
.blog-product img {
  max-width: min(280px, 100%); height: auto; object-fit: contain; margin: 0 auto 1rem;
  display: block;
}
.blog-product figcaption {
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-dark); font-weight: 500;
}
.blog-lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--heading);
  margin: 0 0 1.35rem;
  max-width: 38rem;
}
.blog-block { margin: 2.25rem 0 0; }
.blog-block .steps-row { margin-top: 1rem; }
.blog-block .checks { margin-top: .85rem; }
.blog-recommend {
  margin: 2.25rem 0 0;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(165deg, #fff 0%, #faf6f2 100%);
  border: 1px solid rgba(184, 137, 122, .2);
}
.blog-recommend .benefits-home-title {
  margin: 0 0 1rem;
}
.blog-recommend .benefits-product--link {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.blog-recommend .benefits-product--link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}
.blog-recommend .tag {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 .35rem;
}
.blog-recommend h3 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 .35rem;
  color: var(--heading);
}
.blog-recommend .benefits-product-tagline {
  margin: 0 0 .65rem;
  font-weight: 300;
  color: var(--text);
}
.blog-links { margin: 2rem 0 0; }
.blog-links ul {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .85rem;
}
.blog-links a {
  color: var(--rose-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: .18em;
}
@media (max-width: 560px) {
  .blog-recommend .benefits-product--link {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seal-svg { animation: none; }
}

@media (max-width: 900px) {
  .teaser-grid, .prod-grid, .blog-grid, .blog-grid--sm, .blog-hero-inner, .prod-detail-grid {
    grid-template-columns: 1fr;
  }
  .prod-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
}

/* ——— Page loader (Biagiotti-style) ——— */
.cs-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 42%, rgba(212, 181, 168, .4), transparent 62%),
    #faf7f4;
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), visibility .55s;
}
.cs-loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.cs-loader.is-leaving {
  opacity: 1;
  visibility: visible;
}
.cs-loader-inner {
  position: relative;
  text-align: center;
  padding: 1.25rem;
  width: min(380px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cs-loader-in .85s cubic-bezier(.22, 1, .36, 1) both;
}
.cs-loader-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0 0;
  overflow: visible;
}
.cs-loader-bloom {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(320px, 78vw);
  height: min(200px, 52vw);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.cs-loader-flor {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(148px, 40vw);
  height: auto;
  transform: translate(-50%, -50%) scale(.08);
  transform-origin: center center;
  z-index: 2;
  opacity: 0;
  animation: cs-flor-bloom 2.55s cubic-bezier(.16, 1, .3, 1) both;
}
.cs-loader-leaf {
  position: absolute;
  top: 50%;
  width: min(120px, 32vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}
.cs-loader-leaf--left {
  left: 50%;
  transform-origin: 100% 55%;
  animation: cs-leaf-open-left 2.55s cubic-bezier(.18, 1, .28, 1) .04s both;
}
.cs-loader-leaf--right {
  left: 50%;
  transform-origin: 0% 55%;
  animation: cs-leaf-open-right 2.55s cubic-bezier(.18, 1, .28, 1) .04s both;
}
@keyframes cs-leaf-open-left {
  /* start tucked at flower edge, then open BIG to the left extremity */
  0% {
    opacity: 0;
    transform: translate(-58%, -50%) rotate(48deg) scale(.2);
  }
  16% {
    opacity: 1;
    transform: translate(-128%, -50%) rotate(10deg) scale(1);
  }
  36% {
    opacity: .98;
    transform: translate(-158%, -50%) rotate(0deg) scale(1.05);
  }
  62% {
    opacity: .35;
    transform: translate(-172%, -50%) rotate(-4deg) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-188%, -50%) rotate(-8deg) scale(1.18);
  }
}
@keyframes cs-leaf-open-right {
  0% {
    opacity: 0;
    transform: translate(-42%, -50%) rotate(-48deg) scale(.2);
  }
  16% {
    opacity: 1;
    transform: translate(28%, -50%) rotate(-10deg) scale(1);
  }
  36% {
    opacity: .98;
    transform: translate(58%, -50%) rotate(0deg) scale(1.05);
  }
  62% {
    opacity: .35;
    transform: translate(72%, -50%) rotate(4deg) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(88%, -50%) rotate(8deg) scale(1.18);
  }
}
@keyframes cs-flor-bloom {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.08);
  }
  16% {
    opacity: .95;
    transform: translate(-50%, -50%) scale(1.06);
  }
  36% {
    opacity: .88;
    transform: translate(-50%, -50%) scale(1);
  }
  62% {
    opacity: .4;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
}
.cs-loader-mark {
  position: relative;
  z-index: 1;
  width: min(148px, 40vw);
  height: min(148px, 40vw);
  margin: 0 auto -.55rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.55);
  animation: cs-mark-rise 1.1s cubic-bezier(.22, 1, .36, 1) .85s both;
}
.cs-loader-seal {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.cs-loader-ring {
  width: 100%;
  height: 100%;
  animation: seal-spin 14s linear infinite;
  animation-delay: .9s;
}
.cs-loader-ring-text {
  fill: var(--rose);
  font-family: var(--font-b);
  font-size: 13.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.cs-loader-sign {
  position: absolute;
  inset: 26% 16%;
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 48%;
  margin: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0;
  animation: cs-sign-in 1s cubic-bezier(.22, 1, .36, 1) 1s both;
}
.cs-loader-word {
  font-family: var(--font-d);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.05;
  margin: 0 0 .2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: cs-mark-rise 1s cubic-bezier(.22, 1, .36, 1) 1.05s both;
}
.cs-loader-sub {
  font-family: var(--font-b);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin: 0 0 1.35rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: cs-mark-rise .9s cubic-bezier(.22, 1, .36, 1) 1.2s both;
}
.cs-loader-line {
  width: 72px;
  height: 1px;
  margin: 0 auto;
  background: rgba(184, 137, 122, .25);
  overflow: hidden;
  position: relative;
}
.cs-loader-line span {
  position: absolute; inset: 0;
  background: var(--rose);
  transform-origin: left center;
  animation: cs-line 1.15s cubic-bezier(.22, 1, .36, 1) infinite;
}
@keyframes cs-loader-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cs-sign-in {
  from { opacity: 0; transform: scale(.88); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes cs-mark-rise {
  from { opacity: 0; transform: scale(.55) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes cs-line {
  0% { transform: scaleX(0); transform-origin: left center; }
  50% { transform: scaleX(1); transform-origin: left center; }
  51% { transform-origin: right center; }
  100% { transform: scaleX(0); transform-origin: right center; }
}
@media (max-width: 640px) {
  .cs-loader-bloom {
    width: min(280px, 82vw);
    height: min(170px, 48vw);
  }
  .cs-loader-flor { width: min(128px, 36vw); }
  .cs-loader-leaf { width: min(96px, 28vw); }
  .cs-loader-word {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    letter-spacing: .16em;
  }
  @keyframes cs-leaf-open-left {
    0% { opacity: 0; transform: translate(-55%, -50%) rotate(40deg) scale(.2); }
    16% { opacity: 1; transform: translate(-108%, -50%) rotate(8deg) scale(1); }
    40% { opacity: .95; transform: translate(-122%, -50%) rotate(0deg) scale(1.02); }
    70% { opacity: .3; transform: translate(-130%, -50%) rotate(-3deg) scale(1.05); }
    100% { opacity: 0; transform: translate(-138%, -50%) rotate(-6deg) scale(1.08); }
  }
  @keyframes cs-leaf-open-right {
    0% { opacity: 0; transform: translate(-45%, -50%) rotate(-40deg) scale(.2); }
    16% { opacity: 1; transform: translate(8%, -50%) rotate(-8deg) scale(1); }
    40% { opacity: .95; transform: translate(22%, -50%) rotate(0deg) scale(1.02); }
    70% { opacity: .3; transform: translate(30%, -50%) rotate(3deg) scale(1.05); }
    100% { opacity: 0; transform: translate(38%, -50%) rotate(6deg) scale(1.08); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .cs-loader-ring, .cs-loader-line span, .cs-loader-inner, .cs-loader-sign,
  .cs-loader-word, .cs-loader-sub, .cs-loader-flor, .cs-loader-mark,
  .cs-loader-leaf {
    animation: none !important;
  }
  .cs-loader-flor {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
  .cs-loader-leaf {
    opacity: 0;
  }
  .cs-loader-mark,
  .cs-loader-sign,
  .cs-loader-word,
  .cs-loader-sub {
    opacity: 1;
    transform: none;
  }
}

/* ——— Cookie bar ——— */
.cs-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100000;
  padding: 1rem min(4vw, 1.5rem) 1.15rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cs-cookie.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cs-cookie-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(20, 16, 16, .1);
  box-shadow: 0 -8px 40px rgba(20, 16, 16, .08);
  padding: 1.15rem 1.35rem;
}
.cs-cookie-title {
  font-family: var(--font-b);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: .35rem;
}
.cs-cookie-text {
  font-family: var(--font-d);
  font-style: italic;
  font-size: .95rem;
  color: #8a8280;
  line-height: 1.45;
  max-width: 52ch;
}
.cs-cookie-actions {
  display: flex;
  gap: .55rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cs-cookie-btn {
  font-family: var(--font-b);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--heading);
  padding: .85rem 1.15rem;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.cs-cookie-btn--ghost {
  background: transparent;
  color: var(--heading);
}
.cs-cookie-btn--ghost:hover {
  background: var(--cream-2);
}
.cs-cookie-btn--solid {
  background: var(--heading);
  color: #fff;
  border-color: var(--heading);
}
.cs-cookie-btn--solid:hover {
  background: #2a2220;
}

/* ——— Newsletter popup (Biagiotti) ——— */
html.cs-news-lock {
  overflow: hidden;
}
.cs-news {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.cs-news.is-open {
  opacity: 1;
  visibility: visible;
}
.cs-news-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 16, .35);
  cursor: pointer;
}
.cs-news-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  padding: 3.25rem 2.5rem 2.35rem;
  text-align: center;
  box-shadow: 0 28px 80px rgba(20, 16, 16, .18);
  transform: translateY(14px) scale(.98);
  transition: transform .4s var(--ease);
}
.cs-news.is-open .cs-news-panel {
  transform: translateY(0) scale(1);
}
.cs-news-x {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--heading);
  cursor: pointer;
  opacity: .7;
}
.cs-news-x:hover { opacity: 1; }
.cs-news-head {
  position: relative;
  margin-bottom: 1.75rem;
  min-height: 4.5rem;
  display: grid;
  place-items: center;
}
.cs-news-script {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -58%);
  font-family: var(--font-script);
  font-size: clamp(3.6rem, 10vw, 5.4rem);
  line-height: .8;
  color: rgba(20, 16, 16, .12);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.cs-news-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-b);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--heading);
  margin: 0;
}
.cs-news-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin-bottom: 1rem;
}
.cs-news-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #cfc9c6;
  border-right: 0;
  background: #fff;
  padding: 1rem 1.1rem;
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--heading);
  outline: none;
}
.cs-news-input::placeholder {
  color: #a39c99;
  font-style: italic;
}
.cs-news-input.is-invalid {
  border-color: #a85a4a;
}
.cs-news-send {
  flex-shrink: 0;
  border: 0;
  background: #141010;
  color: #fff;
  font-family: var(--font-b);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 1.6rem;
  cursor: pointer;
  transition: background .2s;
}
.cs-news-send:hover { background: #2a2220; }
.cs-news-note,
.cs-news-thanks {
  font-family: var(--font-d);
  font-style: italic;
  font-size: .9rem;
  color: #9a9290;
  line-height: 1.4;
  margin: 0;
}
.cs-news-thanks {
  color: var(--heading);
  font-size: 1.05rem;
}
.cs-news-dismiss {
  display: block;
  width: 100%;
  margin: 1.35rem 0 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-b), sans-serif;
  font-size: .88rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .04em;
  color: #111;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: .22em;
}
.cs-news-dismiss:hover {
  color: #000;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Anti-bot human check — server CAPTCHA */
.human-check-slot {
  margin: 1rem 0 1.15rem;
}
.human-check {
  border: 1px solid rgba(184, 137, 122, .35);
  background: rgba(250, 247, 244, .9);
  padding: 1rem 1.1rem 1.05rem;
}
.human-check-label {
  margin: 0 0 .35rem;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.human-check-q {
  margin: 0 0 .65rem;
  color: var(--heading);
  font-size: .95rem;
}
.human-check--recaptcha-v3 .human-check-hint {
  margin: 0;
  font-size: .8rem;
  color: var(--muted, #7a6f6a);
}
.human-check--recaptcha .human-check-q {
  display: none;
}
.human-check-recaptcha {
  min-height: 78px;
  display: flex;
  align-items: center;
}
.human-check-recaptcha > div {
  transform-origin: left center;
}
@media (max-width: 380px) {
  .human-check-recaptcha > div {
    transform: scale(0.92);
  }
}
.human-check-hint {
  margin: .55rem 0 0;
  font-size: .75rem;
  color: var(--muted, #7a6f6a);
}
.human-check-err {
  margin: .55rem 0 0;
  font-size: .82rem;
  color: #a33;
}
.human-check-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cs-news-form .human-check-slot {
  width: 100%;
  margin: .75rem 0;
}
.cs-news-form .human-check {
  text-align: left;
}
.cs-news-form .human-check-field input {
  max-width: none;
}
@media (max-width: 560px) {
  .cs-cookie-inner { padding: 1rem; }
  .cs-cookie-actions { width: 100%; }
  .cs-cookie-btn { flex: 1; text-align: center; }
  .cs-news-panel { padding: 2.75rem 1.35rem 1.85rem; }
  .cs-news-form { flex-direction: column; }
  .cs-news-input { border-right: 1px solid #cfc9c6; border-bottom: 0; }
  .cs-news-send { padding: 1rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cs-cookie, .cs-news, .cs-news-panel { transition: none; }
}

/* ——— Institutional logos (pre-footer) ——— */
.inst-bar {
  background: #fff;
  border-top: 1px solid rgba(20, 16, 16, .08);
  padding: 1.5rem 0 1.6rem;
}
.inst-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
  flex-wrap: wrap;
}
.inst-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.inst-logo--wide {
  max-width: min(520px, 70vw);
  height: 56px;
}
@media (max-width: 640px) {
  .inst-bar { padding: 1.15rem 0 1.25rem; }
  .inst-bar-inner { gap: 1rem 1.25rem; }
  .inst-logo,
  .inst-logo--wide { height: 44px; }
}

/* ——— Novedades home (restored) ——— */
.home-promo {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(184, 137, 122, .12), transparent 55%),
    var(--cream);
}
.home-promo .section-lead { margin-bottom: 2.25rem; }
.promo-spotlight {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: linear-gradient(160deg, #1f1816, #2a2220);
  color: #fff;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.promo-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  animation: promo-breathe 10s ease-in-out infinite;
}
.promo-float {
  position: absolute;
  inset: auto 8% 10% auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(184,137,122,.15) 55%, transparent 70%);
  filter: blur(1px);
  animation: rise 2.4s var(--ease) infinite alternate;
  pointer-events: none;
}
.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.25rem 2.75rem;
}
.promo-copy h3 {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: .85rem;
  color: #fff;
}
.promo-copy > p {
  font-weight: 300;
  opacity: .88;
  margin-bottom: 1.25rem;
  max-width: 28rem;
}
.promo-copy .price-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(232, 213, 163, .35);
  color: #e8d5a3;
  margin-bottom: 1.25rem;
}
.promo-copy .eyebrow { color: var(--rose-light); }
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--heading);
}

.protocol-pick {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid rgba(184, 137, 122, .18);
  padding: 1.35rem 1.25rem 1.5rem;
}
.protocol-pick-title {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 1.1rem;
  text-align: center;
}
.protocol-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.protocol-pick-card {
  display: grid;
  grid-template-rows: 180px auto;
  background: var(--cream);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  overflow: hidden;
}
.protocol-pick-card:hover {
  border-color: rgba(184, 137, 122, .35);
}
.protocol-pick-card.is-on {
  border-color: var(--rose);
  box-shadow: 0 10px 28px rgba(31, 24, 22, .08);
}
.protocol-pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.protocol-pick-body {
  padding: 1rem 1.05rem 1.15rem;
}
.protocol-pick-body .option-tag {
  font-family: var(--font-b);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.protocol-pick-body h4 {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--heading);
  margin: .2rem 0 .35rem;
  line-height: 1.15;
}
.protocol-pick-body p {
  font-size: .88rem;
  font-weight: 300;
  margin-bottom: .65rem;
  line-height: 1.4;
}
.protocol-pick-body strong {
  font-family: var(--font-d);
  font-size: 1.65rem;
  color: var(--heading);
  font-weight: 600;
}
.protocol-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@keyframes promo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta-band {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: .75rem;
  color: #fff;
}
.cta-band p {
  opacity: .85;
  font-weight: 300;
  margin-bottom: 1.35rem;
}
.cta-band .btn-row {
  justify-content: center;
}
.cta-band .btn-ghost {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.cta-band .btn-ghost:hover {
  background: #fff;
  color: var(--heading);
}

footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--cream-2);
  font-size: .85rem;
  font-weight: 300;
  background: var(--cream);
  position: relative;
  z-index: 50;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.foot-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.foot-link:hover {
  color: var(--heading);
  border-bottom-color: rgba(184, 137, 122, .55);
}
.inst-bar,
.blog-teaser {
  position: relative;
  z-index: 50;
}

@media (prefers-reduced-motion: reduce) {
  .promo-media img,
  .promo-float,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .promo-spotlight { grid-template-columns: 1fr; }
  .promo-media img { min-height: 280px; max-height: 42vh; }
  .protocol-pick-grid { grid-template-columns: 1fr; }
  .protocol-pick-card { grid-template-rows: 160px auto; }
}

/* ——— Promociones MEDER campaign bridge ——— */
.promo-bridge {
  margin-top: 2.75rem;
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 42vw, 420px);
  display: grid;
  place-items: center;
  text-align: center;
  border: 0;
  background: #f3e4dc;
}
.promo-bridge-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.promo-bridge-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(250, 247, 244, .82) 0%, rgba(250, 247, 244, .55) 45%, rgba(250, 247, 244, .12) 78%, transparent 100%),
    linear-gradient(90deg, rgba(243, 221, 212, .35), transparent 28%, transparent 72%, rgba(243, 221, 212, .35));
  pointer-events: none;
}
.promo-bridge-copy {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
  max-width: 34rem;
}
.promo-bridge-kicker {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .55rem;
}
.promo-bridge h3 {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 .7rem;
}
.promo-bridge p {
  max-width: 28rem;
  margin: 0 auto 1.35rem;
  color: var(--text);
  line-height: 1.65;
  font-size: .95rem;
}
.promo-bridge .btn {
  box-shadow: 0 10px 28px rgba(143, 101, 88, .22);
}
@media (max-width: 820px) {
  .promo-bridge {
    min-height: 320px;
  }
  .promo-bridge-copy {
    padding: 2rem 1.15rem;
  }
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  padding-bottom: 3rem;
}
.promo-grid--sm { grid-template-columns: repeat(3, 1fr); }
.promo-card {
  background: var(--white);
  display: grid;
  grid-template-rows: 160px auto;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(184, 137, 122, .12);
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.promo-card-media {
  position: relative;
  background: #fff;
  display: grid;
  place-items: center;
  padding: .75rem;
}
.promo-card-media img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}
.promo-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: var(--rose-dark, #9a6558);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .08em;
  padding: .35rem .55rem;
  font-weight: 600;
}
.promo-card-body { padding: 1.2rem 1.25rem 1.45rem; }
.promo-card .tag {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
}
.promo-card h2, .promo-card h3 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--heading);
  font-weight: 500;
  margin: .35rem 0 .4rem;
  line-height: 1.2;
}
.promo-card--sm { grid-template-rows: 160px auto; }
.promo-card--sm h3 { font-size: 1.15rem; }
.promo-focus {
  font-size: .9rem;
  color: var(--muted, #6b5e5a);
  margin: .35rem 0 .75rem;
}
.promo-price {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  margin: .5rem 0 1rem;
  flex-wrap: wrap;
}
.promo-price strong {
  font-family: var(--font-d);
  font-size: 1.55rem;
  color: var(--heading);
  font-weight: 500;
}
.promo-price s {
  color: var(--muted, #8a7a74);
  font-size: .95rem;
}
.promo-price--lg strong { font-size: 2.1rem; }
.promo-sessions {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
}
.promo-detail-media {
  display: grid;
  gap: 1rem;
}
.promo-detail-box {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.prod-card .meta {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: .55rem 0 1rem;
  color: var(--heading);
}
.prod-card .meta b { font-family: var(--font-d); font-size: 1.25rem; font-weight: 500; }
.prod-card .meta .sep { opacity: .45; }
.promo-in-products { padding: 1rem 0 2rem; background: var(--cream, #faf6f3); }
.promo-in-products .section-title { margin-bottom: .5rem; }
.page-hero--promo { background: linear-gradient(180deg, #f7efe9 0%, transparent 100%); }
@media (max-width: 900px) {
  .promo-grid, .promo-grid--sm { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .promo-grid, .promo-grid--sm { grid-template-columns: 1fr; }
}

/* ——— Promo treatment pages ——— */
.promo-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: .75rem;
}
.price-pill--pack {
  background: rgba(184, 137, 122, .12);
}
.how-acts { padding: 3.5rem 0; background: #fff; }
.how-acts-strip {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 1.25rem auto 0;
  border-radius: 0;
}
.how-acts-strip--center {
  margin-left: auto;
  margin-right: auto;
  max-width: min(920px, 100%);
}
.how-acts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-top: 1.5rem;
}
.how-acts-grid.how-acts-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  justify-items: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.75rem;
}
.how-act {
  background: transparent;
  overflow: visible;
  text-align: center;
  width: 100%;
  max-width: 240px;
}
.how-act-photo {
  aspect-ratio: 1;
  overflow: visible;
  background: #fff;
  border-radius: 0;
  display: grid;
  place-items: center;
}
.how-act-photo img {
  width: 100%; height: 100%; object-fit: contain;
  object-position: center;
  display: block;
}
/* CO₂ step 3 glow cube — optical center (flare pulls left) */
.how-acts-grid--3 .how-act:nth-child(3) .how-act-photo img {
  object-position: 62% 48%;
  transform: translateX(6%);
}
.how-act h3 {
  font-family: var(--font-b);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  padding: .85rem .4rem .3rem;
}
.how-act p {
  padding: 0 .4rem 0;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--body);
}
.promo-book-duo { padding: 3rem 0 1rem; }
.promo-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (max-width: 800px) {
  .promo-duo-grid, .promo-price-row { grid-template-columns: 1fr; }
}
.promo-duo-card {
  background: #fff;
  border: 1px solid rgba(184, 137, 122, .18);
  padding: 1.75rem 1.5rem;
}
.promo-duo-card--hot {
  border-color: var(--rose);
  background: linear-gradient(160deg, #fff 0%, #f7efe9 100%);
}
.promo-duo-card .tag {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .4rem;
}
.promo-duo-card h3 {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: .5rem;
}
.promo-duo-card .meta {
  display: flex;
  gap: .5rem;
  align-items: baseline;
  margin: 1rem 0 1.15rem;
  font-family: var(--font-d);
}
.promo-duo-card .meta b { font-size: 1.6rem; font-weight: 500; color: var(--heading); }
.promo-duo-card .btn { margin-right: .5rem; margin-bottom: .5rem; }
@media (max-width: 900px) {
  .how-acts-grid { grid-template-columns: 1fr 1fr; }
  .how-acts-grid.how-acts-grid--3 {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 1.25rem;
  }
  .how-acts-grid--3 .how-act:nth-child(3) .how-act-photo img {
    transform: none;
    object-position: center;
  }
}
@media (max-width: 560px) {
  .how-acts-grid { grid-template-columns: 1fr; }
}

/* Ofertas — Yuliya hero + flip cards + filters + path */
.ofertas-page .menu { padding-top: 1rem; }

/* MEDER clinic intro — no heavy bg, clinical white space */
.meder-clinic-banner {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
}
.meder-clinic-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.meder-clinic-copy .section-kicker {
  color: #c41230;
  letter-spacing: .14em;
}
.meder-clinic-copy .section-title {
  margin-bottom: .75rem;
}
.meder-clinic-copy .section-lead {
  max-width: 36rem;
  margin-bottom: 1.35rem;
}
.meder-clinic-art {
  margin: 0;
  background: transparent;
}
.meder-clinic-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}
@media (max-width: 820px) {
  .meder-clinic-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .meder-clinic-art { order: -1; }
}

/* —— Ofertas ONLY: vertical sound-wave scroll follower —— */
.ofertas-page { position: relative; }

/* Left rail — always titles-only (no hover box) */
.offer-rail {
  position: fixed;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: auto;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0;
  opacity: 1;
  transition: opacity .35s ease, visibility .35s ease;
}
.offer-rail-kicker,
.offer-rail-list,
.offer-rail-item,
.offer-rail-indicator,
.offer-rail-indicator-body,
.offer-rail-indicator-bar,
.offer-rail-indicator-canvas,
.offer-rail-sections {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.offer-rail-peek {
  display: flex;
  align-items: center;
  gap: .55rem;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transition: none;
}
.offer-rail-peek-bar {
  display: block;
  width: 4px;
  height: min(38vh, 200px);
  border-radius: 4px;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 137, 122, .35) 18%,
    var(--rose) 50%,
    rgba(184, 137, 122, .35) 82%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(184, 137, 122, .35);
  animation: offer-rail-pulse 2.4s ease-in-out infinite;
}
.offer-rail-peek-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .5rem;
}
.offer-rail-peek-label {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: var(--font-b);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(184, 137, 122, .5);
  cursor: pointer;
  line-height: 1.15;
  white-space: nowrap;
  pointer-events: auto;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.offer-rail-peek-now {
  color: rgba(184, 137, 122, .92);
  font-size: .64rem;
  font-weight: 700;
}
.offer-rail-peek-label:hover {
  color: var(--heading);
}
.offer-rail-peek-label[hidden] {
  display: none !important;
}

@keyframes offer-rail-pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
.offer-rail.is-away {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}
/* Legacy full-rail chrome — always hidden (titles peek only) */
.offer-rail-kicker,
.offer-rail-list,
.offer-rail-indicator {
  display: none !important;
}

@media (max-width: 900px) {
  .offer-rail {
    left: .55rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: none;
    padding: 0 !important;
    width: auto !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .offer-rail-peek {
    display: flex;
  }
  .offer-rail-peek-bar {
    height: min(28vh, 150px);
  }
  .offer-rail-kicker,
  .offer-rail-list,
  .offer-rail-indicator {
    display: none !important;
  }
}

/* —— Ofertas hero overlay + 2×2 tiles —— */

.serve-hero { padding: 0 0 1.25rem; }
.serve-hero-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1e3a4c;
}
.serve-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.serve-hero-copy {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 4vw, 3.5rem);
  top: clamp(1.2rem, 8%, 3.5rem);
  width: min(42%, 26rem);
  padding: 1.2rem 1.3rem;
  background: linear-gradient(105deg, rgba(255,252,249,.94), rgba(255,252,249,.72));
  text-shadow: none;
}
.serve-hero-copy .eyebrow { color: var(--rose); }
.serve-hero-copy h1 {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 500;
  color: var(--heading);
  margin: .3rem 0 .55rem;
  line-height: 1.05;
}
.serve-hero-copy .lead {
  margin-bottom: .9rem;
  font-size: .92rem;
  color: var(--text);
  max-width: 22rem;
}

.offer-filters {
  display: flex; flex-wrap: wrap; gap: .45rem;
  margin: 0 0 1.35rem;
}
.offer-filter {
  border: 1px solid rgba(184,137,122,.35);
  background: transparent;
  padding: .5rem .9rem;
  font: inherit; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; color: var(--heading);
  transition: background .25s, color .25s, border-color .25s;
}
.offer-filter.is-on,
.offer-filter:hover {
  background: var(--heading); color: #fff; border-color: var(--heading);
}
.is-filtered-out { display: none !important; }


.offer-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.offer-tile {
  background: #fff;
  border: 1px solid rgba(184,137,122,.16);
  min-width: 0;
  overflow: hidden;
}
.offer-tile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  overflow: hidden;
}
.offer-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-tile-img[hidden] { display: none !important; }
.offer-tile-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem 1rem;
  align-items: end;
  padding: .9rem 1rem 1.05rem;
}
.offer-tile-copy .tag {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .25rem;
}
.offer-tile-copy h2 {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 .3rem;
  line-height: 1.15;
}
.offer-tile-lead {
  font-size: .82rem;
  color: var(--text);
  margin: 0 0 .55rem;
  line-height: 1.4;
}
.offer-tile-copy .offer-show-why {
  font-size: .78rem;
  margin: 0 0 .55rem;
  line-height: 1.45;
}
.offer-tile-copy .offer-show-why span {
  display: block;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .2rem;
}
.offer-tile-copy .offer-show-bens-k {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .25rem;
}
.offer-tile-copy .offer-show-bens ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
  margin: 0 0 .65rem;
}
.offer-tile-copy .offer-show-bens li {
  font-size: .78rem;
  padding-left: .65rem;
  position: relative;
}
.offer-tile-copy .offer-show-bens li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: .22rem; height: .22rem;
  background: var(--rose);
  border-radius: 50%;
}
.offer-tile-copy .meta {
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: .65rem;
}
.offer-tile-copy .meta .sep { margin: 0 .3rem; opacity: .45; }
.offer-tile-actions { display: flex; flex-wrap: wrap; gap: .4rem; }
.offer-tile .offer-show-product {
  margin: 0;
  width: 78px;
  text-align: center;
}
.offer-tile .offer-show-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream);
  padding: .3rem;
  border: 1px solid rgba(184,137,122,.16);
}
.offer-tile .offer-show-product figcaption {
  font-size: .52rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .25rem;
  line-height: 1.25;
}


.path-fork { padding: 2rem 0 2.5rem; }
.path-treat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-top: 1.25rem;
}
.path-treat-card {
  border: 0;
  padding: 0;
  background: var(--white, #fff);
  text-align: left;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.path-treat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.path-treat-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.path-treat-body { padding: 1.15rem 1.25rem 1.4rem; }
.path-treat-body .path-choice-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .35rem;
}
.path-treat-body strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: .35rem;
}
.path-treat-body p {
  font-size: .9rem;
  color: var(--muted, #7a6f6a);
  margin: 0 0 .65rem;
  line-height: 1.4;
}
.path-treat-body .path-choice-price {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--heading);
}
.path-gate { padding: 1.5rem 0 1rem; }
.path-gate-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  padding: 1rem;
}
.path-gate-panel[hidden] { display: none !important; }
.path-gate-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.path-gate-duo {
  display: grid;
  gap: .85rem;
  margin: 1.1rem 0 1.25rem;
}
.path-gate-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(184,137,122,.28);
  transition: border-color .25s, transform .25s;
}
.path-gate-card:hover {
  border-color: var(--heading);
  transform: translateY(-2px);
}
.path-gate-card strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: .25rem;
}
.path-gate-card span { font-size: .88rem; color: var(--muted, #7a6f6a); }



@media (max-width: 900px) {
  /* offer-rail mobile handled above */

  .serve-hero-stage { aspect-ratio: 4 / 3; }
  .serve-hero-copy {
    top: auto;
    bottom: .85rem;
    right: .85rem;
    left: .85rem;
    width: auto;
    padding: .95rem 1rem;
  }
  .offer-tile-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .offer-tile.is-flipped .offer-tile-inner { transform: none; }
  .offer-tile-back { position: relative; transform: none; display: none; }
  .offer-tile.is-flipped .offer-tile-front { display: none; }
  .offer-tile.is-flipped .offer-tile-back { display: flex; }
  .offer-tile-back-row { grid-template-columns: 1fr auto; }
  .path-treat-grid { grid-template-columns: 1fr; }
  .path-gate-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .offer-tile-grid { grid-template-columns: 1fr; }
  .offer-tile-actions .btn { font-size: .62rem; padding: .45rem .65rem; }
}
@media (prefers-reduced-motion: reduce) {
  .offer-tile-inner { transition: none; }
}

/* —— Offer quiz builder —— */
.offer-quiz {
  padding: 2.75rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(184,137,122,.12), transparent 55%),
    linear-gradient(180deg, #f7f1ec 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(184,137,122,.14);
}
.offer-quiz-inner { max-width: 920px; }

.offer-quiz-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(184,137,122,.18);
}
.offer-quiz-slider {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text);
}
.offer-quiz-slider span b {
  color: var(--heading);
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
}
.offer-quiz-slider input[type="range"] {
  width: 100%;
  accent-color: var(--rose);
  cursor: pointer;
}
.offer-quiz-empty {
  padding: 1.5rem 1rem;
  font-size: .95rem;
  color: var(--text);
  min-width: 220px;
}
@media (max-width: 640px) {
  .offer-quiz-sliders { grid-template-columns: 1fr; }
}
.offer-quiz-panel {
  margin-top: 1.5rem;
  background: #fff;
  padding: 1.5rem 1.4rem 1.35rem;
  border: 1px solid rgba(184,137,122,.2);
}
.offer-quiz-progress {
  height: 3px;
  background: rgba(184,137,122,.15);
  margin-bottom: .85rem;
  overflow: hidden;
}
.offer-quiz-progress-fill {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--rose);
  transition: width .35s var(--ease);
}
.offer-quiz-step {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .85rem;
}
.offer-quiz-q h3 {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.offer-quiz-opts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.offer-quiz-opt {
  appearance: none;
  border: 1px solid rgba(184,137,122,.32);
  background: var(--cream);
  color: var(--heading);
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .7rem 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.offer-quiz-opt:hover {
  border-color: var(--heading);
  transform: translateY(-1px);
}
.offer-quiz-opt.is-on {
  background: var(--heading);
  border-color: var(--heading);
  color: #fff;
}
.offer-quiz-nav {
  display: flex;
  gap: .65rem;
  margin-top: 1.15rem;
}
.offer-quiz-results { margin-top: 1.75rem; }
.offer-quiz-results-title {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--heading);
  margin: .2rem 0 .5rem;
}
.offer-quiz-rail-wrap {
  margin: 1.1rem -1vw 0;
  padding: 0 1vw;
}
.offer-quiz-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: .35rem .15rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-light) transparent;
}
.offer-quiz-rail::-webkit-scrollbar { height: 6px; }
.offer-quiz-rail::-webkit-scrollbar-thumb {
  background: var(--rose-light);
  border-radius: 3px;
}
.offer-quiz-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(184,137,122,.18);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .25s;
}
.offer-quiz-card:hover {
  transform: translateY(-4px);
  border-color: var(--heading);
}
.offer-quiz-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}
.offer-quiz-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-quiz-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-quiz-card-kind {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .35rem;
}
.offer-quiz-card-body h4 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 .3rem;
  line-height: 1.2;
}
.offer-quiz-card-body > p {
  font-size: .86rem;
  color: var(--text);
  margin: 0 0 .65rem;
  line-height: 1.45;
  flex: 1;
}
.offer-quiz-card-meta {
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: .55rem;
}
.offer-quiz-card-cta {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-dark);
}
@media (max-width: 640px) {
  .offer-quiz-panel { padding: 1.15rem 1rem 1.1rem; }
  .offer-quiz-opt { flex: 1 1 calc(50% - .55rem); text-align: left; }
}
