:root {
  --forest: #123238;
  --green: #1f6b5b;
  --sage: #dceee6;
  --mint: #f2faf6;
  --gold: #c98a2c;
  --copper: #b6543f;
  --ink: #172120;
  --muted: #5f6f6a;
  --white: #ffffff;
  --line: rgba(23, 33, 32, 0.13);
  --shadow: 0 22px 60px rgba(18, 50, 56, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(201, 138, 44, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  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;
}

.offer-strip {
  padding: 9px 16px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(90deg, var(--forest), var(--green));
}

.offer-strip p,
.offer-strip small {
  margin: 0;
}

.offer-strip p {
  font-size: 0.92rem;
  font-weight: 900;
}

.offer-strip small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

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

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

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

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

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

.nav-links a,
.site-footer a,
.site-footer button {
  text-decoration: none;
}

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

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

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

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

.main-action {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--forest));
  box-shadow: 0 14px 28px rgba(31, 107, 91, 0.24);
}

.second-action {
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(18, 50, 56, 0.18);
}

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

.hero-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 138, 44, 0.18), transparent 28%),
    linear-gradient(135deg, #f6fbf7 0%, #e5f3ea 48%, #f9f6ef 100%);
}

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

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

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

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

h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
}

h3 {
  font-size: 1.16rem;
}

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

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

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #28423d;
  font-weight: 800;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 138, 44, 0.16);
}

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

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

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(18, 50, 56, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-product {
  position: relative;
  isolation: isolate;
  padding: 24px;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 11% 7% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 91, 0.24), rgba(201, 138, 44, 0.18) 48%, transparent 72%);
  filter: blur(12px);
}

.hero-product img {
  width: min(100%, 610px);
  margin-inline: auto;
  filter: drop-shadow(0 32px 44px rgba(18, 50, 56, 0.24));
}

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

.split-layout,
.guarantee-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.lead-text,
.split-layout p,
.section-heading p,
.guarantee-layout p,
.final-box p {
  color: var(--muted);
  font-size: 1.04rem;
}

.image-panel,
.feature-card,
.ingredient-card,
.step-card,
.review-card,
.package-card,
.table-wrap,
.modal-card,
.exit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 50, 56, 0.08);
}

.image-panel {
  padding: 20px;
  background: linear-gradient(135deg, var(--white), var(--mint));
}

.soft-section,
.proof-section,
.faq-section {
  background: var(--mint);
}

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

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

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

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

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

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

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

.ingredient-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 50, 56, 0.96), rgba(31, 107, 91, 0.94)),
    var(--forest);
}

.ingredient-section h2,
.ingredient-section h3,
.ingredient-section .section-label {
  color: var(--white);
}

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

.ingredient-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ingredient-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

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

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

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

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

.small-note {
  max-width: 800px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.review-card,
.package-card {
  position: relative;
  padding: 24px;
}

.review-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid var(--white);
  box-shadow: 0 10px 22px rgba(18, 50, 56, 0.14);
}

.stars {
  margin: 0 0 9px;
  color: #d89a21;
  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(--white), #f7fbf8);
}

.package-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.package-card img {
  width: 220px;
  height: 162px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.spotlight-card {
  border-color: rgba(201, 138, 44, 0.58);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

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

.green-badge {
  background: var(--green);
}

.package-subtitle {
  margin: 8px 0 0;
  font-weight: 900;
}

.price {
  margin: 6px 0;
  color: var(--forest);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

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

.guarantee-section {
  padding: 58px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--green));
}

.guarantee-layout {
  grid-template-columns: minmax(0, 1fr) 180px;
}

.guarantee-layout h2,
.guarantee-layout .section-label,
.guarantee-layout p {
  color: var(--white);
}

.guarantee-layout img {
  width: 172px;
  margin: 0 auto;
}

.table-wrap {
  overflow-x: auto;
}

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

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

thead th {
  color: var(--white);
  background: var(--forest);
}

.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: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--forest);
  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: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(18, 50, 56, 0.9), rgba(31, 107, 91, 0.82)),
    url("assets/soothe-restore.webp") center / cover;
}

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

.final-box h2,
.final-box .section-label,
.final-box p {
  color: var(--white);
}

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

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

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

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer 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-cta {
  display: none;
}

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

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

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

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

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

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

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

.exit-card img {
  width: 150px;
}

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

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

  .header-action {
    display: none;
  }

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

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

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

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

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

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

  .hero-product {
    order: -1;
  }

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

  .spotlight-card {
    transform: none;
  }

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

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

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

  .header-inner {
    min-height: 66px;
  }

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

  .hero-points,
  .benefit-grid,
  .ingredient-layout,
  .step-grid,
  .review-grid,
  .price-grid,
  .footer-layout,
  .exit-card {
    grid-template-columns: 1fr;
  }

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

  .trust-strip span {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

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

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

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

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

  .exit-card img {
    margin: 0 auto;
  }
}

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

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

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