:root {
  --deep-fjord: #173d42;
  --dark-teal: #214e52;
  --terracotta: #c76b4f;
  --burnt-clay: #a9503b;
  --warm-oat: #f5efe7;
  --soft-cream: #fff9f2;
  --stone: #dde2dd;
  --pale-sage: #e4ece5;
  --charcoal: #272b2a;
  --muted-text: #666c68;
  --white: #ffffff;
  --line: rgba(23, 61, 66, 0.16);
  --shadow: 0 24px 70px rgba(39, 43, 42, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(23, 61, 66, 0.09) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  z-index: 2;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.use-bar {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: var(--deep-fjord);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.use-bar span + span {
  position: relative;
}

.use-bar span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--terracotta);
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(23, 61, 66, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.wordmark img,
.foot-logo {
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.2));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.94rem;
}

.site-nav a,
.foot-links button {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.foot-links button:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
}

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

.main-action,
.quiet-action,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0;
}

.main-action {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(169, 80, 59, 0.28);
}

.main-action:hover {
  background: var(--burnt-clay);
  transform: translateY(-1px);
}

.quiet-action {
  border: 1px solid var(--line);
  color: var(--deep-fjord);
  background: rgba(255, 255, 255, 0.55);
}

.head-action {
  min-height: 42px;
  padding: 10px 16px;
}

.section-band {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 107, 79, 0.2), transparent 34%),
    linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-oat) 62%, var(--pale-sage) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -100px;
  width: 44vw;
  height: 24vw;
  min-width: 360px;
  min-height: 180px;
  background: rgba(228, 236, 229, 0.8);
  border-radius: 58% 42% 0 0;
}

.hero-grid,
.two-col,
.safety-grid,
.buy-panel,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
}

.eyebrow,
.section-mark {
  margin: 0 0 12px;
  color: var(--burnt-clay);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--deep-fjord);
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 6vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted-text);
}

.hero-text,
.lead {
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  color: #4e5552;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.fact-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--deep-fjord);
  font-weight: 800;
  font-size: 0.88rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-note,
.fine-note {
  margin-top: 18px;
  font-size: 0.94rem;
  color: var(--deep-fjord);
  font-weight: 700;
}

.product-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.terra-shape {
  position: absolute;
  inset: 8% 4% auto auto;
  width: 68%;
  aspect-ratio: 1;
  background: var(--terracotta);
  border-radius: 49% 51% 44% 56%;
  opacity: 0.82;
}

.oat-pedestal {
  position: absolute;
  bottom: 7%;
  width: 74%;
  height: 28%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(245, 239, 231, 0.3), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow);
}

.product-img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  height: auto;
}

.hero-product {
  width: min(550px, 96%);
  filter: drop-shadow(0 34px 44px rgba(23, 61, 66, 0.22));
}

.float-label {
  position: absolute;
  z-index: 3;
  background: rgba(255, 249, 242, 0.9);
  color: var(--deep-fjord);
  border: 1px solid rgba(23, 61, 66, 0.14);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(23, 61, 66, 0.1);
}

.label-one {
  left: 6%;
  top: 22%;
}

.label-two {
  right: 2%;
  bottom: 30%;
}

.label-three {
  left: 18%;
  bottom: 18%;
}

.botanical-line {
  position: absolute;
  right: 0;
  top: 2%;
  width: 180px;
  opacity: 0.45;
}

.botanical-line path {
  fill: none;
  stroke: var(--deep-fjord);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snapshot {
  padding: 26px 0;
  background: var(--deep-fjord);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.mini-card,
.soft-card,
.routine-step,
.price-card,
.wide-card,
.review-card,
.info-panel,
.image-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(39, 43, 42, 0.07);
}

.mini-card {
  padding: 18px;
  min-height: 128px;
}

.mini-card strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.32rem;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.snapshot .mini-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

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

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

.oat {
  background: var(--warm-oat);
}

.dark {
  background: var(--deep-fjord);
  color: var(--white);
}

.dark h2,
.dark h3,
.dark .section-mark {
  color: var(--white);
}

.dark p,
.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.info-panel,
.image-note {
  padding: clamp(24px, 4vw, 42px);
}

.panel-product {
  width: min(390px, 100%);
  margin: 0 auto 24px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.routine-grid,
.card-grid,
.formula-grid,
.price-grid,
.review-grid,
.trust-grid,
.nutrient-grid,
.two-card-row {
  display: grid;
  gap: 18px;
}

.routine-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid,
.formula-grid,
.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.two-card-row {
  grid-template-columns: repeat(2, 1fr);
}

.routine-step,
.soft-card,
.review-card,
.wide-card {
  padding: 24px;
}

.routine-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--deep-fjord);
  color: var(--white);
  font-weight: 900;
}

.ingredient-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.small-product {
  width: 260px;
  justify-self: end;
}

.formula-grid article {
  padding: 24px;
  border: 1px solid rgba(23, 61, 66, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.formula-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-fjord);
  font-weight: 900;
}

.desktop-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--deep-fjord);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

td:first-child {
  color: var(--deep-fjord);
  font-weight: 800;
}

.mobile-list {
  display: none;
}

.mobile-list details,
.faq-list {
  border-radius: 8px;
}

.mobile-list details {
  margin-bottom: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--deep-fjord);
  font-weight: 900;
}

.nutrient-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 36px;
}

.nutrient-grid {
  grid-template-columns: repeat(3, 1fr);
}

.nutrient-grid div,
.trust-grid div {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.nutrient-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.nutrient-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: var(--muted-text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.56);
}

.light-list li::before {
  box-shadow: inset 0 0 0 4px rgba(23, 61, 66, 0.65);
}

.safety-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.trust-grid div {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(23, 61, 66, 0.13);
}

.trust-grid strong {
  display: block;
  color: var(--deep-fjord);
}

.trust-grid span {
  color: var(--muted-text);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-pack {
  background: #fffdf8;
  border-color: rgba(199, 107, 79, 0.48);
  box-shadow: 0 24px 70px rgba(169, 80, 59, 0.16);
}

.pack-note,
.price-label {
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--deep-fjord);
  background: var(--pale-sage);
}

.pack-note {
  background: var(--terracotta);
  color: var(--white);
}

.price-product {
  width: min(220px, 100%);
  margin: 0 auto;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-text);
}

.price-total {
  margin-top: auto;
  color: var(--deep-fjord);
  font-weight: 900;
  font-size: 1.12rem;
}

.buy-panel,
.final-grid {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.final-cta {
  background: linear-gradient(135deg, var(--pale-sage), var(--warm-oat));
}

.final-product {
  width: min(410px, 100%);
  justify-self: center;
}

.faq-wrap {
  max-width: 880px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.faq-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  color: var(--deep-fjord);
  font: 900 1rem var(--sans);
  cursor: pointer;
}

.faq-item b {
  font-size: 1.4rem;
  color: var(--terracotta);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  border-bottom: 1px solid var(--line);
}

.faq-answer.open {
  display: block;
}

.site-foot {
  padding: 54px 0;
  background: var(--deep-fjord);
  color: var(--white);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.foot-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-foot p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.foot-links button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  font: 800 0.92rem var(--sans);
  cursor: pointer;
}

.cookie-strip {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-strip p {
  margin: 0;
}

.cookie-strip.is-hidden {
  display: none;
}

.small-button {
  min-height: 40px;
  padding: 9px 14px;
  background: var(--deep-fjord);
  color: var(--white);
}

.legal-modal,
.exit-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.legal-modal[hidden],
.exit-layer[hidden] {
  display: none;
}

.modal-backdrop,
.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 61, 66, 0.72);
}

.legal-panel,
.exit-card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: var(--soft-cream);
  box-shadow: var(--shadow);
  outline: none;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep-fjord);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.exit-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  width: min(760px, 100%);
}

.exit-product {
  width: 220px;
}

@media (max-width: 980px) {
  .site-head {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .head-action {
    display: none;
  }

  .hero-grid,
  .two-col,
  .safety-grid,
  .buy-panel,
  .final-grid,
  .nutrient-panel,
  .ingredient-top {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 430px;
  }

  .fact-grid,
  .routine-grid,
  .card-grid,
  .formula-grid,
  .price-grid,
  .review-grid,
  .two-card-row {
    grid-template-columns: 1fr 1fr;
  }

  .small-product {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .use-bar {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .section-band {
    padding: 58px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .action-row,
  .main-action,
  .quiet-action {
    width: 100%;
  }

  .fact-grid,
  .routine-grid,
  .card-grid,
  .formula-grid,
  .price-grid,
  .review-grid,
  .two-card-row,
  .nutrient-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .desktop-table {
    display: none;
  }

  .mobile-list {
    display: block;
  }

  .product-stage {
    min-height: 360px;
  }

  .float-label {
    font-size: 0.82rem;
  }

  .label-one {
    top: 12%;
  }

  .label-two {
    right: 0;
    bottom: 22%;
  }

  .label-three {
    left: 6%;
    bottom: 12%;
  }

  .cookie-strip {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .foot-grid,
  .exit-card {
    grid-template-columns: 1fr;
  }

  .foot-links {
    justify-content: flex-start;
  }

  .exit-product {
    width: 190px;
  }
}
