:root {
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --blush: #f5e8e9;
  --rose: #a8325c;
  --rose-dark: #7f2144;
  --rose-soft: #dba9b8;
  --mineral: #1f4b43;
  --mineral-2: #53766e;
  --mint: #dce8e1;
  --gold: #bd8e3b;
  --ink: #30282c;
  --muted: #6d6568;
  --line: #dfd8cd;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(62, 42, 48, .07);
  --shadow-lg: 0 24px 70px rgba(62, 42, 48, .12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --sans: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--rose); color: var(--white); }
:focus-visible { outline: 3px solid rgba(168, 50, 92, .35); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section--compact { padding: 72px 0; }
.section--paper { background: var(--paper); }
.section--mineral { background: var(--mineral); color: var(--white); }
.section--rosewash {
  background:
    radial-gradient(circle at 8% 15%, rgba(255,255,255,.86) 0 5%, transparent 5.2%),
    linear-gradient(135deg, #f7e9e7, #f2dedf 65%, #ecd0d7);
}
.page-hero.section--rosewash {
  background:
    radial-gradient(circle at 8% 15%, rgba(255,255,255,.86) 0 5%, transparent 5.2%),
    linear-gradient(135deg, #f7e9e7, #f2dedf 65%, #ecd0d7);
}
.stack > * + * { margin-top: 24px; }
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, .display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .035em;
}
h1 { margin-bottom: 26px; font-size: clamp(40px, 6.2vw, 78px); line-height: 1.28; }
h2 { margin-bottom: 20px; font-size: clamp(31px, 4.2vw, 52px); line-height: 1.4; }
h3 { margin-bottom: 12px; font-size: clamp(20px, 2.1vw, 26px); line-height: 1.55; }
h4 { margin-bottom: 8px; font-size: 17px; }
p { margin-bottom: 18px; color: var(--muted); }
.section--mineral p { color: rgba(255,255,255,.76); }
.lead { max-width: 47em; font-size: clamp(17px, 1.7vw, 20px); line-height: 2; }
.small { font-size: 13px; line-height: 1.75; }
.micro { font-size: 11px; line-height: 1.65; }
.serif { font-family: var(--serif); }
.rose { color: var(--rose); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--mineral .eyebrow { color: #f4c8d5; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head > :last-child { margin-bottom: 8px; }

.utility-bar {
  position: relative;
  z-index: 91;
  padding: 7px 0;
  background: var(--mineral);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .08em;
  text-align: center;
}
.utility-bar a { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(223,216,205,.8);
  background: rgba(251,248,241,.92);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; min-height: 78px; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 13px; }
.brand__mark {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(168,50,92,.32);
  border-radius: 50%;
}
.brand__mark::before,
.brand__mark::after,
.brand__mark i {
  position: absolute;
  content: "";
  border-radius: 50%;
}
.brand__mark::before { inset: 7px; border: 1px solid var(--rose); }
.brand__mark::after { inset: 14px; background: var(--rose); }
.brand__mark i { width: 5px; height: 5px; top: 2px; right: 4px; background: var(--gold); }
.brand__text { display: grid; gap: 1px; }
.brand__text strong { font-family: var(--serif); font-size: 19px; letter-spacing: .08em; }
.brand__text span { color: var(--muted); font-size: 9px; letter-spacing: .2em; }
.desktop-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 700; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose);
  content: "";
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-shop { margin-left: 4px; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 19px;
  height: 1px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button::before { transform: translateY(-5px); }
.menu-button::after { transform: translateY(5px); }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(1px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-1px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  z-index: 89;
  inset: 0;
  top: 0;
  display: none;
  padding: 140px 24px 32px;
  background: rgba(251,248,241,.98);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__inner { display: grid; width: min(100%, 520px); margin: 0 auto; gap: 0; }
.mobile-nav a { padding: 15px 3px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 22px; }
.mobile-nav .button { margin-top: 24px; border-bottom: 0; font-family: var(--sans); font-size: 14px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .055em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button::after { content: "→"; font-size: 17px; font-weight: 400; }
.button--rose { background: var(--rose); color: var(--white); }
.button--rose:hover { background: var(--rose-dark); }
.button--light { border-color: var(--line); background: var(--paper); color: var(--ink); }
.button--light:hover { border-color: var(--rose-soft); }
.button--ghost { border-color: rgba(255,255,255,.3); color: var(--white); }
.button--ghost:hover { background: rgba(255,255,255,.08); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.text-link { color: var(--rose-dark); font-size: 14px; font-weight: 800; text-decoration: underline; text-decoration-color: var(--rose-soft); text-underline-offset: 5px; }
.text-link::after { content: "  ↗"; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(219,169,184,.32), transparent 22%),
    var(--ivory);
}
.hero::after {
  position: absolute;
  z-index: 0;
  width: 510px;
  height: 510px;
  right: -250px;
  bottom: -180px;
  border: 1px solid rgba(168,50,92,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(168,50,92,.035), 0 0 0 140px rgba(168,50,92,.025);
  content: "";
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; min-height: 720px; align-items: center; gap: 60px; }
.hero__copy { padding: 70px 0; }
.hero__copy h1 span { display: block; color: var(--rose); }
.hero__visual { position: relative; align-self: stretch; }
.hero__photo {
  position: absolute;
  inset: 34px 0 34px 20px;
  overflow: hidden;
  border-radius: 240px 240px 26px 26px;
  background: #eee8df;
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 23%; }
.hero__seal {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 132px;
  height: 132px;
  right: -24px;
  bottom: 78px;
  place-content: center;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: rgba(31,75,67,.92);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}
.hero__side-note { position: absolute; z-index: 2; top: 72px; left: -26px; writing-mode: vertical-rl; color: var(--mineral); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; }
.hero-points li { list-style: none; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.52); color: var(--mineral); font-size: 12px; font-weight: 700; }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 30px 24px; border-right: 1px solid var(--line); }
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item strong { display: block; margin-bottom: 5px; color: var(--mineral); font-family: var(--serif); font-size: 22px; }
.proof-item span { color: var(--muted); font-size: 12px; }

.answer-box {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.answer-box__label { color: var(--rose); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.answer-box__label span { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; }
.answer-box h2, .answer-box h3 { margin-bottom: 12px; }
.answer-box p:last-child { margin-bottom: 0; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row + .feature-row { margin-top: 100px; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: #eee7de; }
.feature-row__media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.feature-row__media--contain img { object-fit: contain; padding: 54px; }
.cream-texture-media img { object-fit: contain; padding: 18px; }
.feature-row__number { position: absolute; right: 22px; bottom: 10px; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 78px; line-height: 1; text-shadow: 0 3px 20px rgba(0,0,0,.18); }
.feature-list { display: grid; margin: 26px 0 0; padding: 0; gap: 12px; }
.feature-list li { position: relative; list-style: none; padding-left: 28px; color: var(--muted); }
.section--mineral .feature-list li { color: #fff; }
.section--mineral .small { color: rgba(255,255,255,.96); }
.feature-list li::before { position: absolute; top: 11px; left: 0; width: 14px; height: 14px; border: 1px solid var(--rose); border-radius: 50%; content: ""; }
.feature-list li::after { position: absolute; top: 15px; left: 4px; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); content: ""; }

.product-showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-panel { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.product-panel__media { position: relative; display: grid; min-height: 430px; place-items: center; overflow: hidden; background: linear-gradient(150deg, #f9eceb, #f0dedf); }
.product-panel:nth-child(2) .product-panel__media { background: linear-gradient(150deg, #eef3ef, #dbe7e0); }
.product-panel__media img { width: 100%; height: 430px; object-fit: cover; }
.product-panel__media--contain img { width: 78%; object-fit: contain; padding: 34px; }
.product-panel__tag { position: absolute; top: 20px; left: 20px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.86); font-size: 11px; font-weight: 800; backdrop-filter: blur(9px); }
.product-panel__body { padding: 30px; }
.product-panel__body h3 { font-family: var(--serif); font-size: 29px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 13px; }
.price { color: var(--ink); font-family: var(--serif); font-size: 26px; }
.price small { font-family: var(--sans); font-size: 11px; }

.editorial-banner { display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--mineral); color: var(--white); }
.editorial-banner__media { min-height: 520px; }
.editorial-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-banner__body { display: grid; align-content: center; padding: clamp(36px, 6vw, 76px); }
.editorial-banner__body p { color: rgba(255,255,255,.74); }

.image-frame { overflow: hidden; border-radius: var(--radius-lg); background: #eee8df; box-shadow: var(--shadow-sm); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--portrait { aspect-ratio: 4 / 5; }
.image-frame--landscape { aspect-ratio: 16 / 10; }
.image-frame--square { aspect-ratio: 1; }
.image-frame--contain img { object-fit: contain; padding: 44px; }
.caption { margin-top: 10px; color: var(--muted); font-size: 11px; }

.page-hero { position: relative; overflow: hidden; padding: 74px 0 68px; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero::after { position: absolute; width: 360px; height: 360px; top: -230px; right: -80px; border: 1px solid rgba(168,50,92,.16); border-radius: 50%; box-shadow: 0 0 0 65px rgba(168,50,92,.025); content: ""; }
.page-hero__grid { display: grid; grid-template-columns: 1.05fr .65fr; gap: 60px; align-items: center; }
.page-hero h1 { max-width: 12em; font-size: clamp(40px, 5.4vw, 68px); }
.page-hero__media { min-height: 400px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 11px; }
.breadcrumbs span[aria-current="page"] { color: var(--ink); }

.quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.quick-fact { padding: 22px; border-right: 1px solid var(--line); }
.quick-fact:last-child { border-right: 0; }
.quick-fact span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.quick-fact strong { font-size: 15px; }

.balance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.balance__item { display: grid; min-height: 130px; place-content: center; border-radius: 50%; background: var(--mint); color: var(--mineral); text-align: center; }
.balance__item:nth-child(2) { background: var(--blush); color: var(--rose-dark); }
.balance__item:nth-child(3) { background: #f1e6cb; color: #73541e; }
.balance__item strong { font-family: var(--serif); font-size: 22px; }
.balance__item span { font-size: 11px; }

.ingredient-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ingredient-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ingredient { overflow: hidden; border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.ingredient img { width: 100%; aspect-ratio: 1.1; object-fit: cover; }
.ingredient__body { padding: 16px; }
.ingredient h3 { font-size: 16px; }
.ingredient p { margin: 0; font-size: 12px; }

.steps { counter-reset: step; display: grid; gap: 18px; }
.step-card { counter-increment: step; display: grid; grid-template-columns: 76px 1fr; gap: 28px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.step-card::before { display: grid; width: 58px; height: 58px; place-content: center; border-radius: 50%; background: var(--rose); color: var(--white); content: counter(step, decimal-leading-zero); font-family: var(--serif); font-size: 21px; }
.step-card h3 { margin-bottom: 6px; }
.step-card p:last-child { margin-bottom: 0; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; min-height: 240px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.price-card h3 { font-family: var(--serif); font-size: 22px; }
.price-card .price { margin-top: auto; padding-top: 20px; }
.price-card .button { margin-top: 18px; }

.spec-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 18px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 180px; color: var(--mineral); font-size: 13px; }
.spec-table td { color: var(--muted); font-size: 14px; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-item { padding: 28px; border-top: 3px solid var(--mineral); background: var(--paper); }
.trust-item__num { display: block; margin-bottom: 20px; color: var(--rose); font-family: var(--serif); font-size: 31px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.quote::before { display: block; height: 28px; margin-bottom: 13px; color: var(--rose-soft); content: "“"; font-family: Georgia, serif; font-size: 58px; line-height: .9; }
.quote p { color: var(--ink); font-family: var(--serif); font-size: 18px; line-height: 1.9; }
.quote footer { color: var(--muted); font-size: 11px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); background: transparent; }
.faq-list summary { position: relative; padding: 26px 58px 26px 50px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { position: absolute; left: 8px; color: var(--rose); content: "Q"; font-family: var(--serif); font-size: 24px; }
.faq-list summary::after { position: absolute; right: 10px; content: "+"; color: var(--mineral); font-size: 25px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { position: relative; padding: 0 50px 25px; }
.faq-answer::before { position: absolute; left: 8px; color: var(--mineral); content: "A"; font-family: var(--serif); font-size: 22px; }
.faq-answer p:last-child { margin-bottom: 0; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { overflow: hidden; border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.article-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.article-card__body { padding: 24px; }
.article-card__meta { display: flex; gap: 12px; margin-bottom: 10px; color: var(--rose-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.article-card h3 { font-family: var(--serif); font-size: 23px; }

.toc { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.toc strong { display: block; margin-bottom: 12px; color: var(--mineral); }
.toc ol { margin: 0; padding-left: 20px; }
.toc a { color: var(--muted); font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.prose { font-size: 16px; }
.prose h2 { margin-top: 76px; font-size: clamp(28px, 3.4vw, 40px); }
.prose h3 { margin-top: 40px; font-family: var(--serif); }
.prose p, .prose li { color: #5f585b; }
.prose ul { padding-left: 1.4em; }
.prose .callout { margin: 34px 0; }

.callout { padding: 28px; border-left: 4px solid var(--rose); background: var(--blush); }
.callout--green { border-color: var(--mineral); background: var(--mint); }
.callout strong { display: block; margin-bottom: 8px; color: var(--ink); }
.callout p:last-child { margin-bottom: 0; }

.source-note { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); font-size: 12px; }
.source-note strong { color: var(--ink); }
.source-note a { text-decoration: underline; text-underline-offset: 3px; }
.callout .footer__links a { color: var(--ink); }
.section--mineral :is(.answer-box, .step-card, .callout) p { color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; background: var(--rose); color: var(--white); }
.cta-band::before { position: absolute; width: 420px; height: 420px; left: -180px; top: -240px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.04); content: ""; }
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { margin-bottom: 8px; color: var(--white); }
.cta-band p { margin-bottom: 0; color: rgba(255,255,255,.8); }

.site-footer { padding: 66px 0 30px; background: #262225; color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.15fr .65fr .65fr; gap: 64px; }
.footer__brand .brand { margin-bottom: 22px; }
.footer__brand .brand__mark { border-color: rgba(255,255,255,.4); }
.footer__brand .brand__mark::before { border-color: #f4c8d5; }
.footer__brand .brand__mark::after { background: #f4c8d5; }
.footer__brand .brand__text span, .footer__brand p { color: rgba(255,255,255,.55); }
.footer__heading { margin-bottom: 16px; color: rgba(255,255,255,.52); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer__links { display: grid; gap: 8px; }
.footer__links a { color: rgba(255,255,255,.78); font-size: 13px; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 10px; }
.sticky-buy { display: none; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav, .header-shop { display: none; }
  .menu-button { display: block; }
  .hero__grid { grid-template-columns: 1fr .82fr; gap: 34px; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-left: 1px solid var(--line); }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid, .quote-grid, .article-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  body { font-size: 15px; padding-bottom: 72px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section--compact { padding: 52px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .utility-bar { display: none; }
  .header__inner { min-height: 68px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__text strong { font-size: 17px; }
  .brand__text span { display: none; }
  .mobile-nav { padding-top: 100px; }
  h1 { font-size: 39px; }
  h2 { font-size: 31px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .hero, .hero__grid { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { padding: 58px 0 34px; }
  .hero__visual { min-height: 500px; }
  .hero__photo { inset: 12px 18px 34px; border-radius: 170px 170px 22px 22px; }
  .hero__seal { width: 108px; height: 108px; right: 0; bottom: 46px; font-size: 12px; }
  .hero__side-note { top: 36px; left: 4px; }
  .hero-points { gap: 6px; }
  .hero-points li { font-size: 11px; }
  .proof-strip__grid { grid-template-columns: 1fr 1fr; }
  .proof-item { padding: 20px 16px; }
  .proof-item strong { font-size: 17px; }
  .answer-box { grid-template-columns: 1fr; gap: 14px; padding: 26px; }
  .answer-box__label { display: flex; align-items: center; gap: 10px; }
  .answer-box__label span { margin: 0; font-size: 34px; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 30px; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .feature-row + .feature-row { margin-top: 72px; }
  .feature-row__media, .feature-row__media img { min-height: 390px; }
  .product-showcase, .editorial-banner { grid-template-columns: 1fr; }
  .product-panel__media, .product-panel__media img { min-height: 350px; height: 350px; }
  .editorial-banner__media { min-height: 360px; }
  .editorial-banner__body { padding: 34px 24px 40px; }
  .page-hero { padding: 48px 0; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__media { min-height: 320px; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-fact:nth-child(2) { border-right: 0; }
  .quick-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .balance { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .balance__item { min-height: 100px; }
  .balance__item strong { font-size: 17px; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid--3 { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 52px 1fr; gap: 15px; padding: 22px 18px; }
  .step-card::before { width: 46px; height: 46px; font-size: 17px; }
  .shop-grid, .quote-grid, .article-grid, .trust-grid { grid-template-columns: 1fr; }
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: 100%; }
  .spec-table th { padding-bottom: 4px; border-bottom: 0; }
  .spec-table td { padding-top: 4px; }
  .faq-list summary { padding: 22px 44px 22px 38px; }
  .faq-list summary::before { left: 0; }
  .faq-list summary::after { right: 0; }
  .faq-answer { padding: 0 12px 22px 38px; }
  .faq-answer::before { left: 0; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .sticky-buy { position: fixed; z-index: 88; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(251,248,241,.96); backdrop-filter: blur(14px); }
  .sticky-buy a { display: grid; min-height: 48px; place-content: center; border-radius: 999px; font-size: 12px; font-weight: 800; text-align: center; }
  .sticky-buy a:first-child { background: var(--rose); color: var(--white); }
  .sticky-buy a:last-child { border: 1px solid var(--line); background: var(--paper); }
}

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