:root {
  --ink: #070707;
  --paper: #f7f5f0;
  --white: #fff;
  --muted: #66615b;
  --line: #d9d5ce;
  --red: #e22b1a;
  --gold: #b78a35;
  --container: 100vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.topbar {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(100%, 1440px);
  min-height: 62px;
  margin: 0 auto;
  padding: 0 max(18px, 3vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav.right { justify-content: flex-end; }
.nav a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.brand { display: grid; justify-items: center; line-height: 1; }
.brand strong { font-size: 20px; font-weight: 900; }
.brand span {
  margin-top: 4px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn svg { width: 22px; height: 22px; }

.breadcrumbs {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 max(18px, 4vw);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  overflow: auto;
}
.breadcrumbs span:last-child { color: var(--ink); }
main { overflow: hidden; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.lead {
  margin: 0;
  color: #d8d3cb;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 800;
  line-height: 1.45;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translate(-3px, -3px);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn.light:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}
.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.48);
}
.btn.ghost:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.landing-hero {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  min-height: 330px;
  display: grid;
  align-content: center;
  padding: max(30px, 4vw) max(18px, 4vw);
}
.hero-copy h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-copy .lead { max-width: 720px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-media {
  position: relative;
  min-height: 330px;
  height: 330px;
  margin: 0;
  background: var(--white);
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,0), rgba(7,7,7,0.22));
}
.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 16px;
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-badge span { color: var(--red); }

.goal-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  overflow: hidden;
}
.goal-hero::before {
  display: none;
}
.goal-hero .hero-copy {
  position: static;
  z-index: auto;
  min-height: 330px;
  padding: max(30px, 4vw) max(18px, 4vw);
}
.goal-hero .hero-copy h1 {
  max-width: 780px;
  font-size: clamp(32px, 3.8vw, 56px);
}
.goal-hero .hero-copy .lead {
  max-width: 700px;
  font-size: clamp(14px, 1vw, 16px);
}
.goal-hero .hero-media {
  position: relative;
  inset: auto;
  z-index: auto;
  align-self: stretch;
  min-height: 0;
  height: auto;
  background: var(--white);
}
.goal-hero .hero-media img {
  min-height: 100%;
  object-position: center center;
  filter: none;
}
.goal-hero .hero-media::after {
  display: none;
}
.goal-hero .hero-badge {
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: auto;
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.product-section,
.lower-content,
.faq-section,
.related-pages {
  width: var(--container);
  padding: max(36px, 4vw) max(18px, 4vw);
  border-bottom: 1px solid var(--ink);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.section-head .lead {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 250px 1fr auto;
  background: var(--white);
}
.product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-label span:first-child { color: var(--red); }
.product-label span:last-child {
  color: var(--ink);
  text-align: right;
}
.product-photo {
  display: block;
  overflow: hidden;
  background: var(--paper);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-photo img { transform: scale(1.04); }
.product-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}
.product-copy span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-copy strong {
  font-size: 18px;
  line-height: 1.12;
  font-weight: 900;
}
.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 900;
}
.product-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  text-transform: uppercase;
}

.seo-content {
  width: var(--container);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
}
.seo-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--ink);
}
.seo-feature-media {
  min-height: 420px;
  background: var(--white);
  overflow: hidden;
}
.seo-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-feature-copy {
  display: grid;
  align-content: center;
  background: var(--paper);
  padding: max(34px, 5vw);
}
.seo-feature-copy h2,
.seo-copy-band h2 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}
.seo-feature-copy p:not(.eyebrow),
.seo-copy-band p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border-top: 1px solid var(--ink);
}
.seo-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 240px;
  background: var(--white);
  padding: max(24px, 3vw);
}
.seo-grid svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}
.seo-grid strong {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.seo-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}
.seo-grid a {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.seo-copy-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: max(22px, 3vw);
  border-top: 1px solid var(--ink);
  background: var(--white);
  padding: max(34px, 4vw);
}
.seo-copy-band p { margin: 0; }
.goal-detail-band {
  grid-template-columns: minmax(300px, 0.62fr) minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 1px;
  background: var(--ink);
  padding: 0;
}
.goal-detail-band::before {
  display: none;
}
.goal-detail-heading,
.goal-detail-copy {
  display: grid;
  align-content: center;
  background: var(--paper);
  padding: max(32px, 4vw);
}
.goal-detail-band .eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.goal-detail-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.7vw, 56px);
}
.goal-detail-photo {
  position: relative;
  min-height: 320px;
  margin: 0;
  background: var(--white);
  overflow: hidden;
}
.goal-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.goal-detail-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--ink);
  padding: 12px 14px;
  background: var(--paper);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}
.goal-detail-copy {
  gap: 18px;
}
.goal-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.strength-content {
  background: var(--ink);
}
.strength-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--ink);
}
.strength-intro-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  background: var(--paper);
  padding: max(34px, 4vw);
}
.strength-intro-copy h2,
.strength-guide-head h2,
.strength-ritual-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}
.strength-intro-copy p:not(.eyebrow),
.strength-ritual-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}
.strength-signs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}
.strength-signs article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  background: var(--white);
  padding: max(24px, 3vw);
}
.strength-signs span,
.strength-steps span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.strength-signs strong,
.strength-steps strong {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}
.strength-signs p,
.strength-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}
.strength-guide {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--ink);
  background: var(--ink);
}
.strength-guide-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  padding: max(28px, 3.5vw) max(18px, 4vw);
}
.strength-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}
.strength-choice-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 220px auto auto 1fr;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}
.strength-choice-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.strength-choice-card:hover img {
  transform: scale(1.04);
}
.strength-choice-card span,
.strength-choice-card strong,
.strength-choice-card p {
  margin-left: max(18px, 2vw);
  margin-right: max(18px, 2vw);
}
.strength-choice-card span {
  margin-top: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.strength-choice-card strong {
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}
.strength-choice-card p {
  margin-top: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
.strength-ritual {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1fr);
  gap: 1px;
  border-top: 1px solid var(--ink);
  background: var(--ink);
}
.strength-ritual-copy,
.strength-steps li {
  background: var(--paper);
  padding: max(30px, 4vw);
}
.strength-ritual-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}
.strength-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--ink);
}
.strength-steps li {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  background: var(--white);
}

.faq {
  display: grid;
  gap: 1px;
  padding: 0 12px 12px 0;
  background: var(--ink);
  border: 1px solid var(--ink);
  overflow: visible;
}
.faq details {
  border: 1px solid var(--ink);
  background: var(--white);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.faq details:hover {
  background: #fff;
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--red);
}
.faq summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(18px, 2vw);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}
.faq details[open] summary::after { content: "-"; }
.faq details:hover summary { color: var(--red); }
.faq p {
  margin: 0;
  max-width: 980px;
  padding: 0 max(18px, 2vw) 26px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.related-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: 220px auto auto 1fr;
  align-content: start;
  background: var(--white);
  overflow: hidden;
}
.related-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.related-card:hover img { transform: scale(1.04); }
.related-card span,
.related-card strong,
.related-card p {
  margin-left: max(18px, 2vw);
  margin-right: max(18px, 2vw);
}
.related-card span {
  margin-top: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.related-card strong {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}
.related-card p {
  margin-top: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
.related-card svg {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  padding: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px max(18px, 4vw) 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 28px;
}
.footer h4 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin: 8px 0;
  color: #cfc9c0;
  font-size: 13px;
  font-weight: 800;
}
.footer a:hover { color: var(--white); }
.footer-brand-copy p {
  max-width: 270px;
  margin: 10px 0 0;
  color: #cfc9c0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}
.footer-locale {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.footer-locale-group { display: grid; gap: 8px; }
.footer-locale-label {
  color: #8f887f;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-locale-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  padding: 6px 9px;
  background: transparent;
  color: #d8d3cb;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-pill:hover,
.footer-pill.is-active {
  background: var(--white);
  color: var(--ink);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  color: #b8b2aa;
  font-size: 12px;
  font-weight: 800;
}
.footer-legal-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.luneva-cookie-consent {
  position: fixed;
  left: max(12px, 2vw);
  right: max(12px, 2vw);
  bottom: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--ink);
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
body.cookie-consent-visible .luneva-cookie-consent { display: grid; }
.luneva-cookie-copy { display: grid; gap: 4px; }
.luneva-cookie-copy strong {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.luneva-cookie-copy span,
.luneva-cookie-copy a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.luneva-cookie-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.luneva-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.luneva-cookie-btn,
.luneva-cookie-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.luneva-cookie-btn.primary {
  background: var(--ink);
  color: var(--white);
}
.luneva-cookie-btn:hover,
.luneva-cookie-link:hover {
  background: var(--red);
  color: var(--white);
}

@media (max-width: 1180px) {
  .landing-hero,
  .seo-feature,
  .seo-copy-band,
  .strength-intro,
  .strength-ritual { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-grid { grid-template-columns: 1fr; }
  .strength-signs,
  .strength-choice-grid,
  .strength-steps { grid-template-columns: 1fr; }
  .strength-signs article,
  .strength-intro-copy,
  .strength-steps li { min-height: auto; }
  .goal-hero { min-height: auto; }
  .goal-hero .hero-copy { min-height: auto; }
  .goal-hero .hero-media {
    position: relative;
    inset: auto;
    min-height: 280px;
    height: 280px;
  }
  .goal-hero .hero-badge { width: auto; }
  .hero-media {
    min-height: 280px;
    height: 280px;
  }
  .seo-feature-media {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 760px) {
  .topbar { padding: 0 12px; text-align: center; }
  .header-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 0 12px;
  }
  .nav { display: none; }
  .brand { justify-items: start; }
  .breadcrumbs { padding: 0 12px; }
  .hero-copy {
    min-height: auto;
    padding: 30px 12px;
  }
  .hero-copy h1 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .goal-hero { min-height: auto; }
  .goal-hero .hero-copy {
    min-height: auto;
    align-content: start;
    padding: 30px 12px;
  }
  .goal-hero .hero-copy h1 {
    font-size: 34px;
  }
  .goal-hero .hero-copy .lead {
    font-size: 14px;
  }
  .goal-hero .hero-media {
    position: relative;
    inset: auto;
    min-height: 100%;
    height: 230px;
  }
  .goal-hero .hero-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .hero-actions,
  .hero-actions .btn { width: 100%; }
  .hero-media {
    min-height: 230px;
    height: 230px;
  }
  .hero-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
  }
  .product-section,
  .seo-content,
  .faq-section,
  .related-pages { padding: 34px 12px; }
  .section-head {
    display: grid;
    grid-template-columns: 1fr;
  }
  .product-grid,
  .related-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-rows: auto 230px 1fr auto; }
  .product-meta { display: grid; }
  .seo-content { padding: 0; }
  .seo-feature-copy,
  .seo-grid article,
  .seo-copy-band,
  .strength-intro-copy,
  .strength-guide-head,
  .strength-ritual-copy,
  .strength-steps li,
  .strength-signs article { padding: 34px 12px; }
  .goal-detail-band > p { padding: 0; }
  .seo-feature-copy h2,
  .seo-copy-band h2,
  .strength-intro-copy h2,
  .strength-guide-head h2,
  .strength-ritual-copy h2 { font-size: 34px; }
  .seo-feature-media {
    min-height: 230px;
    height: 230px;
  }
  .strength-guide-head { display: grid; }
  .strength-choice-card { grid-template-rows: 190px auto auto 1fr; }
  .strength-choice-card img { height: 190px; }
  .related-card { grid-template-rows: 190px auto auto 1fr; }
  .related-card img { height: 190px; }
  .faq { padding: 0 8px 8px 0; }
  .faq summary {
    min-height: 74px;
    font-size: 14px;
  }
  .faq p { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .footer-legal-line { justify-content: flex-start; }
  .luneva-cookie-consent {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 24px);
    overflow: auto;
  }
  .luneva-cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .luneva-cookie-btn,
  .luneva-cookie-link { width: 100%; }
}

/* Порожня сітка товарів — використовують taxonomy.php і
   template-catalog-category.php, доки каталог не імпортовано. */
.product-grid .product-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 22px;
  border: 1px solid var(--line, #e3ded2);
  background: var(--paper, #f7f5f0);
  color: var(--muted, #6b6b6b);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.product-grid .product-empty a {
  color: var(--ink, #070707);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Плашка з лічильником у героя ──────────────────────────────────────
   Була завбільшки з окремий блок: 16px паддінга по колу плюс тінь 6px.
   Це підпис, а не банер — робимо компактнішою. */

.hero-badge {
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 14px;
  gap: 10px;
  font-size: 11px;
  box-shadow: 4px 4px 0 var(--ink);
}

.goal-hero .hero-badge {
  bottom: 12px;
  padding: 9px 14px;
  box-shadow: 4px 4px 0 var(--ink);
}

/* ── Картки «Подивитись інше» ──────────────────────────────────────────
   Назва впиралась у нижню межу картки: у сітці був рядок 1fr під опис,
   але коли опису немає, назва лишалась притиснутою до краю. */

.strength-choice-card {
  padding-bottom: 22px;
}

.strength-choice-card strong {
  margin-bottom: 4px;
}

/* ── Плавне розкриття питань ───────────────────────────────────────────
   Стандартний <details> відкривається ривком. Там, де браузер уміє
   анімувати ::details-content (Chrome, Safari), робимо плавно в обидва
   боки; де ні — лишається мʼяка поява відповіді. */

.faq details p {
  animation: faqReveal 0.28s ease both;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@supports selector(details::details-content) {
  .faq details::details-content {
    block-size: 0;
    overflow: hidden;
    transition:
      block-size 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
      content-visibility 0.32s allow-discrete;
  }

  .faq details[open]::details-content {
    block-size: auto;
  }

  /* Анімація висоти вимагає інтерполяції до auto. */
  .faq details {
    interpolate-size: allow-keywords;
  }

  /* Керує вже ::details-content — подвійна анімація тут зайва. */
  .faq details p {
    animation: none;
  }
}

/* Плюс/мінус повертається, а не підмінюється символом. */
.faq summary::after {
  content: "+";
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq details[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq details p,
  .faq summary::after,
  .faq details::details-content {
    animation: none;
    transition: none;
  }
}

/* ── Опис під заголовком, а не збоку ────────────────────────────────
   `.section-head` був сіткою у дві колонки: ліворуч надпис і заголовок,
   праворуч пояснювальний абзац. Через це заголовок ламався раніше, ніж
   треба, а текст праворуч висів окремим стовпчиком.

   Тепер одна колонка: опис іде під заголовком.

   Виняток — блоки, де праворуч не текст, а керування: стрілки гортання
   стрічки та посилання «уся категорія». Їх лишаємо в рядку із
   заголовком, інакше вони поїдуть під нього і ряд розсиплеться. */
.section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.section-head:has(.rail-arrows),
.section-head:has(> .text-link),
.section-head:has(> a),
.section-head.compact-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

/* Опис тепер займає всю ширину рядка. Обмеження 520-610px лишились від
   тих часів, коли він стояв правою колонкою — у ній це був сенс, а під
   заголовком текст просто обривався на середині. */
.section-head > p,
.section-head .lead,
.section-head > div > p.lead {
  max-width: none;
}

/* Блоки з керуванням праворуч (стрілки, посилання) не чіпаємо: там
   ліва колонка вужча навмисно, щоб керування не притискалось. */
.section-head:has(.rail-arrows) > p,
.section-head:has(> .text-link) > p,
.section-head.compact-head > p {
  max-width: 100%;
}
