/* ==========================================================================
   Prime Report / Social Content Planning — main.css
   Two design families sharing one stylesheet:
   body.pub   -> publication (advertorial, about)
   body.offer -> offer / legal (program, contact, cookies, data-rights,
                 earnings-disclaimer, privacy, terms)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; }
li { list-style: none; }
button { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }
table { border-collapse: collapse; width: 100%; }

:root {
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 26px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: #111; color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* focus states everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid #2563eb; outline-offset: 2px;
}

/* generic container */
.wrap {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 18px;
}
.wrap--wide { max-width: 1120px; }

/* ==========================================================================
   PUBLICATION FAMILY (Prime Report) — advertorial + about
   ========================================================================== */
body.pub {
  --ink: #1a2233;
  --navy: #132743;
  --navy-dark: #0b1626;
  --red: #c31432;
  --red-dark: #9a0f27;
  --line: #e3e7ee;
  --muted: #55606e;
  --card-bg: #f7f8fa;
  --bg: #ffffff;
  background: var(--bg);
  color: var(--ink);
}

.pub-disclosure {
  background: var(--red);
  color: #fff;
}
.pub-disclosure__row {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 18px;
  max-width: 1120px; margin-inline: auto;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}
.pub-disclosure__tag {
  background: #fff; color: var(--red-dark);
  border-radius: 999px; padding: .15rem .65rem;
  font-size: .72rem; text-transform: uppercase; font-weight: 800;
  flex: 0 0 auto;
}
.pub-disclosure__row span:last-child {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.pub-masthead {
  background: var(--navy); color: #fff;
}
.pub-masthead__row {
  max-width: 1120px; margin-inline: auto; padding: .85rem 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.pub-masthead__brand {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .03em;
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-transform: uppercase;
}
.pub-masthead__brand svg { flex: 0 0 auto; }
.pub-masthead__date { font-size: .82rem; color: #c9d3e0; white-space: nowrap; }

.pub-article {
  padding-block: 1.8rem 3rem;
}
.pub-kicker {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 4px; margin-bottom: 1rem;
}
.pub-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 5.6vw, 2.7rem);
  line-height: 1.15; letter-spacing: -.01em; color: var(--navy-dark);
}
.pub-subhead {
  font-family: var(--font-display); font-style: italic; color: var(--muted);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem); margin-top: 1rem; line-height: 1.45;
}
.pub-byline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem;
  margin-top: 1.4rem; padding-block: 1rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pub-byline__who { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.pub-byline__avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--card-bg);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  flex: 0 0 auto; border: 1px solid var(--line);
}
.pub-byline__name { font-weight: 700; color: var(--navy-dark); }
.pub-byline__date { color: var(--muted); font-size: .85rem; display: block; }
.pub-byline__share { display: flex; gap: .5rem; }
.pub-byline__share button {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.pub-byline__share button:hover { background: var(--card-bg); transform: translateY(-1px); }

.pub-hero-figure { margin-top: 1.6rem; }
.pub-hero-figure img {
  width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--line);
}
.pub-hero-figure figcaption {
  font-size: .82rem; color: var(--muted); margin-top: .5rem; text-align: center;
}

.pub-body { margin-top: 1.8rem; }
.pub-body p { font-size: 1.05rem; margin-bottom: 1.1rem; color: #2b3242; }
.pub-body p.pub-lede { font-size: 1.15rem; font-weight: 500; }
.pub-body strong { color: var(--navy-dark); }
.pub-body a.pub-inline-link {
  color: var(--red-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px;
}

.pub-h2 {
  font-family: var(--font-display); font-weight: 700; color: var(--navy-dark);
  font-size: clamp(1.35rem, 4vw, 1.8rem); margin-top: 2.4rem; margin-bottom: 1rem;
  line-height: 1.25;
}
.pub-h3 {
  font-family: var(--font-display); font-weight: 700; color: var(--navy-dark);
  font-size: clamp(1.1rem, 3vw, 1.3rem); margin-top: 1.6rem; margin-bottom: .7rem;
}

.pub-callout {
  background: var(--card-bg); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem; margin-block: 1.6rem; font-size: 1rem;
}

.pub-list { margin: 1rem 0 1.6rem; display: grid; gap: .7rem; }
.pub-list li {
  display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: #2b3242;
}
.pub-list li::before {
  content: "✓"; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
}

.pub-rate-table-wrap { overflow-x: auto; margin-block: 1.4rem; }
.pub-rate-table {
  width: 100%; min-width: 420px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.pub-rate-table caption {
  text-align: left; font-weight: 700; padding: .8rem 1rem; background: var(--navy); color: #fff;
  font-size: .95rem; caption-side: top;
}
.pub-rate-table th, .pub-rate-table td {
  text-align: left; padding: .7rem 1rem; font-size: .95rem; border-top: 1px solid var(--line);
}
.pub-rate-table thead th { background: var(--card-bg); border-top: none; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.pub-rate-table td.pub-rate-amount { font-weight: 800; color: var(--navy-dark); white-space: nowrap; }
.pub-rate-note { font-size: .82rem; color: var(--muted); margin-top: .6rem; }

.pub-cta-band {
  background: var(--navy); color: #fff; border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem; margin-block: 2rem; text-align: center;
}
.pub-cta-band__kicker {
  text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; font-weight: 800; color: #ffb9c4;
}
.pub-cta-band h2 { color: #fff; margin-top: .5rem; }
.pub-cta-band p { color: #d7deea; margin-top: .7rem; font-size: 1rem; }

.pub-btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  border: none; cursor: pointer; border-radius: 999px; font-weight: 700;
  padding: .85rem 1.6rem; font-size: 1rem; margin-top: 1.2rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 44px;
}
.pub-btn--primary { background: #2f9e58; color: #fff; }
.pub-btn--primary:hover { background: #268049; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(47,158,88,.35); }
.pub-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.pub-btn--ghost:hover { background: rgba(255,255,255,.2); }

.pub-video-frame {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; margin-block: 1.4rem;
  aspect-ratio: 16/9; background: #000; border: 1px solid var(--line);
}
.pub-video-frame video { width: 100%; height: 100%; object-fit: cover; }

.pub-faq { margin-block: 1.6rem; display: grid; gap: .7rem; }
.pub-faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .2rem 1rem; background: #fff;
}
.pub-faq summary {
  cursor: pointer; padding: .9rem 0; font-weight: 700; color: var(--navy-dark); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none;
}
.pub-faq summary::-webkit-details-marker { display: none; }
.pub-faq summary::after { content: "+"; font-size: 1.3rem; color: var(--red); flex: 0 0 auto; }
.pub-faq details[open] summary::after { content: "–"; }
.pub-faq p { padding-bottom: .9rem; color: var(--muted); font-size: .95rem; margin: 0; }

.pub-author-card {
  display: grid; gap: 1rem; grid-template-columns: 64px 1fr;
  background: var(--card-bg); border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.2rem; margin-block: 2rem;
}
.pub-author-card__avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
}
.pub-author-card h3 { margin-top: 0; font-size: 1.05rem; }
.pub-author-card p { font-size: .92rem; color: var(--muted); margin-top: .4rem; }

/* ==========================================================================
   Publication footer & disclaimer (also reused visual language, but structural
   classes below are SHARED between families — see "SHARED CLOSE" section)
   ========================================================================== */

/* about page specifics */
.pub-about-grid {
  display: grid; gap: 1.6rem; margin-top: 1.8rem;
}
.pub-values { display: grid; gap: 1rem; margin-top: 1.6rem; }
.pub-values__item {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem;
}
.pub-values__item h3 { font-size: 1rem; margin-bottom: .4rem; }
.pub-values__item p { font-size: .92rem; color: var(--muted); }

/* ==========================================================================
   OFFER FAMILY — program, contact, cookies, data-rights, earnings-disclaimer,
   privacy, terms
   ========================================================================== */
body.offer {
  --sage: #3f5644;
  --sage-dark: #2b3d2e;
  --coral: #d9583f;
  --coral-dark: #b8422c;
  --ink: #23231f;
  --muted: #6a6a5f;
  --bg: #fbf3ea;
  --bg-alt: #eef1e6;
  --card: #ffffff;
  --line: #e7ddd0;
  background: var(--bg);
  color: var(--ink);
}

.offer-topbar {
  background: var(--coral); color: #fff; text-align: center;
  font-size: .82rem; font-weight: 600; padding: .55rem 18px;
}

.offer-nav {
  background: var(--bg); position: relative; z-index: 20;
}
.offer-nav__row {
  max-width: 1120px; margin-inline: auto; padding: .9rem 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.offer-nav__brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--sage-dark);
  display: flex; align-items: center; gap: .5rem;
}
.offer-nav__links {
  display: none; gap: 1.6rem; font-size: .92rem; font-weight: 600;
}
.offer-nav__links a { padding: .3rem 0; border-bottom: 2px solid transparent; transition: border-color .15s ease, color .15s ease; }
.offer-nav__links a:hover { border-color: var(--coral); color: var(--coral-dark); }
.offer-nav__cta { display: none; }
.offer-nav__toggle {
  background: none; border: 1px solid var(--line); border-radius: 8px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--sage-dark);
}
.offer-nav__mobile {
  display: none; flex-direction: column; gap: .2rem; padding: .5rem 18px 1.2rem;
  border-top: 1px solid var(--line);
}
.offer-nav__mobile.is-open { display: flex; }
.offer-nav__mobile a {
  padding: .8rem .2rem; font-weight: 600; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.offer-nav__mobile .pill-btn { margin-top: .8rem; align-self: flex-start; }

.offer-hero {
  background: var(--bg); position: relative; overflow: hidden;
  padding-block: 2.2rem 3.5rem;
}
.offer-hero__grid {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 2rem; align-items: center;
}
.offer-hero__kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--line); color: var(--coral-dark);
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: .35rem .8rem; border-radius: 999px;
}
.offer-hero h1 {
  font-family: var(--font-display); font-weight: 700; color: var(--sage-dark);
  font-size: clamp(1.9rem, 6.5vw, 3.2rem); line-height: 1.08; margin-top: 1rem; letter-spacing: -.01em;
}
.offer-hero__h2 {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  color: var(--coral-dark); font-size: clamp(1.15rem, 3.6vw, 1.5rem); margin-top: .8rem;
}
.offer-hero p.offer-hero__lede {
  margin-top: 1.1rem; font-size: 1.05rem; color: #3a3a33; max-width: 52ch;
}
.offer-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.offer-hero__figure {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--sage); aspect-ratio: 4/3;
}
.offer-hero__figure img { width: 100%; height: 100%; object-fit: cover; }

.pill-btn {
  display: inline-flex; align-items: center; gap: .6rem; border-radius: 999px;
  padding: .85rem 1.5rem; font-weight: 700; font-size: .98rem; cursor: pointer; border: none;
  min-height: 44px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.pill-btn--coral { background: var(--coral); color: #fff; }
.pill-btn--coral:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(217,88,63,.32); }
.pill-btn--outline { background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage-dark); }
.pill-btn--outline:hover { background: var(--sage-dark); color: #fff; }
.pill-btn--icon {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}

.chip-strip {
  max-width: 1120px; margin-inline: auto; padding: 0 18px 2.5rem;
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
}
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-size: .85rem; font-weight: 700; color: var(--sage-dark);
  display: inline-flex; align-items: center; gap: .4rem;
}

.shape-divider { display: block; width: 100%; line-height: 0; }
.shape-divider svg { width: 100%; height: 48px; display: block; }

.offer-section { padding-block: 3rem; }
.section-kicker {
  display: block; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem;
  font-weight: 800; color: var(--coral-dark); margin-bottom: .6rem;
}
.offer-section h2 {
  font-family: var(--font-display); font-weight: 700; color: var(--sage-dark);
  font-size: clamp(1.5rem, 4.6vw, 2.2rem); line-height: 1.2;
}
.offer-section p.section-lede {
  margin-top: .8rem; font-size: 1.02rem; max-width: 62ch; color: inherit;
}

.offer-section--sage { background: var(--sage); color: #f4f1ea; }
.offer-section--sage .section-kicker { color: #c9d6c6; }
.offer-section--sage h2 { color: #fff; }
.offer-section--alt { background: var(--bg-alt); }
.offer-section--dark { background: var(--sage-dark); color: #f4f1ea; }
.offer-section--dark h2 { color: #fff; }

.offer-video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9;
  background: #000;
}
.offer-video-frame video { width: 100%; height: 100%; object-fit: cover; }
.offer-video-row {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 1.6rem; align-items: center;
}

.icon-col-grid {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 1.4rem; margin-top: 2rem;
}
.icon-col {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md); padding: 1.3rem;
}
.offer-section:not(.offer-section--sage):not(.offer-section--dark) .icon-col {
  background: #fff; border: 1px solid var(--line);
}
.icon-col__icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: .8rem;
}
.icon-col h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .4rem; }
.icon-col p { font-size: .92rem; opacity: .92; }

.deliverable-grid {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 1.4rem; margin-top: 2rem;
}
.deliverable-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem;
}
.deliverable-card h3 { font-size: 1.1rem; color: var(--sage-dark); }
.deliverable-card p { font-size: .92rem; color: var(--muted); }
.deliverable-card__rate {
  align-self: flex-start; background: var(--bg-alt); color: var(--sage-dark);
  font-weight: 800; font-size: .88rem; padding: .35rem .8rem; border-radius: 999px;
}

.rate-panel {
  max-width: 900px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem;
}
.rate-panel__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: 0 20px 40px -28px rgba(43,61,46,.35);
}
.rate-panel__row {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem;
}
.rate-panel__row:last-of-type { border-bottom: none; }
.rate-panel__row strong { color: var(--sage-dark); }
.rate-panel__arith {
  margin-top: 1rem; background: var(--bg-alt); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: .95rem;
}
.rate-panel__note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }

.pricing-grid {
  max-width: 1000px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 1.6rem; margin-top: 2rem;
}
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; position: relative;
}
.price-card--highlight {
  background: var(--sage-dark); color: #f4f1ea; border-color: var(--sage-dark);
  box-shadow: 0 24px 50px -24px rgba(43,61,46,.55);
}
.price-card--highlight .price-card__price,
.price-card--highlight h3 { color: #fff; }
.price-card__badge {
  position: absolute; top: -14px; right: 1.4rem; background: var(--coral); color: #fff;
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: .35rem .8rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; color: var(--sage-dark); }
.price-card__hours { font-size: .85rem; opacity: .8; }
.price-card__price { font-size: 2.1rem; font-weight: 800; color: var(--coral-dark); font-family: var(--font-display); }
.price-card ul { display: grid; gap: .55rem; }
.price-card li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; }
.price-card li::before { content: "✓"; font-weight: 800; color: var(--coral); flex: 0 0 auto; }
.price-card--highlight li::before { color: #f2a08e; }
.price-card .pill-btn { margin-top: auto; align-self: flex-start; }

.addon-grid {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 1.2rem; margin-top: 2rem;
}
.addon-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem;
}
.addon-card__top { display: flex; justify-content: space-between; gap: .8rem; align-items: baseline; }
.addon-card__top h3 { font-size: 1rem; color: var(--sage-dark); }
.addon-card__price { font-weight: 800; color: var(--coral-dark); white-space: nowrap; }
.addon-card p { font-size: .88rem; color: var(--muted); }

.perk-stack {
  max-width: 780px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem;
  display: grid; gap: .8rem;
}
.perk-stack li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem;
}
.perk-stack li::before {
  content: "★"; color: var(--coral); flex: 0 0 auto;
}

.step-strip {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px;
  display: grid; gap: 1.4rem; margin-top: 2rem;
}
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.4rem;
}
.step-card__num {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--coral);
  display: block; margin-bottom: .4rem;
}
.step-card h3 { font-size: 1.05rem; color: var(--sage-dark); margin-bottom: .4rem; }
.step-card p { font-size: .92rem; color: var(--muted); }

.quote-card {
  max-width: 720px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem;
}
.quote-card__inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; text-align: center; box-shadow: 0 20px 40px -30px rgba(43,61,46,.4);
}
.quote-card__mark {
  font-family: var(--font-display); font-size: 3rem; color: var(--coral); line-height: 1; display: block;
}
.quote-card p.quote-card__text {
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink); margin-top: .6rem;
}
.quote-card__who {
  margin-top: 1rem; font-size: .85rem; color: var(--muted); font-weight: 600;
}

.limits-panel {
  max-width: 900px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem;
  display: grid; gap: 1rem;
}
.limits-panel__item {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: .93rem;
}
.limits-panel__item strong { display: block; margin-bottom: .3rem; color: #fff; }

.offer-faq { max-width: 780px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem; display: grid; gap: .8rem; }
.offer-faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .2rem 1.1rem;
}
.offer-faq summary {
  cursor: pointer; padding: 1rem 0; font-weight: 700; color: var(--sage-dark); font-size: 1rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; list-style: none;
}
.offer-faq summary::-webkit-details-marker { display: none; }
.offer-faq summary::after { content: "+"; color: var(--coral); font-size: 1.3rem; flex: 0 0 auto; }
.offer-faq details[open] summary::after { content: "–"; }
.offer-faq p { padding-bottom: 1rem; color: var(--muted); font-size: .93rem; margin: 0; }

/* lead form */
.lead-form-panel {
  max-width: 640px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem;
}
.lead-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; display: grid; gap: 1.1rem;
}
.lead-form__row { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 700; color: var(--sage-dark); }
.field input, .field textarea {
  font-size: 1rem; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; background: #fdfbf8; min-height: 48px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--coral); }
.field-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.field-consent input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: .1rem; }
.lead-form__submit { justify-self: start; }
.lead-form__success {
  display: none; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.2rem; font-weight: 600; color: var(--sage-dark);
}
.lead-form__success.is-visible { display: block; }
.lead-form.is-submitted .lead-form__fields,
.lead-form.is-submitted .lead-form__submit { display: none; }
.field__error {
  font-size: .82rem; color: var(--coral-dark); font-weight: 700; display: none;
}
.field.has-error input, .field.has-error textarea { border-color: var(--coral-dark); }
.field.has-error .field__error { display: block; }

/* legal pages */
.legal-page { padding-block: 2.4rem 3rem; }
.legal-page h1 {
  font-family: var(--font-display); font-weight: 700; color: var(--sage-dark);
  font-size: clamp(1.6rem, 5vw, 2.3rem); margin-bottom: .4rem;
}
.legal-page__updated { font-size: .85rem; color: var(--muted); margin-bottom: 1.6rem; }
.legal-page h2 {
  font-family: var(--font-display); font-weight: 700; color: var(--sage-dark);
  font-size: clamp(1.1rem, 3.4vw, 1.35rem); margin-top: 1.8rem; margin-bottom: .6rem;
}
.legal-page p { font-size: .98rem; margin-bottom: 1rem; color: #2f2f28; }
.legal-page ul { display: grid; gap: .5rem; margin-bottom: 1rem; }
.legal-page li { font-size: .98rem; padding-left: 1.2rem; position: relative; color: #2f2f28; }
.legal-page li::before { content: "–"; position: absolute; left: 0; color: var(--coral); }
.legal-page a.inline-link { color: var(--coral-dark); font-weight: 700; text-decoration: underline; }
.legal-page__meta {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem; margin-top: 1.6rem; font-size: .92rem;
}
.legal-page__meta p { margin-bottom: .3rem; }

.offer-figure {
  max-width: 1120px; margin-inline: auto; padding-inline: 18px; margin-top: 2rem;
}
.offer-figure img { width: 100%; border-radius: var(--radius-md); }
.offer-figure figcaption { font-size: .85rem; color: var(--muted); margin-top: .6rem; text-align: center; }
.offer-section--sage .offer-figure figcaption,
.offer-section--dark .offer-figure figcaption { color: #d8ded4; }

.contact-grid { display: grid; gap: 2rem; margin-top: 1.6rem; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.4rem; display: grid; gap: .5rem; font-size: .95rem;
}
.contact-card h2 { margin: 0 0 .3rem; font-size: 1.05rem; font-family: var(--font-display); color: var(--sage-dark); }

/* ==========================================================================
   SHARED CLOSE — disclaimer + footer, used on every page (both families)
   ========================================================================== */
.site-disclaimer {
  display: block; max-width: 1120px; margin: 0 auto; padding: 1.4rem 18px;
  font-size: .88rem; line-height: 1.5;
}
body.pub .site-disclaimer { color: #45505f; border-top: 1px solid var(--line); }
body.offer .site-disclaimer { color: #4c4b43; border-top: 1px solid var(--line); }
.site-disclaimer a { text-decoration: underline; font-weight: 700; }
body.pub .site-disclaimer a { color: #9a0f27; }
body.offer .site-disclaimer a { color: var(--coral-dark); }

.site-footer { padding: 1.8rem 18px 2.4rem; }
body.pub .site-footer { background: var(--navy-dark); color: #cdd6e3; }
body.offer .site-footer { background: var(--sage-dark); color: #e7e6de; }
.site-footer__inner { max-width: 1120px; margin-inline: auto; display: grid; gap: 1.2rem; }
.site-footer__company { font-size: .86rem; line-height: 1.6; white-space: pre-line; }
.site-footer__links {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15);
}
.site-footer__links a {
  font-size: .88rem; font-weight: 600; padding: .5rem .1rem; min-height: 44px; display: inline-flex; align-items: center;
}
.site-footer__links a:hover { text-decoration: underline; }

/* ==========================================================================
   Sticky mobile CTA (offer family)
   ========================================================================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: #fff; border-top: 1px solid var(--line);
  padding: .7rem 18px; display: flex; justify-content: center;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.sticky-cta .pill-btn { width: 100%; justify-content: center; }
.sticky-cta-space { padding-bottom: 78px; }

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */
@media (min-width: 480px) {
  .pub-author-card { grid-template-columns: 72px 1fr; }
  .offer-hero__actions { flex-wrap: nowrap; }
}

@media (min-width: 768px) {
  .wrap { padding-inline: 24px; }
  .pub-article { padding-block: 2.6rem 4rem; }
  .pub-byline { flex-wrap: nowrap; }
  .pub-cta-band { padding: 2.6rem 2.4rem; }
  .pub-about-grid { grid-template-columns: 1.1fr .9fr; }

  .offer-nav__links { display: flex; }
  .offer-nav__cta { display: inline-flex; }
  .offer-nav__toggle { display: none; }
  .offer-nav__mobile { display: none !important; }

  .offer-hero__grid { grid-template-columns: 1.1fr .9fr; }
  .offer-video-row { grid-template-columns: 1fr 1fr; }
  .icon-col-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverable-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
  .step-strip { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form__row { grid-template-columns: 1fr 1fr; }
  .lead-form__row--full { grid-template-columns: 1fr; }

  .site-footer__inner { grid-template-columns: auto 1fr; align-items: start; }
  .sticky-cta { display: none; }
  .sticky-cta-space { padding-bottom: 0; }
}

@media (min-width: 1024px) {
  .icon-col-grid { grid-template-columns: repeat(4, 1fr); }
  .pub-h1 { max-width: 22ch; }
  .offer-hero__figure { aspect-ratio: 5/4; }
}
