:root {
  --lush-green: #2b4832;
  --lush-dark: #1a2e1e;
  --lush-accent: #3c6946;
  --lush-gold: #d8c4a5;
  --lush-beige: #f2ead3;
  --lush-paper: #f9f6f0;
  --lush-text: #333333;
  --lush-muted: #687067;
  --shadow-soft: 0 20px 60px rgba(26, 46, 30, 0.16);
}

@font-face {
  font-family: "Lush Display";
  src: url("../fonts/literata/Literata72pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lush Sans";
  src: url("../fonts/manrope/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lush Sans", Arial, sans-serif;
  color: var(--lush-text);
  background: var(--lush-paper);
}

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

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--lush-dark);
  background: var(--lush-gold);
}

h1,
h2,
h3 {
  font-family: "Lush Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin: 0;
  font-size: 1.5rem;
}

p {
  line-height: 1.7;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--lush-gold);
  background: rgba(26, 46, 30, 0.36);
  border-bottom: 1px solid rgba(216, 196, 165, 0.18);
  transition: background 200ms ease, padding 200ms ease;
}

.site-header .site-brand__name,
.site-header .primary-nav a {
  text-shadow:
    -0.5px -0.5px 0 rgba(26, 46, 30, 0.72),
    0.5px -0.5px 0 rgba(26, 46, 30, 0.72),
    -0.5px 0.5px 0 rgba(26, 46, 30, 0.72),
    0.5px 0.5px 0 rgba(26, 46, 30, 0.72),
    0 1px 4px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled {
  background: rgba(26, 46, 30, 0.48);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-brand__mark {
  width: 48px;
  height: 42px;
  object-fit: contain;
}

.site-brand__name {
  font-family: "Lush Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  padding: 5.5rem 1rem 3.5rem;
  color: var(--lush-gold);
  overflow: hidden;
  background: var(--lush-dark);
}

.hero-section__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 46, 30, 0.9), rgba(26, 46, 30, 0.72)),
    url("../images/hero-wellness-background.png") center / cover;
  transform: scale(1.04);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  transform: translateY(-5%);
  text-align: center;
}

.hero-section__logo {
  width: min(190px, 42vw);
  margin: 0 auto 1.5rem;
}

.hero-section p {
  max-width: 680px;
  margin: 1.25rem auto 0;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--lush-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-section .eyebrow,
.section--deep .eyebrow {
  color: var(--lush-gold);
}

.hero-section__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--light {
  color: var(--lush-dark);
  background: var(--lush-gold);
  border-color: var(--lush-gold);
}

.button--ghost {
  color: var(--lush-gold);
  background: transparent;
}

.button--dark {
  color: var(--lush-gold);
  background: var(--lush-dark);
  border-color: var(--lush-dark);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.section--light {
  background: var(--lush-paper);
}

.section--deep {
  position: relative;
  color: var(--lush-beige);
  background:
    linear-gradient(rgba(26, 46, 30, 0.63), rgba(43, 72, 50, 0.63)),
    url("../images/daily-formulas-background.jpg") center / cover;
  overflow: hidden;
}

.section--journal {
  background: #fff;
}

.section--journal .section-heading {
  margin-bottom: 1.75rem;
}

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

.section--contact {
  text-align: center;
  background: var(--lush-paper);
}

.split-layout,
.section-heading,
.product-grid,
.journal-grid,
.benefit-tabs,
.contact-preview,
.content-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-layout p {
  color: var(--lush-muted);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: inherit;
  opacity: 0.78;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  overflow: hidden;
  color: var(--lush-text);
  background: var(--lush-paper);
  border: 1px solid rgba(216, 196, 165, 0.4);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.product-card__image {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin: 0.85rem 0.85rem 0;
  padding: 0.55rem;
  background: transparent;
  border: 1px solid rgba(216, 196, 165, 0.72);
  border-radius: 6px;
  overflow: hidden;
}

.product-card__image img {
  width: auto;
  height: min(116%, 325px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.22));
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__routine {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.55rem;
  color: var(--lush-gold);
  background: var(--lush-green);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card__subtitle {
  margin: 0 0 0.4rem;
  color: var(--lush-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__details {
  display: grid;
  gap: 0.2rem;
  margin: 1rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(43, 72, 50, 0.14);
}

.product-card__details span {
  color: var(--lush-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.benefit-tabs {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.benefit-tabs__controls {
  display: grid;
  gap: 0.5rem;
}

.benefit-tabs__controls button {
  padding: 0.95rem 1rem;
  color: var(--lush-dark);
  font-size: 1.25rem;
  font-weight: 800;
  text-align: left;
  background: var(--lush-paper);
  border: 1px solid rgba(43, 72, 50, 0.12);
  border-radius: 4px;
  cursor: pointer;
}

.benefit-tabs__controls button.is-active {
  color: var(--lush-gold);
  background: var(--lush-green);
}

.benefit-tabs__panel {
  min-height: 180px;
  padding: 1.5rem;
  color: var(--lush-beige);
  background: var(--lush-dark);
  border-radius: 6px;
}

.journal-grid,
.post-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 1.25rem;
}

.content-card,
.entry,
.no-results {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(26, 46, 30, 0.1);
  overflow: hidden;
}

.content-card__body,
.entry,
.no-results {
  padding: 1.5rem;
}

.content-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-card__image-link {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
}

.content-card__hover-label {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: var(--lush-dark);
  background: rgba(216, 196, 165, 0.92);
  border: 1px solid rgba(249, 246, 240, 0.65);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -42%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.content-card__image-link:hover .content-card__hover-label,
.content-card__image-link:focus-visible .content-card__hover-label {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.content-card__title a,
.text-link {
  text-decoration: none;
}

.text-link {
  color: var(--lush-accent);
  font-weight: 700;
}

.entry {
  margin-top: 8rem;
}

.entry-title {
  margin-bottom: 1rem;
}

.entry-content {
  font-size: 1.05rem;
}

.sage-panel {
  padding: 2rem;
  color: var(--lush-gold);
  background: var(--lush-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.sage-panel span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.3rem 0.55rem;
  color: var(--lush-dark);
  background: var(--lush-gold);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sage-panel strong {
  display: block;
  font-family: "Lush Display", Georgia, serif;
  font-size: 2rem;
}

.contact-preview,
.footer-newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
}

.contact-preview input,
.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(43, 72, 50, 0.18);
  border-radius: 4px;
  font: inherit;
}

.contact-preview button,
.footer-newsletter-form button {
  padding: 0.85rem 1rem;
  color: var(--lush-gold);
  background: var(--lush-dark);
  border: 2px solid var(--lush-gold);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(26, 46, 30, 0.82);
}

.contact-preview input:disabled,
.contact-preview button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.integration-note {
  max-width: 520px;
  margin: 0.85rem auto 0;
  color: var(--lush-muted);
  font-size: 0.86rem;
}

.site-footer .integration-note {
  margin-right: 0;
  margin-left: 0;
  color: rgba(242, 234, 211, 0.72);
}

.site-footer {
  color: var(--lush-beige);
  background: var(--lush-dark);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 1fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.site-footer__compliance {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2rem;
  color: rgba(242, 234, 211, 0.78);
  font-size: 0.86rem;
}

.site-footer__compliance h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer__legal p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.social-links,
.payment-list,
.legal-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links,
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-links a,
.payment-list li,
.legal-links a {
  display: inline-flex;
  color: var(--lush-beige);
  text-decoration: none;
}

.payment-list li {
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(216, 196, 165, 0.28);
  border-radius: 4px;
  font-size: 0.78rem;
}

.site-footer__logo {
  width: 110px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-size: 1.2rem;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  display: inline-flex;
  padding: 0.25rem 0;
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(216, 196, 165, 0.18);
  color: rgba(242, 234, 211, 0.74);
  font-size: 0.86rem;
}

.site-footer__bottom p {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--lush-gold);
    background: transparent;
    border: 1px solid rgba(216, 196, 165, 0.45);
    border-radius: 4px;
  }

  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .nav-toggle__bar {
    position: relative;
  }

  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle__bar::before {
    top: -6px;
  }

  .nav-toggle__bar::after {
    top: 6px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 1rem;
    background: var(--lush-dark);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 0.75rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
  }

  .split-layout,
  .product-grid,
  .journal-grid,
  .post-grid,
  .site-footer__inner,
  .site-footer__compliance,
  .benefit-tabs {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-brand__name {
    display: none;
  }

  .hero-section {
    padding-top: 7rem;
  }

  .contact-preview,
  .footer-newsletter-form {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}
