@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --ink: #24152f;
  --plum: #4f216c;
  --violet: #7445a2;
  --brand-purple: #9b51e0;
  --brand-mint: #8fd6b8;
  --lilac: #d8c4eb;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --coral: #e75c4b;
  --gold: #e4af55;
  --sage: #a7c8af;
  --line: rgba(36, 21, 47, .16);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(36, 21, 47, .16);
  --pastel-rainbow: linear-gradient(105deg, #ffe4ed 0%, #ffeecf 24%, #e4f4d4 46%, #d9f1f3 68%, #e8ddff 86%, #ffdff2 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: var(--sans); line-height: 1.55; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: clamp(72px, 10vw, 140px); }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -60px; padding: 12px 18px; background: white; border-radius: 4px; }
.skip-link:focus { top: 16px; }
.draft-ribbon { padding: 5px 20px; background: #ffedb8; color: #5a4000; text-align: center; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.deadline-bar { min-height: 56px; padding: 7px 20px; display: flex; justify-content: center; align-items: center; background: var(--pastel-rainbow); background-size: 180% 180%; animation: pastel-flow 10s ease infinite alternate; font-size: .82rem; letter-spacing: .02em; text-align: center; }
.deadline-button { width: min(760px, 100%); padding: 8px 18px; border: 1px solid rgba(36,21,47,.18); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.72); box-shadow: 0 4px 14px rgba(79,33,108,.1); font-weight: 600; text-decoration: none; }
.deadline-button strong { color: var(--brand-purple); }
@keyframes pastel-flow { to { background-position: 100% 50%; } }
.site-header { height: 92px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 220px; height: auto; }
.site-header nav { display: flex; gap: 28px; align-items: center; }
.site-header nav a { font-size: .82rem; font-weight: 700; text-decoration: none; }
.nav-cta { padding: 11px 19px; border: 1px solid var(--ink); border-radius: 999px; }
.nav-cta:hover { background: var(--pastel-rainbow); background-size: 180% 180%; animation: pastel-flow 4s ease infinite alternate; }
.hero { min-height: 580px; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 5vw, 80px); align-items: center; padding-block: 24px 54px; }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.eyebrow, .kicker { margin: 0 0 16px; color: var(--brand-purple); font-weight: 800; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: var(--brand-purple); }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 { max-width: 700px; font-size: clamp(3.25rem, 5.4vw, 5.3rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
h2 em { color: var(--violet); font-weight: 400; }
.lede { max-width: 620px; margin: 26px 0 28px; font-size: clamp(1rem, 1.5vw, 1.18rem); color: #5d5264; }
.mode-switch { display: inline-flex; padding: 4px; margin-bottom: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.45); border-radius: 999px; }
.mode-button { min-width: 112px; padding: 9px 16px; border: 0; border-radius: 999px; color: var(--ink); background: transparent; font-size: .8rem; font-weight: 700; cursor: pointer; }
.mode-button.is-active { color: white; background: var(--ink); }
.hero-purchase { display: grid; max-width: 480px; grid-template-columns: auto 1fr; column-gap: 18px; align-items: end; }
.price { display: flex; align-items: baseline; }
.price .currency { font-family: var(--serif); font-size: 2rem; }
.price strong { font-family: var(--serif); font-size: 3.6rem; font-weight: 400; line-height: 1; }
.price > span:last-child { margin-left: 7px; font-size: .85rem; color: #66586e; }
.hero-purchase > p { margin: 0 0 7px; font-size: .8rem; color: #66586e; }
.button { min-height: 54px; display: inline-flex; justify-content: center; align-items: center; padding: 14px 24px; border: 0; border-radius: 5px; font-size: .88rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(36,21,47,.18); }
.button-primary { grid-column: 1 / -1; margin-top: 12px; color: white; background: var(--plum); }
.button-primary:hover { color: white; background: #713094; }
.button-coral { color: white; background: var(--coral); }
.button-ink { color: white; background: var(--ink); }
.button[aria-disabled="true"] { opacity: .55; cursor: not-allowed; box-shadow: none; transform: none; }
.checkout-note { grid-column: 1 / -1; margin-top: 8px !important; text-align: center; font-size: .7rem !important; }
.trust-list { display: flex; gap: 10px 22px; flex-wrap: wrap; margin: 24px 0 0; padding: 0; list-style: none; font-size: .72rem; color: #66586e; }
.trust-list li::before { content: "✓"; margin-right: 6px; color: var(--plum); font-weight: 900; }
.hero-art { position: relative; min-width: 0; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.hero-art img { position: relative; z-index: 2; width: 112%; max-width: 700px; filter: drop-shadow(0 35px 30px rgba(36,21,47,.24)); transform: rotate(-2deg); }
.sun-orbit { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: var(--brand-purple); opacity: .84; }
.sun-orbit::before, .sun-orbit::after { content: ""; position: absolute; inset: -27px; border: 1px solid rgba(36,21,47,.2); border-radius: 50%; }
.sun-orbit::after { inset: -58px; border-style: dashed; }
.hero-seal { position: absolute; z-index: 3; right: 0; top: 56px; width: 96px; height: 96px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--ink); background: var(--brand-mint); box-shadow: 0 10px 30px rgba(36,21,47,.2); transform: rotate(8deg); font-size: .55rem; font-weight: 800; letter-spacing: .14em; }
.hero-seal strong { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.art-caption { position: absolute; z-index: 3; bottom: -12px; right: 4px; width: 245px; padding: 11px 14px; border-left: 3px solid var(--coral); border-radius: 3px; color: var(--ink); background: rgba(255,253,248,.96); box-shadow: 0 8px 22px rgba(36,21,47,.12); font-family: var(--serif); font-size: 1.02rem; font-style: italic; line-height: 1.3; }
.proof-strip { background: var(--paper); border-block: 1px solid var(--line); }
.proof-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: 26px; }
.proof-item { display: flex; flex-direction: column; gap: 4px; text-align: center; padding-inline: 12px; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-item strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--plum); line-height: 1; }
.proof-item span { font-size: .72rem; letter-spacing: .04em; color: #6b5e71; }

.countdown-section { color: var(--ink); background: #f1e9f5; }
.countdown-inner { min-height: 210px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center; }
.countdown-section h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.countdown-section p:last-child { max-width: 650px; margin-bottom: 0; color: #66586e; }
.countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.countdown div { min-width: 74px; padding: 18px 8px; text-align: center; border: 1px solid rgba(79,33,108,.18); border-radius: 8px; background: rgba(255,255,255,.62); box-shadow: 0 8px 25px rgba(79,33,108,.06); }
.countdown div:last-child { border-color: rgba(79,33,108,.18); }
.countdown strong { display: block; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; line-height: 1; }
.countdown span { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: #66586e; }
.section-heading { max-width: 760px; margin: 0 auto clamp(44px, 7vw, 74px); text-align: center; }
.section-heading > p:last-child { max-width: 620px; margin: 24px auto 0; color: #6b5e71; }
.section-heading.align-left { margin-left: 0; text-align: left; }
.offer-grid { display: grid; grid-template-columns: 1fr 390px; gap: clamp(30px, 6vw, 80px); align-items: start; }
.bonus-list { border-top: 1px solid var(--line); }
.bonus-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.bonus-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--plum); background: var(--lilac); font-family: var(--serif); }
.bonus-item h3 { margin: 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.bonus-item p { margin: 3px 0 0; font-size: .72rem; color: #6b5e71; }
.bonus-value { align-self: start; display: grid; gap: 2px; color: var(--coral); font-size: .72rem; font-weight: 800; text-align: right; text-transform: uppercase; }
.bonus-value s { color: #746979; font-weight: 600; }
.bonus-value strong { color: var(--coral); letter-spacing: .08em; }
.offer-card { position: sticky; top: 24px; padding: 36px; color: var(--ink); background: white; border: 4px solid transparent; border-radius: 10px; box-shadow: 0 0 0 4px #f1d8ec, 0 18px 55px rgba(79,33,108,.2); isolation: isolate; }
.offer-card::before { content: ""; position: absolute; z-index: -1; inset: -8px; border-radius: 13px; background: var(--pastel-rainbow); background-size: 180% 180%; animation: pastel-flow 8s ease infinite alternate; }
.offer-label { margin-bottom: 4px; color: var(--plum); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.offer-total { margin: 0; font-family: var(--serif); font-size: 1.55rem; }
.offer-total s { color: var(--coral); }
.offer-today { margin: 20px 0 -2px; color: #66586e; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.offer-price { display: flex; align-items: baseline; margin-top: 10px; }
.offer-price > span { font-family: var(--serif); font-size: 2rem; }
.offer-price strong { font-family: var(--serif); font-size: 5rem; font-weight: 400; line-height: .95; }
.offer-price small { margin-left: 8px; color: #cdbbd5; }
.offer-card > p[data-monthly] { margin: 5px 0 24px; color: #66586e; font-size: .78rem; }
.offer-card .button { width: 100%; }
.offer-card ul { margin: 22px 0 0; padding: 0; list-style: none; color: #66586e; font-size: .72rem; }
.offer-card li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.offer-card li::before { content: "✓"; margin-right: 7px; color: var(--plum); }

/* Kevin's original subscription value-stack structure, refined for this offer. */
.section-offer { width: min(900px, 100%); margin: 140px auto 0; font-family: var(--sans); }
.purple-shadow { overflow: visible; border: 3px solid var(--brand-purple); border-radius: 10px; background: white; box-shadow: 5px 5px 10px rgba(155,81,224,.34); }
.head-wrap { padding: 20px 45px 24px; color: white; background: var(--brand-purple); text-align: center; }
.head-wrap .image-showcase { width: min(720px, 86%); margin: -18% auto 12px; filter: drop-shadow(0 22px 20px rgba(36,21,47,.22)); }
.head-text { max-width: 700px; margin: 0 auto; font-size: clamp(1.15rem, 2.4vw, 1.8rem); font-weight: 800; line-height: 1.12; }
.bottom-section { position: relative; padding: 30px 0 34px; }
.item-offer-section { padding: 0 50px; }
.item-offer { display: flex; align-items: center; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.item-offer-left { width: 72%; }
.item-offer-left p, .item-offer-right p { margin: 0; }
.item-offer-left b { text-transform: uppercase; }
.item-note { display: block; margin: 3px 0 0 25px; color: #6b5e71; font-size: .72rem; line-height: 1.25; }
.item-offer-right { width: 28%; margin-left: auto; text-align: right; }
.item-offer .sub-value p { color: var(--coral); font-weight: 800; }
.item-offer .sub-value s { display: block; color: #75687b; font-size: .72rem; font-weight: 600; }
.item-offer .sub-value strong { letter-spacing: .06em; }
.bottom-text { margin-top: 28px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.total-text { margin-bottom: 18px; color: var(--coral); font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 800; line-height: 1; }
.sub-text { font-size: clamp(1rem, 2.2vw, 1.5rem); font-weight: 800; line-height: 1.25; }
.free-text { color: var(--brand-purple); font-size: clamp(4.2rem, 11vw, 8rem); font-weight: 800; line-height: .98; }
.free-text small { font-size: .28em; }
.purple-text { color: var(--brand-purple); }
.cust-btn-shade-wrap { margin-top: 24px; text-align: center; }
.value-stack-cta { position: relative; z-index: 0; min-width: min(360px, calc(100% - 30px)); color: white; background: var(--brand-purple); box-shadow: 0 9px 0 #643184, 0 15px 30px rgba(79,33,108,.22); font-size: 1.02rem; }
.value-stack-cta::before { content: ""; position: absolute; z-index: -1; inset: -7px; border-radius: 10px; background: linear-gradient(90deg,#ff8fb7,#ffd36a,#83dfba,#7cd9ed,#a991ff,#ff8fb7); background-size: 300% 100%; filter: blur(7px); opacity: .55; animation: cta-rainbow 5s linear infinite; transition: opacity .2s ease, filter .2s ease; }
.value-stack-cta:hover { color: white; background: #7e3eaa; box-shadow: 0 6px 0 #643184, 0 13px 25px rgba(79,33,108,.2); }
.value-stack-cta:hover::before { opacity: 1; filter: blur(10px); }
@keyframes cta-rainbow { to { background-position: 300% 0; } }
#offer-stack { scroll-margin-top: 12px; }
.inside-section { background: var(--paper); }
.content-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.content-card { min-height: 310px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; background: var(--paper); }
.content-card:nth-child(2) { background: #f2e7f4; }
.content-card:nth-child(3) { background: #e3eddf; }
.content-card .number { margin-bottom: auto; font-family: var(--serif); font-size: 3.4rem; color: rgba(36,21,47,.14); }
.content-card .label { color: var(--coral); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.content-card h3 { margin: 10px 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.08; }
.content-card p { margin: 0; color: #66586e; font-size: .88rem; }
.covers-section { overflow: hidden; color: white; background: var(--ink); }
.covers-section .kicker { color: white; }
.covers-heading { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: end; margin-bottom: 55px; }
.covers-heading > p { margin: 0; color: #cdbbd5; font-size: .9rem; }
.cover-rail { display: flex; gap: clamp(16px, 2.5vw, 36px); width: max-content; padding: 0 max(20px, calc((100vw - 1160px)/2)) 30px; animation: drift 28s ease-in-out infinite alternate; }
.cover-card { width: clamp(180px, 21vw, 290px); flex: 0 0 auto; }
.cover-card img { width: 100%; aspect-ratio: 800 / 1039; object-fit: cover; border-radius: 2px; box-shadow: 0 20px 45px rgba(0,0,0,.36); }
.cover-card:nth-child(even) { transform: translateY(24px); }
@keyframes drift { to { transform: translateX(min(-12vw, -170px)); } }
.gift-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.gift-art { position: relative; min-height: 440px; display: grid; place-items: center; }
.gift-box { position: relative; z-index: 2; width: 210px; height: 240px; display: grid; place-items: center; color: white; background: var(--plum); box-shadow: var(--shadow); font-family: var(--serif); font-size: 7rem; }
.gift-box::before { content: ""; position: absolute; inset: 0 42%; background: var(--gold); }
.gift-box::after { content: ""; position: absolute; inset: 42% 0; background: var(--gold); }
.gift-box { color: transparent; }
.gift-loop { position: absolute; z-index: 3; width: 95px; height: 70px; top: 55px; border: 19px solid var(--gold); border-radius: 80% 15%; }
.loop-one { left: calc(50% - 90px); transform: rotate(15deg); }
.loop-two { right: calc(50% - 90px); transform: scaleX(-1) rotate(15deg); }
.gift-art::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: var(--lilac); }
.gift-copy h2 { max-width: 620px; }
.gift-copy > p:not(.kicker,.gift-status) { max-width: 590px; margin: 24px 0 28px; color: #66586e; }
.gift-status { min-height: 1.3em; font-size: .75rem; color: #8b3d31; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial { padding: 28px; border: 1px solid var(--line); background: white; }
.guarantee-section { display: grid; grid-template-columns: 200px 1fr; gap: 60px; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guarantee-mark { width: 190px; height: 190px; display: grid; place-items: center; }
.guarantee-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.guarantee-section h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.guarantee-section p:last-child { max-width: 680px; color: #66586e; }
.faq-section { display: grid; grid-template-columns: 340px 1fr; gap: clamp(50px, 9vw, 120px); }
.faq-heading { position: sticky; top: 40px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: var(--serif); font-size: 1.25rem; cursor: pointer; }
.faq-item button span:last-child { color: var(--coral); font-family: var(--sans); }
.faq-answer { padding: 0 40px 24px 0; color: #66586e; font-size: .88rem; }
.final-section { padding: clamp(90px, 13vw, 170px) 0; color: white; background: var(--plum); text-align: center; overflow: hidden; }
.final-section .kicker { color: white; }
.final-inner { position: relative; }
.final-inner::before, .final-inner::after { content: "✦"; position: absolute; color: rgba(255,255,255,.12); font-size: 13rem; }
.final-inner::before { left: -40px; top: -80px; }
.final-inner::after { right: -20px; bottom: -100px; }
.final-section h2 { font-size: clamp(3rem, 7vw, 6.7rem); }
.final-section > .wrap > p:not(.kicker) { margin: 32px 0 22px; color: #d8cbe0; }
.final-price { color: white; font-family: var(--serif); font-size: 2.5rem; }
.final-section .button { min-width: 300px; }
.final-section small { display: block; margin-top: 14px; color: #cdbbd5; }
.site-footer { padding: 26px 0; color: var(--ink); background: var(--pastel-rainbow); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; font-size: .75rem; }
.footer-inner img { width: 155px; filter: none; }
.footer-inner p { margin: 0; text-align: center; }
.footer-inner a { justify-self: end; font-weight: 700; }
.mobile-cta { position: fixed; z-index: 20; inset: auto 0 0; display: none; min-height: 74px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); justify-content: space-between; align-items: center; color: white; background: rgba(36,21,47,.97); box-shadow: 0 -10px 30px rgba(36,21,47,.18); opacity: 0; transform: translateY(110%); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.mobile-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-cta div { display: flex; flex-direction: column; gap: 0; min-width: 0; }
.mobile-cta strong { font-family: var(--serif); font-size: 1rem; line-height: 1.15; }
.mobile-cta span { color: #d8cbe0; font-size: .66rem; }
.mobile-cta .button { min-height: 46px; padding-inline: 20px; }
.noscript { position: fixed; z-index: 50; inset: auto 0 0; padding: 14px; background: white; text-align: center; }

@media (max-width: 900px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 24px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero .lede { max-width: 100%; margin-inline: auto; overflow-wrap: break-word; }
  .lede, .hero-purchase { margin-inline: auto; }
  .mode-switch { margin-inline: auto; }
  .trust-list { justify-content: center; }
  .hero-art { min-height: 410px; }
  .hero-art img { width: min(700px, 100%); }
  .sun-orbit { width: 350px; height: 350px; }
  .countdown-inner { grid-template-columns: 1fr; gap: 26px; padding-block: 48px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { position: relative; top: auto; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card { min-height: 240px; }
  .covers-heading { grid-template-columns: 1fr; gap: 24px; }
  .gift-section { grid-template-columns: 1fr; }
  .gift-art { min-height: 360px; }
  .proof-inner { grid-template-columns: 1fr; gap: 0; padding-block: 8px; }
  .proof-item { flex-direction: row; justify-content: center; align-items: baseline; gap: 8px; padding-block: 14px; text-align: center; flex-wrap: wrap; }
  .proof-item + .proof-item { border-left: 0; border-top: 1px solid var(--line); }
  .proof-item strong { font-size: 1.05rem; }
  .guarantee-section { grid-template-columns: 150px 1fr; gap: 35px; }
  .guarantee-mark { width: 145px; height: 145px; font-size: 3.6rem; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

@media (max-width: 600px) {
  .wrap { width: min(calc(100% - 28px), 1160px); }
  .deadline-wide { display: none; }
  .deadline-bar { padding: 6px 8px; font-size: .68rem; }
  .deadline-button { padding: 7px 10px; }
  .site-header { height: 76px; }
  .brand img { width: 158px; }
  .nav-cta { padding: 8px 14px; }
  .hero { min-height: auto; padding-block: 28px 54px; gap: 25px; }
  h1 { font-size: clamp(2.5rem, 10.8vw, 3.3rem); hyphens: auto; }
  .hero-purchase { grid-template-columns: 1fr; justify-items: center; }
  .hero-purchase > p { margin-top: 3px; }
  .button-primary { width: 100%; }
  .hero-art { min-height: 300px; }
  .sun-orbit { width: 240px; height: 240px; }
  .hero-seal { right: 0; top: 10px; width: 76px; height: 76px; }
  .art-caption { display: none; }
  .countdown { width: 100%; gap: 5px; }
  .countdown div { min-width: 0; padding: 15px 3px; }
  .countdown strong { font-size: 1.65rem; }
  .bonus-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .bonus-value { grid-column: 2; text-align: left; }
  .offer-card { padding: 30px 24px; }
  .offer-price strong { font-size: 4.3rem; }
  .cover-card { width: 180px; }
  .cover-rail { animation-duration: 22s; }
  .gift-art { min-height: 300px; }
  .gift-art::before { width: 280px; height: 280px; }
  .gift-box { width: 160px; height: 185px; }
  .gift-loop { top: 35px; width: 75px; height: 55px; border-width: 15px; }
  .loop-one { left: calc(50% - 72px); }
  .loop-two { right: calc(50% - 72px); }
  .guarantee-section { grid-template-columns: 1fr; text-align: center; }
  .guarantee-mark { margin-inline: auto; }
  .guarantee-mark { width: 120px; height: 120px; font-size: 3rem; }
  .footer-inner { display: flex; flex-direction: column; gap: 8px; text-align: center; }
  .footer-inner a { align-self: center; }
  .mobile-cta { display: flex; }
  .site-footer { padding: 24px 0 100px; }

  .head-wrap { padding: 12px 10px 18px; }
  .section-offer { margin-top: 90px; }
  #offer-stack { scroll-margin-top: 10px; }
  .head-wrap .image-showcase { width: 100%; margin-top: -22%; }
  .head-text { width: 90%; font-size: 1rem; }
  .bottom-section { padding-top: 22px; }
  .item-offer-section { padding: 0 16px; }
  .item-offer { flex-direction: column; gap: 5px; padding: 15px 0; text-align: center; }
  .item-offer-left, .item-offer-right { width: 100%; text-align: center; }
  .item-note { margin-left: 0; }
  .item-offer .sub-value s { display: inline; margin-right: 5px; }
  .total-text { font-size: 1.65rem; }
  .free-text { font-size: 4.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cover-rail { transform: none !important; overflow-x: auto; width: 100%; }
}

/* Inline gift checkout: recipient email here, shipping address in Woo checkout. */
.gift-checkout-form { max-width: 660px; margin-top: 28px; }
.gift-checkout-form > label { display: block; margin-bottom: 8px; font-size: .76rem; font-weight: 800; letter-spacing: .04em; }
.gift-form-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.gift-form-row input[type="email"] { min-width: 0; min-height: 54px; padding: 12px 16px; border: 1px solid rgba(36,21,47,.26); border-radius: 5px; color: var(--ink); background: white; font: inherit; }
.gift-form-row input[type="email"]:focus { border-color: var(--plum); outline: 3px solid rgba(116,69,162,.2); outline-offset: 1px; }
.gift-form-row .button:disabled { opacity: .68; cursor: wait; transform: none; }
.gift-form-note { margin: 10px 0 0 !important; color: #66586e; font-size: .72rem; }
.gift-form-status { min-height: 1.35em; margin: 8px 0 0 !important; color: #8b3d31; font-size: .75rem; font-weight: 600; }
.gift-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
@media (max-width: 600px) {
  .gift-form-row { grid-template-columns: 1fr; }
  .gift-form-row .button { width: 100%; }
}
