:root {
  --bg: #fbf8f1;
  --bg-soft: #f3faef;
  --surface: #ffffff;
  --surface-warm: #fffdf8;
  --ink: #132018;
  --muted: #617168;
  --muted-2: #819087;
  --brand: #43b02a;
  --brand-2: #2d9428;
  --brand-dark: #0d3b2d;
  --brand-soft: #e9f8e4;
  --mint: #f0f8ec;
  --cream: #fff7e9;
  --gold: #f5c84b;
  --gold-soft: #fff6d8;
  --border: #e2dccf;
  --border-strong: #d5cdbd;
  --danger: #a43a2c;
  --shadow-sm: 0 10px 24px rgba(25, 46, 34, .07);
  --shadow-md: 0 18px 44px rgba(25, 46, 34, .10);
  --shadow-lg: 0 28px 72px rgba(25, 46, 34, .13);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--brand-2);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(67, 176, 42, .28);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-main {
  min-height: 50vh;
}

.announcement-bar {
  min-height: 30px;
  display: flex;
  align-items: center;
  background: var(--brand-dark);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.announcement-bar__inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  text-align: center;
}

.announcement-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(100% - 40px, var(--container));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo,
.brand-logo,
.header-logo,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
}

.site-logo img,
.brand-logo img,
.header-logo img,
.brand-lockup__image {
  width: auto !important;
  height: 34px !important;
  max-width: 158px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}

.brand-lockup__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.brand-lockup__text strong {
  font-size: 1.14rem;
  letter-spacing: -.04em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-nav__link,
.nav-drop-button,
.nav-cart {
  border: 0;
  background: transparent;
  padding: 10px 0;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
}

.site-nav__link:hover,
.nav-drop-button:hover,
.nav-cart:hover {
  color: var(--brand-2);
}

.nav-cart span {
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(13, 59, 45, .16);
}

.nav-cta:hover {
  background: var(--brand);
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  display: none;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.nav-dropdown:hover .nav-drop-panel,
.nav-drop-button[aria-expanded="true"] + .nav-drop-panel {
  display: grid;
  gap: 4px;
}

.nav-drop-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 780;
}

.nav-drop-panel a:hover {
  background: var(--brand-soft);
}

.nav-toggle {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(67, 176, 42, .22);
}

.button-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: #fff;
}

.button-secondary,
.button-quiet {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--brand-dark);
}

.button-small {
  min-height: 36px;
  padding: 9px 13px;
  font-size: .84rem;
}

.button-full {
  width: 100%;
}

.text-link,
.text-button {
  color: var(--brand-2);
  font-weight: 850;
}

.text-button {
  border: 0;
  background: transparent;
  padding: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ebook-hero {
  background-color: #fdf8f0;
  background-image:
    linear-gradient(rgba(19, 32, 24, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 24, .022) 1px, transparent 1px),
    radial-gradient(circle at 14% 12%, rgba(245, 200, 75, .08), transparent 22rem);
  background-size: 44px 44px, 44px 44px, auto;
}

.ebook-hero__inner {
  width: min(100% - 48px, var(--container));
  min-height: 398px;
  margin: 0 auto;
  padding: 28px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.ebook-hero h1 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.15vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.052em;
}

.ebook-hero__lead {
  max-width: 470px;
  margin: 22px 0 0;
  color: #4e5e54;
  font-size: 1.08rem;
  line-height: 1.65;
}

.ebook-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ebook-hero__art {
  min-width: 0;
}

.hero-image-card {
  position: relative;
  width: min(100%, 500px);
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-image-card::before {
  display: none;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: radial-gradient(ellipse 84% 72% at 52% 52%, #000 66%, rgba(0, 0, 0, .82) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse 84% 72% at 52% 52%, #000 66%, rgba(0, 0, 0, .82) 82%, transparent 100%);
}

.store-section,
.topic-showcase,
.guide-benefits,
.disclaimer-line,
.catalog-layout,
.catalog-results--full,
.shop-intro,
.product-page,
.product-story-grid,
.cart-layout,
.checkout-layout,
.content-page,
.contact-layout,
.success-layout,
.lookup-layout,
.support-strip {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading--center {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.topic-band__heading h2,
.guide-benefits h2,
.shop-intro h1,
.catalog-results__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.95rem, 3.5vw, 2.9rem);
  line-height: 1.03;
  letter-spacing: -.052em;
}

.featured-products {
  padding: 70px 0 34px;
}

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

.product-card--storefront {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card--storefront:hover {
  transform: translateY(-4px);
  border-color: #cfe4c7;
  box-shadow: var(--shadow-lg);
}

.product-card__media {
  position: relative;
  height: 238px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--mint), #fff);
}

.product-card__media img {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  object-fit: contain;
  transition: transform .18s ease;
}

.product-card--storefront:hover .product-card__media img {
  transform: scale(1.015);
}

.product-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: #fff;
}

.product-card__badge {
  align-self: flex-start;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.2;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.23;
  letter-spacing: -.025em;
}

.product-card h3 a:hover {
  color: var(--brand-2);
}

.product-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.topic-showcase {
  padding: 62px 0 34px;
}

.section-heading--center h2 {
  max-width: 680px;
  margin-inline: auto;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.topic-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(213, 205, 189, .72);
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: #cfe4c7;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.topic-card span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-2);
  border: 1px solid #d8ead2;
  font-size: .72rem;
  font-weight: 900;
}

.topic-card h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.topic-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .9rem;
}

.topic-card strong {
  margin-top: auto;
  color: var(--brand-2);
  font-size: .88rem;
}

.topic-card--1 {
  background: linear-gradient(180deg, #f4fbf0, #fff);
}

.topic-card--2 {
  background: linear-gradient(180deg, #eefaf4, #fff);
}

.topic-card--3 {
  background: linear-gradient(180deg, #fff8d9, #fff);
}

.topic-card--4 {
  background: linear-gradient(180deg, #f1f8ea, #fff);
}

.guide-benefits {
  margin-top: 58px;
  margin-bottom: 44px;
  padding: 28px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: center;
  border: 1px solid #d8ead2;
  border-radius: 28px;
  background: linear-gradient(145deg, #f2faee, #fff);
  box-shadow: var(--shadow-md);
}

.guide-benefits h2 {
  max-width: 440px;
}

.guide-benefits p {
  color: var(--muted);
}

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

.benefit-grid article {
  min-height: 145px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.benefit-grid span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-2);
  font-size: .74rem;
  font-weight: 900;
}

.benefit-grid h3 {
  margin: 18px 0 7px;
  font-size: 1rem;
}

.benefit-grid p {
  margin: 0;
  font-size: .9rem;
}

.disclaimer-line {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 0 72px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.disclaimer-line strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.breadcrumb {
  width: min(100% - 48px, var(--container));
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 760;
}

.breadcrumb a {
  color: var(--brand-2);
}

.shop-intro {
  padding: 58px 0 36px;
}

.shop-intro > div {
  max-width: 740px;
}

.shop-intro h1 {
  margin-bottom: 12px;
  font-size: clamp(2.45rem, 4.8vw, 4.15rem);
}

.shop-intro p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 82px;
}

.catalog-sidebar {
  align-self: start;
  position: sticky;
  top: 104px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filter-bar {
  display: grid;
  gap: 8px;
}

.filter-bar a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 820;
}

.filter-bar a:hover,
.filter-bar a.is-active {
  background: var(--brand-soft);
  color: var(--brand-2);
}

.catalog-results__header {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.catalog-results__header p {
  color: var(--muted);
}

.catalog-results--full {
  padding-bottom: 82px;
}

.empty-state {
  max-width: 650px;
  margin: 64px auto 90px;
  padding: 38px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.empty-state h1,
.empty-state h2 {
  margin: 0 0 12px;
  line-height: 1;
  letter-spacing: -.05em;
}

.empty-state p {
  color: var(--muted);
}

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.product-page {
  padding-top: 46px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(340px, .8fr);
  gap: 38px;
  align-items: start;
}

.product-cover-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--mint), #fff);
  box-shadow: var(--shadow-md);
}

.product-cover-stage span {
  justify-self: start;
  align-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.product-cover-stage img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 470px;
  object-fit: contain;
}

.product-buy-box {
  position: sticky;
  top: 105px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.product-buy-box h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.product-buy-box .lead {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 680;
}

.product-buy-box p:not(.lead):not(.product-card__badge) {
  color: var(--muted);
}

.price-panel {
  margin: 22px 0;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
}

.price-panel span {
  color: var(--muted);
  font-weight: 820;
}

.price-panel strong {
  font-size: 1.45rem;
  letter-spacing: -.04em;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.trust-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.product-story-grid {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.story-card span {
  color: var(--brand-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-card h2 {
  margin: 10px 0 14px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.check-list li + li {
  margin-top: 8px;
}

.support-strip {
  margin-top: 18px;
  margin-bottom: 76px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--gold-soft);
}

.support-strip__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.support-strip h2 {
  margin: 0 0 8px;
  letter-spacing: -.04em;
}

.support-strip p {
  margin: 0;
  color: var(--muted);
}

.cart-layout,
.checkout-layout,
.lookup-layout,
.success-layout,
.contact-layout {
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: 28px;
  align-items: start;
}

.cart-items-panel,
.summary-card,
.checkout-card,
.lookup-card,
.lookup-result,
.confirmation-card,
.download-panel,
.contact-card,
.business-card,
.content-page__surface {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.panel-heading h2,
.summary-card h2,
.lookup-result h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.panel-heading p,
.fine-print {
  color: var(--muted);
}

.summary-lines {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.summary-total {
  font-size: 1.1rem;
  font-weight: 900;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 78px 1fr 76px auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.cart-item-card__media {
  width: 78px;
  height: 88px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 14px;
  background: var(--mint);
}

.cart-item-card__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-card__content span {
  color: var(--brand-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-item-card__content h2 {
  margin: 4px 0;
  font-size: 1rem;
  line-height: 1.2;
}

.cart-item-card__content p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .92rem;
}

.cart-item-card__qty {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.cart-item-card__qty input {
  width: 70px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.cart-item-card__price {
  font-size: 1rem;
  white-space: nowrap;
}

.checkout-form,
.contact-form,
.lookup-card {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #314039;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.payment-methods {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.payment-methods legend {
  margin-bottom: 8px;
  font-weight: 900;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.payment-option input {
  width: auto;
}

.payment-option small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.checkout-consents {
  display: grid;
  gap: 10px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-line input {
  width: auto;
  margin-top: 4px;
}

.form-status,
.form-error {
  color: var(--danger);
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-2);
  font-size: .8rem;
  font-weight: 900;
}

.confirmation-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.confirmation-card__mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.download-card span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.pending-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--gold-soft);
}

.content-page--clean {
  max-width: 920px;
  padding-bottom: 86px;
}

.content-page__surface {
  padding: clamp(28px, 5vw, 56px);
}

.content-body h1,
.content-body h2,
.content-body h3 {
  color: var(--ink);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.content-body h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.content-body p {
  color: #425047;
}

.disclaimer-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--muted);
}

.faq-preview {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-preview__intro h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  transform: translateY(12px);
  opacity: 0;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: .22s ease;
}

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

.pre-footer-cta--clean {
  padding: 46px 24px 0;
  background: var(--bg);
}

.pre-footer-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.pre-footer-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.site-footer--clean {
  background: #f4faf1;
  color: var(--ink);
  padding: 62px 0 24px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.35fr .9fr 1fr 1.05fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.footer__brand {
  color: var(--ink);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.035em;
}

.footer__brand-column p {
  max-width: 300px;
  color: var(--muted);
  margin: 14px 0 0;
}

.footer__title {
  color: var(--brand-2);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links a,
.footer__links span {
  color: #435048;
  font-size: .94rem;
}

.footer__links a:hover {
  color: var(--brand-2);
}

.footer__bottom {
  max-width: var(--container);
  margin: 46px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .88rem;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    padding: 9px 12px;
    font-weight: 850;
  }

  .nav-toggle__icon {
    display: grid;
    gap: 4px;
  }

  .nav-toggle__icon span {
    width: 16px;
    height: 2px;
    display: block;
    background: var(--ink);
  }

  .nav-toggle strong {
    margin-left: 4px;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link,
  .nav-drop-button,
  .nav-cart,
  .nav-cta {
    width: 100%;
    padding: 12px;
    text-align: left;
  }

  .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .nav-drop-panel {
    position: static;
    margin-top: 6px;
    border: 0;
    background: var(--brand-soft);
    box-shadow: none;
  }

  .ebook-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 42px;
  }

  .hero-image-card {
    max-width: 560px;
    margin-left: 0;
  }

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

  .guide-benefits,
  .catalog-layout,
  .product-page,
  .cart-layout,
  .checkout-layout,
  .lookup-layout,
  .success-layout,
  .contact-layout,
  .faq-preview {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .product-buy-box {
    position: static;
  }

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

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

@media (max-width: 700px) {
  .topic-grid,
  .product-grid,
  .footer__grid,
  .product-story-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .cart-item-card {
    grid-template-columns: 72px 1fr;
  }

  .cart-item-card__qty,
  .cart-item-card__price {
    grid-column: 2;
  }

  .download-card,
  .pre-footer-cta__inner,
  .footer__bottom,
  .section-heading,
  .catalog-results__header,
  .disclaimer-line {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    font-size: .74rem;
  }

  .announcement-bar__inner,
  .site-header__inner {
    width: min(100% - 32px, var(--container));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-logo img,
  .brand-logo img,
  .header-logo img,
  .brand-lockup__image {
    height: 30px !important;
    max-height: 30px !important;
    max-width: 136px !important;
  }

  .ebook-hero__inner,
  .store-section,
  .topic-showcase,
  .guide-benefits,
  .disclaimer-line,
  .catalog-layout,
  .catalog-results--full,
  .shop-intro,
  .product-page,
  .product-story-grid,
  .cart-layout,
  .checkout-layout,
  .content-page,
  .contact-layout,
  .success-layout,
  .lookup-layout,
  .support-strip {
    width: min(100% - 36px, var(--container));
  }

  .ebook-hero__inner {
    min-height: auto;
    padding: 28px 0 32px;
  }

  .ebook-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .ebook-hero__lead {
    font-size: 1rem;
  }

  .ebook-hero__actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-image-card {
    max-width: 310px;
    margin-inline: auto;
    aspect-ratio: auto;
  }

  .hero-image-card img {
    object-position: 48% center;
  }

  .featured-products,
  .topic-showcase {
    padding-top: 48px;
  }

  .product-card__media {
    height: 226px;
  }

  .product-card__media img {
    width: 100%;
    height: 100%;
  }

  .guide-benefits {
    margin-top: 38px;
    padding: 22px;
    border-radius: 22px;
  }

  .disclaimer-line {
    padding-bottom: 48px;
  }

  .product-cover-stage {
    min-height: 360px;
    padding: 20px;
  }

  .shop-intro {
    padding-top: 46px;
    padding-bottom: 32px;
  }

  .pre-footer-cta__inner {
    padding: 22px;
  }

  .site-footer--clean {
    padding-top: 50px;
  }

  .empty-state {
    padding: 28px;
  }
}
