:root {
  color-scheme: light;
  --ink: #2a2023;
  --ink-soft: #5f5356;
  --wine: #681f34;
  --wine-dark: #3d101f;
  --rose: #c89298;
  --blush: #f4e6e2;
  --cream: #fbf7f0;
  --paper: #fffdf9;
  --gold: #c29a58;
  --gold-light: #ead6af;
  --line: rgba(78, 45, 52, 0.15);
  --shadow: 0 24px 70px rgba(68, 36, 44, 0.12);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --shell: 1180px;
  --article: 790px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 12%, rgba(200, 146, 152, 0.09), transparent 24rem),
    radial-gradient(circle at 92% 42%, rgba(194, 154, 88, 0.08), transparent 26rem);
  content: "";
  pointer-events: none;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 9px 14px;
  color: white;
  background: var(--wine);
  border-radius: 99px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: 3px;
  background: rgba(104, 31, 52, 0.08);
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
}

.sponsor-bar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--wine-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sponsor-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.publication,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.publication-mark {
  display: grid;
  width: 46px;
  height: 46px;
  color: white;
  background: var(--wine);
  border-radius: 50% 50% 48% 52% / 62% 52% 48% 38%;
  place-items: center;
  font: 700 1.75rem/1 var(--serif);
}

.publication strong,
.footer-brand strong {
  display: block;
  margin-bottom: -5px;
  color: var(--wine);
  font: 700 1.7rem/1 var(--serif);
}

.publication small,
.footer-brand small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edition {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(46px, 8vw, 110px) 70px;
}

.kicker,
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker::before,
.overline::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0 24px;
  font: 600 clamp(3.2rem, 5.3vw, 5.4rem) / 0.93 var(--serif);
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--wine);
  font-weight: 600;
}

.standfirst {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font: 500 clamp(1.05rem, 1.5vw, 1.25rem) / 1.65 var(--sans);
}

.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.avatar {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: white;
  background: var(--wine);
  border-radius: 50%;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.byline p {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.55;
}

.byline strong,
.byline span {
  display: block;
}

.byline span {
  color: var(--ink-soft);
}

.byline .avatar {
  display: grid;
  color: white;
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-figure::before {
  position: absolute;
  z-index: -1;
  inset: -30px 28px 30px -30px;
  border: 1px solid rgba(194, 154, 88, 0.42);
  border-radius: 48% 52% 46% 54% / 52% 42% 58% 48%;
  content: "";
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  border-radius: 49% 51% 48% 52% / 44% 44% 56% 56%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 62% center;
}

.hero-figure figcaption,
.editorial-image figcaption {
  margin-top: 13px;
  color: var(--ink-soft);
  font: italic 0.8rem/1.5 var(--serif);
}

.article-shell {
  overflow: hidden;
}

.article-section,
.editorial-image {
  width: min(calc(100% - 40px), var(--article));
  margin-inline: auto;
}

.article-section {
  padding-block: clamp(55px, 8vw, 105px);
}

.article-section p {
  margin-bottom: 1.4em;
}

.intro {
  padding-top: 34px;
}

.intro > p,
.article-section > p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.52rem);
  line-height: 1.62;
}

.dropcap::first-letter {
  float: left;
  margin: 9px 10px 0 0;
  color: var(--wine);
  font: 700 5.1rem/0.7 var(--serif);
}

q {
  color: var(--wine);
  font-style: italic;
  font-weight: 600;
}

.stat-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
  margin: 50px 0;
  padding: 30px 0;
  border-block: 1px solid var(--line);
}

.stat-callout strong {
  color: var(--wine);
  font: 700 clamp(4.4rem, 9vw, 7rem) / 0.8 var(--serif);
  letter-spacing: -0.06em;
}

.stat-callout p {
  max-width: 450px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}

.editorial-image {
  margin-block: 20px 80px;
}

.editorial-image img {
  width: 100%;
  max-height: 720px;
  border-radius: 3px;
  box-shadow: 0 22px 55px rgba(60, 31, 39, 0.12);
  object-fit: cover;
}

.wide-image {
  width: min(calc(100% - 40px), 1050px);
}

.wide-image img {
  aspect-ratio: 2 / 1;
}

.product-flatlay img {
  aspect-ratio: 1.6 / 1;
  object-position: center 53%;
}

.section-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--wine);
  border: 1px solid rgba(104, 31, 52, 0.34);
  border-radius: 50%;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}

.article-section h2,
.how-to-copy h2,
.offer-copy h2,
.closing h2 {
  margin: 14px 0 26px;
  font: 600 clamp(2.8rem, 6vw, 4.7rem) / 0.98 var(--serif);
  letter-spacing: -0.04em;
}

.lead-text {
  color: var(--wine);
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 600;
  line-height: 1.3 !important;
}

.analogy-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  margin: 42px 0;
  padding: 30px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.analogy-card p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.7;
}

.sound-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 54px;
}

.sound-lines span {
  width: 5px;
  height: 16px;
  background: var(--wine);
  border-radius: 5px;
}

.sound-lines span:nth-child(2),
.sound-lines span:nth-child(4) {
  height: 32px;
}

.sound-lines span:nth-child(3) {
  height: 52px;
}

.reveal-line {
  margin-top: 72px;
  text-align: center;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-reveal {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 54px 25px;
  text-align: center;
  background: var(--wine);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.brand-reveal::before,
.brand-reveal::after {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(234, 214, 175, 0.28);
  border-radius: 50%;
  content: "";
}

.brand-reveal::before {
  top: -105px;
  left: -50px;
}

.brand-reveal::after {
  right: -50px;
  bottom: -105px;
}

.brand-reveal small {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-reveal strong {
  color: white;
  font: 600 clamp(3.4rem, 9vw, 6.6rem) / 0.9 var(--serif);
  letter-spacing: -0.05em;
}

.brand-reveal span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.effect-callout {
  display: grid;
  gap: 8px;
  margin: 38px 0 18px;
  padding: 28px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(234, 214, 175, 0.22), transparent 9rem),
    var(--wine);
  border-radius: 2px;
}

.effect-callout small {
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.effect-callout strong {
  max-width: 680px;
  font: 600 clamp(1.8rem, 4vw, 2.8rem) / 1.05 var(--serif);
}

.effect-callout p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  line-height: 1.6;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.formula-card {
  min-height: 280px;
  padding: 26px 20px;
  background: var(--cream);
  border: 1px solid rgba(104, 31, 52, 0.08);
}

.formula-icon {
  display: grid;
  width: 37px;
  height: 37px;
  margin-bottom: 48px;
  color: var(--wine);
  background: var(--blush);
  border-radius: 50%;
  place-items: center;
  font-size: 0.6rem;
  font-weight: 800;
}

.formula-card h3 {
  min-height: 64px;
  margin-bottom: 14px;
  color: var(--wine);
  font: 600 1.65rem/1.05 var(--serif);
}

.formula-card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.65;
}

.results-section {
  padding-bottom: 40px;
}

.result-list {
  display: grid;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.result-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font: 600 clamp(1.4rem, 3vw, 2.1rem) / 1.2 var(--serif);
}

.result-list span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 800;
}

.testimonial-feature {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  width: min(calc(100% - 40px), 1050px);
  margin: 30px auto 40px;
  background: var(--wine);
}

.testimonial-feature figure {
  margin: 0;
  min-height: 500px;
}

.testimonial-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.quote-mark {
  height: 55px;
  color: var(--gold-light);
  font: 700 5.5rem/1 var(--serif);
}

.testimonial-feature blockquote {
  color: white;
  font: 500 clamp(1.8rem, 3.5vw, 2.65rem) / 1.15 var(--serif);
}

.testimonial-feature cite,
.quotes-grid cite {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-top: 20px;
}

.quotes-grid blockquote {
  margin: 0;
  padding: 26px;
  background: var(--cream);
}

.quotes-grid p {
  margin-bottom: 20px;
  color: var(--wine);
  font: 600 1.6rem/1.3 var(--serif);
}

.doctor-section {
  position: relative;
}

.expert-note {
  margin-top: 44px;
  padding: 26px 28px;
  background: var(--blush);
  border: 1px solid rgba(104, 31, 52, 0.11);
}

.expert-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expert-note p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.7;
}

.how-to-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(calc(100% - 40px), 1120px);
  margin: 20px auto 110px;
  color: white;
  background: var(--wine-dark);
}

.how-to-image {
  min-height: 670px;
}

.how-to-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.how-to-copy {
  padding: clamp(42px, 7vw, 80px);
}

.section-number.light {
  color: var(--gold-light);
  border-color: rgba(234, 214, 175, 0.46);
}

.how-to-copy .overline {
  color: var(--gold-light);
}

.how-to-copy h2 {
  color: white;
}

.steps {
  display: grid;
  margin: 35px 0 34px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.steps span {
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.77rem;
  line-height: 1.65;
}

.steps strong {
  color: white;
}

.compatibility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compatibility span {
  padding: 8px 11px;
  color: var(--gold-light);
  border: 1px solid rgba(234, 214, 175, 0.26);
  border-radius: 99px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.offer-section {
  overflow: hidden;
  padding-block: clamp(70px, 10vw, 130px);
  color: white;
  background:
    radial-gradient(circle at 12% 40%, rgba(194, 154, 88, 0.22), transparent 26rem),
    linear-gradient(135deg, #5a172d, #32101c 72%);
}

.offer-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: center;
}

.offer-visual {
  position: relative;
}

.offer-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
}

.discount-seal {
  position: absolute;
  top: -28px;
  right: -24px;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 118px;
  color: var(--wine-dark);
  background: var(--gold-light);
  border: 5px solid var(--wine);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-light);
  place-content: center;
  text-align: center;
  transform: rotate(7deg);
}

.discount-seal strong,
.discount-seal span {
  display: block;
}

.discount-seal strong {
  font: 700 2.2rem/0.85 var(--serif);
}

.discount-seal span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.kicker.gold {
  color: var(--gold-light);
}

.offer-copy h2 {
  max-width: 630px;
  color: white;
}

.offer-lead {
  color: rgba(255, 255, 255, 0.7);
  font: 500 1.08rem/1.6 var(--sans);
}

.guarantee-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  margin: 30px 0;
  padding: 22px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.guarantee-badge {
  display: grid;
  width: 65px;
  height: 65px;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  place-items: center;
  font: 600 2rem/1 var(--serif);
}

.guarantee-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.73rem;
  line-height: 1.6;
}

.guarantee-row strong {
  color: white;
}

.countdown-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.countdown-block > p {
  max-width: 130px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.countdown > span {
  display: grid;
  min-width: 53px;
  text-align: center;
}

.countdown strong {
  color: var(--gold-light);
  font: 600 2.15rem/0.9 var(--serif);
}

.countdown small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.countdown b {
  color: var(--gold);
  font: 500 1.5rem/1 var(--serif);
}

.cta-button {
  display: grid;
  width: 100%;
  min-height: 74px;
  padding: 14px 22px;
  color: var(--wine-dark);
  background: linear-gradient(135deg, #f6e1b8, #cda75f);
  box-shadow: 0 14px 35px rgba(11, 3, 6, 0.25);
  place-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  box-shadow: 0 18px 45px rgba(11, 3, 6, 0.34);
  transform: translateY(-2px);
}

.cta-button span {
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-button small {
  opacity: 0.72;
  font-size: 0.58rem;
  font-weight: 700;
}

.secure-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.57rem;
  text-align: center;
}

.closing {
  padding-block: clamp(75px, 10vw, 130px);
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin-inline: auto;
}

.closing-ornament {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
}

.closing p {
  max-width: 620px;
  margin: 0 auto 5px;
  color: var(--ink-soft);
  font: 500 clamp(1.25rem, 3vw, 1.8rem) / 1.4 var(--serif);
}

.closing > strong,
.closing-inner > strong {
  display: block;
  color: var(--wine);
  font: 600 clamp(1.8rem, 4vw, 2.8rem) / 1 var(--serif);
}

.closing h2 {
  margin-top: 32px;
}

.cta-button.dark {
  max-width: 520px;
  margin: 34px auto 0;
  color: white;
  background: var(--wine);
}

.site-footer {
  padding-block: 44px 110px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px 50px;
  align-items: start;
}

.footer-brand p {
  margin: 0;
}

.footer-inner > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.75;
}

.footer-inner .editorial-disclaimer {
  grid-column: 2;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 18px;
  grid-column: 2;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--wine);
}

.copyright {
  grid-column: 2;
  color: rgba(42, 32, 35, 0.48);
  font-size: 0.58rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-button {
    transition: none;
  }
}

/* Mobile-first foundation: 320px and up */
body {
  font-size: 16px;
  line-height: 1.7;
}

.shell,
.article-section,
.editorial-image,
.testimonial-feature,
.how-to-section {
  width: min(calc(100% - 24px), var(--shell));
}

.sponsor-inner {
  justify-content: center;
}

.sponsor-inner span:last-child,
.edition {
  display: none;
}

.masthead {
  min-height: 72px;
}

.publication-mark {
  width: 40px;
  height: 40px;
}

.publication strong {
  font-size: 1.5rem;
}

.hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  padding-block: 38px 48px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 100%;
  margin: 15px 0 20px;
  font-size: clamp(2.65rem, 12.2vw, 3.25rem);
  line-height: 0.94;
  overflow-wrap: break-word;
}

.standfirst {
  margin-bottom: 22px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.byline {
  padding-top: 18px;
}

.hero-figure {
  width: min(calc(100% - 6px), 540px);
  margin-inline: auto;
}

.hero-figure::before {
  inset: -12px 10px 14px -9px;
}

.hero-figure img {
  aspect-ratio: 1 / 1.04;
}

.hero-figure figcaption,
.editorial-image figcaption {
  padding-inline: 2px;
  font-size: 0.74rem;
}

.article-section {
  padding-block: 50px;
}

.intro {
  padding-top: 30px;
}

.intro > p,
.article-section > p {
  font-size: 1.18rem;
  line-height: 1.58;
}

.dropcap::first-letter {
  margin-top: 7px;
  font-size: 4.5rem;
}

.stat-callout {
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  margin: 36px 0;
  padding: 24px 0;
}

.stat-callout strong {
  font-size: 4.5rem;
}

.stat-callout p {
  font-size: 0.75rem;
}

.editorial-image {
  margin-block: 8px 48px;
}

.editorial-image img {
  border-radius: 2px;
}

.wide-image img,
.product-flatlay img {
  aspect-ratio: 1 / 1;
}

.product-flatlay img {
  object-position: center;
}

.section-number {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

.article-section h2,
.how-to-copy h2,
.offer-copy h2,
.closing h2 {
  margin: 10px 0 20px;
  font-size: clamp(2.45rem, 11.7vw, 3.15rem);
  line-height: 0.98;
}

.lead-text {
  font-size: 1.38rem !important;
}

.analogy-card {
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 32px 0;
  padding: 22px;
}

.sound-lines {
  height: 44px;
  justify-content: flex-start;
}

.reveal-line {
  margin-top: 48px;
}

.brand-reveal {
  padding: 42px 12px;
}

.brand-reveal strong {
  margin-block: 4px;
  font-size: clamp(2.65rem, 13vw, 3.25rem);
  line-height: 0.95;
}

.brand-reveal span {
  max-width: 285px;
  margin-inline: auto;
  font-size: 0.7rem;
  line-height: 1.5;
}

.effect-callout {
  margin: 30px 0 14px;
  padding: 24px 20px;
}

.effect-callout strong {
  font-size: clamp(1.75rem, 8.5vw, 2.2rem);
}

.formula-grid,
.quotes-grid {
  grid-template-columns: 1fr;
}

.formula-grid {
  gap: 10px;
  margin-top: 28px;
}

.formula-card {
  min-height: auto;
  padding: 22px 20px;
}

.formula-icon {
  margin-bottom: 24px;
}

.formula-card h3 {
  min-height: auto;
  font-size: 1.55rem;
}

.result-list {
  margin-top: 28px;
}

.result-list li {
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 18px 0;
  font-size: 1.48rem;
}

.testimonial-feature {
  grid-template-columns: minmax(0, 1fr);
  margin: 10px auto 28px;
}

.testimonial-feature figure {
  min-height: auto;
}

.testimonial-feature img {
  aspect-ratio: 1 / 1.02;
  object-position: center;
}

.testimonial-feature > div {
  padding: 32px 24px 38px;
}

.testimonial-feature blockquote {
  font-size: 1.85rem;
}

.quotes-grid {
  gap: 10px;
  padding-top: 8px;
}

.quotes-grid blockquote {
  padding: 22px;
}

.doctor-section {
  padding-top: 58px;
}

.expert-note {
  margin-top: 32px;
  padding: 22px;
}

.how-to-section {
  grid-template-columns: minmax(0, 1fr);
  margin: 8px auto 58px;
}

.how-to-image {
  min-height: auto;
}

.how-to-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.how-to-copy {
  padding: 36px 22px 40px;
}

.steps {
  margin-block: 28px;
}

.steps li {
  grid-template-columns: 38px minmax(0, 1fr);
}

.compatibility {
  gap: 6px;
}

.offer-section {
  padding-block: 64px 78px;
}

.offer-shell {
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}

.offer-visual,
.offer-copy {
  width: 100%;
  max-width: 590px;
  margin-inline: auto;
}

.offer-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.discount-seal {
  top: -28px;
  right: -5px;
  width: 88px;
  height: 88px;
  border-width: 4px;
}

.discount-seal strong {
  font-size: 1.8rem;
}

.offer-lead {
  font-size: 0.98rem;
}

.guarantee-row {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.guarantee-badge {
  width: 56px;
  height: 56px;
  font-size: 1.7rem;
}

.countdown-block {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.countdown-block > p {
  max-width: none;
}

.countdown {
  width: 100%;
  justify-content: space-between;
}

.countdown > span {
  min-width: 58px;
}

.cta-button {
  min-height: 72px;
  padding-inline: 14px;
}

.cta-button span {
  font-size: 0.75rem;
}

.closing {
  padding-block: 66px 112px;
}

.closing p {
  font-size: 1.25rem;
}

.site-footer {
  padding-block: 38px 104px;
}

.footer-inner {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.footer-inner .editorial-disclaimer,
.footer-links,
.copyright {
  grid-column: 1;
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px max(9px, env(safe-area-inset-bottom));
  color: white;
  background: rgba(55, 13, 27, 0.97);
  box-shadow: 0 -10px 30px rgba(39, 11, 20, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(115%);
  transition: transform 0.3s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta div {
  display: grid;
  min-width: 0;
}

.mobile-cta strong {
  color: var(--gold-light);
  font: 700 1.25rem/1 var(--serif);
}

.mobile-cta span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.49rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-cta a {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  padding: 10px 17px;
  color: var(--wine-dark);
  background: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Progressive enhancement for tablets */
@media (min-width: 681px) {
  body {
    font-size: 17px;
    line-height: 1.78;
  }

  .shell,
  .article-section,
  .editorial-image,
  .testimonial-feature,
  .how-to-section {
    width: min(calc(100% - 40px), var(--shell));
  }

  .sponsor-inner {
    justify-content: space-between;
  }

  .sponsor-inner span:last-child,
  .edition {
    display: inline;
  }

  .masthead {
    min-height: 94px;
  }

  .publication-mark {
    width: 46px;
    height: 46px;
  }

  .publication strong {
    font-size: 1.7rem;
  }

  .hero {
    gap: 50px;
    padding-block: 64px 70px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 8vw, 4.8rem);
  }

  .hero-figure {
    width: min(100%, 700px);
  }

  .hero-figure img {
    aspect-ratio: 1.25 / 1;
  }

  .article-section {
    padding-block: 80px;
  }

  .intro > p,
  .article-section > p {
    font-size: clamp(1.25rem, 2vw, 1.52rem);
    line-height: 1.62;
  }

  .stat-callout {
    grid-template-columns: auto 1fr;
    gap: 25px;
    margin: 50px 0;
    padding: 30px 0;
  }

  .stat-callout strong {
    font-size: clamp(4.4rem, 9vw, 7rem);
  }

  .wide-image img,
  .product-flatlay img {
    aspect-ratio: 2 / 1;
  }

  .analogy-card {
    grid-template-columns: 110px 1fr;
    gap: 24px;
    margin: 42px 0;
    padding: 30px;
  }

  .sound-lines {
    justify-content: center;
  }

  .brand-reveal {
    padding: 54px 25px;
  }

  .brand-reveal strong {
    font-size: clamp(3.4rem, 9vw, 6.6rem);
  }

  .effect-callout {
    padding: 28px;
  }

  .formula-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
  }

  .formula-card {
    min-height: 280px;
    padding: 26px 20px;
  }

  .formula-icon {
    margin-bottom: 48px;
  }

  .formula-card h3 {
    min-height: 64px;
    font-size: 1.65rem;
  }

  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .testimonial-feature img {
    aspect-ratio: 1.4 / 1;
  }

  .how-to-image img {
    aspect-ratio: 1.45 / 1;
  }

  .how-to-copy {
    padding: 54px;
  }

  .offer-section {
    padding-block: 90px 105px;
  }

  .discount-seal {
    top: -28px;
    right: -18px;
    width: 108px;
    height: 108px;
  }

  .countdown-block {
    align-items: center;
    flex-direction: row;
  }

  .countdown {
    width: auto;
    justify-content: flex-start;
  }

  .closing {
    padding-block: 100px;
  }

  .footer-inner {
    grid-template-columns: 230px 1fr;
  }

  .footer-inner .editorial-disclaimer,
  .footer-links,
  .copyright {
    grid-column: 2;
  }

  .mobile-cta {
    display: none;
  }
}

/* Desktop expansion */
@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    gap: clamp(30px, 5vw, 76px);
    align-items: center;
    padding-block: clamp(46px, 8vw, 110px) 70px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.3vw, 5.4rem);
  }

  .hero-figure {
    width: auto;
  }

  .hero-figure img {
    aspect-ratio: 1 / 1.04;
  }

  .testimonial-feature {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .testimonial-feature figure {
    min-height: 500px;
  }

  .testimonial-feature img {
    height: 100%;
    aspect-ratio: auto;
  }

  .how-to-section {
    grid-template-columns: 1fr 1fr;
  }

  .how-to-image {
    min-height: 670px;
  }

  .how-to-image img {
    height: 100%;
    aspect-ratio: auto;
  }

  .offer-shell {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(35px, 7vw, 90px);
  }

  .offer-visual,
  .offer-copy {
    width: auto;
    max-width: none;
  }

  .discount-seal {
    top: -28px;
    right: -24px;
    width: 118px;
    height: 118px;
  }
}

@media (min-width: 980px) {
  body {
    font-size: 18px;
  }
}
