/* ==========================================================================
   Makus Patagonia — landing
   Dirección: editorial botánico patagónico. Crema cálida, verde bosque,
   acento ciruela (fruto del maqui). Fjalla One + Cormorant Garamond + Jost.
   ========================================================================== */

:root {
  --paper: #F7F1E6;
  --paper-2: #EFE5D3;
  --white: #FDFBF7;
  --ink: #22312B;
  --ink-soft: #4A5A52;
  --green-950: #082219;
  --green-900: #0E3A2C;
  --green-700: #1C5B45;
  --sage: #A9BFA8;
  --plum: #5C2947;
  --plum-2: #7C3A62;
  --cream-text: #F5EFE3;

  --font-display: "Fjalla One", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --radius: 22px;
  --shadow-soft: 0 18px 50px -18px rgba(14, 58, 44, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain atmosférico sobre toda la página */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* ==========================================================================
   Tipografía
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--green-900);
}

h2 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }

/* Palabra acentuada: serif itálica en minúscula — el gesto editorial */
.accent-word,
.accent-word-light {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 1.12em;
  color: var(--plum-2);
}
.accent-word-light { color: var(--sage); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.eyebrow.light { color: var(--sage); }

.eyebrow-rule {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-lead {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Botones
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s, color 0.35s;
  cursor: pointer;
}

.btn-primary {
  background: var(--plum);
  color: var(--cream-text);
  box-shadow: 0 10px 30px -12px rgba(92, 41, 71, 0.55);
}
.btn-primary:hover {
  background: var(--plum-2);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -14px rgba(92, 41, 71, 0.65);
}

.btn-ghost {
  color: var(--cream-text);
  border: 1px solid rgba(245, 239, 227, 0.55);
  background: rgba(245, 239, 227, 0.06);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(245, 239, 227, 0.16);
  transform: translateY(-3px);
}

.btn-block { display: block; text-align: center; }

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--plum-2);
  outline-offset: 3px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 1.1rem 0;
}

.site-header.scrolled {
  background: rgba(247, 241, 230, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(14, 58, 44, 0.08), 0 12px 32px -24px rgba(8, 34, 25, 0.35);
  padding: 0.55rem 0;
}

.header-inner {
  width: min(1240px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo { width: 46px; height: 46px; border-radius: 50%; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--cream-text);
  line-height: 1;
  display: flex;
  flex-direction: column;
  transition: color 0.4s;
}
.brand-name em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--sage);
}
.scrolled .brand-name { color: var(--green-900); }
.scrolled .brand-name em { color: var(--plum-2); }

.site-nav {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-text);
  transition: color 0.3s;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.scrolled .site-nav a { color: var(--ink); }

.btn-header {
  background: var(--cream-text);
  color: var(--green-900);
  padding: 0.65rem 1.6rem;
  font-size: 0.82rem;
}
.btn-header:hover { transform: translateY(-2px); background: var(--white); }
.scrolled .btn-header {
  background: var(--green-900);
  color: var(--cream-text);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream-text);
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 30%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 34, 25, 0.88) 0%, rgba(8, 34, 25, 0.62) 34%, rgba(8, 34, 25, 0.12) 62%, rgba(8, 34, 25, 0) 78%),
    linear-gradient(to top, rgba(8, 34, 25, 0.55) 0%, rgba(8, 34, 25, 0) 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, 94vw);
  margin-inline: auto;
  padding: 8rem 0 5rem;
  max-width: none;
}

.hero-content > * { max-width: 620px; }

.hero .eyebrow { color: var(--sage); }

.hero-title {
  font-size: clamp(3rem, 7.6vw, 5.8rem);
  color: var(--cream-text);
  display: flex;
  flex-direction: column;
  margin: 0.4rem 0 1.6rem;
}

.hero-title .accent-word { color: #E9C8DD; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(245, 239, 227, 0.92);
  margin-bottom: 2.2rem;
}

/* Jost solo carga pesos 300-600; sin esto, bolder desde 300 resuelve a 400 (casi invisible) */
.hero-sub strong { font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-note {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.65);
}

.hero-blog { margin-top: 1.6rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(245, 239, 227, 0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: rgba(245, 239, 227, 0.8);
  animation: scrollHint 2s infinite var(--ease);
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Reveal de carga del hero */
.hero-reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn 1s var(--ease) forwards;
}
.r1 { animation-delay: 0.15s; }
.r2 { animation-delay: 0.3s; }
.r3 { animation-delay: 0.45s; }
.r4 { animation-delay: 0.62s; }
.r5 { animation-delay: 0.78s; }
.r6 { animation-delay: 1s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--plum);
  color: var(--cream-text);
  overflow: hidden;
  transform: rotate(-1.1deg) scale(1.02);
  margin: -1.2rem 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 16px 40px -20px rgba(92, 41, 71, 0.6);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  padding: 0.95rem 0;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  color: #E9C8DD;
  font-size: 0.8rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Sección El Maqui
   ========================================================================== */

.maqui {
  position: relative;
  background:
    radial-gradient(900px 500px at 88% 8%, rgba(169, 191, 168, 0.25), transparent 65%),
    var(--paper);
  padding-top: clamp(6rem, 11vw, 10rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(14, 58, 44, 0.14);
  border-block: 1px solid rgba(14, 58, 44, 0.14);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.stat {
  background: var(--paper);
  padding: 2.2rem 1.6rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--green-900);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.6rem;
}

.maqui-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.compare {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}

.compare-title {
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
.compare-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: lowercase;
  color: var(--plum-2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid rgba(14, 58, 44, 0.1);
}

.compare-table thead th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.compare-table tbody th {
  font-weight: 400;
  color: var(--ink);
}

.compare-table td { color: var(--ink-soft); }

.compare-table .col-hoja {
  background: rgba(28, 91, 69, 0.08);
  color: var(--green-700);
  font-weight: 500;
}
.compare-table thead .col-hoja { color: var(--green-700); }

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-source {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}

.compounds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.compound {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.compound:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.compound:nth-child(2),
.compound:nth-child(3) { background: var(--white); }

.compound-index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: rgba(124, 58, 98, 0.28);
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}

.compound h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  color: var(--green-900);
  margin-bottom: 0.45rem;
}

.compound p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Productos
   ========================================================================== */

.productos {
  background: linear-gradient(to bottom, var(--paper), var(--white) 40%);
}

.productos .section-head { margin-inline: auto; text-align: center; }
.productos .eyebrow { justify-content: center; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  max-width: 900px;
  margin-inline: auto;
}

.product-card {
  position: relative;
  background: var(--paper);
  border-radius: calc(var(--radius) + 8px);
  padding: 2.4rem 2rem 2.2rem;
  text-align: center;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  border: 1px solid rgba(14, 58, 44, 0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -30px rgba(8, 34, 25, 0.4);
}

.product-card.featured {
  background:
    radial-gradient(420px 300px at 50% 0%, rgba(124, 58, 98, 0.14), transparent 70%),
    var(--paper);
  border-color: rgba(92, 41, 71, 0.25);
}

.product-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plum);
  color: var(--cream-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(92, 41, 71, 0.6);
}

.product-media {
  position: relative;
  padding: 1rem 0 1.4rem;
}
.product-media::before {
  content: "";
  position: absolute;
  inset: auto 15% 0.6rem;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(8, 34, 25, 0.28), transparent);
  filter: blur(2px);
}
.product-media img {
  height: clamp(240px, 30vw, 330px);
  width: auto;
  margin-inline: auto;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-media img {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
}

.product-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--plum-2);
}

.product-info h3 {
  font-size: 1.25rem;
  margin: 0.35rem 0 0.2rem;
}

.product-days {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--green-900);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.product-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.product-price .price-normal {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-right: 0.3rem;
}

/* ==========================================================================
   Origen
   ========================================================================== */

.origen {
  background:
    radial-gradient(1000px 600px at 12% 20%, rgba(28, 91, 69, 0.5), transparent 60%),
    var(--green-950);
  color: var(--cream-text);
  position: relative;
  overflow: hidden;
}

/* Hojas decorativas sutiles */
.origen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M110 30c30 25 42 62 30 95-25-8-48-32-52-62-2-12 6-24 22-33z' fill='none' stroke='%23F5EFE3' stroke-width='2'/%3E%3Cpath d='M110 30c-2 40 5 70 30 95' fill='none' stroke='%23F5EFE3' stroke-width='1.4'/%3E%3C/svg%3E");
}

.origen h2 { color: var(--cream-text); }

.origen-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.origen-text p {
  color: rgba(245, 239, 227, 0.85);
  margin-top: 1.2rem;
  max-width: 540px;
}

.origen-list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.origen-list li {
  padding-left: 1.6rem;
  position: relative;
  color: rgba(245, 239, 227, 0.85);
  font-size: 0.98rem;
}
.origen-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--sage);
  font-size: 0.75rem;
}
.origen-list strong {
  color: var(--cream-text);
  font-weight: 500;
}

.origen-collabs {
  margin-top: 2.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.55);
}

.origen-quote {
  border-left: 2px solid var(--sage);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.origen-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.35;
  color: var(--cream-text);
}

.origen-quote figcaption {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ==========================================================================
   Ritual
   ========================================================================== */

.ritual { background: var(--paper); }

.ritual-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  counter-reset: step;
}

.ritual-steps li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(14, 58, 44, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.ritual-steps li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.ritual-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.8rem;
  color: var(--plum-2);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.ritual-steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.ritual-steps p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.ritual-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--green-950);
  color: rgba(245, 239, 227, 0.75);
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  justify-items: center;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sage);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}

.footer-nav a {
  color: rgba(245, 239, 227, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--cream-text); }

.footer-disclaimer {
  max-width: 640px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(245, 239, 227, 0.5);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 239, 227, 0.45);
}

/* ==========================================================================
   Reveals por scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Escalonado natural dentro de grillas */
.compounds .reveal:nth-child(2) { transition-delay: 0.1s; }
.compounds .reveal:nth-child(3) { transition-delay: 0.2s; }
.compounds .reveal:nth-child(4) { transition-delay: 0.3s; }
.ritual-steps .reveal:nth-child(2) { transition-delay: 0.12s; }
.ritual-steps .reveal:nth-child(3) { transition-delay: 0.24s; }
.product-grid .reveal:nth-child(2) { transition-delay: 0.12s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .maqui-grid { grid-template-columns: 1fr; }
  .origen-grid { grid-template-columns: 1fr; }
  .origen-quote { margin-top: 1rem; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }

  /* Hero móvil: imagen completa arriba (encuadre amplio con mujer y frasco),
     texto debajo sobre verde oscuro */
  .hero {
    display: block;
    min-height: 0;
    background: var(--green-950);
  }
  .hero-media,
  .hero-media img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }
  .hero-media { display: block; }
  .hero-media img {
    aspect-ratio: 845 / 793;
    object-fit: cover;
    object-position: center;
  }
  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 34, 25, 0.55), transparent 24%, transparent 62%, #082219 100%);
  }
  .hero-veil { display: none; }
  .hero-scroll { display: none; }
  .hero-content { padding: 0.5rem 0 3.5rem; }

  .stats { grid-template-columns: 1fr; }
  .compounds { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; max-width: 440px; }
  .ritual-steps { grid-template-columns: 1fr; }
  .marquee { transform: rotate(0deg); margin: 0; }
}

/* ==========================================================================
   Blog y artículos
   ========================================================================== */

.article-hero {
  background:
    radial-gradient(900px 520px at 82% 0%, rgba(28, 91, 69, 0.5), transparent 60%),
    var(--green-950);
  color: var(--cream-text);
  padding: clamp(7.5rem, 13vw, 10.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.article-hero .eyebrow { color: var(--sage); }

.article-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  color: var(--cream-text);
  max-width: 800px;
}

.article-hero .accent-word { color: #E9C8DD; }

.article-meta {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.6);
}

.article-body {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.article-body > * + * { margin-top: 1.35rem; }

.article-body h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  margin-top: 2.6rem;
}

.article-body h3 { font-size: 1.1rem; margin-top: 2rem; }

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.article-body strong { font-weight: 600; color: var(--ink); }

.article-body a {
  color: var(--plum-2);
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--plum); }

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
  display: grid;
  gap: 0.5rem;
}

.article-body .compare { margin-top: 2rem; }

.article-cta {
  margin-top: 3rem;
  background: var(--white);
  border: 1px solid rgba(92, 41, 71, 0.22);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.article-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 1.3rem;
}

.article-refs {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(14, 58, 44, 0.14);
}

.article-refs h2 { font-size: 1.05rem; margin-top: 0; }

.article-refs ol { margin-top: 0.9rem; }

.article-refs li,
.article-refs p { font-size: 0.85rem; }

.article-disclaimer {
  margin-top: 2.2rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}

.article-disclaimer p { font-size: 0.85rem; }

/* Índice del blog */
.blog-list {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  display: grid;
  gap: 1.4rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(14, 58, 44, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.blog-card-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--plum-2);
}

.blog-card h2 {
  font-size: 1.35rem;
  margin: 0.35rem 0 0.5rem;
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.blog-card-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-2);
}

/* ==========================================================================
   Accesibilidad: movimiento reducido
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-reveal,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .marquee-track { animation: none; }
  .hero-scroll span { animation: none; }
}
