:root {
  --deep: #193f2d;
  --leaf: #2f6b45;
  --moss: #6c8b3f;
  --gold: #d6b75f;
  --rose: #b56f62;
  --cream: #f7f3e8;
  --paper: #fffdf8;
  --ink: #18231d;
  --muted: #657166;
  --line: rgba(24, 35, 29, 0.13);
  --shadow: 0 22px 62px rgba(25, 63, 45, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(214, 183, 95, 0.82);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.page-wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.notice-bar {
  padding: 9px 16px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, var(--deep), var(--leaf));
}

.notice-bar p,
.notice-bar small {
  margin: 0;
}

.notice-bar p {
  font-size: 0.9rem;
  font-weight: 900;
}

.notice-bar small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.head-wrap {
  width: min(1220px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 168px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: #314338;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a,
.site-foot a,
.site-foot button {
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.main-action,
.second-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.main-action {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--deep));
  box-shadow: 0 14px 28px rgba(47, 107, 69, 0.24);
}

.second-action {
  color: var(--deep);
  background: #fff;
  border: 1px solid rgba(25, 63, 45, 0.18);
}

.main-action:hover,
.second-action:hover {
  transform: translateY(-2px);
}

.hero-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 183, 95, 0.22), transparent 27%),
    linear-gradient(135deg, #fbf8ee 0%, #eef6e9 55%, #f8efe6 100%);
}

.hero-grid {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) 0;
}

.section-label {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep);
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.45rem, 5.8vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 2.9rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-copy > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #48584d;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
  color: #2e4537;
  font-weight: 800;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(214, 183, 95, 0.16);
}

.action-row,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(25, 63, 45, 0.16);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-image {
  position: relative;
  isolation: isolate;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 11% 3% 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 183, 95, 0.36), rgba(47, 107, 69, 0.18) 47%, transparent 72%);
  filter: blur(13px);
}

.hero-image img {
  width: min(100%, 620px);
  margin-inline: auto;
  filter: drop-shadow(0 34px 48px rgba(25, 63, 45, 0.24));
}

.section-block {
  padding: clamp(64px, 9vw, 112px) 0;
}

.split-grid,
.safety-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.text-panel p,
.section-heading p,
.safety-grid p,
.final-box p {
  color: var(--muted);
  font-size: 1.04rem;
}

.soft-section,
.review-section,
.faq-section {
  background: #f2f7ef;
}

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

.centre {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.benefit-grid,
.ingredient-grid,
.step-grid,
.review-grid,
.price-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid,
.step-grid,
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.review-card,
.price-card,
.table-panel,
.modal-box,
.exit-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(25, 63, 45, 0.08);
}

.feature-card,
.step-card {
  padding: 26px;
}

.feature-card strong,
.step-card span,
.choice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--deep);
  background: #e5efd6;
  font-weight: 900;
}

.feature-card p,
.ingredient-card p,
.step-card p,
.review-card p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.ingredient-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 63, 45, 0.97), rgba(47, 107, 69, 0.93)),
    var(--deep);
}

.ingredient-section h2,
.ingredient-section h3,
.ingredient-section .section-label {
  color: #fff;
}

.ingredient-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.ingredient-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.ingredient-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

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

.ingredient-card h3,
.ingredient-card p {
  padding: 0 18px;
}

.ingredient-card h3 {
  margin-top: 18px;
}

.ingredient-card p {
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.table-panel {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

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

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

thead th {
  color: var(--gold);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.step-card span {
  min-width: 48px;
  min-height: 48px;
  color: #fff;
  background: var(--leaf);
}

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

.review-card {
  padding: 24px;
}

.review-card img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(25, 63, 45, 0.14);
}

.stars {
  margin: 0 0 8px;
  color: #d89c21;
  font-weight: 900;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-section {
  background: linear-gradient(180deg, var(--paper), #f7f2e8);
}

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

.price-card img {
  width: 214px;
  height: 214px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.selected-card {
  border-color: rgba(214, 183, 95, 0.72);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.choice-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 30px;
  padding: 6px 10px;
  margin: 0;
  color: #fff;
  background: var(--rose);
  font-size: 0.78rem;
}

.value-badge {
  background: var(--leaf);
}

.price-note {
  margin: 8px 0;
  font-weight: 900;
  text-transform: uppercase;
}

.price-lines {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  margin: 6px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-lines span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-lines strong {
  color: var(--deep);
  font-size: 2.55rem;
  line-height: 1;
}

.price-lines small,
.total {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 22px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
}

.price-card li::before {
  content: "check";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.safety-section {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), #254a34);
}

.safety-section h2,
.safety-section .section-label,
.safety-grid p {
  color: #fff;
}

.safety-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.safety-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--deep);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.4rem;
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-section {
  padding: clamp(72px, 10vw, 120px) 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(25, 63, 45, 0.92), rgba(47, 107, 69, 0.78)),
    url("assets/lifestyle.jpg") center / cover;
}

.final-box {
  max-width: 820px;
}

.final-box h2,
.final-box .section-label,
.final-box p {
  color: #fff;
}

.site-foot {
  padding: 54px 0 96px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 28px;
}

.site-foot img {
  width: 170px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.site-foot h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-foot a,
.site-foot button {
  display: block;
  width: fit-content;
  margin: 8px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.copyright {
  margin-top: 30px;
  font-size: 0.86rem;
}

.mobile-action {
  display: none;
}

.modal-layer,
.exit-layer {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(25, 63, 45, 0.72);
}

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

.modal-box,
.exit-box {
  position: relative;
  width: min(660px, 100%);
  max-height: 86vh;
  overflow: auto;
  padding: 34px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--deep);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-box h2 {
  padding-right: 38px;
}

.modal-box p,
.exit-box p {
  color: var(--muted);
}

.exit-box {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.exit-box img {
  width: 150px;
  margin: 0 auto;
}

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

  .head-action {
    display: none;
  }

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero-grid,
  .split-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-image {
    order: -1;
  }

  .benefit-grid,
  .ingredient-grid,
  .step-grid,
  .review-grid,
  .price-grid,
  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selected-card {
    transform: none;
  }

  .foot-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  .page-wrap {
    width: min(100% - 24px, 1160px);
  }

  .head-wrap {
    min-height: 66px;
  }

  .brand-link img {
    width: 138px;
  }

  .hero-list,
  .benefit-grid,
  .ingredient-grid,
  .step-grid,
  .review-grid,
  .price-grid,
  .foot-grid,
  .exit-box {
    grid-template-columns: 1fr;
  }

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

  .trust-row span {
    flex: 1 1 calc(50% - 12px);
    justify-content: center;
  }

  .mobile-action {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: block;
    padding: 12px;
    background: rgba(255, 253, 248, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -18px 42px rgba(25, 63, 45, 0.12);
  }

  .mobile-action .main-action {
    width: 100%;
  }

  .modal-box,
  .exit-box {
    padding: 24px;
  }

  .exit-box {
    text-align: center;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.2rem;
  }

  .main-action,
  .second-action {
    width: 100%;
    padding-inline: 13px;
    font-size: 0.94rem;
  }

  .trust-row span {
    flex-basis: 100%;
  }
}

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