.site-content--chlorophyll {
  padding-left: 0;
  padding-right: 0;
}

.chlorophyll-landing,
.chlorophyll-home-banner {
  --chlorophyll-ink: #16271b;
  --chlorophyll-green: #315d3d;
  --chlorophyll-green-dark: #21442c;
  --chlorophyll-mint: #dcebd8;
  --chlorophyll-cream: #f5f4ec;
  --chlorophyll-lilac: #f1e7f0;
  --chlorophyll-line: rgba(22, 39, 27, 0.16);
  color: var(--chlorophyll-ink);
}

.chlorophyll-landing *,
.chlorophyll-home-banner * {
  box-sizing: border-box;
}

.chlorophyll-container {
  width: min(100% - 2 * var(--gutter), 80rem);
  margin-inline: auto;
}

.chlorophyll-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.chlorophyll-hero {
  overflow: hidden;
  background: linear-gradient(125deg, #f7f5ef 0%, #edf3e7 54%, #e2eddc 100%);
}

.chlorophyll-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  min-height: min(49rem, calc(100vh - var(--header-height)));
  padding-block: clamp(4rem, 8vw, 8rem);
}

.chlorophyll-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.chlorophyll-hero h1,
.chlorophyll-landing h2,
.chlorophyll-home-banner h2 {
  font-family: "NotoSerifDisplay", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.chlorophyll-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.7rem);
  line-height: 0.93;
}

.chlorophyll-lead {
  max-width: 40rem;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.chlorophyll-official {
  display: grid;
  gap: 0.35rem;
  max-width: 40rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--chlorophyll-green);
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.chlorophyll-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.chlorophyll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--chlorophyll-green-dark);
  color: var(--chlorophyll-green-dark);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.chlorophyll-button--primary {
  background: var(--chlorophyll-green-dark);
  color: #fff;
}

.chlorophyll-button--secondary {
  background: transparent;
}

.chlorophyll-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--chlorophyll-green-dark);
}

.chlorophyll-button--disabled {
  cursor: default;
  opacity: 0.5;
}

@media (hover: hover) {
  .chlorophyll-button[href]:hover {
    transform: translateY(-2px);
  }

  .chlorophyll-button--primary:hover {
    background: var(--chlorophyll-green);
    color: #fff;
  }

  .chlorophyll-button--secondary:hover {
    background: var(--chlorophyll-green-dark);
    color: #fff;
  }
}

.chlorophyll-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 42rem;
  margin: 2.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--chlorophyll-line);
  list-style: none;
}

.chlorophyll-facts li {
  display: grid;
  gap: 0.2rem;
  padding-right: 1rem;
}

.chlorophyll-facts strong {
  font-size: 1.05rem;
}

.chlorophyll-facts span {
  font-size: 0.76rem;
  line-height: 1.25;
  opacity: 0.7;
}

.chlorophyll-hero__visual {
  position: relative;
  min-height: 37rem;
}

.chlorophyll-hero__halo {
  position: absolute;
  inset: 10% 3% 0 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(2px);
}

.chlorophyll-hero__product {
  position: absolute;
  width: 66%;
  filter: drop-shadow(0 2rem 1.4rem rgba(24, 54, 32, 0.18));
}

.chlorophyll-hero__product img {
  display: block;
  width: 100%;
  height: auto;
}

.chlorophyll-hero__product--mint {
  right: 30%;
  bottom: 2%;
  z-index: 2;
  transform: rotate(-4deg);
}

.chlorophyll-hero__product--natural {
  right: -5%;
  bottom: 8%;
  z-index: 1;
  transform: rotate(5deg) scale(0.94);
}

.chlorophyll-section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.chlorophyll-section h2,
.chlorophyll-final h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
}

.chlorophyll-split,
.chlorophyll-how-grid,
.chlorophyll-official-grid,
.chlorophyll-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 8rem);
}

.chlorophyll-split > *,
.chlorophyll-how-grid > *,
.chlorophyll-official-grid > *,
.chlorophyll-faq-grid > * {
  min-width: 0;
}

.chlorophyll-prose {
  max-width: 46rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.chlorophyll-prose p {
  margin: 0 0 1.25rem;
}

.chlorophyll-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 1px solid var(--chlorophyll-line);
  border-bottom: 1px solid var(--chlorophyll-line);
}

.chlorophyll-value-card {
  padding: 2rem clamp(1.25rem, 3vw, 3rem) 2.5rem 0;
}

.chlorophyll-value-card + .chlorophyll-value-card {
  padding-left: clamp(1.25rem, 3vw, 3rem);
  border-left: 1px solid var(--chlorophyll-line);
}

.chlorophyll-value-card > span {
  color: var(--chlorophyll-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.chlorophyll-value-card h3 {
  margin: 1.5rem 0 0.7rem;
  font-size: 1.35rem;
}

.chlorophyll-value-card p {
  margin: 0;
  line-height: 1.5;
  opacity: 0.72;
}

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

.chlorophyll-section__header {
  max-width: 52rem;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
  text-align: center;
}

.chlorophyll-section__header > p:last-child {
  margin: 1.25rem 0 0;
  font-size: 1.15rem;
}

.chlorophyll-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
  max-width: 70rem;
  margin-inline: auto;
}

.chlorophyll-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: #fff;
}

.chlorophyll-product-card__image {
  display: grid;
  place-items: center;
  min-height: 28rem;
  padding: clamp(2rem, 5vw, 5rem);
  background: linear-gradient(145deg, #edf3e7, #f8f8f4);
}

.chlorophyll-product-card:nth-child(2) .chlorophyll-product-card__image {
  background: linear-gradient(145deg, #f3eaf1, #faf8fa);
}

.chlorophyll-product-card__image img {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  transition: transform 250ms ease;
}

@media (hover: hover) {
  .chlorophyll-product-card__image:hover img {
    transform: scale(1.025);
  }
}

.chlorophyll-product-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.chlorophyll-product-card__variant {
  margin: 0 0 0.75rem;
  color: var(--chlorophyll-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chlorophyll-product-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.chlorophyll-product-card__body > p:not(.chlorophyll-product-card__variant) {
  margin: 0.8rem 0 0;
  line-height: 1.45;
  opacity: 0.72;
}

.chlorophyll-product-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.chlorophyll-product-card li {
  position: relative;
  padding-left: 1.25rem;
}

.chlorophyll-product-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--chlorophyll-green);
  content: "";
}

.chlorophyll-product-card__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--chlorophyll-line);
}

.chlorophyll-product-card__price {
  font-size: 1.45rem;
  font-weight: 700;
}

.chlorophyll-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.chlorophyll-choice-card {
  min-width: 0;
  min-height: 28rem;
  padding: clamp(2rem, 3.5vw, 3.5rem);
}

.chlorophyll-choice-card--natural {
  background: var(--chlorophyll-lilac);
}

.chlorophyll-choice-card--mint {
  background: var(--chlorophyll-mint);
}

.chlorophyll-choice-card h2 {
  max-width: none;
  font-size: clamp(2.25rem, 2.8vw, 3.2rem);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.chlorophyll-choice-card > p:last-of-type {
  max-width: 33rem;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.chlorophyll-choice-card a {
  color: inherit;
  font-weight: 700;
}

.chlorophyll-section--how {
  background: var(--chlorophyll-green-dark);
  color: #fff;
}

.chlorophyll-how__lead {
  max-width: 23rem;
  margin: 1.5rem 0 0;
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0.75;
}

.chlorophyll-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chlorophyll-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.chlorophyll-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chlorophyll-steps span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 0.8rem;
}

.chlorophyll-steps p {
  margin: 0;
  line-height: 1.5;
}

.chlorophyll-section--official {
  background: #fff;
}

.chlorophyll-official-points {
  display: grid;
  gap: 0;
}

.chlorophyll-official-grid h2,
.chlorophyll-faq-grid h2 {
  font-size: clamp(2.5rem, 3.4vw, 3.6rem);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.chlorophyll-official-points p {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--chlorophyll-line);
  font-size: 1.05rem;
  line-height: 1.5;
}

.chlorophyll-official-points p:last-child {
  border-bottom: 1px solid var(--chlorophyll-line);
}

.chlorophyll-section--faq {
  background: #f8f8f5;
}

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

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

.chlorophyll-faq-list summary {
  display: grid;
  grid-template-columns: 1fr 2rem;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.chlorophyll-faq-list summary span {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  transition: transform 180ms ease;
}

.chlorophyll-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.chlorophyll-faq-list details p {
  max-width: 44rem;
  margin: 0;
  padding: 0 3rem 1.5rem 0;
  line-height: 1.55;
  opacity: 0.75;
}

.chlorophyll-final {
  padding-block: clamp(5rem, 10vw, 10rem);
  background: linear-gradient(120deg, var(--chlorophyll-green-dark), #38664a);
  color: #fff;
  text-align: center;
}

.chlorophyll-final__inner {
  display: grid;
  justify-items: center;
}

.chlorophyll-final h2 {
  max-width: 17ch;
}

.chlorophyll-final__inner > p:not(.chlorophyll-eyebrow) {
  margin: 1.25rem 0 2rem;
  font-size: 1.1rem;
}

.chlorophyll-disclaimer {
  padding-block: 1rem;
  background: #102318;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  text-align: center;
}

.chlorophyll-home-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  width: min(100% - 2 * var(--gutter), 80rem);
  margin: clamp(4rem, 8vw, 8rem) auto;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  background: linear-gradient(120deg, #edf3e7, #f1e7f0);
}

.chlorophyll-home-banner h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.chlorophyll-home-banner__copy > p:not(.chlorophyll-eyebrow) {
  max-width: 42rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.chlorophyll-home-banner__visual {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 24rem;
}

.chlorophyll-home-banner__visual img {
  display: block;
  width: min(100%, 21rem);
  height: auto;
  filter: drop-shadow(0 1.5rem 1.2rem rgba(24, 54, 32, 0.16));
}

@media (max-width: 1400px) {
  .chlorophyll-split,
  .chlorophyll-how-grid,
  .chlorophyll-official-grid,
  .chlorophyll-faq-grid,
  .chlorophyll-choice-grid {
    grid-template-columns: 1fr;
  }

  .chlorophyll-split,
  .chlorophyll-how-grid,
  .chlorophyll-official-grid,
  .chlorophyll-faq-grid {
    gap: 3rem;
  }

  .chlorophyll-choice-card {
    min-height: 24rem;
  }

}

@media (max-width: 900px) {
  .chlorophyll-hero__grid,
  .chlorophyll-split,
  .chlorophyll-how-grid,
  .chlorophyll-official-grid,
  .chlorophyll-faq-grid,
  .chlorophyll-home-banner {
    grid-template-columns: 1fr;
  }

  .chlorophyll-hero__grid {
    padding-top: 4rem;
  }

  .chlorophyll-hero__visual {
    min-height: 34rem;
  }

  .chlorophyll-hero__product {
    width: min(62%, 24rem);
  }

  .chlorophyll-hero__product--mint {
    right: 45%;
  }

  .chlorophyll-hero__product--natural {
    right: 11%;
  }

  .chlorophyll-home-banner__visual {
    min-height: 18rem;
  }
}

@media (max-width: 680px) {
  .chlorophyll-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .chlorophyll-actions,
  .chlorophyll-product-card__buy {
    align-items: stretch;
    flex-direction: column;
  }

  .chlorophyll-button {
    width: 100%;
  }

  .chlorophyll-facts {
    gap: 1rem;
  }

  .chlorophyll-facts li {
    padding-right: 0;
  }

  .chlorophyll-hero__visual {
    min-height: 26rem;
  }

  .chlorophyll-hero__product {
    width: 66%;
  }

  .chlorophyll-hero__product--mint {
    right: 39%;
  }

  .chlorophyll-hero__product--natural {
    right: 1%;
  }

  .chlorophyll-value-grid,
  .chlorophyll-product-grid,
  .chlorophyll-choice-grid {
    grid-template-columns: 1fr;
  }

  .chlorophyll-value-card,
  .chlorophyll-value-card + .chlorophyll-value-card {
    padding: 1.5rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--chlorophyll-line);
  }

  .chlorophyll-value-card:last-child {
    border-bottom: 0;
  }

  .chlorophyll-product-card__image {
    min-height: 21rem;
  }

  .chlorophyll-choice-card {
    min-height: 23rem;
  }

  .chlorophyll-home-banner {
    width: 100%;
    margin-bottom: 0;
    padding-inline: var(--gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chlorophyll-button,
  .chlorophyll-product-card__image img,
  .chlorophyll-faq-list summary span {
    transition: none;
  }
}

/* Match the typography, spacing and card rhythm used across Magnesium Therapy. */
.chlorophyll-hero__grid {
  min-height: auto;
  padding-block: 4rem 6rem;
}

.chlorophyll-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: 3rem;
  font-weight: 450;
  letter-spacing: normal;
  line-height: 1.2;
}

.chlorophyll-lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.chlorophyll-hero__visual {
  min-height: 30rem;
}

.chlorophyll-hero__product {
  width: 58%;
}

.chlorophyll-section {
  padding-block: 4rem 6rem;
}

.chlorophyll-section h2,
.chlorophyll-final h2,
.chlorophyll-home-banner h2,
.chlorophyll-landing .chlorophyll-official-grid h2,
.chlorophyll-landing .chlorophyll-faq-grid h2 {
  max-width: none;
  font-size: 2.5rem;
  font-weight: 450;
  letter-spacing: normal;
  line-height: 1.2;
}

.chlorophyll-prose {
  font-size: 1.125rem;
  line-height: 1.6;
}

.chlorophyll-value-grid {
  margin-top: 4rem;
}

.chlorophyll-value-card {
  padding-block: 2rem 2.5rem;
}

.chlorophyll-value-card h3 {
  margin-top: 1.25rem;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
}

.chlorophyll-section__header {
  margin-bottom: 4rem;
}

.chlorophyll-product-grid {
  gap: 1.75rem;
  max-width: 64rem;
}

.chlorophyll-product-card {
  overflow: hidden;
  border-radius: var(--border-radius, 0.5em);
}

.chlorophyll-product-card__image {
  min-height: 22rem;
  padding: 2.5rem;
}

.chlorophyll-product-card__body {
  padding: 2rem 2rem 2.5rem;
}

.chlorophyll-product-card h3 {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.chlorophyll-product-card__price {
  font-size: 1.25rem;
  font-weight: 600;
}

.chlorophyll-button {
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius, 0.5em);
  font-size: 1rem;
  font-weight: 600;
}

.chlorophyll-choice-grid {
  gap: 1.75rem;
}

.chlorophyll-choice-card {
  min-height: auto;
  padding: 2rem 2rem 2.5rem;
  border-radius: var(--border-radius, 0.5em);
}

.chlorophyll-landing .chlorophyll-choice-card h2 {
  max-width: none;
  font-size: 2rem;
  font-weight: 450;
  letter-spacing: normal;
  line-height: 1.25;
}

.chlorophyll-choice-card > p:last-of-type {
  margin-block: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

.chlorophyll-how__lead {
  font-size: 1.125rem;
}

.chlorophyll-steps li,
.chlorophyll-official-points p {
  font-size: 1rem;
}

.chlorophyll-final {
  padding-block: 4rem 6rem;
}

.chlorophyll-final h2 {
  max-width: 22ch;
}

.chlorophyll-home-banner {
  gap: 3rem;
  margin-block: 4rem;
  padding: 4rem;
  border-radius: var(--border-radius, 0.5em);
}

.chlorophyll-home-banner h2 {
  max-width: 18ch;
}

@media (max-width: 1023px) {
  .chlorophyll-hero__grid {
    padding-block: 3rem 4rem;
  }

  .chlorophyll-hero h1 {
    font-size: 2.5rem;
  }

  .chlorophyll-section,
  .chlorophyll-final {
    padding-block: 3rem 4rem;
  }

  .chlorophyll-section h2,
  .chlorophyll-final h2,
  .chlorophyll-home-banner h2,
  .chlorophyll-landing .chlorophyll-official-grid h2,
  .chlorophyll-landing .chlorophyll-faq-grid h2,
  .chlorophyll-landing .chlorophyll-choice-card h2 {
    font-size: 2rem;
  }

  .chlorophyll-home-banner {
    padding: 3rem;
  }
}

@media (max-width: 639px) {
  .chlorophyll-hero h1 {
    font-size: 2.25rem;
  }

  .chlorophyll-hero__visual {
    min-height: 23rem;
  }

  .chlorophyll-product-card__image {
    min-height: 19rem;
    padding: 2rem;
  }

  .chlorophyll-product-card__body,
  .chlorophyll-choice-card {
    padding: 1.5rem 1rem 2rem;
  }

  .chlorophyll-home-banner {
    padding: 3rem 1rem;
  }
}
