:root {
  --red-900: #5f0708;
  --red-800: #8d1112;
  --red-700: #a51b1b;
  --red-500: #d93128;
  --cream: #f7efe8;
  --white: #fffaf6;
  --sand: #d7b08e;
  --sage: #dce6da;
  --sage-dark: #405943;
  --ink: #181312;
  --muted: #665c57;
  --line: rgba(141, 17, 18, 0.18);
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  top: 12px;
  left: 12px;
  color: var(--white);
  background: var(--red-800);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  padding: 0 48px;
  color: var(--red-800);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(95, 7, 8, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--red-800);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.header-actions a {
  outline-offset: 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language {
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--red-800);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 12px;
}

.button-red {
  color: var(--white);
  background: var(--red-800);
  border-color: var(--red-800);
}

.button-red:hover,
.button-red:focus-visible {
  background: var(--red-900);
  border-color: var(--red-900);
}

.button-light {
  color: var(--red-800);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--red-900);
  background: #ffffff;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 250, 246, 0.78);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--red-800);
  background: var(--white);
}

.button-outline-red {
  color: var(--red-800);
  border-color: var(--red-800);
}

.button-outline-red:hover,
.button-outline-red:focus-visible {
  color: var(--white);
  background: var(--red-800);
}

.section {
  padding: 88px 48px;
}

.section-red {
  color: var(--white);
  background: var(--red-800);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-sage {
  background: var(--sage);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 44px;
}

.section-heading.centered {
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.split-content h2,
.ritual-copy h2,
.offer-content h2,
.lifestyle-band h2 {
  max-width: 760px;
  color: var(--red-800);
  font-size: 38px;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-red h2,
.section-red .eyebrow {
  color: var(--white);
}

.section-heading p:last-child {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
}

.centered p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red-800);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(80, 0, 1, 0.9) 0%, rgba(103, 6, 7, 0.66) 42%, rgba(103, 6, 7, 0.08) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: calc(100vh - var(--header));
  margin: 0 auto;
  padding: 72px 48px 58px;
}

.hero-content h1 {
  max-width: 560px;
  font-size: 58px;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 250, 246, 0.92);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 18px;
  max-width: 560px;
  margin-top: 58px;
}

.hero-points div {
  min-height: 92px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 250, 246, 0.5);
  border-radius: 8px;
}

.hero-points strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.hero-points span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--red-900);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--red-800);
}

.trust-strip p {
  font-size: 13px;
  line-height: 1.3;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 250, 246, 0.75);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.benefit-card,
.science-grid article,
.review-card,
.price-card,
.ingredient-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.68);
}

.benefit-card {
  min-height: 250px;
  padding: 28px 24px;
  text-align: center;
}

.line-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  color: var(--red-800);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
}

.line-icon.flower::before {
  border-radius: 50% 50% 50% 6px;
  transform: rotate(45deg);
}

.line-icon.flower::after {
  border-radius: 50% 6px 50% 50%;
  transform: rotate(-45deg);
}

.line-icon.drop::before {
  border-radius: 70% 70% 70% 0;
  transform: rotate(45deg);
}

.line-icon.drop::after {
  display: none;
}

.line-icon.bolt::before {
  width: 22px;
  height: 42px;
  border-width: 0 0 0 3px;
  transform: skew(-22deg) translate(12px, -2px);
}

.line-icon.bolt::after {
  width: 18px;
  height: 18px;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(22px, 10px);
}

.line-icon.moon::before {
  border-radius: 50%;
}

.line-icon.moon::after {
  inset: 4px 2px 10px 18px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
}

.benefit-card h3,
.ingredient-list h3,
.science-grid h3,
.review-card span,
.price-card h3 {
  color: var(--red-800);
  font-size: 15px;
  text-transform: uppercase;
}

.benefit-card p {
  margin-top: 12px;
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 88px max(48px, calc((100vw - var(--max)) / 2));
}

.split-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 30px;
  color: rgba(255, 250, 246, 0.9);
}

.botanical-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 246, 0.16);
  border-radius: 8px;
}

.botanical-panel img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.ingredient-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.ingredient-feature {
  position: sticky;
  top: 100px;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.ingredient-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ingredient-feature div {
  padding: 26px;
}

.ingredient-feature h3 {
  color: var(--red-800);
  font-size: 24px;
  line-height: 1.15;
}

.ingredient-feature p {
  margin-top: 14px;
  color: var(--muted);
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ingredient-list article {
  min-height: 166px;
  padding: 18px;
}

.ingredient-list span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
}

.ingredient-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.ritual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
  background: var(--white);
}

.ritual-image {
  overflow: hidden;
  border-radius: 8px;
}

.ritual-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.ritual-copy {
  max-width: 580px;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 78px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--red-800);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.steps p {
  color: var(--muted);
}

.steps strong {
  color: var(--ink);
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.science-grid article {
  display: flex;
  flex-direction: column;
  min-height: 294px;
  padding: 24px;
  background: rgba(255, 250, 246, 0.74);
}

.science-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.science-grid span {
  margin-top: auto;
  padding-top: 22px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.offer-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.offer-visual {
  overflow: hidden;
  border-radius: 8px;
}

.offer-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 30px 18px 18px;
  text-align: center;
  background: var(--white);
}

.price-card.highlighted {
  border-color: var(--red-800);
}

.ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  min-width: 136px;
  padding: 4px 12px;
  color: var(--white);
  background: var(--red-800);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.price-card strong {
  margin-top: 18px;
  color: var(--red-800);
  font-size: 28px;
}

.price-card span {
  min-height: 42px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.review-card {
  min-height: 252px;
  padding: 26px;
}

.stars {
  color: var(--red-800);
  font-size: 18px;
  line-height: 1;
}

.review-card p {
  margin-top: 24px;
  color: var(--ink);
  font-size: 18px;
}

.review-card span {
  display: block;
  margin-top: 22px;
}

.lifestyle-band {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 52px;
  padding: 80px max(48px, calc((100vw - var(--max)) / 2));
}

.lifestyle-band img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.lifestyle-band div {
  max-width: 580px;
}

.lifestyle-band p:last-child {
  margin-top: 22px;
  color: rgba(255, 250, 246, 0.9);
}

.faq-list {
  width: min(100%, 880px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 42px 24px 0;
  color: var(--red-800);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  margin-right: -36px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.75fr;
  gap: 42px;
  padding: 70px max(48px, calc((100vw - var(--max)) / 2)) 38px;
  color: rgba(255, 250, 246, 0.88);
  background: var(--red-900);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a:not(.brand),
.site-footer p {
  display: block;
  margin-top: 9px;
}

.disclaimer {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 246, 0.16);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .site-header {
    padding: 0 28px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .benefit-grid,
  .science-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredient-layout,
  .offer-section,
  .ritual-section,
  .lifestyle-band,
  .split-band {
    grid-template-columns: 1fr;
  }

  .ingredient-feature {
    position: static;
  }

  .ingredient-feature img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 66px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
  }

  .brand {
    font-size: 26px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(77, 0, 0, 0.95), rgba(77, 0, 0, 0.5)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.12));
  }

  .hero-content {
    justify-content: flex-start;
    min-height: 760px;
    padding: 78px 22px 40px;
  }

  .hero-content h1 {
    max-width: 440px;
    font-size: 42px;
  }

  .hero-copy {
    max-width: 420px;
    font-size: 16px;
  }

  .hero-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 40px;
  }

  .hero-points div {
    min-height: 104px;
    padding: 12px 8px;
  }

  .section,
  .split-band,
  .lifestyle-band {
    padding: 62px 22px;
  }

  .section-heading h2,
  .split-content h2,
  .ritual-copy h2,
  .offer-content h2,
  .lifestyle-band h2 {
    font-size: 30px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    justify-content: flex-start;
  }

  .benefit-grid,
  .ingredient-list,
  .science-grid,
  .pricing-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .science-grid article,
  .review-card {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 58px 22px 32px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points span {
    font-size: 11px;
  }

  .steps li {
    grid-template-columns: 1fr;
  }
}
