@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
}

:root {
  --forest: #143629;
  --forest-soft: #284d3e;
  --cream: #f5efe4;
  --paper: #fffdf8;
  --sage: #6f846e;
  --beige: #d9c9ae;
  --sand: #e9decc;
  --sage-light: #e2e9dd;
  --ink: #183328;
  --muted: #5c685f;
  --line: rgba(20, 54, 41, 0.18);
  --shadow: 0 28px 70px rgba(20, 54, 41, 0.12);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--forest);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3.15rem, 6.2vw, 6.4rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.35rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }

::selection {
  background: var(--beige);
  color: var(--forest);
}

:focus-visible {
  outline: 3px solid #98794e;
  outline-offset: 4px;
}

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

.mobile-only {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

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

.container {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--sage);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--beige);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3.4rem;
}

.section-heading h2 {
  margin-bottom: 1.2rem;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
}

.section-heading.align-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.align-center > p:last-child {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(245, 239, 228, 0.34);
  background: rgba(20, 54, 41, 0.98);
  color: var(--cream);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding,
.custom-logo-link,
.logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo,
.logo-link img {
  width: 172px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.primary-navigation .menu-item a,
.primary-navigation .menu > li > a {
  position: relative;
  display: block;
  padding: 0.5rem 0.05rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-navigation .menu-item a::after,
.primary-navigation .menu > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-navigation .menu-item a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-cta span {
  transition: transform 0.2s ease;
}

.nav-cta:hover span {
  transform: translateX(3px);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--cream);
  padding: 0.5rem;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 54, 41, 0.1);
  background: var(--cream);
  padding: clamp(3.5rem, 6vw, 6.5rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  top: -28vw;
  left: -14vw;
  border: 1px solid rgba(20, 54, 41, 0.12);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: center;
  gap: clamp(2.5rem, 4.5vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(4.1rem, 5.9vw, 6.3rem);
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: #405248;
  font-size: clamp(1.1rem, 1.55vw, 1.27rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
}

.button,
button.button,
input.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.45rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:not(:disabled):hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--forest-soft);
  color: var(--paper);
}

.button-secondary {
  border-color: rgba(20, 54, 41, 0.35);
  background: transparent;
  color: var(--forest);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: rgba(255, 255, 255, 0.35);
}

.button-light {
  background: var(--paper);
  color: var(--forest);
}

.hero-purchase-note {
  max-width: 660px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid rgba(20, 54, 41, 0.12);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.72);
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(20, 54, 41, 0.06);
}

.hero-purchase-note strong {
  flex: none;
  color: var(--forest);
  font-size: 1.15rem;
}

.hero-purchase-note > span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.price-shipping {
  font-size: 0.82em;
  font-weight: 600;
}

.price-not-ready {
  max-width: 230px;
  display: inline-block;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.3rem;
  margin: 1rem 0 0;
  padding: 0;
  color: #405248;
  list-style: none;
  font-size: 0.86rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-highlights li span {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  justify-self: center;
  padding: 1.65rem 1.65rem 2.2rem;
}

.arch-shape {
  position: absolute;
  inset: 0;
  border-radius: 48% 48% 1rem 1rem;
  background: var(--beige);
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 0.65rem 0.65rem;
  object-fit: cover;
}

.image-caption {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 90%;
  display: block;
  margin: -1.1rem auto 0;
  border-radius: 999px;
  background: var(--paper);
  padding: 0.65rem 1rem;
  box-shadow: 0 10px 30px rgba(20, 54, 41, 0.13);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
}

.pilot-proof-section {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.pilot-proof-header {
  margin-bottom: 1.75rem;
}

.pilot-proof-header h2.eyebrow {
  margin-bottom: 0;
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.3;
  letter-spacing: 0.16em;
}

.pilot-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pilot-proof-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.4rem, 3vw, 2.5rem);
}

.pilot-proof-card + .pilot-proof-card {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.pilot-proof-value,
.pilot-proof-feelings {
  display: block;
  color: var(--beige);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.pilot-proof-value {
  font-size: clamp(3.2rem, 5vw, 5.25rem);
}

.pilot-proof-feelings {
  max-width: 320px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.pilot-proof-card p {
  max-width: 330px;
  margin-bottom: 0;
  color: #dce5e0;
  font-size: 1rem;
}

.pilot-proof-source {
  margin: 1rem 0 0;
  color: #b9c8c0;
  font-size: 0.82rem;
}

.intro-section,
.benefits-section,
.faq-section,
.simple-cta,
.story-section {
  background: var(--paper);
}

.faq-section {
  scroll-margin-top: 110px;
}

.intro-section .section-heading {
  margin-bottom: 2rem;
}

.intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  color: var(--muted);
}

.intro-copy p {
  text-wrap: pretty;
}

.text-link {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1rem;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 0.15rem;
  color: var(--forest);
  font-weight: 700;
}

.benefits-section {
  padding-top: 0;
  padding-bottom: clamp(3.75rem, 7vw, 6rem);
}

.benefit-carousel {
  position: relative;
}

.benefit-carousel-controls {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.45rem;
}

.benefit-carousel-controls button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(20, 54, 41, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  color: var(--forest);
  box-shadow: 0 8px 22px rgba(20, 54, 41, 0.12);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.benefit-carousel-controls button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.benefit-carousel-controls button:disabled {
  opacity: 0.38;
  cursor: default;
}

.benefit-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.benefit-grid::-webkit-scrollbar {
  display: none;
}

.benefit-card {
  flex: 0 0 calc((100% - 1rem) / 2);
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 5rem);
  scroll-snap-align: start;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 3.3vw, 3.5rem);
}

.benefit-card p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.benefit-number {
  margin-bottom: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.benefit-light {
  background: var(--sand);
  color: var(--forest);
}

.benefit-dark {
  background: var(--forest);
  color: var(--paper);
}

.benefit-dark h3 {
  color: var(--paper);
}

.benefit-dark .benefit-number {
  color: var(--beige);
}

.benefit-ready {
  background: var(--beige);
  color: var(--forest);
}

.product-use-section {
  background: var(--paper);
  scroll-margin-top: 110px;
}

.product-use-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.product-use-heading h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 3.9rem);
}

.product-use-heading > p:last-child {
  max-width: 700px;
  font-size: 1.08rem;
}

.product-use-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.product-use-gallery {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sand);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.product-use-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(20, 54, 41, 0.13));
}

.product-use-gallery figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-use-steps > h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.product-package-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-package-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
}

.product-package-list li > span {
  width: 1.9rem;
  height: 1.9rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-package-list strong {
  display: block;
  color: var(--forest);
  font-size: 1.05rem;
  line-height: 1.35;
}

.product-use-steps,
.product-testimonials {
  margin-top: clamp(5rem, 10vw, 8rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.use-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.use-step {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.use-step-number {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 700;
}

.use-step h4 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.use-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.product-testimonials-heading {
  margin-bottom: 2.5rem;
}

.product-testimonials-heading h3.eyebrow {
  margin-bottom: 0;
  font-family: var(--font-body);
  line-height: 1.3;
  letter-spacing: 0.16em;
}

.product-testimonial {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  padding: clamp(1.7rem, 3vw, 2.5rem);
}

.product-testimonial p {
  margin-bottom: 2rem;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.35vw, 1.4rem);
  line-height: 1.45;
}

.product-testimonial footer {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-testimonial cite {
  font-style: normal;
}

.product-testimonial-featured {
  border: 0;
  background: var(--forest);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.product-testimonial-featured p {
  max-width: 900px;
  color: var(--paper);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.3;
}

.product-testimonial-featured footer {
  color: var(--beige);
}

.product-testimonial-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-testimonial-featured {
  grid-column: 1 / -1;
}

.product-use-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4rem, 8vw, 6rem);
  border-radius: 24px;
  background: var(--sand);
  padding: clamp(2rem, 5vw, 4rem);
}

.product-use-cta > div {
  max-width: 690px;
}

.product-use-cta-summary {
  margin-bottom: 0.8rem;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
}

.product-use-cta-price {
  margin-bottom: 0;
  color: var(--forest);
}

.product-use-cta-price strong {
  font-size: 1.15rem;
}

.product-use-cta .button {
  flex: none;
}

.contents-section {
  background: var(--sage-light);
  scroll-margin-top: 110px;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.content-card {
  min-height: 245px;
  border: 1px solid rgba(20, 54, 41, 0.11);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  padding: 2rem;
}

.content-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.8rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
}

.content-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.content-card p,
.seo-note {
  color: var(--muted);
  font-size: 0.96rem;
}

.content-card p {
  margin-bottom: 0;
}

.seo-note {
  max-width: 820px;
  margin: 2.2rem 0 0;
  font-size: 0.92rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.35rem 0.2rem;
  color: var(--forest);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  max-width: 680px;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.final-cta {
  background: linear-gradient(120deg, #143629, #244f3e);
  color: var(--paper);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--paper);
}

.cta-purchase {
  justify-self: end;
}

.cta-purchase p {
  margin-bottom: 1.5rem;
  color: #e4ddd1;
}

.cta-purchase strong {
  color: var(--paper);
  font-size: 1.25rem;
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 4rem;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero-copy {
  max-width: 520px;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.story-marker {
  width: 100%;
  height: 1px;
  margin-top: 1.25rem;
  background: var(--forest);
}

.story-product-image {
  display: block;
  width: min(100%, 20rem);
  height: auto;
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  filter: drop-shadow(0 20px 24px rgba(20, 54, 41, 0.14));
}

.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.story-copy p:first-of-type {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.5;
}

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

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pilot-card {
  min-height: 280px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  padding: 2rem;
}

.pilot-card span {
  display: block;
  margin-bottom: 4rem;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pilot-card h3 {
  margin-bottom: 0.8rem;
}

.pilot-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.founder-image {
  width: min(100%, 22rem);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: clamp(0.55rem, 1vw, 0.85rem);
  overflow: hidden;
  border: 1px solid rgba(20, 54, 41, 0.16);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 22px 48px rgba(20, 54, 41, 0.12);
}

.founder-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 50%;
}

.founder-copy h2 {
  margin-bottom: 1.4rem;
}

.founder-copy p,
.founder-content {
  max-width: 610px;
  color: #435249;
}

.content-placeholder {
  font-style: italic;
}

.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(20, 54, 41, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-cta {
  text-align: center;
}

.simple-cta .section-heading {
  margin-bottom: 2rem;
}

.generic-page,
.error-page {
  min-height: 62vh;
  background: var(--paper);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.entry-header h1,
.error-page h1 {
  margin-bottom: 2rem;
}

.entry-content {
  color: var(--muted);
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.4rem;
}

/* Legal pages use a calmer reading hierarchy than the site's display sections. */
.legal-content h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  line-height: 1.16;
}

.legal-content h3 {
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  line-height: 1.22;
}

.entry-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.error-page p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  background: #0f2a20;
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr;
  gap: 4rem;
  padding: 5rem 0;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  width: 172px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-main .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
}

.footer-social svg { display: block; flex-shrink: 0; }
.footer-main .footer-social a:hover { background: rgba(255, 255, 255, .12); }
.footer-social a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.footer-tagline {
  max-width: 300px;
  margin-top: 1rem;
  color: #c9d1cc;
}

.footer-main h2 {
  margin-bottom: 1rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-main a {
  color: #e7e2da;
}

.footer-legal-draft {
  color: #e7e2da;
}

.footer-main a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-main small {
  color: #aebcb4;
}

.draft-note {
  max-width: 360px;
  margin: 1rem 0 0;
  color: #aebcb4;
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #aebcb4;
  font-size: 0.76rem;
}

.cancellation-page {
  min-height: 62vh;
  background: var(--sage-light);
}

.cancellation-hero {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.cancellation-hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.cancellation-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.cancellation-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.cancellation-card {
  border: 1px solid rgba(20, 54, 41, 0.14);
  border-radius: 28px;
  background: var(--paper);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: 0 22px 55px rgba(20, 54, 41, 0.09);
}

.cancellation-card h2,
.cancellation-info h2 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}

.cancellation-card > p:not(.eyebrow, .cancellation-step, .cancellation-alert) {
  max-width: 680px;
  color: var(--muted);
}

.cancellation-step {
  margin-bottom: 0.85rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cancellation-form {
  margin-top: 2rem;
}

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

.cancellation-field {
  margin-bottom: 1.35rem;
}

.cancellation-field-wide {
  grid-column: 1 / -1;
}

.cancellation-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--forest);
  font-weight: 700;
}

.cancellation-field label > span[aria-hidden="true"] {
  color: #8c3b2c;
}

.field-optional {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}

.cancellation-field input,
.cancellation-field textarea {
  width: 100%;
  border: 1px solid rgba(20, 54, 41, 0.32);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0.82rem 0.95rem;
  line-height: 1.4;
}

.cancellation-field input {
  min-height: 54px;
}

.cancellation-field textarea {
  display: block;
  resize: vertical;
}

.cancellation-field input:focus,
.cancellation-field textarea:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(111, 132, 110, 0.25);
  outline-offset: 1px;
}

.cancellation-field small {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cancellation-privacy {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.cancellation-privacy a,
.cancellation-info a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.cancellation-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.cancellation-alert {
  margin: 1.5rem 0;
  border: 1px solid;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  font-size: 0.94rem;
}

.cancellation-alert p:last-child,
.cancellation-alert ul:last-child {
  margin-bottom: 0;
}

.cancellation-alert-error {
  border-color: rgba(140, 59, 44, 0.35);
  background: #fbefeb;
  color: #6f2f23;
}

.cancellation-alert-warning {
  border-color: rgba(136, 101, 40, 0.35);
  background: #fff7df;
  color: #684d1d;
}

.cancellation-review,
.cancellation-receipt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.cancellation-review > div,
.cancellation-receipt > div {
  min-width: 0;
  background: #fff;
  padding: 1rem 1.15rem;
}

.cancellation-review-wide {
  grid-column: 1 / -1;
}

.cancellation-review dt,
.cancellation-receipt dt {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cancellation-review dd,
.cancellation-receipt dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--forest);
  font-weight: 650;
}

.cancellation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cancellation-success {
  border-color: rgba(111, 132, 110, 0.35);
}

.cancellation-status-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 1.55rem;
  font-weight: 800;
}

.cancellation-success .button {
  margin-top: 0.5rem;
}

.cancellation-info {
  margin-top: 1.5rem;
  border: 1px solid rgba(20, 54, 41, 0.16);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.55);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.cancellation-info h2 {
  margin-bottom: 1.2rem;
}

.cancellation-info ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.cancellation-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .founder-grid,
  .faq-layout,
  .final-cta-inner,
  .product-use-overview {
    grid-template-columns: 1fr;
  }

  .product-use-gallery {
    max-width: 440px;
  }

  .product-use-package {
    max-width: 760px;
  }

  .product-use-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .contents-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-marker {
    width: 120px;
  }

  .story-product-image {
    width: min(72vw, 18rem);
    margin-top: 2.5rem;
  }

  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .pilot-proof-grid {
    grid-template-columns: 1fr;
  }

  .pilot-proof-card {
    min-height: auto;
  }

  .pilot-proof-card + .pilot-proof-card {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .pilot-card {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-purchase {
    justify-self: start;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 2rem, 1240px);
  }

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

  .custom-logo,
  .logo-link img {
    width: 145px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .menu-icon {
    width: 24px;
    display: grid;
    gap: 6px;
  }

  .menu-icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border-bottom: 1px solid rgba(245, 239, 228, 0.34);
    background: var(--forest);
    padding: 1.2rem 1rem 1.5rem;
    box-shadow: 0 20px 30px rgba(20, 54, 41, 0.18);
  }

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

  .primary-navigation .menu {
    display: grid;
    gap: 0;
    margin-bottom: 1rem;
  }

  .primary-navigation .menu-item a,
  .primary-navigation .menu > li > a {
    padding: 0.8rem 0.3rem;
    border-bottom: 1px solid rgba(245, 239, 228, 0.24);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9.4vw, 3.1rem);
    letter-spacing: -0.035em;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-purchase-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-highlights {
    display: grid;
  }

  .hero-visual {
    width: min(92%, 350px);
    padding: 1.2rem 1.2rem 1.8rem;
  }

  .intro-copy,
  .benefit-grid,
  .founder-grid,
  .footer-main,
  .use-steps-grid,
  .product-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .product-use-gallery {
    max-width: 100%;
    padding: 1rem;
  }

  .product-use-heading > p:last-child {
    font-size: 1rem;
  }

  .product-use-steps,
  .product-testimonials {
    margin-top: 4.5rem;
  }

  .use-step {
    min-height: 260px;
  }

  .product-use-cta .button {
    width: 100%;
  }

  .benefit-card {
    min-height: 330px;
  }

  .contents-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: 220px;
  }

  .content-icon {
    margin-bottom: 2rem;
  }

  .page-hero-grid {
    gap: 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .footer-main {
    gap: 2.5rem;
    padding: 4rem 0;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 1rem;
    flex-direction: column;
  }

  .cancellation-form-grid,
  .cancellation-review,
  .cancellation-receipt {
    grid-template-columns: 1fr;
  }

  .cancellation-field-wide,
  .cancellation-review-wide {
    grid-column: auto;
  }

  .cancellation-actions {
    display: grid;
  }

  .cancellation-actions .button,
  .cancellation-form > .button {
    width: 100%;
  }
}


@media (max-width: 760px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }

  h1 { font-size: clamp(2.45rem, 11vw, 3.25rem); }
  h2 { font-size: clamp(1.95rem, 8.2vw, 2.65rem); }
  h3 { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }
  .section { padding: 4.5rem 0; }

  .header-inner { min-height: 74px; }
  .custom-logo,
  .logo-link img { width: 112px; }
  .menu-button {
    width: 48px;
    height: 48px;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    padding: 0;
  }
  .menu-button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .menu-icon { width: 21px; }
  .primary-navigation {
    height: min(52vh, 430px);
    min-height: 0;
    overflow-y: auto;
    flex-direction: column;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 24px 40px rgba(20, 54, 41, 0.24);
  }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation .menu-item a,
  .primary-navigation .menu > li > a {
    padding: 0.48rem 0.2rem 0.62rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 7vw, 1.95rem);
    font-weight: 500;
    line-height: 1.05;
  }
  .nav-cta { margin-top: auto; }

  .hero { padding: 2.8rem 0 4.7rem; }
  .hero .container { width: 100%; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-copy { padding: 0 1rem; }
  .hero h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }
  .hero h1 span { white-space: normal; }
  .hero-lead {
    margin-bottom: 1.6rem;
    font-size: 1.02rem;
    line-height: 1.55;
  }
  .hero-actions,
  .hero-purchase-note,
  .hero-highlights { display: none; }
  .hero-visual {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .arch-shape,
  .image-caption { display: none; }
  .hero-visual > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    object-fit: cover;
  }
  .mobile-purchase-card {
    position: relative;
    z-index: 2;
    margin: -2.35rem 1rem 0;
    border-radius: 22px;
    background: var(--paper);
    padding: 1.35rem;
    box-shadow: 0 18px 38px rgba(20, 54, 41, 0.14);
  }
  .mobile-purchase-card-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
  .mobile-purchase-card h2 {
    margin-bottom: 0;
    font-size: 1.35rem;
  }
  .mobile-purchase-card-top > strong {
    flex: none;
    color: var(--forest);
    font-family: var(--font-heading);
    font-size: 1.5rem;
  }
  .mobile-purchase-card p {
    margin: 0.75rem 0 1.1rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .mobile-purchase-card .button { width: 100%; }

  .intro-section .section-heading { margin-bottom: 1.4rem; }
  .intro-copy { display: none; }
  .mobile-intro-summary { color: var(--muted); }

  .mobile-inline-order {
    width: max-content;
    max-width: calc(100% - 2rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto 4.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--cream);
    padding: 0.45rem 0.45rem 0.45rem 1rem;
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(20, 54, 41, 0.08);
  }
  .mobile-inline-order .button {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  .mobile-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
  }
  .mobile-section-head h2,
  .mobile-section-head h3,
  .mobile-section-head h4 { margin-bottom: 0; }
  .mobile-section-head > span {
    flex: none;
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .benefits-section { padding: 0 0 4.5rem; }
  .benefit-grid,
  .pilot-proof-grid,
  .use-steps-grid,
  .product-testimonial-track {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    gap: 0.85rem;
    margin-right: -1rem;
    overflow-x: auto;
    padding: 0 1rem 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .benefit-grid::-webkit-scrollbar,
  .pilot-proof-grid::-webkit-scrollbar,
  .use-steps-grid::-webkit-scrollbar,
  .product-testimonial-track::-webkit-scrollbar { display: none; }
  .benefit-grid > *,
  .pilot-proof-grid > *,
  .use-steps-grid > *,
  .product-testimonial-track > * { scroll-snap-align: start; }
  .benefit-card {
    min-height: 365px;
    padding: 1.7rem;
  }
  .benefit-card h3 { font-size: 1.85rem; }
  .benefit-card p { font-size: 0.96rem; }
  .benefit-ready {
    background: var(--beige);
    color: var(--forest);
  }

  .pilot-proof-section { padding: 4.5rem 0; }
  .pilot-proof-header { margin-bottom: 1.4rem; }
  .pilot-proof-header h2.eyebrow { margin-bottom: 0.85rem; }
  .mobile-section-head-light h3,
  .mobile-section-head-light > span { color: var(--paper); }
  .pilot-proof-grid { border: 0; }
  .pilot-proof-card {
    min-height: 310px;
    justify-content: flex-end;
    gap: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 1.6rem;
  }
  .pilot-proof-card + .pilot-proof-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .pilot-proof-value,
  .pilot-proof-feelings { color: #fff; }
  .pilot-proof-value { font-size: 3.8rem; }
  .pilot-proof-feelings { font-size: 2rem; }
  .pilot-proof-card p {
    color: #f2eadf;
    font-family: var(--font-heading);
    font-size: 1.16rem;
    line-height: 1.35;
  }
  .pilot-proof-source {
    margin-top: 0.4rem;
    font-size: 0.72rem;
  }

  .product-use-section { padding: 0 0 4.8rem; }
  .product-use-section > .container { width: 100%; }
  .product-use-overview { display: block; }
  .product-use-gallery {
    max-width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  .product-use-gallery img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: none;
  }
  .product-use-gallery figcaption { display: none; }
  .product-use-package {
    position: relative;
    z-index: 2;
    margin: -2.8rem 1rem 0;
    border-radius: 25px;
    background: var(--cream);
    padding: 1.6rem 1.35rem;
    box-shadow: 0 20px 40px rgba(20, 54, 41, 0.13);
  }
  .product-use-heading { margin-bottom: 1.5rem; }
  .product-use-heading h2 { font-size: 2.1rem; }
  .product-use-heading > p:last-child {
    color: var(--muted);
    font-size: 0.95rem;
  }
  .product-use-steps,
  .product-testimonials {
    margin-top: 0;
    border-top: 0;
    padding: 4.5rem 1rem 0;
  }
  .use-step {
    min-height: 300px;
    padding: 1.55rem;
  }
  .use-step h4 { font-size: 1.5rem; }

  .product-testimonials {
    margin-top: 4.5rem;
    background: var(--sage-light);
    padding-bottom: 4.5rem;
  }
  .product-testimonials-heading { margin-bottom: 1.4rem; }
  .product-testimonials-heading h3.eyebrow { margin-bottom: 0.85rem; }
  .product-testimonial {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 25px;
    background: var(--paper);
    padding: 1.6rem;
  }
  .product-testimonial-featured {
    grid-column: auto;
    background: var(--forest);
  }
  .product-testimonial p,
  .product-testimonial-featured p {
    font-size: 1.18rem;
    line-height: 1.4;
  }
  .mobile-inline-order-tinted {
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(-50%);
  }
  .product-use-cta { display: none; }

  .contents-section { background: var(--cream); }
  .contents-section .section-heading { margin-bottom: 1.5rem; }
  .desktop-contents { display: none; }
  .mobile-content-list { border-top: 1px solid var(--line); }
  .mobile-content-list details { border-bottom: 1px solid var(--line); }
  .mobile-content-list summary {
    display: grid;
    grid-template-columns: 2rem 1fr 1.5rem;
    align-items: center;
    gap: 0.7rem;
    padding: 1.15rem 0;
    color: var(--forest);
    cursor: pointer;
    list-style: none;
  }
  .mobile-content-list summary::-webkit-details-marker { display: none; }
  .mobile-content-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .mobile-content-list summary strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
  }
  .mobile-content-plus {
    justify-self: end;
    font-size: 1.4rem;
    transition: transform 0.2s ease;
  }
  .mobile-content-list details[open] .mobile-content-plus {
    transform: rotate(45deg);
  }
  .mobile-content-list details p {
    margin: -0.25rem 0 1.2rem 2.7rem;
    color: var(--muted);
    font-size: 0.92rem;
  }

  .footer-main { padding-bottom: 7rem; }
  .final-cta h2 {
    font-size: clamp(1.85rem, 7.8vw, 2.35rem);
    line-height: 1.12;
  }

  .mobile-sticky-buy {
    position: fixed;
    z-index: 110;
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(20, 54, 41, 0.18);
    border-radius: 999px;
    background: rgba(241, 230, 214, 0.97);
    color: var(--forest);
    padding: 0.55rem 0.6rem 0.55rem 1rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-sticky-buy.is-visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  body.menu-open .mobile-sticky-buy {
    opacity: 0;
    pointer-events: none;
  }
  .mobile-sticky-buy strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.1;
  }
  .mobile-sticky-buy a {
    flex: none;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    padding: 0.72rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
