/* ===========================================================
   XÓCHITL · Cosmética Ancestral Mexicana
   Design system
   =========================================================== */
:root {
  --terracotta: #9a4226;
  --terracotta-deep: #6f2d1c;
  --clay: #c97b54;
  --sand: #f3e7d6;
  --cream: #faf3e8;
  --ink: #2c211c;
  --ink-soft: #5c4d44;
  --gold: #b8893f;
  --gold-soft: #d9b676;
  --green: #5a6b3b;
  --line: rgba(112, 45, 28, 0.14);
  --shadow-sm: 0 6px 20px rgba(80, 40, 20, 0.08);
  --shadow-md: 0 18px 50px rgba(80, 40, 20, 0.16);
  --radius: 16px;
  --radius-lg: 26px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: 0.2px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--terracotta);
  margin: 0 0 14px;
}
.eyebrow--light { color: var(--gold-soft); }

em { font-style: italic; color: var(--terracotta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn--solid { background: var(--terracotta); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: currentColor; color: var(--cream); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--terracotta-deep);
  color: var(--sand);
  overflow: hidden;
  font-size: 12.5px;
  letter-spacing: 1px;
}
.announce__track {
  display: flex;
  gap: 26px;
  align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 243, 232, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; position: relative; }
.brand__glyph { display: none; }
.brand__name { font-family: var(--serif); font-size: 27px; font-weight: 600; letter-spacing: 5px; color: var(--terracotta); }
.brand__tag { font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--terracotta);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; position: relative;
  transition: background .2s ease;
}
.icon-btn:hover { background: rgba(154, 66, 38, 0.08); }
.cart-count {
  position: absolute; top: 4px; right: 2px;
  background: var(--terracotta); color: #fff;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(70,30,18,.82) 0%, rgba(120,55,35,.55) 42%, rgba(120,55,35,.05) 100%);
}
.hero__content { position: relative; max-width: 640px; padding-top: 60px; padding-bottom: 60px; color: var(--cream); }
.hero .eyebrow { color: var(--gold-soft); }
.hero__title { font-size: clamp(46px, 7vw, 84px); font-weight: 500; }
.hero__title em { color: var(--gold-soft); }
.hero__sub { font-size: clamp(16px, 2vw, 19px); max-width: 480px; margin: 22px 0 32px; color: rgba(250,243,232,.92); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 38px; margin-top: 52px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--serif); font-size: 32px; color: var(--gold-soft); }
.hero__stats span { font-size: 12.5px; letter-spacing: .5px; color: rgba(250,243,232,.85); }

/* ---------- Values ---------- */
.values { background: var(--sand); border-bottom: 1px solid var(--line); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 56px 24px; }
.value { text-align: center; }
.value__icon { font-size: 30px; display: block; margin-bottom: 12px; }
.value h3 { font-size: 21px; margin-bottom: 6px; color: var(--terracotta-deep); }
.value p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(34px, 4.4vw, 52px); color: var(--terracotta-deep); }
.section__lead { font-size: 17px; color: var(--ink-soft); margin: 16px 0 0; }

/* ---------- Products ---------- */
.products { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250,243,232,.92); color: var(--terracotta-deep);
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  padding: 6px 12px; border-radius: 100px;
}
.product-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card__name { font-size: 24px; color: var(--ink); }
.product-card__tagline { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 6px 0 12px; }
.product-card__desc { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.product-card__price { font-family: var(--serif); font-size: 26px; color: var(--terracotta-deep); font-weight: 600; }
.product-card__price s { font-size: 15px; color: var(--ink-soft); font-weight: 400; margin-right: 6px; }
.product-card__actions { display: flex; gap: 10px; margin-top: 16px; }
.add-btn, .buy-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 16px; border-radius: 100px; cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .2s ease, border-color .25s ease;
}
.add-btn {
  background: transparent; color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.add-btn:hover { background: rgba(154, 66, 38, 0.08); transform: translateY(-1px); }
.buy-btn {
  background: var(--terracotta); color: var(--cream); border: 1.5px solid var(--terracotta);
}
.buy-btn:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); transform: translateY(-1px); }

/* Botón oscuro para fondos claros */
.btn--ink { border-color: var(--terracotta); color: var(--terracotta); }
.btn--ink:hover { background: rgba(154, 66, 38, 0.08); transform: translateY(-2px); }
.set__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Order page ---------- */
.order__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.order-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.order-form__title { font-size: 24px; color: var(--terracotta-deep); margin: 0 0 18px; }
.order-form__title:not(:first-child) { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.order-form label { display: block; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 6px; }
.order-form .field { margin-bottom: 18px; }
.order-form input, .order-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream); resize: vertical;
}
.order-form input:focus, .order-form textarea:focus { outline: 2px solid var(--gold-soft); border-color: transparent; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.order-form .form-msg { font-size: 13.5px; color: var(--green); margin: 14px 0 0; min-height: 18px; line-height: 1.5; }

.pay-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pay-option {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease;
}
.pay-option:hover { border-color: var(--clay); }
.pay-option input { width: auto; accent-color: var(--terracotta); }
.pay-option span { font-size: 14px; color: var(--ink-soft); }
.pay-option strong { color: var(--ink); font-weight: 500; margin-right: 6px; }
.pay-option:has(input:checked) { border-color: var(--terracotta); background: rgba(154, 66, 38, 0.05); }

.order-summary {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); position: sticky; top: 96px;
}
.order-summary__title { font-size: 22px; color: var(--terracotta-deep); margin: 0 0 20px; }
.order-summary__empty { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; }
.order-summary__note { font-size: 12.5px; color: var(--ink-soft); margin: 14px 0 0; text-align: center; }
.order-item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.order-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 14px; }
.order-item__name { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.order-item__tagline { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin: 2px 0 4px; }
.order-item__price { font-size: 14px; color: var(--ink-soft); }
.order-qty { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); }
.order-qty__control { display: flex; align-items: center; gap: 14px; }
.order-qty__control button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 16px; line-height: 1; color: var(--ink); transition: background .2s ease; }
.order-qty__control button:hover { background: var(--cream); }
.order-qty__control span { min-width: 20px; text-align: center; font-weight: 500; }
.order-totals { padding: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.order-totals__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); }
.order-totals__row--total { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 16px; color: var(--ink); }
.order-totals__row--total strong { font-family: var(--serif); font-size: 26px; color: var(--terracotta-deep); }

/* ---------- Promo ---------- */
.promo { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.promo__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.promo__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(60,25,15,.78) 0%, rgba(90,40,25,.4) 55%, rgba(90,40,25,0) 100%); }
.promo__content { position: relative; color: var(--cream); max-width: 560px; padding: 70px 24px; }
.promo__content h2 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; }
.promo__content p { font-size: 17px; margin: 0 0 28px; color: rgba(250,243,232,.92); }

/* ---------- Ritual ---------- */
.ritual { background: var(--sand); }
.ritual__inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 64px; align-items: center; }
.ritual__text h2 { font-size: clamp(32px, 4vw, 48px); color: var(--terracotta-deep); margin-bottom: 30px; }
.ritual__steps { display: flex; flex-direction: column; gap: 26px; }
.ritual__steps li { display: flex; gap: 20px; align-items: flex-start; }
.ritual__num { font-family: var(--serif); font-size: 30px; color: var(--gold); font-weight: 600; min-width: 48px; }
.ritual__steps h3 { font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.ritual__steps p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.ritual__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.ritual__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---------- Historias ---------- */
.stories { background: var(--cream); }
.stories__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.story {
  display: grid; grid-template-columns: 42% 1fr;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.story__img { overflow: hidden; }
.story__img img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.story__body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.story__rating { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.story__quote { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--ink); margin: 12px 0 18px; line-height: 1.4; }
.story__author { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--terracotta); margin: 0; }

/* ---------- Origen ---------- */
.origin { background: var(--sand); }
.origin__inner { display: grid; grid-template-columns: 0.8fr 1fr; gap: 64px; align-items: center; }
.origin__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.origin__media img { width: 100%; aspect-ratio: 4/4; object-fit: cover; }
.origin__text h2 { font-size: clamp(32px, 4vw, 48px); color: var(--terracotta-deep); margin-bottom: 18px; }
.origin__text p { color: var(--ink-soft); margin: 0 0 16px; font-size: 15.5px; }
.origin__list { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.origin__list li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink); }
.origin__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--terracotta-deep); color: var(--cream); text-align: center; }
.newsletter__inner { max-width: 640px; margin: 0 auto; }
.newsletter h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.newsletter p { color: rgba(250,243,232,.88); margin: 0 0 26px; }
.newsletter strong { color: var(--gold-soft); }
.newsletter__form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; padding: 15px 20px; border-radius: 100px; border: none;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream);
}
.newsletter__form input:focus { outline: 2px solid var(--gold-soft); }
.newsletter__note { font-size: 13px; margin-top: 16px; min-height: 18px; color: var(--gold-soft); }

/* ---------- Footer ---------- */
.footer { background: #1f1611; color: var(--sand); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand__name { color: var(--cream); font-size: 26px; letter-spacing: 5px; }
.footer__brand p { font-size: 14px; color: rgba(243,231,214,.65); max-width: 280px; margin: 14px 0 18px; }
.footer__social { display: flex; gap: 18px; }
.footer__social a { font-size: 13px; letter-spacing: 1px; color: var(--gold-soft); }
.footer__social a:hover { color: var(--cream); }
.footer__col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; font-weight: 500; }
.footer__col a { display: block; font-size: 14px; color: rgba(243,231,214,.65); margin-bottom: 10px; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(243,231,214,.12);
  font-size: 12.5px; color: rgba(243,231,214,.5);
}
.footer__bottom p { margin: 0; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(31,22,17,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 90;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw;
  background: var(--cream); z-index: 100; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { font-size: 24px; color: var(--terracotta-deep); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 60px 0; font-size: 15px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.cart-item__name { font-size: 14px; font-weight: 500; color: var(--ink); }
.cart-item__price { font-size: 13px; color: var(--ink-soft); }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item__qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 14px; line-height: 1; color: var(--ink); }
.cart-item__remove { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 18px; }
.cart-item__remove:hover { color: var(--terracotta); }
.cart-drawer__foot { padding: 20px 24px 26px; border-top: 1px solid var(--line); }
.cart-drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-drawer__total strong { font-family: var(--serif); font-size: 26px; color: var(--terracotta-deep); }
.cart-drawer__note { text-align: center; font-size: 12px; color: var(--ink-soft); margin: 12px 0 0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--cream); padding: 14px 26px; border-radius: 100px;
  font-size: 14px; letter-spacing: .3px; box-shadow: var(--shadow-md); z-index: 120;
  transition: transform .35s cubic-bezier(.4,0,.2,1); max-width: 90vw;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Active nav ---------- */
.nav a.is-active { color: var(--terracotta); }
.nav a.is-active::after { width: 100%; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 0;
  min-height: 46vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(70,30,18,.8) 0%, rgba(110,52,32,.55) 60%, rgba(110,52,32,.25) 100%); }
.page-hero__content { position: relative; color: var(--cream); max-width: 720px; padding: 80px 24px; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 66px); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero p { font-size: 17px; color: rgba(250,243,232,.92); margin: 18px 0 0; max-width: 560px; }
.breadcrumb { font-size: 12.5px; letter-spacing: 1px; color: rgba(250,243,232,.75); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: var(--cream); }

/* ---------- Prose (text pages) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--terracotta-deep); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 21px; color: var(--ink); margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); margin: 0 0 16px; font-size: 15.5px; }
.prose ul { margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 15px; }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.prose .updated { font-size: 13px; color: var(--ink-soft); font-style: italic; margin-bottom: 30px; }

/* ---------- Info cards row ---------- */
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 8px auto 0; max-width: 980px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.info-card span { font-size: 26px; display: block; margin-bottom: 10px; }
.info-card h3 { font-size: 20px; color: var(--terracotta-deep); margin-bottom: 6px; }
.info-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 21px; color: var(--ink);
  padding: 22px 40px 22px 0; position: relative; display: flex; justify-content: space-between; gap: 16px;
}
.faq__q::after { content: "+"; position: absolute; right: 0; color: var(--terracotta); font-family: var(--sans); font-size: 26px; transition: transform .3s ease; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a p { color: var(--ink-soft); font-size: 15px; margin: 0 0 22px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info h3 { font-size: 22px; color: var(--terracotta-deep); margin: 0 0 18px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.contact__list strong { display: block; color: var(--ink); font-weight: 500; }
.contact__list span:first-child { font-size: 20px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-form label { display: block; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 6px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold-soft); border-color: transparent; }
.contact-form .form-msg { font-size: 13.5px; color: var(--green); margin: 14px 0 0; min-height: 18px; }

/* ---------- Set page ---------- */
.set { background: var(--sand); }
.set__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.set__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 0; }
.set__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.set__price { display: flex; align-items: baseline; gap: 14px; margin: 8px 0 6px; }
.set__price .now { font-family: var(--serif); font-size: 46px; font-weight: 600; color: var(--terracotta-deep); }
.set__price .was { font-size: 20px; color: var(--ink-soft); text-decoration: line-through; }
.set__price .save { background: var(--green); color: #fff; font-size: 12px; letter-spacing: .5px; padding: 5px 12px; border-radius: 100px; align-self: center; }
.set__includes { margin: 22px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.set__includes li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink); }
.set__includes li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Ingredients strip ---------- */
.ingredients { background: var(--cream); }
.ingredients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ingredient { background: var(--sand); border-radius: var(--radius); padding: 26px; }
.ingredient h3 { font-size: 22px; color: var(--terracotta-deep); margin-bottom: 6px; }
.ingredient p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual__inner, .origin__inner { grid-template-columns: 1fr; gap: 40px; }
  .ritual__media, .origin__media { max-width: 520px; }
  .stories__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid, .set__inner { grid-template-columns: 1fr; gap: 36px; }
  .info-row, .ingredients__grid { grid-template-columns: 1fr 1fr; }
  .order__grid { grid-template-columns: 1fr; gap: 32px; }
  .order-summary { position: static; order: -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    padding: 8px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s ease; z-index: 55;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .brand { align-items: flex-start; }
  .header__inner { justify-content: space-between; }
  .section { padding: 70px 0; }
  .hero { min-height: 92vh; }
  .hero__overlay { background: linear-gradient(180deg, rgba(70,30,18,.55) 0%, rgba(90,40,25,.78) 100%); }
  .hero__stats { gap: 26px; }
  .product-grid { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; }
  .story__img img { min-height: 220px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .info-row, .ingredients__grid, .set__includes { grid-template-columns: 1fr; }
  .page-hero { min-height: 38vh; }
  .product-card__actions { flex-direction: column; }
  .field-row, .field-row--3 { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 420px) {
  .values__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
}
