:root {
  --ink: #24283a;
  --night: #1b2437;
  --turquoise: #0f8f97;
  --turquoise-mineral: #2cabb2;
  --burgundy: #7a3e56;
  --plum: #71506a;
  --violet: #6a5a8f;
  --mist: #5e7083;
  --warm: #f5f2ee;
  --paper: #fcfbf9;
  --white: #ffffff;
  --line: rgba(36, 40, 58, 0.17);
  --muted: rgba(36, 40, 58, 0.68);
  --display: "Circular", "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --body: "Inter Variable", "Inter", "Aptos", "Segoe UI", sans-serif;
  --content: min(1380px, calc(100vw - 64px));
  --header-height: 82px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 44px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 32px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.has-drawer { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 0.99;
}

h1 { font-size: clamp(3.1rem, 6.1vw, 6.9rem); font-weight: 500; }
h2 { font-size: clamp(2.35rem, 4.6vw, 5rem); font-weight: 500; }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.45rem); font-weight: 500; }

:focus-visible { outline: 2px solid var(--turquoise); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only, .skip-link:not(:focus) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.announcement {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.67rem;
}
.announcement p { margin: 0; }
.announcement span { margin: 0 0.8em; color: var(--turquoise-mineral); }

.site-header {
  min-height: var(--header-height);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 249, 0.91);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled { min-height: 66px; border-color: var(--line); }
.brand { grid-column: 2; display: inline-flex; align-items: center; }
.brand img { width: 138px; height: auto; }

.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: clamp(18px, 2.1vw, 34px);
  align-items: center;
  font-size: 0.85rem;
}
.desktop-nav a, .footer__links a, .menu-drawer a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}
.desktop-nav a:hover::after { right: 0; }

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.icon-button, .routine-button {
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-button svg, .routine-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.routine-button { gap: 9px; padding-right: 0; font-size: 0.85rem; }
.routine-count {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--turquoise);
  color: white;
  font-size: 0.67rem;
  line-height: 1;
}
.mobile-only { display: none; }

.eyebrow {
  margin-bottom: 20px;
  color: var(--turquoise);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  width: var(--content);
  min-height: min(790px, calc(100vh - 114px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding: 42px 0 64px;
}
.hero__content { max-width: 670px; padding-left: clamp(0px, 2vw, 34px); }
.hero h1 { margin-bottom: 30px; }
.hero__lead { max-width: 580px; margin-bottom: 38px; color: var(--muted); font-size: clamp(1.05rem, 1.35vw, 1.28rem); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--ink); color: var(--white); }
.button--primary:hover { background: var(--turquoise); }
.button--outline { background: transparent; border-color: var(--ink); }
.button--outline:hover { background: var(--ink); color: white; }
.button--full { width: 100%; }
.text-link { display: inline-block; padding: 5px 0; border-bottom: 1px solid currentColor; font-size: 0.9rem; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero__media {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  background: var(--warm);
}
.hero__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 34%;
  aspect-ratio: 1;
  left: -9%;
  bottom: -15%;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.08), 0 0 0 84px rgba(255,255,255,.06);
}
.hero__media > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 53% 50%; }
.hero__note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 17px 21px;
  border-radius: 16px;
  background: rgba(245,242,238,.9);
  backdrop-filter: blur(10px);
  color: var(--ink);
}
.hero__note span { font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; }
.hero__note p { margin: 0; font-size: 0.77rem; line-height: 1.35; }

.values-strip {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-strip > div { display: flex; align-items: center; gap: 18px; padding: 22px clamp(12px, 2vw, 32px); }
.values-strip > div + div { border-left: 1px solid var(--line); }
.values-strip span { color: var(--turquoise); font-size: 0.67rem; }
.values-strip p { margin: 0; font-size: 0.82rem; }

.section { width: var(--content); margin: 0 auto; padding: clamp(92px, 11vw, 160px) 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 { max-width: 850px; margin: 0; }
.section-heading > p { max-width: 460px; margin: 0; color: var(--muted); }
.section-heading--center { display: block; max-width: 860px; margin: 0 auto 58px; text-align: center; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { min-width: 0; --accent: var(--turquoise); }
.product-card--micelar { --accent: #b8899c; }
.product-card--serum { --accent: var(--turquoise); }
.product-card--dia { --accent: #8da33f; }
.product-card--noche { --accent: var(--violet); }
.product-card__image {
  height: clamp(380px, 38vw, 560px);
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--warm);
}
.product-card__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 320ms ease, transform 600ms cubic-bezier(.2,.7,.2,1); }
.product-card__pack { opacity: 1; }
.product-card__scene { opacity: 0; transform: scale(1.03); }
.product-card:hover .product-card__pack { opacity: 0; }
.product-card:hover .product-card__scene { opacity: 1; transform: scale(1); }
.product-card__step {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(252,251,249,.88);
  backdrop-filter: blur(6px);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card__body { padding: 22px 4px 0; }
.product-card__verb { margin-bottom: 10px; color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-card h3 { min-height: 2em; margin-bottom: 14px; font-size: clamp(1.45rem, 1.8vw, 2rem); }
.product-card h3 a:hover { color: var(--accent); }
.product-card__claim { min-height: 4.6em; margin-bottom: 22px; color: var(--muted); font-size: .88rem; }
.product-card__footer { display: flex; justify-content: space-between; gap: 12px; align-items: flex-end; padding-top: 16px; border-top: 1px solid var(--line); font-size: .73rem; }
.add-link { border: 0; background: transparent; padding: 0; cursor: pointer; text-align: right; font-size: .72rem; font-weight: 600; }
.add-link span { display: inline-grid; width: 21px; height: 21px; margin-left: 4px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: background 180ms ease, color 180ms ease; }
.add-link:hover span { background: var(--accent); color: white; }

.manifesto {
  min-height: 700px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.manifesto::before, .manifesto::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(44,171,178,.22);
  border-radius: 50%;
}
.manifesto::before { width: 470px; height: 470px; left: -230px; top: -140px; }
.manifesto::after { width: 650px; height: 650px; right: -340px; bottom: -390px; }
.manifesto__mark { display: grid; place-items: center; background: var(--turquoise); }
.manifesto__mark img { width: 48%; filter: brightness(0) invert(1); opacity: .93; }
.manifesto__content { max-width: 900px; align-self: center; padding: clamp(70px, 9vw, 145px); position: relative; z-index: 1; }
.manifesto__content .eyebrow { color: #8cdae0; }
.manifesto h2 { margin-bottom: 34px; }
.manifesto__content > p:last-child { max-width: 640px; margin: 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }

.ritual-builder { padding-bottom: clamp(100px, 11vw, 170px); }
.ritual-tabs { max-width: 1180px; margin: 0 auto; }
.ritual-tabs__controls { width: max-content; margin: 0 auto 34px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; }
.ritual-tabs__controls button { min-width: 130px; padding: 10px 24px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; font-size: .78rem; }
.ritual-tabs__controls button.is-active { background: var(--ink); color: white; }
.ritual-panel { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 670px; overflow: hidden; border-radius: var(--radius-lg); background: var(--warm); }
.ritual-panel[hidden] { display: none; }
.ritual-panel__image { min-height: 670px; }
.ritual-panel__image img { width: 100%; height: 100%; object-fit: cover; }
.ritual-panel__content { align-self: center; padding: clamp(45px, 6vw, 90px); }
.ritual-panel__content h3 { margin-bottom: 38px; font-size: clamp(2.2rem, 3.8vw, 4rem); }
.step-list { list-style: none; margin: 0 0 38px; padding: 0; }
.step-list li { display: flex; gap: 20px; padding: 17px 0; border-top: 1px solid var(--line); }
.step-list li:last-child { border-bottom: 1px solid var(--line); }
.step-list span { color: var(--turquoise); font-size: .68rem; }
.step-list strong { font-family: var(--display); font-size: 1rem; }
.step-list p { margin: 2px 0 0; color: var(--muted); font-size: .78rem; }

.actives { padding-top: 0; }
.active-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.active-card {
  min-height: 310px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--warm);
  transition: transform 240ms ease, background 240ms ease;
}
.active-card:hover { transform: translateY(-4px); background: white; }
.active-card--wide { grid-row: span 2; min-height: 636px; background: var(--turquoise); color: white; }
.active-card--wide:hover { background: #117e85; }
.active-card--dark { background: var(--night); color: white; }
.active-card--dark:hover { background: var(--ink); }
.active-card__number { align-self: flex-end; margin: 0; font-size: .7rem; opacity: .7; }
.active-card__source { margin-bottom: 10px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.active-card h3 { max-width: 590px; margin-bottom: 20px; font-size: clamp(2rem, 3.6vw, 4.2rem); }
.active-card > div > p:last-child { max-width: 530px; margin: 0; opacity: .72; }

.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--warm); }
.story__image { min-height: 760px; overflow: hidden; }
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__content { max-width: 700px; align-self: center; padding: clamp(60px, 8vw, 130px); }
.story__content h2 { margin-bottom: 34px; }
.story__content > p:not(.eyebrow) { color: var(--muted); }
.story__content .text-link { margin-top: 22px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 150px); }
.faq__intro h2 { font-size: clamp(2.35rem, 4vw, 4.5rem); }
.accordion { border-top: 1px solid var(--line); }
.accordion details, .product-accordions details { border-bottom: 1px solid var(--line); }
.accordion summary, .product-accordions summary { list-style: none; display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 26px 0; cursor: pointer; font-family: var(--display); font-size: 1.12rem; }
.accordion summary::-webkit-details-marker, .product-accordions summary::-webkit-details-marker { display: none; }
.accordion summary span, .product-accordions summary span { font-family: var(--body); font-size: 1.25rem; font-weight: 300; transition: transform 180ms ease; }
.accordion details[open] summary span, .product-accordions details[open] summary span { transform: rotate(45deg); }
.accordion details p, .product-accordions details p { max-width: 720px; margin: -3px 0 28px; color: var(--muted); }

.newsletter { min-height: 600px; display: grid; place-items: center; padding: 90px 32px; position: relative; overflow: hidden; background: var(--turquoise); color: white; text-align: center; }
.newsletter::before, .newsletter::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.newsletter::before { width: 520px; height: 520px; left: -270px; top: -220px; box-shadow: 0 0 0 90px rgba(255,255,255,.03); }
.newsletter::after { width: 380px; height: 380px; right: -170px; bottom: -210px; }
.newsletter__content { width: min(780px, 100%); position: relative; z-index: 1; }
.newsletter .eyebrow { color: rgba(255,255,255,.7); }
.newsletter h2 { margin-bottom: 40px; }
.newsletter__form { display: grid; grid-template-columns: 1fr auto; gap: 0; max-width: 620px; margin: 0 auto; border-bottom: 1px solid white; }
.newsletter__form input { min-width: 0; padding: 15px 0; border: 0; outline: 0; background: transparent; color: white; }
.newsletter__form input::placeholder { color: rgba(255,255,255,.68); }
.newsletter__form button { padding: 15px 0 15px 20px; border: 0; background: transparent; color: white; cursor: pointer; font-weight: 600; }
.newsletter__form button span { margin-left: 8px; }
.form-note { margin: 17px 0 0; color: rgba(255,255,255,.64); font-size: .71rem; }

.site-footer { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 60px; padding: 75px max(32px, calc((100vw - 1380px)/2)); background: var(--night); color: white; }
.footer__brand img { width: 170px; }
.footer__brand p { margin: 25px 0 0; color: rgba(255,255,255,.55); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__links p { margin-bottom: 8px; color: rgba(255,255,255,.45); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }
.footer__links a { color: rgba(255,255,255,.78); font-size: .83rem; }
.footer__links a:hover { color: white; }
.footer__bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 30px; padding-top: 38px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: .68rem; }
.footer__bottom p { margin: 0; }

.drawer-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(27,36,55,.48); opacity: 0; transition: opacity 260ms ease; }
.drawer-overlay.is-visible { opacity: 1; }
.drawer {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  width: min(460px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.75,.25,1), visibility 320ms;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__header { min-height: 78px; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.drawer__header p { margin: 0; font-family: var(--display); font-size: 1.25rem; }
.drawer__header span { color: var(--muted); font-size: .7rem; }
.drawer__header .icon-button { font-size: 1.8rem; font-weight: 200; }
.menu-drawer nav { display: flex; flex-direction: column; padding: 20px 24px; }
.menu-drawer nav a { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.6rem; }
.drawer__small { margin: auto 24px 26px; color: var(--muted); font-size: .75rem; }
.routine-drawer__body { flex: 1; overflow-y: auto; padding: 14px 24px; }
.routine-empty { height: 100%; display: grid; place-items: center; text-align: center; }
.routine-empty img { width: 80px; margin: 0 auto 24px; opacity: .22; }
.routine-empty h3 { margin-bottom: 13px; font-size: 1.8rem; }
.routine-empty p { max-width: 290px; margin: 0 auto; color: var(--muted); font-size: .82rem; }
.routine-item { display: grid; grid-template-columns: 86px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.routine-item img { width: 86px; aspect-ratio: .82; object-fit: cover; border-radius: 9px; }
.routine-item__step { margin-bottom: 5px; color: var(--turquoise); font-size: .61rem; text-transform: uppercase; letter-spacing: .12em; }
.routine-item h3 { margin: 0; font-size: 1rem; line-height: 1.1; }
.routine-item__size { margin: 6px 0 0; color: var(--muted); font-size: .67rem; }
.routine-item button { align-self: start; border: 0; background: none; padding: 4px; cursor: pointer; color: var(--muted); font-size: 1rem; }
.routine-drawer__footer { padding: 18px 24px 24px; border-top: 1px solid var(--line); }
.routine-drawer__footer p { margin-bottom: 14px; color: var(--muted); font-size: .7rem; text-align: center; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 24px; padding: 12px 18px; border-radius: 99px; background: var(--ink); color: white; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; font-size: .78rem; transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Product template */
.product-page { min-height: 80vh; }
.breadcrumbs { width: var(--content); margin: 0 auto; padding: 25px 0; display: flex; gap: 9px; color: var(--muted); font-size: .68rem; }
.breadcrumbs a:hover { color: var(--ink); }
.product-detail { width: var(--content); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr); gap: clamp(45px, 7vw, 110px); padding: 10px 0 110px; }
.product-gallery { display: grid; grid-template-columns: 1fr .42fr; gap: 14px; align-items: end; }
.product-gallery__main, .product-gallery__secondary { overflow: hidden; border-radius: var(--radius-md); background: var(--warm); }
.product-gallery__main { height: min(750px, 72vw); }
.product-gallery__secondary { height: 45%; min-height: 340px; }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-info { align-self: center; padding: 30px 0; }
.product-info h1 { margin-bottom: 26px; font-size: clamp(3rem, 5.1vw, 5.8rem); }
.product-info__claim { max-width: 610px; margin-bottom: 16px; color: var(--muted); font-size: 1.08rem; }
.product-info__size { margin-bottom: 30px; font-size: .75rem; }
.product-info__benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.product-info__benefits span, .product-info__actives span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; }
.product-info__actives { margin-bottom: 30px; }
.product-info__actives > p { margin-bottom: 10px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.product-info__actives > div { display: flex; flex-wrap: wrap; gap: 8px; }
.product-info__shopify-note { margin: 10px 0 25px; color: var(--muted); font-size: .65rem; text-align: center; }
.product-accordions { border-top: 1px solid var(--line); }
.product-accordions summary { padding: 20px 0; font-size: 1rem; }
.product-accordions details p { font-size: .82rem; }
.product-proof { min-height: 430px; display: grid; grid-template-columns: .5fr 1.5fr; gap: 80px; align-items: center; padding: 80px max(32px, calc((100vw - 1380px)/2)); background: var(--ink); color: white; }
.product-proof h2 { margin: 0; color: var(--turquoise-mineral); font-size: clamp(2.4rem, 4vw, 4.5rem); }
.product-proof blockquote { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(2.3rem, 4.6vw, 5.3rem); line-height: 1.02; letter-spacing: -.04em; }
.related-products { padding-top: 110px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card__image { display: block; height: 390px; overflow: hidden; border-radius: var(--radius-md); background: var(--warm); }
.related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.related-card:hover img { transform: scale(1.025); }
.related-card__body { padding: 17px 2px 0; }
.related-card__body p { margin-bottom: 7px; color: var(--turquoise); font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; }
.related-card__body h3 { margin: 0; font-size: 1.5rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.7,.2,1); }
.reveal--delay { transition-delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --content: min(100% - 40px, 1040px); }
  .site-header { padding: 0 20px; }
  .desktop-nav { gap: 16px; font-size: .77rem; }
  .hero { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .hero__media, .hero__media > img { min-height: 540px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 16px; }
  .product-card__image { height: min(65vw, 620px); }
  .product-card__claim { min-height: 0; }
  .manifesto { grid-template-columns: .55fr 1.45fr; }
  .active-card--wide { min-height: 560px; }
  .product-detail { grid-template-columns: 1fr 1fr; gap: 38px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery__secondary { display: none; }
}

@media (max-width: 780px) {
  :root { --content: calc(100% - 32px); --header-height: 68px; }
  .announcement { min-height: 28px; font-size: .58rem; letter-spacing: .12em; }
  .announcement span { margin: 0 .35em; }
  .site-header { grid-template-columns: 1fr auto 1fr; min-height: 68px; padding: 0 16px; }
  .site-header.is-scrolled { min-height: 60px; }
  .brand img { width: 112px; }
  .mobile-only { display: inline-flex; }
  .desktop-only, .desktop-nav { display: none !important; }
  .site-header > .mobile-only { grid-column: 1; grid-row: 1; justify-self: start; margin-left: -8px; }
  .header-actions { gap: 0; }
  .routine-button { padding: 8px 0 8px 8px; }

  h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  h2 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 38px; padding: 55px 0 30px; }
  .hero__content { padding: 0; }
  .hero h1 { margin-bottom: 25px; }
  .hero__lead { margin-bottom: 30px; font-size: 1rem; }
  .button-row { gap: 20px; }
  .hero__media { min-height: 470px; border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md); }
  .hero__media > img { min-height: 470px; object-position: 50% 50%; }
  .hero__note { right: 13px; bottom: 13px; padding: 13px 15px; }

  .values-strip { grid-template-columns: 1fr; margin-top: 25px; }
  .values-strip > div { padding: 16px 6px; }
  .values-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 42px; }
  .product-grid { display: flex; gap: 13px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card { min-width: min(84vw, 350px); scroll-snap-align: start; }
  .product-card__image { height: 480px; }
  .product-card h3 { min-height: 0; }
  .product-card__claim { min-height: 3em; }

  .manifesto { min-height: auto; grid-template-columns: 1fr; }
  .manifesto__mark { min-height: 280px; }
  .manifesto__mark img { width: 33%; }
  .manifesto__content { padding: 75px 24px 90px; }
  .manifesto__content > p:last-child { font-size: .95rem; }

  .ritual-panel { grid-template-columns: 1fr; min-height: auto; }
  .ritual-panel__image { min-height: 470px; height: 58vh; }
  .ritual-panel__content { padding: 42px 25px 48px; }
  .ritual-panel__content h3 { margin-bottom: 30px; }
  .ritual-tabs__controls button { min-width: 115px; }
  .active-grid { grid-template-columns: 1fr; }
  .active-card, .active-card--wide { min-height: 390px; grid-row: auto; }
  .active-card h3 { font-size: 2.5rem; }

  .story { grid-template-columns: 1fr; min-height: auto; }
  .story__image { min-height: 520px; }
  .story__content { padding: 72px 24px 86px; }
  .faq { grid-template-columns: 1fr; gap: 30px; }
  .accordion summary { font-size: 1rem; }
  .newsletter { min-height: 520px; padding: 75px 20px; }
  .newsletter__form { grid-template-columns: 1fr; border: 0; }
  .newsletter__form input { border-bottom: 1px solid white; text-align: center; }
  .newsletter__form button { padding: 19px 0 0; }

  .site-footer { grid-template-columns: 1fr; padding: 60px 24px 30px; }
  .footer__links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .footer__bottom { flex-direction: column; gap: 5px; }

  .breadcrumbs { padding-top: 18px; overflow: hidden; white-space: nowrap; }
  .product-detail { grid-template-columns: 1fr; gap: 25px; padding-bottom: 80px; }
  .product-gallery__main { height: min(125vw, 660px); }
  .product-info { padding-top: 15px; }
  .product-info h1 { font-size: clamp(3rem, 14vw, 4.9rem); }
  .product-proof { min-height: 500px; grid-template-columns: 1fr; gap: 50px; padding: 75px 24px; }
  .related-grid { display: flex; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .related-card { min-width: min(80vw, 340px); scroll-snap-align: start; }
  .related-card__image { height: 420px; }
}

@media (max-width: 420px) {
  .hero__media, .hero__media > img { min-height: 410px; }
  .product-card__image { height: 440px; }
  .ritual-panel__image { min-height: 420px; }
  .footer__links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

