@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/cormorant-garamond-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/cormorant-garamond-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f6f0e6;
  --cream-light: #fffaf3;
  --paper: #fffdf9;
  --beige: #e8d9c5;
  --beige-dark: #d6bd9c;
  --coffee: #4a2f24;
  --espresso: #2b1a15;
  --muted: #6e5a51;
  --gold: #c6a15b;
  --gold-light: #ecd9ab;
  --terracotta: #b85c38;
  --terracotta-dark: #9f482b;
  --green: #536b4b;
  --white: #ffffff;
  --border: rgba(74, 47, 36, 0.13);
  --shadow: 0 22px 60px rgba(74, 47, 36, 0.14);
  --shadow-soft: 0 12px 34px rgba(74, 47, 36, 0.09);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

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

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

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.announcement {
  position: relative;
  z-index: 50;
  background: var(--espresso);
  color: #f7ebd6;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.announcement__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.announcement__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(198, 161, 91, 0.3);
  background: rgba(255, 250, 243, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.05rem);
  font-weight: 700;
  line-height: 1;
}

.brand em {
  font-weight: 600;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: sans-serif;
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--terracotta);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  padding: 13px 24px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:active {
  transform: scale(0.98);
}

.button:focus-visible,
summary:focus-visible,
.cookie-banner button:focus-visible {
  outline: 3px solid rgba(198, 161, 91, 0.55);
  outline-offset: 3px;
}

.button--outline {
  min-height: 42px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #8a6228;
  padding-inline: 22px;
}

.button--outline:hover {
  background: var(--gold);
  color: var(--white);
}

.button--primary {
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(184, 92, 56, 0.24);
  color: var(--white);
}

.button--primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 15px 34px rgba(159, 72, 43, 0.3);
}

.button--wide {
  width: 100%;
}

.button--large {
  min-height: 60px;
  min-width: min(100%, 420px);
  padding-inline: 34px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 54px 0 62px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.95), transparent 43%),
    linear-gradient(180deg, var(--cream-light), var(--cream));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
}

.hero__glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__glow--left {
  top: 80px;
  left: -250px;
  background: rgba(198, 161, 91, 0.2);
}

.hero__glow--right {
  right: -250px;
  bottom: -40px;
  background: rgba(184, 92, 56, 0.12);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #9a742f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
}

.eyebrow__line {
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 940px;
  margin: 17px auto 0;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6.1vw, 5.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-align: center;
}

.hero h1 span {
  color: #9c702c;
}

.hero__lead {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.7;
  text-align: center;
}

.hero__grid {
  display: grid;
  align-items: stretch;
  margin-top: 34px;
  grid-template-columns: minmax(0, 1.75fr) minmax(285px, 0.75fr);
  gap: 20px;
}

.vsl-block,
.hero-offer {
  min-width: 0;
}

.vsl-block__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #9a742f;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.play-dot::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid white;
  content: "";
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.6);
  border-radius: 16px;
  background: var(--espresso);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 0.73rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row b {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #8f692b;
  font-size: 0.65rem;
}

.hero-offer {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.4), var(--paper) 50%),
    var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 24px;
  text-align: center;
}

.offer-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--gold);
  font-size: 1.35rem;
  box-shadow: 0 8px 25px rgba(74, 47, 36, 0.08);
}

.offer-kicker {
  color: #9a742f;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.old-price {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.current-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 1px 0 2px;
  color: var(--terracotta);
  line-height: 1;
}

.current-price > span:first-child {
  margin: 0 7px 8px 0;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.current-price strong {
  font-family: var(--font-display);
  font-size: 4.65rem;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.current-price .price-cents {
  align-self: flex-start;
  margin: 11px 0 0 1px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.payment-note {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.68rem;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.66rem;
}

.hero__benefits {
  display: grid;
  max-width: 920px;
  margin: 32px auto 0;
  grid-template-columns: repeat(3, 1fr);
}

.hero__benefits > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-right: 1px solid var(--beige-dark);
  padding: 4px 20px;
}

.hero__benefits > div:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #98702c;
}

.hero__benefits p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero__benefits strong {
  display: block;
  color: var(--coffee);
}

.section {
  padding: 96px 0;
}

.section--white {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading--left {
  max-width: 680px;
  margin-inline: 0;
  text-align: left;
}

.section-kicker {
  color: #a47830;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.guarantee-copy h2,
.faq-intro h2,
.final-offer h2 {
  margin-top: 10px;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.section-heading > p:last-child,
.faq-intro > p:last-child {
  max-width: 660px;
  margin: 17px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(74, 47, 36, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  height: 310px;
  background: #f9f2e8;
}

.product-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 26, 21, 0.06));
  content: "";
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-card__body {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 16px 20px;
}

.product-count {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.product-card h3 {
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.05;
}

.product-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.boxes-feature {
  display: grid;
  overflow: hidden;
  align-items: center;
  margin-top: 56px;
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 10%, rgba(198, 161, 91, 0.18), transparent 38%),
    var(--cream-light);
  grid-template-columns: 0.9fr 1.1fr;
}

.boxes-feature__copy {
  padding: 50px;
}

.boxes-feature h3,
.steps h3 {
  margin-top: 8px;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.02;
}

.boxes-feature__copy > p:not(.section-kicker) {
  margin-top: 17px;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--coffee);
  font-size: 0.86rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(83, 107, 75, 0.12);
  color: var(--green);
  content: "✓";
  font-size: 0.65rem;
}

.boxes-feature__visual {
  position: relative;
  min-height: 480px;
}

.boxes-feature__visual img {
  position: absolute;
  top: 38px;
  width: 42%;
  border: 8px solid white;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.boxes-feature__visual img:first-child {
  right: 40px;
  z-index: 2;
  transform: rotate(4deg);
}

.boxes-feature__visual img:last-child {
  top: 70px;
  left: 38px;
  transform: rotate(-5deg);
}

.use-section {
  background:
    linear-gradient(rgba(246, 240, 230, 0.94), rgba(246, 240, 230, 0.94)),
    radial-gradient(circle at 0 100%, rgba(198, 161, 91, 0.2), transparent 42%);
}

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

.use-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.82);
  padding: 32px;
}

.use-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  content: "";
}

.use-card__number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(198, 161, 91, 0.5);
  font-family: var(--font-display);
  font-size: 2rem;
}

.use-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #9a702b;
  font-size: 1.35rem;
}

.use-card h3 {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.05;
}

.use-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.steps {
  display: grid;
  align-items: center;
  margin-top: 62px;
  border-radius: 22px;
  background: var(--espresso);
  color: var(--white);
  padding: 44px 48px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
}

.steps__badge {
  display: inline-flex;
  border: 1px solid rgba(236, 217, 171, 0.45);
  border-radius: 999px;
  color: var(--gold-light);
  padding: 5px 11px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps h3 {
  color: #fff8ec;
}

.steps__list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.steps__list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ddcfc6;
  font-size: 0.83rem;
}

.steps__list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.steps__list strong {
  color: white;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comment-card {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--cream-light);
  box-shadow: 0 8px 28px rgba(74, 47, 36, 0.05);
  padding: 28px;
}

.comment-card--raised {
  transform: translateY(-12px);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.17em;
}

.comment-card blockquote {
  min-height: 150px;
  margin-top: 18px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.35;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.comment-author > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--coffee);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.comment-author p {
  display: flex;
  flex-direction: column;
  color: var(--coffee);
  font-size: 0.77rem;
}

.comment-author small {
  color: var(--muted);
  font-size: 0.65rem;
}

.guarantee-section {
  padding: 74px 0;
  background: var(--cream);
}

.guarantee-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(198, 161, 91, 0.48);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(198, 161, 91, 0.15), transparent 38%),
    var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 48px 58px;
  grid-template-columns: auto 1fr;
  gap: 38px;
}

.guarantee-seal {
  display: flex;
  width: 140px;
  height: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px var(--paper),
    inset 0 0 0 8px rgba(198, 161, 91, 0.42);
  color: #9b712b;
}

.guarantee-seal span {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.75;
}

.guarantee-seal small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  font-size: clamp(2.35rem, 4vw, 3.4rem);
}

.guarantee-copy > p:last-child {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
}

.guarantee-signature {
  position: absolute;
  right: 28px;
  bottom: 12px;
  color: rgba(198, 161, 91, 0.25);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  transform: rotate(-7deg);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 76px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4.3vw, 3.7rem);
}

.faq-intro > p:last-child {
  margin-left: 0;
}

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

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 24px 50px 24px 0;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #946b2b;
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 690px;
  margin: -5px 0 23px;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-offer {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(198, 161, 91, 0.18), transparent 35%),
    var(--espresso);
  color: white;
}

.final-offer::before,
.final-offer::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 50%;
  content: "";
}

.final-offer::before {
  top: -150px;
  left: -70px;
}

.final-offer::after {
  right: -80px;
  bottom: -160px;
}

.final-offer__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-offer__ornament {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 17px;
  place-items: center;
  border: 1px solid rgba(198, 161, 91, 0.6);
  border-radius: 50%;
  color: var(--gold);
}

.final-offer h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #fff8ec;
}

.final-offer__inner > p:not(.section-kicker) {
  max-width: 700px;
  margin: 18px auto 0;
  color: #d9cbc1;
}

.final-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 25px 0 20px;
}

.final-price s {
  color: #a9988f;
  font-size: 0.95rem;
}

.final-price strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

.final-offer small {
  display: block;
  margin-top: 14px;
  color: #ae9e94;
  font-size: 0.66rem;
}

.site-footer {
  background: #21130f;
  color: #b9aaa1;
  padding: 36px 0;
}

.footer__inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
}

.brand--footer {
  color: #f3e3cb;
  font-size: 1.5rem;
}

.footer__inner > p {
  max-width: 630px;
  font-size: 0.68rem;
  line-height: 1.6;
}

.footer__inner > small {
  font-size: 0.65rem;
}

.mobile-buy {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: auto;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(560px, calc(100% - 40px));
  max-width: 560px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 14px;
  background: rgba(43, 26, 21, 0.97);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.27);
  color: white;
  padding: 12px 15px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  font-size: 0.76rem;
}

.cookie-banner p {
  margin-top: 3px;
  color: #cbbdb4;
  font-size: 0.62rem;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.cookie-actions button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  padding: 6px 13px;
  font-size: 0.64rem;
  font-weight: 700;
}

.cookie-reject {
  background: transparent;
  color: #d7c8be;
}

.cookie-accept {
  background: var(--gold);
  color: var(--espresso);
}

.noscript-note {
  position: fixed;
  z-index: 120;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 8px;
  background: var(--espresso);
  color: white;
  padding: 12px;
  text-align: center;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card__image {
    height: 390px;
  }

  .faq-layout {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 30px, 620px);
  }

  .announcement {
    font-size: 0.58rem;
  }

  .announcement__inner {
    min-height: 30px;
    gap: 7px;
  }

  .announcement__inner span:nth-of-type(4),
  .announcement__inner span:nth-of-type(5) {
    display: none;
  }

  .header__inner {
    min-height: 64px;
  }

  .brand {
    font-size: 1.45rem;
  }

  .brand__mark {
    width: 31px;
    height: 31px;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding: 38px 0 44px;
  }

  .eyebrow {
    font-size: 0.59rem;
    letter-spacing: 0.12em;
  }

  .eyebrow__line {
    width: 22px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(2.65rem, 13.5vw, 3.7rem);
    line-height: 0.98;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero__grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }

  .vsl-block__label {
    font-size: 0.61rem;
  }

  .video-frame {
    border-radius: 11px;
  }

  .trust-row {
    justify-content: space-between;
    gap: 5px;
    font-size: 0.57rem;
  }

  .trust-row span {
    gap: 4px;
  }

  .trust-row b {
    width: 15px;
    height: 15px;
  }

  .hero-offer {
    padding: 18px 20px 22px;
  }

  .hero__benefits {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__benefits > div {
    justify-content: flex-start;
    border-right: 0;
    padding: 0 4px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .guarantee-copy h2,
  .faq-intro h2,
  .final-offer h2 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .section-heading > p:last-child,
  .faq-intro > p:last-child {
    margin-top: 13px;
    font-size: 0.87rem;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 44% 56%;
  }

  .product-card__image {
    height: 270px;
  }

  .product-card__body {
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .product-card h3 {
    font-size: 1.35rem;
  }

  .boxes-feature {
    margin-top: 35px;
    grid-template-columns: 1fr;
  }

  .boxes-feature__copy {
    padding: 32px 25px 10px;
  }

  .boxes-feature__visual {
    min-height: 370px;
  }

  .boxes-feature__visual img {
    top: 38px;
    width: 43%;
  }

  .boxes-feature__visual img:first-child {
    right: 28px;
  }

  .boxes-feature__visual img:last-child {
    top: 65px;
    left: 28px;
  }

  .use-grid,
  .comments-grid {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 0;
  }

  .steps {
    padding: 32px 25px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .comment-card--raised {
    transform: none;
  }

  .comment-card blockquote {
    min-height: 0;
  }

  .guarantee-section {
    padding: 56px 0;
  }

  .guarantee-card {
    padding: 32px 25px 55px;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .guarantee-seal {
    width: 122px;
    height: 122px;
    margin: auto;
  }

  .guarantee-copy > p:last-child {
    font-size: 0.86rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
    text-align: center;
  }

  .faq-intro > p:last-child {
    margin-inline: auto;
  }

  .faq-list summary {
    font-size: 1.22rem;
  }

  .final-offer {
    padding: 74px 0;
  }

  .final-offer__inner > p:not(.section-kicker) {
    font-size: 0.87rem;
  }

  .footer__inner {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .mobile-buy {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(198, 161, 91, 0.4);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 -10px 30px rgba(43, 26, 21, 0.12);
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  }

  .mobile-buy > div {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .mobile-buy s {
    color: var(--muted);
    font-size: 0.62rem;
  }

  .mobile-buy strong {
    margin-top: 3px;
    color: var(--terracotta);
    font-family: var(--font-display);
    font-size: 1.65rem;
  }

  .mobile-buy .button {
    min-height: 48px;
    padding-inline: 20px;
  }

  .cookie-banner {
    bottom: 82px;
    right: 10px;
    left: 10px;
    gap: 10px;
    padding: 10px 11px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .cookie-banner p {
    max-width: 230px;
  }
}

@media (max-width: 380px) {
  .announcement__inner span:nth-of-type(2),
  .announcement__inner span:nth-of-type(3) {
    display: none;
  }

  .product-card {
    grid-template-columns: 40% 60%;
  }

  .product-card__image {
    height: 240px;
  }

  .mobile-buy .button {
    padding-inline: 15px;
    font-size: 0.72rem;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Single optimized product photo in the boxes section */
.boxes-feature__visual--single {
  min-height: 0;
  height: 540px;
}

.boxes-feature__visual--single img,
.boxes-feature__visual--single img:first-child {
  position: absolute;
  top: 28px;
  right: auto;
  bottom: 28px;
  left: 50%;
  width: auto;
  max-width: calc(100% - 56px);
  height: 484px;
  border: 7px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: contain;
  object-position: center;
  transform: translateX(-50%);
}

@media (max-width: 760px) {
  .boxes-feature__copy {
    padding-bottom: 22px;
  }

  .boxes-feature__visual--single {
    min-height: 0;
    height: min(124vw, 520px);
  }

  .boxes-feature__visual--single img,
  .boxes-feature__visual--single img:first-child {
    top: 14px;
    bottom: 22px;
    max-width: calc(100% - 28px);
    height: calc(100% - 36px);
    border-width: 5px;
    border-radius: 14px;
  }
}
