:root {
  --ink: #2f2521;
  --muted: #7b6a62;
  --paper: #fff8f3;
  --surface: #ffffff;
  --soft: #faede7;
  --line: #ecd8cf;
  --rose: #d4967d;
  --rose-dark: #9d5f4c;
  --green: #817c5f;
  --blue: #8a7668;
  --gold: #c58b5f;
  --shadow: 0 22px 58px rgba(93, 59, 45, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  z-index: 30;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 243, 0.92);
  border-bottom: 1px solid rgba(236, 216, 207, 0.9);
  backdrop-filter: blur(14px);
}
.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}
.brand-mark {
  width: 31px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}
.nav-links a:hover { color: var(--ink); background: #f3e4dc; }
.nav-links .nav-cta { color: #fff; background: var(--green); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}
.menu-lines::before { transform: translateY(-6px); }
.menu-lines::after { transform: translateY(4px); }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #f2d8c9;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  filter: saturate(0.92) sepia(0.08) brightness(1.08);
}
.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 235, 218, 0.48), rgba(255, 235, 218, 0) 34%),
    linear-gradient(90deg, rgba(78, 48, 38, 0.66), rgba(143, 87, 70, 0.42) 48%, rgba(237, 199, 178, 0.22)),
    linear-gradient(0deg, rgba(255, 248, 243, 0.2), rgba(255, 248, 243, 0.08));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.62) 0.7px, transparent 0.7px),
    radial-gradient(rgba(111, 77, 64, 0.18) 0.6px, transparent 0.6px);
  background-position: 0 0, 9px 11px;
  background-size: 18px 18px, 25px 25px;
  mix-blend-mode: soft-light;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  color: #fff;
}
.hero-copy { max-width: 780px; }
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero .eyebrow,
.final-cta .eyebrow { color: #ffe3d8; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: 0; }
h1 {
  margin-bottom: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 500;
  max-width: 820px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.3vw, 4.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
h3 { font-size: 1.35rem; margin-bottom: 0.55rem; }
.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(93,59,45,0.18); }
.button-primary { color: #fff; background: var(--rose); }
.button-primary:hover { background: var(--rose-dark); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.14); }
.hero-panel {
  padding: 1.3rem;
  border: 1px solid rgba(255, 238, 228, 0.72);
  border-radius: 8px;
  color: #fff8f3;
  background: linear-gradient(145deg, rgba(119, 69, 52, 0.92), rgba(157, 95, 76, 0.88));
  box-shadow: 0 24px 54px rgba(78, 48, 38, 0.28);
  backdrop-filter: blur(12px);
}
.panel-kicker {
  margin-bottom: 0.8rem;
  color: #ffe3d8;
  font-weight: 900;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.check-list li { position: relative; padding-left: 1.6rem; color: inherit; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #f2c0a8;
}
.check-list.warm li { color: var(--muted); }
.check-list.warm li::before { background: var(--gold); }

.trust-strip {
  width: min(1160px, calc(100% - 32px));
  margin: -2.1rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-strip div { padding: 1.1rem; background: var(--surface); }
.trust-strip strong { display: block; color: var(--ink); font-size: 1rem; }
.trust-strip span { display: block; color: var(--muted); font-size: 0.9rem; }

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.8rem 0;
}
.section-heading { max-width: 820px; margin-bottom: 2.2rem; }
.section-heading p,
.problem p,
.approach-copy p,
.about-copy p,
.frame-card p,
.final-cta p { color: var(--muted); }
.narrow { max-width: 720px; }
.signal-grid,
.step-list,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.signal-grid article,
.step-list article,
.testimonial-grid figure,
.frame-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(93,59,45,0.07);
}
.signal-grid article { padding: 1.35rem; }
.signal-grid span,
.step-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}
.signal-grid p,
.step-list p { color: var(--muted); margin-bottom: 0; }

.emotion-band {
  width: min(980px, calc(100% - 32px));
  margin: -1.8rem auto 2.2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-top: 1px solid rgba(212, 150, 125, 0.45);
  border-bottom: 1px solid rgba(212, 150, 125, 0.45);
  color: #6f4d40;
  background: linear-gradient(90deg, rgba(212, 150, 125, 0.12), rgba(255, 248, 243, 0.7), rgba(197, 139, 95, 0.12));
  text-align: center;
}
.emotion-band p {
  max-width: 800px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.35;
}

.approach,
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.approach-media img,
.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offers { width: 100%; max-width: none; padding-inline: max(16px, calc((100% - 1160px) / 2)); background: var(--soft); }
.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(93,59,45,0.09);
}
.offer-card.featured { border-color: rgba(212,150,125,0.62); }
.offer-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.offer-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.offer-body p { color: var(--muted); margin: 0; }
.best-for { color: var(--rose-dark) !important; font-size: 0.78rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.1em; }
.offer-body ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.price-line {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.price-line strong { font-size: 2rem; font-family: Georgia, serif; color: var(--rose-dark); }
.price-line span { color: var(--muted); font-weight: 750; }

.steps { padding-bottom: 4rem; }
.step-list article { padding: 1.35rem; }

.about { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr); }
.text-link { color: var(--rose-dark); font-weight: 850; border-bottom: 2px solid rgba(212,150,125,0.45); }

.frame { padding-top: 2rem; }
.frame-card { padding: clamp(1.5rem, 4vw, 3rem); background: var(--surface); }
.frame-points { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.3rem; }
.frame-points span { padding: 0.5rem 0.75rem; border-radius: 999px; background: #f6e4da; color: var(--green); font-weight: 800; }

.testimonials { width: 100%; max-width: none; padding-inline: max(16px, calc((100% - 1160px) / 2)); background: #fbebe4; }
.testimonial-grid { grid-template-columns: repeat(4, 1fr); }
.testimonial-grid figure { padding: 1.2rem; margin: 0; }
blockquote { color: #5a4740; margin-bottom: 1rem; }
figcaption { color: var(--rose-dark); font-weight: 900; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-list details { padding: 1rem 1.1rem; }
.faq-list summary { cursor: pointer; font-weight: 850; }
.faq-list p { margin: 0.8rem 0 0; color: var(--muted); }

.final-cta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 4rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #8f5746, #d4967d 58%, #c58b5f);
}
.final-cta h2 { max-width: 720px; margin-bottom: 0.7rem; }
.final-cta p { color: rgba(255,255,255,0.82); margin-bottom: 0; }

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 5.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-brand { color: var(--ink); font-weight: 900; margin-bottom: 0.25rem; }
.footer p { margin: 0; }
.footer address { display: grid; gap: 0.2rem; font-style: normal; }
.footer nav { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.footer a { color: var(--rose-dark); font-weight: 800; }
.mobile-sticky { display: none; }

@media (max-width: 980px) {
  .hero-inner,
  .approach,
  .about,
  .final-cta,
  .footer { grid-template-columns: 1fr; }
  .hero-panel { max-width: 560px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .offer-grid,
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { border-radius: 8px; }
  .hero { min-height: 620px; }
  .hero-shade {
    background:
      radial-gradient(circle at 78% 18%, rgba(255, 235, 218, 0.2), rgba(255, 235, 218, 0) 32%),
      linear-gradient(90deg, rgba(78, 48, 38, 0.68), rgba(111, 68, 55, 0.54) 54%, rgba(117, 72, 58, 0.42)),
      linear-gradient(0deg, rgba(78, 48, 38, 0.14), rgba(255, 248, 243, 0.03));
  }
  .hero-inner { padding: 3.6rem 0 4.2rem; }
  .hero-panel { display: none; }
  .hero-actions,
  .hero-actions .button,
  .offer-body .button,
  .final-cta .button { width: 100%; }
  .trust-strip,
  .signal-grid,
  .step-list,
  .offer-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 4.2rem 0; }
  .offers,
  .testimonials { padding-top: 4.2rem; padding-bottom: 4.2rem; }
  .mobile-sticky {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 25;
    display: block;
  }
  body:not(.product-page) .mobile-sticky {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  body:not(.product-page) .mobile-sticky.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-sticky a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: var(--rose);
    box-shadow: var(--shadow);
    font-weight: 900;
  }
}


.legal-page { background: var(--paper); }
.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}
.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.legal-main section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal-main h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.legal-main p { color: var(--muted); }
.legal-alert {
  padding: 1rem;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink) !important;
  font-weight: 800;
}
.legal-nav { display: flex; }


.product-page {
  background: #fff8f3;
}
.product-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0 4rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}
.product-hero-media {
  position: relative;
}
.product-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 8%;
  z-index: 0;
  border-radius: 8px;
  background: #f2d8c9;
}
.product-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.96) sepia(0.08) brightness(1.04);
  box-shadow: var(--shadow);
}
.product-hero-copy {
  min-width: 0;
}
.product-hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
}
.product-lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  margin-bottom: 1.35rem;
}
.product-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.product-promises span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-dark);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 850;
}
.button-secondary.warm {
  color: var(--rose-dark);
  border: 1px solid rgba(212, 150, 125, 0.55);
  background: rgba(255, 255, 255, 0.72);
}
.product-buy-card {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 1.25rem;
  border: 1px solid rgba(255, 238, 228, 0.72);
  border-radius: 8px;
  color: #fff8f3;
  background: linear-gradient(145deg, rgba(119, 69, 52, 0.96), rgba(157, 95, 76, 0.92));
  box-shadow: 0 24px 54px rgba(78, 48, 38, 0.24);
}
.buy-label {
  margin-bottom: 0.2rem;
  color: #ffe3d8;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.buy-price {
  margin-bottom: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
}
.buy-note,
.secure-note {
  color: rgba(255, 248, 243, 0.86);
}
.buy-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
  padding-left: 1.1rem;
}
.buy-list li {
  color: rgba(255, 248, 243, 0.94);
}
.product-buy-card .button {
  width: 100%;
  background: #f2c0a8;
  color: #4e3026;
}
.product-buy-card .button:hover {
  background: #ffe3d8;
}
.secure-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}
.product-emotion {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 1rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-top: 1px solid rgba(212, 150, 125, 0.45);
  border-bottom: 1px solid rgba(212, 150, 125, 0.45);
  color: #6f4d40;
  background: linear-gradient(90deg, rgba(212, 150, 125, 0.12), rgba(255, 248, 243, 0.72), rgba(197, 139, 95, 0.12));
  text-align: center;
}
.product-emotion p {
  max-width: 820px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.35;
}
.product-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.2rem 0;
}
.benefit-grid,
.suitability-grid,
.process-steps,
.included-grid {
  display: grid;
  gap: 1rem;
}
.benefit-grid,
.process-steps {
  grid-template-columns: repeat(3, 1fr);
}
.benefit-grid article,
.process-steps article,
.fit-card,
.included-card,
.price-card-large {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(93,59,45,0.07);
}
.benefit-grid article,
.process-steps article,
.fit-card {
  padding: 1.35rem;
}
.benefit-grid span,
.process-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  color: #fff8f3;
  background: var(--rose-dark);
  font-weight: 900;
}
.benefit-grid p,
.process-steps p,
.fit-card li,
.included-card li,
.price-card-large p,
.trust-product p {
  color: var(--muted);
}
.suitability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fit-card h3 {
  margin-bottom: 1rem;
}
.fit-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
}
.fit-card.positive {
  border-color: rgba(129, 124, 95, 0.38);
  background: #fbf7ed;
}
.fit-card.careful {
  border-color: rgba(212, 150, 125, 0.5);
  background: #fff2ec;
}
.product-testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}
.process {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}
.process-copy p {
  color: var(--muted);
}
.included-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #fff, #fff4ee);
}
.included-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.3rem;
}
.trust-product {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}
.trust-product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.price-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.price-card-large {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background: linear-gradient(145deg, #fff, #fff0e8);
}
.price-card-large h2 {
  margin-bottom: 0.3rem;
}
.big-price {
  margin: 0.2rem 0 0.5rem;
  color: var(--rose-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 7rem);
  line-height: 1;
}
.refund-note {
  font-weight: 850;
}
.price-card-large .button {
  margin-top: 1rem;
}
.ethics {
  padding-top: 2rem;
}
.ethics ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.product-final {
  margin-top: 1rem;
}

@media (max-width: 1060px) {
  .product-hero {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  }
  .product-buy-card {
    position: static;
    grid-column: 1 / -1;
  }
}
@media (max-width: 860px) {
  .product-hero,
  .benefit-grid,
  .suitability-grid,
  .process,
  .process-steps,
  .included-grid,
  .trust-product,
  .product-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .product-hero-media {
    max-width: 480px;
  }
  .product-hero-media::before {
    inset: 8% 0 -6% 8%;
  }
  .product-section {
    padding: 4.2rem 0;
  }
  .product-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }
}
@media (max-width: 560px) {
  .product-hero {
    padding-top: 2.2rem;
  }
  .product-promises span,
  .product-hero .button,
  .price-card-large .button {
    width: 100%;
  }
  .buy-price {
    font-size: 3.4rem;
  }
}


.product-page .testimonials {
  width: 100%;
  max-width: none;
  padding: 5.2rem max(32px, calc((100% - 1080px) / 2));
  margin-right: 0;
  margin-left: 0;
}
.product-page .testimonials .section-heading,
.product-page .product-testimonial-grid {
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
}
.product-page .product-testimonial-grid {
  gap: 1.25rem;
}
.product-page .product-testimonial-grid figure {
  padding: 1.6rem;
}

@media (max-width: 760px) {
  .product-page .testimonials {
    padding: 4.2rem 24px;
  }
  .product-page .product-testimonial-grid figure {
    padding: 1.35rem;
  }
}
