:root {
  --navy: #253351;
  --navy-2: #31445c;
  --blue: #386587;
  --teal: #3f987f;
  --green: #087c70;
  --cream: #faf8f2;
  --cream-2: #f1ecdf;
  --mist: #e7f1ef;
  --peach: #edd0af;
  --ink: #212326;
  --muted: #626a70;
  --line: #d2d5d9;
  --white: #ffffff;
  --yellow: #f0cf57;
  --coral: #df6e51;
  --shadow: 0 20px 55px rgba(37, 51, 81, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-sans: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "ivypresto-display", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

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

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

button,
input { font: inherit; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  border-radius: 99px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  font-weight: 700;
}

.skip-link:focus { transform: none; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.announcement {
  min-height: 32px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 5px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(37, 51, 81, .12);
  background: rgba(250, 248, 242, .94);
  backdrop-filter: blur(14px);
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
}

.wordmark {
  color: #2c5960;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  text-decoration: none;
}

.site-header .wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header-proof {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.header-proof span { color: var(--yellow); letter-spacing: -.08em; }

.header-link {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 64px;
  padding-block: 66px;
}

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

.eyebrow,
.reason-label,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 5.05vw, 72px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1;
}

.hero h1::first-line { color: var(--green); }

.hero-dek {
  max-width: 650px;
  margin: 26px 0 28px;
  color: #353b40;
  font-size: 17px;
  line-height: 1.62;
}

.cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  border-radius: 99px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 26px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.hero-cta { min-width: 220px; }

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.hero-social .stars,
.buy-rating > span {
  color: #e1a617;
  font-size: 13px;
  letter-spacing: -.1em;
}

.hero-social strong { color: var(--navy); }

.hero-media {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 34px;
}

.hero-media::before {
  position: absolute;
  inset: 4% 0 2% 8%;
  border-radius: 46% 54% 55% 45% / 48% 45% 55% 52%;
  background: #dfece4;
  content: "";
  transform: rotate(-4deg);
}

.hero-arc {
  position: absolute;
  z-index: 0;
  top: 2%;
  right: -8%;
  width: 58%;
  aspect-ratio: 1;
  border: 34px solid var(--peach);
  border-left-color: transparent;
  border-radius: 50%;
  opacity: .9;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 51, 81, .14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 9px;
  bottom: 42px;
  margin: 0;
  border: 2px solid var(--navy);
  border-radius: 99px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--yellow);
  color: var(--navy);
  padding: 10px 15px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.proof-strip {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}

.proof-strip span { display: inline-flex; align-items: center; }
.proof-strip span + span::before { margin: 0 18px; color: var(--teal); content: "•"; }

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

.reason { padding: 92px 0; }
.reason + .reason { border-top: 1px solid var(--line); }

.reason-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: 78px;
}

.reason:nth-of-type(even) .reason-copy { order: 2; }

.reason-label { margin-bottom: 17px; color: #075f57; }

.reason h2,
.buy-box h2,
.faq h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.reason-copy > p:not(.reason-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #383e43;
  font-size: 16px;
  line-height: 1.72;
}

.reason-copy strong { color: var(--navy); font-weight: 700; }

.reason-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 51, 81, .2);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(37, 51, 81, .1);
}

.reason-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-media > img { aspect-ratio: 1; object-fit: contain; }

.reason-media figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--muted);
  padding: 12px 16px;
  font-size: 10px;
  line-height: 1.4;
}

.reason-tension { background: #f4efe4; }
.reason-sachet { background: var(--mist); }
.reason-formula { background: var(--cream); }
.reason-proof { background: var(--navy); }
.reason-proof .reason-label { color: var(--peach); }
.reason-proof h2,
.reason-proof .reason-copy > p { color: var(--white); }
.reason-honesty { background: #efe4d3; }

.text-cta,
.outline-button,
.facts-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  border: 1px solid var(--blue);
  border-radius: 99px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  padding: 10px 19px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.text-cta:hover,
.outline-button:hover,
.facts-link:hover { background: var(--blue); color: var(--white); }

.formula-art img { background: var(--white); }

.proof-media { overflow: visible; padding: 18px 18px 0; }
.proof-media > img { border-radius: 18px; }

.proof-list {
  position: absolute;
  right: -24px;
  bottom: 55px;
  width: min(290px, 62%);
  display: grid;
  gap: 6px;
  border: 1px solid var(--navy);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--teal);
  padding: 17px;
}

.proof-list span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.proof-list span::before {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  content: "✓";
  font-size: 10px;
}

.review-band {
  overflow: hidden;
  border-block: 1px solid rgba(37, 51, 81, .18);
  background: var(--peach);
  padding: 72px 0;
}

.review-band .section-kicker { color: var(--navy); }

.quote-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quote-track blockquote {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border: 1px solid rgba(37, 51, 81, .18);
  border-radius: var(--radius-md);
  background: var(--cream);
  padding: 24px;
}

.quote-track p {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  line-height: 1.25;
}

.quote-track footer { color: var(--muted); font-size: 10px; line-height: 1.4; }

.sample-note { margin: 16px 0 0; color: #4d5358; font-size: 10px; }

.offer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 100px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: start;
  gap: 80px;
}

.gallery { position: sticky; top: 102px; min-width: 0; }

.gallery-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f8f8f8;
}

.gallery-stage img { width: 100%; aspect-ratio: 1; object-fit: contain; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.gallery-thumb {
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
  background: #f7f7f7;
  cursor: pointer;
  padding: 0;
}

.gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.facts-link { width: 100%; margin-top: 12px; }

.buy-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 38px;
}

.buy-box h2 { font-size: clamp(38px, 4vw, 54px); }

.buy-subtitle {
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.buy-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.buy-rating small { color: var(--muted); font-weight: 500; }

.purchase-options { display: grid; gap: 10px; margin: 30px 0 0; border: 0; padding: 0; }
.purchase-options legend { margin-bottom: 10px; color: var(--navy); font-size: 12px; font-weight: 700; }

.purchase-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  padding: 15px;
}

.purchase-card.selected {
  border: 2px solid var(--blue);
  box-shadow: 0 8px 25px rgba(56, 101, 135, .1);
}

.purchase-card input { width: 20px; height: 20px; margin: 0; accent-color: var(--blue); }
.purchase-card strong { display: block; color: var(--navy); font-size: 13px; }
.purchase-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.purchase-price { color: var(--navy); text-align: right; font-size: 17px; font-weight: 700; }

.offer-bullets {
  display: grid;
  gap: 9px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.offer-bullets li {
  position: relative;
  padding-left: 25px;
  color: #40464a;
  font-size: 12px;
  line-height: 1.45;
}

.offer-bullets li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  content: "✓";
  font-size: 10px;
}

.offer-cta { width: 100%; }

.offer-proof {
  margin: 12px 0 0;
  color: var(--navy);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.microcopy {
  margin: 13px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 8px;
  line-height: 1.45;
}

.faq { border-top: 1px solid var(--line); background: var(--mist); padding: 94px 0; }
.faq-shell { max-width: 860px; }
.faq h2 { margin-bottom: 38px; }

.faq details { border-top: 1px solid rgba(37, 51, 81, .22); }
.faq details:last-of-type { border-bottom: 1px solid rgba(37, 51, 81, .22); }

.faq summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  padding: 17px 50px 17px 0;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  content: "+";
  font-size: 17px;
  font-weight: 400;
}

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

.faq details p {
  max-width: 720px;
  margin: 0;
  color: #42494e;
  padding: 0 42px 22px 0;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer { background: var(--navy); color: var(--white); padding: 50px 0 78px; }

.footer-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr auto;
  align-items: start;
  gap: 46px;
}

.footer-mark { margin: 0; color: var(--white); }
.footer-grid > div > p:last-child { margin: 10px 0 0; color: #dbe1e8; font-size: 11px; }
.footer-notes { display: grid; gap: 8px; }
.footer-notes p { margin: 0 !important; color: #cad1dc !important; font-size: 9px !important; line-height: 1.55; }
.footer-grid > a { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-size: 11px; font-weight: 700; }

.desktop-rail {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 22px;
  width: 232px;
  display: none;
  border: 1px solid var(--navy);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .2s ease, transform .2s ease;
}

.desktop-rail.visible { opacity: 1; pointer-events: auto; transform: none; }
.desktop-rail p { margin: 0; color: var(--muted); font-size: 9px; }
.desktop-rail strong { margin-top: 2px; color: var(--navy); font-size: 14px; }
.desktop-rail a { min-height: 44px; display: grid; place-items: center; margin-top: 11px; border-radius: 99px; background: var(--blue); color: var(--white); text-decoration: none; font-size: 10px; font-weight: 700; }

.mobile-sticky { display: none; }

.facts-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: 90vh;
  border: 0;
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(5, 17, 31, .35);
  padding: 0;
}

.facts-dialog::backdrop { background: rgba(18, 27, 43, .72); backdrop-filter: blur(4px); }

.dialog-inner { position: relative; padding: 38px; }
.dialog-inner h2 { margin: 0 0 22px; color: var(--navy); font-size: 42px; letter-spacing: -.04em; }
.dialog-inner img { width: 100%; border-radius: 16px; }
.dialog-inner > p:last-child { color: var(--muted); font-size: 10px; line-height: 1.5; }

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 12px;
  float: right;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-proof { display: none; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 34px; padding-block: 56px; }
  .hero-media { width: min(640px, 100%); margin-inline: auto; }
  .reason-grid { grid-template-columns: 1fr; gap: 34px; }
  .reason:nth-of-type(even) .reason-copy { order: initial; }
  .reason-media { width: min(720px, 100%); }
  .offer-grid { grid-template-columns: 1fr; gap: 46px; }
  .gallery { position: static; }
  .quote-track { grid-template-columns: repeat(3, minmax(290px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .quote-track blockquote { scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr 1.4fr; }
  .footer-grid > a { grid-column: 1 / -1; }
  .desktop-rail { display: none; }
}

@media (min-width: 1680px) {
  .desktop-rail { display: grid; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  .shell { width: min(100% - 32px, 560px); }
  .announcement { min-height: 30px; padding-inline: 10px; font-size: 10px; white-space: nowrap; }
  .site-header { min-height: 58px; padding: 8px 16px; }
  .wordmark { font-size: 27px; }
  .header-link { min-height: 44px; font-size: 10px; }

  .hero-grid { width: 100%; gap: 22px; padding: 38px 16px 28px; }
  .hero h1 { font-size: clamp(37px, 10.5vw, 47px); line-height: 1.01; }
  .eyebrow { margin-bottom: 11px; font-size: 9px; }
  .hero-dek { margin: 19px 0 21px; font-size: 14px; line-height: 1.53; }
  .hero-cta { width: 100%; min-height: 52px; }
  .hero-social { margin-top: 11px; gap: 5px; font-size: 9px; }
  .hero-social .stars { font-size: 11px; }
  .hero-media { padding: 10px 22px 20px; }
  .hero-media::before { inset: 0 6% 0 10%; }
  .hero-arc { right: -2%; border-width: 22px; }
  .hero-media img { width: min(100%, 360px); border-radius: 20px; box-shadow: 0 14px 35px rgba(37, 51, 81, .13); }
  .hero-note { right: 18px; bottom: 24px; padding: 8px 11px; font-size: 8px; box-shadow: 5px 5px 0 var(--yellow); }

  .proof-strip { min-height: 43px; justify-content: flex-start; gap: 0; overflow-x: auto; padding: 0 16px; font-size: 8px; white-space: nowrap; }
  .proof-strip span + span::before { margin: 0 10px; }

  .reason { padding: 52px 0 58px; }
  .reason-grid { gap: 24px; }
  .reason-label { margin-bottom: 10px; font-size: 9px; }
  .reason h2 { font-size: 36px; line-height: 1.03; }
  .reason-copy > p:not(.reason-label) { margin-top: 18px; font-size: 14px; line-height: 1.62; }
  .reason-media { border-radius: 18px; }
  .reason-media > img { aspect-ratio: 4 / 3; }
  .product-media > img { aspect-ratio: 1; }
  .reason-media figcaption { min-height: 42px; font-size: 8px; }
  .text-cta, .outline-button { width: 100%; margin-top: 21px; }
  .proof-media { overflow: hidden; padding: 12px 12px 0; }
  .proof-media > img { border-radius: 13px; }
  .proof-list { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 10px; border-radius: 13px; box-shadow: none; padding: 13px; }
  .proof-list span { font-size: 9px; }

  .review-band { padding: 48px 0; }
  .quote-track { margin-right: -16px; grid-template-columns: repeat(3, minmax(82vw, 330px)); gap: 10px; }
  .quote-track blockquote { min-height: 176px; padding: 20px; }
  .quote-track p { font-size: 24px; }

  .offer { padding: 58px 0 72px; }
  .offer-grid { gap: 28px; }
  .gallery-stage { border-radius: 18px; }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumb { border-radius: 9px; }
  .buy-box { border-radius: 20px; padding: 24px 18px; }
  .buy-box h2 { font-size: 38px; }
  .buy-subtitle { font-size: 12px; }
  .purchase-card { min-height: 76px; padding: 12px; }
  .purchase-card strong { font-size: 11px; }
  .purchase-price { font-size: 14px; }
  .offer-proof { font-size: 8px; }

  .faq { padding: 58px 0 76px; }
  .faq h2 { margin-bottom: 26px; font-size: 38px; }
  .faq summary { min-height: 58px; font-size: 12px; line-height: 1.4; }
  .faq details p { padding-right: 12px; font-size: 11px; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid > a { grid-column: auto; }
  .site-footer { padding: 44px 0 104px; }

  .mobile-sticky {
    position: fixed;
    z-index: 75;
    right: 9px;
    bottom: 9px;
    left: 9px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--navy);
    border-radius: 99px;
    background: var(--white);
    box-shadow: 0 14px 44px rgba(22, 35, 54, .26);
    padding: 7px 8px 7px 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-sticky.visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-sticky strong { display: block; color: var(--navy); font-size: 12px; }
  .mobile-sticky span { display: block; color: var(--muted); font-size: 8px; }
  .mobile-sticky a { min-height: 46px; display: grid; place-items: center; border-radius: 99px; background: var(--blue); color: var(--white); padding: 0 18px; text-decoration: none; font-size: 10px; font-weight: 700; }

  .facts-dialog { width: calc(100% - 20px); max-height: 92vh; border-radius: 18px; }
  .dialog-inner { padding: 18px; }
  .dialog-inner h2 { font-size: 34px; }
}

@media (max-width: 340px) {
  .shell { width: calc(100% - 24px); }
  .site-header { padding-inline: 12px; }
  .wordmark { font-size: 24px; }
  .hero-grid { padding-inline: 12px; }
  .hero h1 { font-size: 35px; }
  .hero-dek { font-size: 13px; }
  .reason h2 { font-size: 33px; }
  .quote-track { grid-template-columns: repeat(3, minmax(87vw, 285px)); }
  .purchase-card { grid-template-columns: auto 1fr; }
  .purchase-price { grid-column: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
