/* =========================================================================
   MEDIA MAESTRO LTD — site.css
   Handwritten CSS, BEM naming, CSS custom properties, mobile-first.
   Two design families share this file:
     .theme-pub   -> publication / advertorial (First Ledger Desk)
     .theme-offer -> commercial offer pages (Academia)
   ========================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, video { display: block; max-width: 100%; height: auto; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #2563eb; outline-offset: 2px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  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: 12px 18px; border-radius: 6px;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Root tokens (shared) ---------- */
:root {
  --font-ui: "Inter", system-ui, sans-serif;
  --max-narrow: 720px;
  --max-wide: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

/* =========================================================================
   PUBLICATION THEME — advertorial + about
   ========================================================================= */
.theme-pub {
  --pub-ink: #16211f;
  --pub-teal: #0f3d3d;
  --pub-teal-dark: #0a2b2b;
  --pub-bg: #eef1f0;
  --pub-card: #ffffff;
  --pub-line: #dbe1de;
  --pub-accent: #1a7a63;
  --pub-accent-dark: #145f4d;
  --pub-gold: #b6852c;
  --pub-muted: #5c6864;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "PT Serif", Georgia, serif;
  background: var(--pub-bg);
  color: var(--pub-ink);
  font-family: var(--font-ui);
  line-height: 1.5;
}

.pub-header {
  background: var(--pub-teal);
  color: #f4f1e8;
}
.pub-header__bar {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 14px var(--space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.pub-header__mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  letter-spacing: .01em;
}
.pub-header__tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #cfe6de;
  border: 1px solid rgba(244,241,232,.35);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pub-breadcrumb {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 14px var(--space-2) 0;
  font-size: .82rem;
  color: var(--pub-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pub-breadcrumb a { color: var(--pub-accent-dark); }
.pub-breadcrumb a:hover { text-decoration: underline; }

.pub-shell {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-2) var(--space-6);
}

.pub-article {
  display: grid;
  gap: var(--space-4);
  padding-top: var(--space-3);
}
@media (min-width: 1024px) {
  .pub-article { grid-template-columns: minmax(0,1fr) 300px; align-items: start; }
}

.pub-article__main { min-width: 0; }

.pub-article__ribbon {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pub-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.pub-article__h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 5.4vw, 2.8rem);
  line-height: 1.16;
  color: var(--pub-ink);
  margin-bottom: var(--space-2);
}

.pub-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--pub-line);
  margin-bottom: var(--space-3);
  font-size: .86rem;
  color: var(--pub-muted);
}
.pub-article__byline strong { color: var(--pub-ink); }
.pub-article__share {
  display: flex;
  gap: 8px;
}
.pub-article__share a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pub-teal);
  color: #f4f1e8;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  transition: transform .15s ease, background .15s ease;
}
.pub-article__share a:hover { background: var(--pub-accent); transform: translateY(-2px); }

.pub-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
  background: #cfd6d2;
  aspect-ratio: 16/10;
}
.pub-media img, .pub-media video { width: 100%; height: 100%; object-fit: cover; }
.pub-media--tall { aspect-ratio: 4/3; }
.pub-media__caption {
  font-size: .82rem;
  color: var(--pub-muted);
  margin-top: 8px;
  font-style: italic;
}

.pub-prose { font-family: var(--font-body); font-size: 1.08rem; line-height: 1.75; color: #23302c; }
.pub-prose p { margin-bottom: var(--space-2); }
.pub-prose strong { color: var(--pub-ink); }
.pub-prose h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  line-height: 1.25;
  margin: var(--space-4) 0 var(--space-2);
  color: var(--pub-teal-dark);
}
.pub-prose h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.1rem;
  margin: var(--space-3) 0 var(--space-1);
}
.pub-prose ul { margin: 0 0 var(--space-2); }
.pub-prose li { padding-left: 1.4em; position: relative; margin-bottom: 8px; }
.pub-prose li::before {
  content: "";
  position: absolute; left: 0; top: .6em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pub-accent);
}

.pub-pullquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3.6vw, 1.55rem);
  line-height: 1.4;
  color: var(--pub-teal-dark);
  border-left: 4px solid var(--pub-accent);
  padding: var(--space-1) 0 var(--space-1) var(--space-2);
  margin: var(--space-4) 0;
}
.pub-pullquote cite {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: .8rem;
  color: var(--pub-muted);
  margin-top: 8px;
}

.pub-steps { display: grid; gap: var(--space-2); margin: var(--space-3) 0; }
.pub-steps__item {
  background: var(--pub-card);
  border: 1px solid var(--pub-line);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: start;
}
.pub-steps__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pub-teal); color: #f4f1e8;
  font-family: var(--font-ui); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pub-steps__item h3 { font-family: var(--font-ui); margin: 0 0 6px; font-size: 1.02rem; }
.pub-steps__item p { font-family: var(--font-body); font-size: .98rem; color: #3c4844; margin: 0; }

.pub-worked-example {
  background: #fbf8ef;
  border: 1px solid #e6dcc0;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin: var(--space-4) 0;
}
.pub-worked-example__kicker {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pub-gold); font-weight: 700; margin-bottom: 8px;
}
.pub-worked-example h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: var(--space-1); }
.pub-worked-example__row {
  display: flex; justify-content: space-between; gap: var(--space-2);
  padding: 10px 0; border-bottom: 1px dashed #ddd0ab;
  font-size: .96rem;
}
.pub-worked-example__row:last-of-type { border-bottom: none; }
.pub-worked-example__row dt { color: #5b5238; }
.pub-worked-example__row dd { font-weight: 700; color: var(--pub-teal-dark); margin: 0; text-align: right; }
.pub-worked-example__note { font-size: .82rem; color: var(--pub-muted); margin-top: var(--space-1); }

.pub-figure-strip {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}
@media (min-width: 560px) {
  .pub-figure-strip { grid-template-columns: repeat(3, 1fr); }
}
.pub-figure-strip__item {
  background: var(--pub-teal-dark);
  color: #f4f1e8;
  border-radius: var(--radius-md);
  padding: var(--space-2);
  text-align: center;
}
.pub-figure-strip__num { font-family: var(--font-head); font-size: clamp(1.3rem, 4vw, 1.7rem); font-weight: 700; display: block; }
.pub-figure-strip__label { font-size: .8rem; color: #cfe6de; margin-top: 4px; display: block; }

.pub-progress {
  margin: var(--space-3) 0;
  border-left: 2px solid var(--pub-line);
  padding-left: var(--space-2);
  display: grid;
  gap: var(--space-2);
}
.pub-progress__entry { position: relative; }
.pub-progress__entry::before {
  content: "";
  position: absolute; left: calc(-1 * var(--space-2) - 5px); top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pub-accent);
}
.pub-progress__date {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--pub-gold); font-weight: 700; display: block; margin-bottom: 4px;
}
.pub-progress__entry p { font-family: var(--font-body); margin: 0; color: #3c4844; }

.pub-scorebars { display: grid; gap: var(--space-2); margin: var(--space-3) 0; }
.pub-scorebar__label { display: flex; justify-content: space-between; font-size: .92rem; margin-bottom: 6px; }
.pub-scorebar__label strong { color: var(--pub-teal-dark); }
.pub-scorebar__track { height: 10px; border-radius: 999px; background: var(--pub-line); overflow: hidden; }
.pub-scorebar__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--pub-accent), var(--pub-gold)); }

.pub-table-wrap { overflow-x: auto; margin: var(--space-3) 0; border-radius: var(--radius-md); border: 1px solid var(--pub-line); }
.pub-table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--pub-card); }
.pub-table caption { text-align: left; font-size: .82rem; color: var(--pub-muted); padding: 10px 14px; }
.pub-table th, .pub-table td { text-align: left; padding: 12px 14px; font-size: .92rem; border-bottom: 1px solid var(--pub-line); }
.pub-table thead th { background: var(--pub-teal); color: #f4f1e8; font-weight: 700; }
.pub-table tbody tr:last-child td { border-bottom: none; }
.pub-table tbody tr:nth-child(even) { background: #f5f7f5; }

.pub-verdict {
  background: linear-gradient(160deg, var(--pub-teal-dark), var(--pub-teal));
  color: #f4f1e8;
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin: var(--space-4) 0;
}
.pub-verdict h2 { font-family: var(--font-head); color: #f4f1e8; margin: 0 0 10px; font-size: clamp(1.3rem,4vw,1.7rem); }
.pub-verdict p { font-family: var(--font-body); color: #dce9e3; margin-bottom: var(--space-2); }
.pub-verdict__price { font-weight: 700; color: #ffe9b3; }

.pub-offerlist { display: grid; gap: 10px; margin: var(--space-2) 0 var(--space-3); }
.pub-offerlist__item {
  background: var(--pub-card);
  border: 1px solid var(--pub-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pub-offerlist__item::before { content: "✓"; color: var(--pub-accent); font-weight: 700; flex-shrink: 0; }

.pub-sidebar { display: grid; gap: var(--space-2); align-content: start; }
.pub-sidebar__card {
  background: var(--pub-card);
  border: 1px solid var(--pub-line);
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
.pub-sidebar__card p { font-size: .92rem; color: #3c4844; margin-bottom: 10px; }
.pub-sidebar__media { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 10px; aspect-ratio: 4/3; background: #cfd6d2; }
.pub-sidebar__media video, .pub-sidebar__media img { width: 100%; height: 100%; object-fit: cover; }
.pub-sidebar__kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pub-gold); font-weight: 700; margin-bottom: 6px; display: block; }

.pub-cta-band {
  background: var(--pub-accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
  margin: var(--space-4) 0;
}
.pub-cta-band h2 { font-family: var(--font-head); font-size: clamp(1.2rem, 4vw, 1.6rem); margin-bottom: 8px; color: #fff; }
.pub-cta-band p { margin-bottom: var(--space-2); color: #eafff5; }

/* ---------- buttons (shared, themed by parent) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.theme-pub .btn--primary { background: #ffe9b3; color: var(--pub-teal-dark); }
.theme-pub .btn--primary:hover { background: #fff2cc; box-shadow: 0 10px 22px rgba(0,0,0,.18); }
.theme-pub .btn--outline { background: transparent; border-color: rgba(255,255,255,.65); color: #fff; }
.theme-pub .btn--outline:hover { background: rgba(255,255,255,.12); }
.theme-pub .btn--solid { background: var(--pub-teal); color: #f4f1e8; }
.theme-pub .btn--solid:hover { background: var(--pub-teal-dark); }

/* =========================================================================
   OFFER THEME — academia + legal/contact pages
   ========================================================================= */
.theme-offer {
  --off-black: #121214;
  --off-black-soft: #1c1c1f;
  --off-panel: #1f1f23;
  --off-line: #2c2c31;
  --off-paper: #f4f3f1;
  --off-paper-dark: #e8e6e1;
  --off-ink: #17171a;
  --off-muted: #6d6d75;
  --off-accent: #e0114a;
  --off-accent-dark: #b10d3b;
  --off-green: #1a7a4f;
  --font-head-2: "Manrope", var(--font-ui);
  background: var(--off-paper);
  color: var(--off-ink);
  font-family: var(--font-ui);
  line-height: 1.55;
}

.offer-header {
  background: var(--off-black);
  color: #f4f3f1;
}
.offer-header__row {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 16px var(--space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.offer-header__mark {
  font-family: var(--font-head-2);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.01em;
}
.offer-header__mark span { color: var(--off-accent); }
.offer-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  color: #fff;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .offer-header__toggle { display: none; }
}
.offer-header__nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--off-black-soft);
  border-top: 1px solid var(--off-line);
  flex-direction: column;
  padding: var(--space-2);
  gap: var(--space-1);
  z-index: 50;
}
.offer-header__nav--open { display: flex; }
.offer-header__nav a {
  color: #c9c9cf;
  padding: 12px 4px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color .15s ease;
}
.offer-header__nav a:hover { color: #fff; }
@media (min-width: 768px) {
  .offer-header__nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    gap: var(--space-3);
    font-size: .92rem;
  }
}
.offer-header__row { position: relative; }
.offer-header__cta { flex-shrink: 0; }

.offer-shell {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.offer-hero {
  background: var(--off-black);
  color: #f4f3f1;
  padding: var(--space-4) 0 var(--space-5);
}
.offer-hero__grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 1024px) {
  .offer-hero__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; }
}
.offer-hero__kicker {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--off-accent); font-weight: 700; margin-bottom: var(--space-1);
  display: block;
}
.offer-hero__h1 {
  font-family: var(--font-head-2);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: var(--space-2);
}
.offer-hero__sub {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: #d4d4da;
  margin-bottom: var(--space-3);
  max-width: 46ch;
}
.offer-hero__sub strong { color: #fff; }

.offer-form {
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.offer-form h2 {
  font-family: var(--font-head-2);
  font-size: 1.3rem;
  margin-bottom: var(--space-1);
  color: #fff;
}
.offer-form__intro { font-size: .92rem; color: #c9c9cf; margin-bottom: var(--space-2); }
.offer-form__row { display: grid; gap: var(--space-2); margin-bottom: var(--space-2); }
@media (min-width: 480px) {
  .offer-form__row--2col { grid-template-columns: 1fr 1fr; }
}
.offer-form__field { display: flex; flex-direction: column; gap: 6px; }
.offer-form__field label { font-size: .85rem; color: #d4d4da; font-weight: 600; }
.offer-form__field input, .offer-form__field textarea {
  background: #101012;
  border: 1px solid var(--off-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 1rem;
  color: #fff;
  min-height: 48px;
}
.offer-form__field textarea { min-height: 96px; resize: vertical; }
.offer-form__field input::placeholder, .offer-form__field textarea::placeholder { color: #7a7a82; }
.offer-form__field input:focus, .offer-form__field textarea:focus { border-color: var(--off-accent); }
.offer-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: #c9c9cf;
  margin-bottom: var(--space-2);
}
.offer-form__consent input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--off-accent); }
.offer-form__consent a { color: #fff; text-decoration: underline; }
.offer-form__error {
  font-size: .82rem;
  color: #ff9db4;
  min-height: 1em;
  display: block;
  margin-top: 4px;
}
.offer-form__note { font-size: .78rem; color: #8f8f97; margin-top: var(--space-1); }
.offer-form__success {
  display: none;
  background: #133a26;
  border: 1px solid #1f6b45;
  color: #d5f5e3;
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  font-size: .92rem;
  margin-top: var(--space-2);
}
.offer-form__success--visible { display: block; }

.offer-hero__card {
  background: linear-gradient(160deg, #232327, #141416);
  border: 1px solid var(--off-line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  position: relative;
  overflow: hidden;
}
.offer-hero__card-title { font-family: var(--font-head-2); font-size: 1.3rem; margin-bottom: var(--space-2); color: #fff; max-width: 20ch; }
.offer-hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--off-accent);
  color: #fff;
  margin-bottom: var(--space-2);
  box-shadow: 0 14px 30px rgba(224,17,74,.35);
}
.offer-hero__badge strong { font-family: var(--font-head-2); font-size: 1.55rem; line-height: 1; }
.offer-hero__badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }
.offer-hero__media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: #0d0d0f; }
.offer-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.offer-hero__card-note { font-size: .82rem; color: #b8b8be; margin-top: var(--space-2); }

.offer-section { padding: var(--space-5) 0; }
.offer-section--alt { background: var(--off-paper-dark); }
.offer-section--dark { background: var(--off-black); color: #f4f3f1; }
.offer-section__kicker {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--off-accent); font-weight: 700; margin-bottom: 10px; display: block;
}
.offer-section__h2 {
  font-family: var(--font-head-2);
  font-weight: 800;
  font-size: clamp(1.5rem, 4.4vw, 2.2rem);
  line-height: 1.18;
  margin-bottom: var(--space-2);
  max-width: 24ch;
}
.offer-section--dark .offer-section__h2 { color: #fff; }
.offer-section__lead { font-size: 1.05rem; color: var(--off-muted); max-width: 62ch; margin-bottom: var(--space-3); }
.offer-section--dark .offer-section__lead { color: #c9c9cf; }

.offer-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .offer-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .offer-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.offer-card {
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
.offer-card__icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(224,17,74,.1);
  color: var(--off-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: var(--space-1);
}
.offer-card h3 { font-family: var(--font-head-2); font-size: 1.05rem; margin-bottom: 8px; }
.offer-card p { font-size: .92rem; color: var(--off-muted); }

.offer-rate-aside {
  border: 2px solid var(--off-black);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  background: #fff;
  margin-top: var(--space-3);
}
.offer-rate-aside__label {
  display: inline-block;
  background: var(--off-black);
  color: #fff;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-2);
}
.offer-rate-aside__grid {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
@media (min-width: 640px) {
  .offer-rate-aside__grid { grid-template-columns: repeat(2, 1fr); }
}
.offer-rate-aside__row {
  display: flex; justify-content: space-between; gap: var(--space-1);
  padding: 10px 0; border-bottom: 1px solid #ece9e2; font-size: .94rem;
}
.offer-rate-aside__row dt { color: var(--off-muted); }
.offer-rate-aside__row dd { font-weight: 800; margin: 0; }
.offer-rate-aside__math {
  background: var(--off-paper-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  font-size: .92rem;
}
.offer-rate-aside__note { font-size: .8rem; color: var(--off-muted); margin-top: var(--space-1); }

.offer-leverage {
  display: grid;
  gap: var(--space-3);
  align-items: center;
}
@media (min-width: 900px) {
  .offer-leverage { grid-template-columns: 1.1fr .9fr; }
}
.offer-leverage__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: #0d0d0f; }
.offer-leverage__media video { width: 100%; height: 100%; object-fit: cover; }
.offer-leverage__list { display: grid; gap: 10px; margin-top: var(--space-2); }
.offer-leverage__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .96rem; color: #d4d4da;
}
.offer-leverage__list li::before { content: "→"; color: var(--off-accent); font-weight: 700; flex-shrink: 0; }

.offer-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-3);
}
.offer-tabs__btn {
  background: #fff;
  border: 2px solid #e2dfd8;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .92rem;
  min-height: 44px;
  color: var(--off-ink);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.offer-tabs__btn:hover { border-color: var(--off-accent); }
.offer-tabs__btn[aria-selected="true"] {
  background: var(--off-black);
  border-color: var(--off-black);
  color: #fff;
}
.offer-tabs__panels { display: grid; }
.offer-package {
  display: none;
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
.offer-package--active { display: grid; }
.offer-package--highlight {
  border: 2px solid var(--off-accent);
  box-shadow: 0 18px 40px rgba(224,17,74,.14);
}
@media (min-width: 768px) {
  .offer-package { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.offer-package__badge {
  display: inline-block;
  background: var(--off-accent);
  color: #fff;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-1);
}
.offer-package__name { font-family: var(--font-head-2); font-size: 1.5rem; margin-bottom: 6px; }
.offer-package__hours { font-size: .88rem; color: var(--off-muted); margin-bottom: var(--space-2); }
.offer-package__list { display: grid; gap: 8px; }
.offer-package__list li { display: flex; gap: 8px; font-size: .94rem; }
.offer-package__list li::before { content: "✓"; color: var(--off-green); font-weight: 700; flex-shrink: 0; }
.offer-package__price {
  background: var(--off-paper-dark);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  text-align: center;
}
.offer-package__price strong { font-family: var(--font-head-2); font-size: 2.2rem; display: block; }
.offer-package__price span { font-size: .82rem; color: var(--off-muted); }
.offer-package__price .btn { margin-top: var(--space-2); width: 100%; }

.offer-addons {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
@media (min-width: 640px) {
  .offer-addons { grid-template-columns: repeat(2, 1fr); }
}
.offer-addon {
  background: #fff;
  border: 1px dashed #cfc9bd;
  border-radius: var(--radius-md);
  padding: var(--space-2);
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
}
.offer-addon__name { font-weight: 700; margin-bottom: 4px; }
.offer-addon__desc { font-size: .88rem; color: var(--off-muted); }
.offer-addon__price { font-family: var(--font-head-2); font-weight: 800; font-size: 1.2rem; white-space: nowrap; }

.offer-perks {
  display: grid;
  gap: 10px;
  margin-top: var(--space-2);
}
@media (min-width: 640px) {
  .offer-perks { grid-template-columns: repeat(2, 1fr); }
}
.offer-perks li {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid #e2dfd8;
  padding: 12px 14px;
  font-size: .92rem;
  display: flex;
  gap: 10px;
}
.offer-perks li::before { content: "★"; color: var(--off-accent); flex-shrink: 0; }

.offer-limits {
  background: var(--off-paper-dark);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin-top: var(--space-3);
}
.offer-limits ul { display: grid; gap: 8px; }
.offer-limits li { font-size: .94rem; padding-left: 1.4em; position: relative; }
.offer-limits li::before { content: "•"; position: absolute; left: 0; color: var(--off-muted); }

.offer-faq { display: grid; gap: 10px; }
.offer-faq__item {
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.offer-faq__q {
  width: 100%;
  text-align: left;
  padding: var(--space-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: .98rem;
  background: none;
  border: none;
  min-height: 44px;
}
.offer-faq__q::after { content: "+"; font-size: 1.4rem; color: var(--off-accent); flex-shrink: 0; transition: transform .2s ease; }
.offer-faq__item[open] .offer-faq__q::after { transform: rotate(45deg); }
.offer-faq__a { padding: 0 var(--space-2) var(--space-2); font-size: .94rem; color: var(--off-muted); }

.offer-cta-band {
  background: var(--off-black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  text-align: center;
}
.offer-cta-band h2 { font-family: var(--font-head-2); font-size: clamp(1.3rem, 4vw, 1.8rem); margin-bottom: 10px; color: #fff; }
.offer-cta-band p { color: #c9c9cf; margin-bottom: var(--space-2); }

.theme-offer .btn--primary { background: var(--off-accent); color: #fff; }
.theme-offer .btn--primary:hover { background: var(--off-accent-dark); box-shadow: 0 12px 26px rgba(224,17,74,.3); }
.theme-offer .btn--dark { background: var(--off-black); color: #fff; }
.theme-offer .btn--dark:hover { background: #000; }
.theme-offer .btn--outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.theme-offer .btn--outline-light:hover { background: rgba(255,255,255,.12); }

/* ---------- legal / simple content pages (offer family, no hero) ---------- */
.legal-shell {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: var(--space-4) var(--space-2) var(--space-5);
}
.legal-shell h1 {
  font-family: var(--font-head-2);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  margin-bottom: var(--space-1);
}
.legal-shell__updated { font-size: .85rem; color: var(--off-muted); margin-bottom: var(--space-3); }
.legal-shell h2 {
  font-family: var(--font-head-2);
  font-size: 1.25rem;
  margin: var(--space-3) 0 10px;
}
.legal-shell p { margin-bottom: var(--space-2); color: #33333a; }
.legal-shell ul { display: grid; gap: 8px; margin-bottom: var(--space-2); }
.legal-shell li { padding-left: 1.3em; position: relative; color: #33333a; }
.legal-shell li::before { content: "–"; position: absolute; left: 0; color: var(--off-muted); }
.legal-shell a { color: var(--off-accent-dark); text-decoration: underline; }
.legal-shell__contact-grid {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
@media (min-width: 640px) {
  .legal-shell__contact-grid { grid-template-columns: 1fr 1fr; }
}
.legal-shell__contact-card {
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
.legal-shell__contact-card h2 { margin-top: 0; font-size: 1.05rem; }

/* ---------- 404 ---------- */
.not-found {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: var(--space-6) var(--space-2);
  text-align: center;
}
.not-found h1 { font-family: var(--font-head-2); font-size: clamp(2.2rem, 8vw, 3.4rem); margin-bottom: var(--space-2); }
.not-found p { color: var(--off-muted); margin-bottom: var(--space-3); }

/* =========================================================================
   SHARED: disclaimer + footer (identical block on every page)
   ========================================================================= */
.site-disclaimer {
  display: block;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--space-3) var(--space-2);
  font-size: .86rem;
  line-height: 1.6;
}
.theme-pub .site-disclaimer { color: var(--pub-muted); background: var(--pub-bg); }
.theme-offer .site-disclaimer { color: var(--off-muted); background: var(--off-paper); }
.site-disclaimer a { text-decoration: underline; font-weight: 600; }
.theme-pub .site-disclaimer a { color: var(--pub-accent-dark); }
.theme-offer .site-disclaimer a { color: var(--off-accent-dark); }

.site-footer {
  background: #111114;
  color: #d4d4da;
  padding: var(--space-4) 0 var(--space-3);
}
.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-2);
  display: grid;
  gap: var(--space-3);
}
.site-footer__company {
  font-size: .88rem;
  line-height: 1.7;
  white-space: pre-line;
  color: #c9c9cf;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: var(--space-2);
  border-top: 1px solid #2a2a2f;
  font-size: .88rem;
}
.site-footer__links a { color: #d4d4da; min-height: 44px; display: inline-flex; align-items: center; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom { font-size: .78rem; color: #77777d; }

/* ---------- container helper ---------- */
.container { max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--space-2); }

/* ---------- utility ---------- */
.mt-0 { margin-top: 0; }
