:root {
  --ink: #183127;
  --plum: #712c80;
  --plum-dark: #153d30;
  --violet: #712c80;
  --lime: #9cc52c;
  --lime-soft: #e7f3ad;
  --paper: #f4f8f1;
  --white: #ffffff;
  --muted: #607067;
  --line: rgba(23, 73, 55, .14);
  --shadow: 0 24px 70px rgba(20, 65, 49, .14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; font-size: 16px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: 110px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; background: var(--white); padding: 10px 14px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.topline { background: var(--plum-dark); color: rgba(255,255,255,.76); font-size: .82rem; }
.topline-inner { min-height: 35px; display: flex; align-items: center; gap: 16px; }
.topline-inner a { margin-left: auto; color: var(--white); }
.topline-separator { width: 3px; height: 3px; border-radius: 99px; background: var(--lime); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,245,250,.91); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; min-width: 152px; }
.brand-logo { width: 168px; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-left: auto; }
.main-nav a { font-weight: 600; font-size: .93rem; position: relative; }
.main-nav a::after { content: ""; position: absolute; height: 2px; inset: auto 50% -7px; background: var(--lime); transition: inset .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { inset-inline: 0; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.nav-cta { color: var(--white); background: var(--plum-dark); font-size: .9rem; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 8px 14px; }

.hero { min-height: 700px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; padding-block: 74px 82px; }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; color: var(--violet); font: 700 .77rem/1.2 "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .15em; }
.eyebrow span { width: 28px; height: 2px; background: var(--lime); }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(3.1rem, 5.5vw, 5.8rem); line-height: .98; font-weight: 800; }
h1 em { color: var(--violet); font-style: normal; }
.hero-lead { max-width: 640px; margin: 28px 0 30px; color: var(--muted); font-size: 1.13rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-catalog-link { display: inline-block; margin-top: 20px; color: #39734e; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.button-primary { color: #173125; background: var(--lime); box-shadow: 0 14px 30px rgba(113,150,25,.25); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.hero-points { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 19px; color: var(--muted); font-size: .88rem; }
.hero-points li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(184,220,56,.18); }
.hero-visual { position: relative; min-height: 560px; overflow: hidden; border-radius: 42px 42px 140px 42px; background: var(--plum-dark); box-shadow: var(--shadow); isolation: isolate; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(255,255,255,.12)); }
.product-float { position: absolute; left: 28px; bottom: 82px; width: min(350px, calc(100% - 56px)); display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 16px; padding: 16px; border-radius: 20px; color: var(--ink); background: rgba(255,255,255,.93); backdrop-filter: blur(14px); box-shadow: 0 12px 34px rgba(25,8,36,.2); }
.product-float img { width: 90px; height: 90px; object-fit: contain; background: #f1edf5; border-radius: 14px; }
.product-float div { display: flex; flex-direction: column; }
.product-float strong { font: 800 1.15rem "Manrope", sans-serif; }
.product-float div > span:last-child { color: var(--muted); font-size: .8rem; }
.micro-label { color: var(--violet); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.hero-note { position: absolute; right: 26px; bottom: 20px; max-width: 340px; display: flex; align-items: center; gap: 13px; padding: 10px 14px; border-radius: 14px; color: var(--plum-dark); background: rgba(255,255,255,.93); font-size: .875rem; line-height: 1.45; }
.note-number { display: grid; place-items: center; flex: 0 0 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--plum-dark); font-weight: 700; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div { min-height: 118px; display: flex; justify-content: center; flex-direction: column; padding: 22px 28px; border-right: 1px solid var(--line); }
.trust-grid div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong { font: 800 1rem "Manrope", sans-serif; color: #39734e; }
.trust-grid span { color: var(--muted); font-size: .83rem; }

.section-heading h2 { margin: 0; max-width: 800px; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.08; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 46px; }
.split-heading > p { max-width: 420px; margin: 0 0 8px; color: var(--muted); }
.needs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.need-card { position: relative; min-height: 230px; overflow: hidden; border: 0; border-radius: var(--radius); padding: 26px; text-align: left; color: var(--ink); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.need-card::before { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; right: -70px; top: -90px; box-shadow: 0 0 0 36px rgba(255,255,255,.12); }
.need-card:hover, .need-card:focus-visible { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(45,17,62,.12); }
.need-index { display: block; margin-bottom: 40px; font-weight: 700; font-size: .76rem; opacity: .62; }
.need-title { display: block; font: 800 1.34rem "Manrope", sans-serif; letter-spacing: -.03em; }
.need-copy { display: block; max-width: 240px; margin-top: 7px; font-size: .86rem; opacity: .72; }
.need-arrow { position: absolute; right: 24px; bottom: 23px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.48); font-size: 1.2rem; }
.tone-indigo { background: #dcd9f8; }
.tone-violet { background: #ead9ee; }
.tone-coral { background: #f6d8cf; }
.tone-teal { background: #cfe9e5; }
.tone-lime { background: #e5efb7; }
.tone-blue { background: #d5e8f4; }

.products { background: var(--plum-dark); color: var(--white); }
.products-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
.eyebrow.light { color: var(--lime-soft); }
.filter-row { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
.filter-row .filter { min-height: 44px; font-size: .875rem; }
.filter { border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 8px 13px; color: rgba(255,255,255,.78); background: transparent; cursor: pointer; font-weight: 600; font-size: .82rem; }
.filter.active, .filter:hover { color: var(--plum-dark); background: var(--lime); border-color: var(--lime); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product-card { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.07); transition: transform .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(156,197,44,.7); }
.product-card[hidden] { display: none; }
.product-art { position: relative; height: 205px; display: grid; place-items: center; overflow: hidden; color: var(--plum-dark); }
.product-art::before, .product-art::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); }
.product-art::before { width: 170px; height: 170px; }
.product-art::after { width: 120px; height: 120px; }
.product-art img { position: relative; z-index: 2; width: 78%; height: 86%; object-fit: contain; filter: drop-shadow(0 18px 15px rgba(44,13,60,.18)); }
.product-badge { position: absolute; z-index: 3; top: 14px; left: 14px; padding: 6px 10px; border-radius: 999px; color: var(--plum-dark); background: rgba(255,255,255,.82); backdrop-filter: blur(7px); font-weight: 700; font-size: .69rem; }
.monogram { position: relative; z-index: 2; font: 800 3.4rem "Manrope", sans-serif; letter-spacing: -.12em; }
.art-night { background: #e5e1f8; }
.art-meno { background: #f0d8e6; }
.art-energy { background: #f2d7bd; }
.art-digest { background: #cfe8e0; }
.art-motion { background: #e4edb6; }
.art-slim { background: #d4e7f2; }
.art-mag { background: #dcd6ec; }
.art-omega { background: #c9e5ed; }
.product-body { padding: 22px; }
.product-category { color: var(--lime-soft); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.product-body h3 { margin: 7px 0 7px; font-size: 1.25rem; }
.product-body p { min-height: 74px; margin: 0; color: rgba(255,255,255,.64); font-size: .87rem; line-height: 1.55; }
.product-meta { margin: 18px 0 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.product-meta strong { font: 800 1.05rem "Manrope", sans-serif; }
.product-meta span { color: #c4d6ca; font-size: .875rem; text-align: right; }
.promo-line { display: inline-flex; margin: -4px 0 14px; padding: 5px 9px; border-radius: 999px; color: #20351f; background: var(--lime); font-weight: 800; font-size: .68rem; }
.product-body > a { color: var(--lime); font-weight: 700; font-size: .88rem; }
.shop-link { display: flex; justify-content: center; margin-top: 38px; }
.button-light { color: var(--plum-dark); background: var(--white); }

.expertise-card { display: grid; grid-template-columns: .78fr 1.22fr; overflow: hidden; min-height: 590px; border-radius: 38px; background: var(--white); box-shadow: var(--shadow); }
.expertise-visual { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 48px; color: var(--white); background: radial-gradient(circle at 80% 18%, rgba(156,197,44,.38), transparent 29%), linear-gradient(155deg, #34724f, var(--plum-dark)); }
.expertise-portrait { position: relative; z-index: 1; display: block; width: 100%; max-width: 320px; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 25%; margin: 0 auto 28px; border-radius: 160px 160px 24px 24px; }
.expertise-visual .signature { margin-top: 0; padding-bottom: 28px; }
.expertise-visual::after { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 180px 180px 26px 26px; }
.signature { position: relative; z-index: 1; margin-top: auto; padding-bottom: 90px; font: 700 clamp(2rem,4vw,3.8rem)/1.04 "Manrope", sans-serif; letter-spacing: -.05em; }
.years { position: relative; z-index: 1; display: flex; align-items: end; gap: 10px; color: var(--lime); }
.years strong { font: 800 4.2rem/.85 "Manrope", sans-serif; }
.years span { max-width: 80px; color: rgba(255,255,255,.7); font-size: .77rem; line-height: 1.25; }
.expertise-copy { padding: 70px clamp(34px,6vw,86px); align-self: center; }
.expertise-copy h2 { margin: 0; font-size: clamp(2.1rem,3.7vw,3.6rem); line-height: 1.11; }
.expertise-copy > p:not(.eyebrow) { margin: 25px 0 30px; color: var(--muted); font-size: 1.02rem; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 30px; }
.principles div { padding: 16px 12px; border-top: 2px solid var(--lime); background: var(--paper); }
.principles strong, .principles span { display: block; }
.principles strong { color: var(--violet); font-size: .76rem; }
.principles span { margin-top: 4px; font-weight: 700; font-size: .84rem; line-height: 1.3; }
.text-link { font-weight: 700; color: var(--violet); }

.journal { padding-top: 40px; }
.article-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }
.article-card { position: relative; isolation: isolate; min-height: 320px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 24px; padding: 28px; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(45,17,62,.09); }
.article-card::before { content: ""; position: absolute; z-index: -2; inset: 0; background: var(--article-image) center/cover no-repeat; opacity: .2; transition: transform .35s ease, opacity .35s ease; }
.article-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(244,248,241,.18), rgba(244,248,241,.98) 70%); }
.article-card:hover::before { transform: scale(1.04); opacity: .28; }
.article-main { color: var(--white); background: var(--plum-dark); border: 0; }
.article-main::before { opacity: .45; }
.article-main::after { background: linear-gradient(180deg, rgba(13,49,37,.1), rgba(13,49,37,.96) 74%); }
.article-photo { background: #edf4ea; }
.article-topic { margin-bottom: auto; align-self: flex-start; padding: 6px 10px; border-radius: 999px; color: var(--violet); background: var(--lime-soft); font-weight: 700; font-size: .71rem; text-transform: uppercase; letter-spacing: .08em; }
.article-card h3 { margin: 42px 0 8px; font-size: clamp(1.4rem,2.3vw,2.25rem); line-height: 1.14; }
.article-card p { margin: 0 0 16px; color: rgba(255,255,255,.68); }
.article-link { color: var(--violet); font-weight: 700; font-size: .86rem; }
.article-main .article-link { color: var(--lime); }

.cta-section { padding-block: 30px 110px; }
.cta-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-radius: 30px; padding: 50px; color: var(--white); background: #39734e; }
.cta-card::after { content: "NFB"; position: absolute; right: 20%; bottom: -50px; color: rgba(255,255,255,.05); font: 800 11rem "Manrope", sans-serif; }
.cta-card > * { position: relative; z-index: 1; }
.cta-kicker { color: var(--lime-soft); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .72rem; }
.cta-card h2 { max-width: 720px; margin: 10px 0 0; font-size: clamp(1.9rem,3.2vw,3.25rem); line-height: 1.1; }
.cta-actions { display: flex; flex-direction: column; min-width: 210px; gap: 10px; }
.button-lime { color: var(--plum-dark); background: var(--lime); }
.button-outline { border: 1px solid rgba(255,255,255,.4); color: var(--white); }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.72); background: #102d24; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.brand-footer { width: max-content; padding: 8px 14px; border-radius: 12px; background: var(--white); }
.brand-footer .brand-logo { width: 150px; height: 48px; }
.footer-grid span { font-size: .86rem; }
.footer-grid p { max-width: 300px; font-size: .88rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { margin-bottom: 8px; color: var(--white); font: 700 .9rem "Manrope", sans-serif; }
.footer-grid a { font-size: .86rem; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.social-menu, .catalog-menu { position: relative; font-size: .93rem; font-weight: 600; }
.social-menu summary, .catalog-menu summary { cursor: pointer; white-space: nowrap; }
.social-dropdown { position: absolute; top: calc(100% + 18px); right: 0; display: grid; gap: 8px; min-width: 180px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.social-dropdown a { padding: 4px; }
.catalog-dropdown { position: absolute; top: calc(100% + 18px); left: 0; width: 350px; max-height: calc(100dvh - 125px); overflow-y: auto; display: grid; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.main-nav .catalog-dropdown a { padding: 7px 10px; border-radius: 8px; font-size: .875rem; }
.catalog-dropdown a:hover, .catalog-dropdown a:focus-visible { background: var(--paper); }
.catalog-dropdown .catalog-all-link { color: #39734e; background: var(--lime-soft); }
.cart-link { display: flex; align-items: center; gap: 7px; white-space: nowrap; color: var(--plum-dark); font-size: .875rem; font-weight: 800; }
.cart-link span { display: grid; place-items: center; min-width: 26px; min-height: 26px; padding: 2px 6px; border-radius: 99px; background: var(--lime); }
.footer-social { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .875rem; }
.footer-social nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-social a:hover { color: var(--lime); }
.product-type-label { display: block; margin: -4px 0 12px; color: #d8ebb0; font-size: .875rem; }
.product-dose { display: block; color: #c4d6ca; font-size: .875rem; }
.sale-price { color: #39734e; }
del { font-size: .875rem; font-weight: 500; color: var(--muted); }
.product-meta .sale-price { color: var(--lime); }
.product-meta del { color: #c4d6ca; }
.monthly-feature-link { grid-column: 1 / -1; display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 16px; }
.feature-price .sale-price { font-weight: 800; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
button:disabled { opacity: .55; cursor: not-allowed; }
@media (min-width: 1021px) and (max-width: 1210px) { .nav-cta { display: none; } }

@media (max-width: 1020px) {
  .main-nav { position: absolute; top: 86px; inset-inline: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; border-radius: 18px; padding: 10px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .social-menu summary, .catalog-menu summary { padding: 12px; }
  .social-dropdown { position: static; box-shadow: none; border: 0; background: #f4f8f1; }
  .catalog-dropdown { position: static; width: auto; max-height: none; overflow: visible; padding: 8px; box-shadow: none; border: 0; background: #f4f8f1; }
  .main-nav.open { max-height: calc(100dvh - 120px); overflow-y: auto; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .needs-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .products-heading { align-items: flex-start; flex-direction: column; }
  .filter-row { justify-content: flex-start; }
  .expertise-card { grid-template-columns: 1fr; }
  .expertise-visual { min-height: 430px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-main { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 24px, 1180px); }
  .section { padding-block: 76px; }
  .topline-inner { justify-content: center; text-align: center; }
  .topline-inner span:nth-child(2), .topline-inner span:nth-child(3), .topline-inner a { display: none; }
  .nav-wrap { min-height: 74px; }
  .nav-wrap { gap: 12px; }
  .nav-wrap { flex-wrap: wrap; padding-block: 10px; }
  .brand { min-width: 0; }
  .brand-logo { width: 132px; height: 48px; }
  .compact-nav .nav-cta { display: none; }
  .main-nav { top: 100%; }
  .hero { min-height: auto; gap: 36px; padding-block: 55px; }
  h1 { font-size: clamp(2.65rem,14vw,4.1rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 480px; border-radius: 28px 28px 90px 28px; }
  .product-float { left: 16px; bottom: 92px; width: calc(100% - 32px); grid-template-columns: 74px 1fr; }
  .product-float img { width: 74px; height: 74px; }
  .monthly-feature-link { grid-template-columns: 74px 1fr; }
  .hero-note { left: 16px; right: 16px; bottom: 16px; max-width: none; font-size: .875rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div, .trust-grid div:first-child { min-height: 110px; border: 1px solid var(--line); border-width: 0 1px 1px 0; padding: 18px; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .needs-grid, .product-grid { grid-template-columns: 1fr; }
  .need-card { min-height: 200px; }
  .product-body p { min-height: auto; }
  .expertise-visual, .expertise-copy { padding: 30px; }
  .expertise-card { border-radius: 26px; }
  .principles { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-main { grid-column: auto; }
  .article-card { min-height: 260px; }
  .cta-card { align-items: flex-start; flex-direction: column; padding: 32px 24px; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Seasonal offers use the established NFB green and violet palette. */
.monthly-offers { padding-block: 28px 74px; scroll-margin-top: 110px; }
.monthly-offers[hidden] { display: none; }
.monthly-offers .section-heading { margin-bottom: 28px; }
.monthly-offers h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); }
.monthly-offers .eyebrow > span:last-child { width: auto; height: auto; background: none; }
.monthly-offers-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; align-items: stretch; gap: 20px; }
.monthly-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.monthly-card-featured { border: 2px solid var(--violet); box-shadow: 0 16px 38px rgba(113,44,128,.1); }
.monthly-card-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 18px 22px; font-size: .875rem; color: var(--muted); }
.monthly-card-top b { padding: 6px 12px; border-radius: 999px; color: var(--plum-dark); background: var(--lime-soft); font-size: 1.125rem; white-space: nowrap; }
.monthly-card-featured .monthly-card-top { background: var(--violet); color: #fff; }
.monthly-card-featured .monthly-card-top b { background: #fff; color: var(--violet); }
.monthly-card-image { display: grid; place-items: center; padding: 16px; background: #fafbfa; }
.monthly-card-image img { width: 100%; height: 200px; object-fit: contain; }
.monthly-card-featured .monthly-card-image img { height: 230px; }
.monthly-card-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.monthly-card .product-type-label { margin: 0 0 8px; color: var(--muted); }
.monthly-card h3 { margin: 0; font-size: 1.375rem; line-height: 1.25; letter-spacing: -.03em; overflow-wrap: anywhere; }
.monthly-card p { margin: 10px 0 18px; font-size: .875rem; color: var(--muted); }
.monthly-price { display: block; margin-top: auto; margin-bottom: 20px; font-size: 1.375rem; }
.monthly-price del { display: block; font-size: 1rem; }
.monthly-terms { margin-top: 22px; font-size: .875rem; color: var(--muted); }
.product-float { bottom: 112px; width: min(390px, calc(100% - 56px)); }
.product-float .micro-label { font-size: .875rem; letter-spacing: .02em; text-transform: none; }
.product-float div > span:last-child { font-size: .875rem; }
.hero-note { max-width: calc(100% - 52px); }
@media (max-width: 820px) {
  .monthly-offers-grid { grid-template-columns: 1fr 1fr; }
  .monthly-card-featured { grid-column: 1 / -1; }
  .monthly-card-featured .monthly-card-image img { height: 240px; }
}
@media (max-width: 550px) {
  .monthly-offers-grid { grid-template-columns: 1fr; }
  .monthly-card-featured { grid-column: auto; }
  .product-float { bottom: 128px; width: calc(100% - 32px); }
  .hero-note { max-width: none; }
  .monthly-offers { padding-bottom: 48px; }
}
