:root {
  --ink: #14120f;
  --ink-soft: #2b2620;
  --panel: #ffffff;
  --panel-2: #f6f2ea;
  --line: rgba(20, 18, 15, 0.1);
  --line-strong: rgba(20, 18, 15, 0.16);
  --text: #1c1915;
  --text-muted: #5a5349;
  --text-faint: #8a8275;
  --bg-page: #fbf9f5;
  --bg-warm: #f3eee6;
  --gold: #b8862d;
  --gold-deep: #8c6b2f;
  --gold-bright: #d4a84b;
  --shadow: 0 22px 60px rgba(20, 18, 15, 0.12);
  --shadow-header: 0 1px 0 rgba(20, 18, 15, 0.06), 0 8px 32px rgba(20, 18, 15, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  /* Sticky header (~96px) + breathing room so #anchors stay below nav */
  --header-anchor-offset: 7rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-anchor-offset);
}

body.layout-main-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-page);
  background-image: radial-gradient(1000px 520px at 12% -8%, rgba(212, 168, 75, 0.09), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(184, 134, 45, 0.06), transparent 45%);
  position: relative;
  overflow-x: hidden;
}

.layout-sheen {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.65), transparent 42%, transparent 58%, rgba(255, 252, 245, 0.5));
  z-index: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 10px;
}

.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;
}

.shell {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.35rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 84px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(20, 18, 15, 0.08));
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
}

.site-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.site-nav-link:hover {
  color: var(--text);
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.2s ease;
  border-radius: 999px;
}

.site-nav-link:hover::after {
  width: 100%;
}

.site-nav-item {
  list-style: none;
}

.site-nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0;
  position: relative;
}

.site-nav-mega-trigger:hover {
  color: var(--text);
}

.site-nav-mega-chevron {
  width: 0.42em;
  height: 0.42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15em;
  opacity: 0.72;
  transition: transform 0.2s ease, margin 0.2s ease;
}

.site-nav-item--mega.is-open .site-nav-mega-chevron {
  transform: rotate(-135deg);
  margin-top: 0.12em;
}

.nav-mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--site-header-bottom, 4.5rem);
  z-index: 45;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(20, 18, 15, 0.1);
  padding: 1.35rem 0 1.6rem;
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.nav-mega-kicker {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36ch;
}

.nav-mega-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.nav-mega-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nav-mega-pill--primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #1a1208;
  border: 1px solid transparent;
}

.nav-mega-pill--primary:hover {
  color: #1a1208;
  filter: brightness(1.03);
}

.nav-mega-pill--ghost {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
}

.nav-mega-pill--ghost:hover {
  border-color: rgba(184, 134, 45, 0.45);
  color: var(--text);
}

.nav-mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-mega-links a {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-mega-links a:hover {
  color: var(--text);
  border-bottom-color: rgba(184, 134, 45, 0.35);
}

.nav-cta {
  white-space: nowrap;
}

#page-main {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.75rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 0.76rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #1a1208;
  box-shadow: 0 10px 28px rgba(184, 134, 45, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(184, 134, 45, 0.35);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(184, 134, 45, 0.45);
  background: #fffdf8;
  color: var(--ink-soft);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Mega footer (reference-inspired: deep panel, dense keyword links) ───── */

.site-footer--mega {
  --footer-bg: #2d2424;
  --footer-bar: #1a1616;
  --footer-muted: rgba(255, 255, 255, 0.72);
  --footer-line: rgba(255, 255, 255, 0.1);
  --footer-cta: #802040;
  --footer-cta-hover: #9e2850;
  /* Fluid type & rhythm: roomier on wide desktops, still readable on laptops */
  --mf-heading: clamp(0.72rem, 0.62rem + 0.42vw, 0.875rem);
  --mf-subhead: clamp(0.65rem, 0.58rem + 0.35vw, 0.8rem);
  --mf-link: clamp(0.78rem, 0.7rem + 0.42vw, 0.9375rem);
  --mf-link-intent: clamp(0.8rem, 0.72rem + 0.4vw, 0.9375rem);
  --mf-body: clamp(0.86rem, 0.78rem + 0.35vw, 1rem);
  --mf-meta: clamp(0.75rem, 0.68rem + 0.3vw, 0.875rem);
  --mf-trust: clamp(0.78rem, 0.72rem + 0.28vw, 0.9rem);
  --mf-gap-x: clamp(1.35rem, 1rem + 1.6vw, 2.75rem);
  --mf-gap-y: clamp(1.75rem, 1.5rem + 0.9vw, 2.65rem);
  --mf-link-pad: clamp(0.35rem, 0.28rem + 0.25vw, 0.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--footer-bg);
  color: #fff;
  padding: clamp(2.5rem, 2rem + 2vw, 3.85rem) 0 0;
  position: relative;
  z-index: 1;
}

/* Wider reading edge than marketing shell so columns breathe on large monitors */
.site-footer--mega .shell {
  width: min(1680px, calc(100% - clamp(32px, 5vw, 64px)));
}

.mega-footer-top {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(28rem, 2.15fr);
  gap: var(--mf-gap-y) var(--mf-gap-x);
  padding-bottom: clamp(2rem, 1.5rem + 1.5vw, 3.25rem);
  border-bottom: 1px solid var(--footer-line);
  align-items: start;
}

/* Jewelry column left; Borrow / Watches / Sell / Consign grid to the right (not stacked below) */
.mega-footer-secondary {
  display: grid;
  grid-template-columns: minmax(11.5rem, min(22rem, 32vw)) minmax(16rem, 1fr);
  gap: var(--mf-gap-y) var(--mf-gap-x);
  align-items: start;
  min-width: 0;
}

.mega-footer-col--jewelry {
  min-width: 0;
}

/* 2×2 services: balances link counts (~18 / ~17 per side) */
.mega-footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--mf-gap-y) var(--mf-gap-x);
  align-items: stretch;
  min-width: 0;
}

.mega-footer-services-cell {
  min-width: 0;
}

.mega-footer-services-cell--borrow {
  grid-column: 1;
  grid-row: 1;
}

.mega-footer-services-cell--watches {
  grid-column: 2;
  grid-row: 1;
}

.mega-footer-services-cell--sell {
  grid-column: 1;
  grid-row: 2;
}

.mega-footer-services-cell--consign {
  grid-column: 2;
  grid-row: 2;
}

.mega-footer-brand-connect {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--footer-line);
  max-width: min(38ch, 100%);
}

.mega-footer-brand-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1rem;
}

.mega-footer-logo {
  display: block;
  height: clamp(68px, 60px + 1.35vw, 86px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.mega-footer-contact {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.35rem + 0.2vw, 0.55rem);
  margin-bottom: 1.35rem;
}

.mega-footer-contact-line {
  font-size: var(--mf-body);
  line-height: 1.62;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mega-footer-contact-line:hover {
  color: #fff;
}

.mega-footer-contact-line--emph {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-size: var(--mf-heading);
  letter-spacing: 0.12em;
}

.mega-footer-heading {
  margin: 0 0 clamp(0.65rem, 0.55rem + 0.35vw, 0.95rem);
  font-family: var(--font-sans);
  font-size: var(--mf-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.mega-footer-heading--small {
  letter-spacing: 0.14em;
  margin-bottom: 0.45rem;
}

.mega-footer-heading--spaced {
  margin-top: clamp(1.25rem, 1rem + 0.9vw, 1.75rem);
}

.mega-footer-subheading {
  margin: clamp(0.7rem, 0.55rem + 0.45vw, 0.95rem) 0 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--mf-subhead);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.mega-footer-subheading--spaced {
  margin-top: clamp(1rem, 0.85rem + 0.55vw, 1.4rem);
}

.mega-footer-links--intent {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: var(--mf-link-intent);
  line-height: 1.58;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.mega-footer-hours-note {
  margin: 0;
  font-size: var(--mf-body);
  line-height: 1.65;
  color: var(--footer-muted);
  max-width: min(42ch, 100%);
}

.mega-footer-hours-note a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mega-footer-hours-note a:hover {
  color: #fff;
}

.mega-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--mf-link);
  line-height: 1.58;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.mega-footer-links li {
  margin-bottom: var(--mf-link-pad);
}

.mega-footer-links a {
  color: var(--footer-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.mega-footer-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.mega-footer-brand-connect .mega-footer-connect-copy {
  max-width: none;
}

.mega-footer-connect-copy {
  margin: 0 0 1rem;
  font-size: var(--mf-body);
  line-height: 1.62;
  color: var(--footer-muted);
  max-width: min(38ch, 100%);
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.68rem, 0.6rem + 0.35vw, 0.82rem) clamp(1.15rem, 1rem + 0.9vw, 1.55rem);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: var(--mf-heading);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--footer-cta);
  color: #fff;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-footer-cta:hover {
  background: var(--footer-cta-hover);
  color: #fff;
  transform: translateY(-1px);
}

.mega-footer-connect-icons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.55rem, 0.45rem + 0.35vw, 0.85rem);
  margin-top: 1rem;
}

.mega-footer-icon-link {
  font-size: var(--mf-meta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: clamp(0.4rem, 0.32rem + 0.25vw, 0.5rem) clamp(0.6rem, 0.5rem + 0.45vw, 0.85rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.mega-footer-icon-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.mega-footer-trust {
  padding: clamp(1.25rem, 1rem + 1vw, 1.65rem) 0 clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  text-align: center;
}

.mega-footer-trust-line {
  margin: 0;
  font-size: var(--mf-trust);
  color: var(--footer-muted);
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.mega-footer-trust-item {
  white-space: nowrap;
}

.mega-footer-trust-dot {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.mega-footer-bar {
  background: var(--footer-bar);
  padding: clamp(1rem, 0.85rem + 0.5vw, 1.35rem) 0 clamp(1.1rem, 0.95rem + 0.55vw, 1.45rem);
}

.mega-footer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 0.5rem + 0.45vw, 0.9rem);
  text-align: center;
}

.mega-footer-blog-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.5rem, 0.4rem + 0.45vw, 0.75rem) clamp(0.85rem, 0.65rem + 0.9vw, 1.5rem);
}

.mega-footer-blog-nav a {
  font-size: var(--mf-meta);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mega-footer-blog-nav a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.mega-footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.5rem, 0.4rem + 0.45vw, 0.75rem) clamp(0.85rem, 0.65rem + 0.9vw, 1.5rem);
}

.mega-footer-legal-nav a {
  font-size: var(--mf-meta);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mega-footer-legal-nav a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.mega-footer-copy {
  margin: 0;
  font-size: clamp(0.74rem, 0.68rem + 0.22vw, 0.84rem);
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.03em;
}

.is-hidden {
  display: none !important;
}

.gold-grad {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1rem;
}

/* ── Marketing subpages (loans, selling, appraisals) + shared FAQ ───────── */

.marketing-subpage .subpage-hero {
  padding: 4.25rem 0 3.25rem;
  background: linear-gradient(128deg, #14110c 0%, #2a241b 48%, #1a1611 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marketing-subpage .subpage-hero-inner {
  max-width: 720px;
}

.marketing-subpage .subpage-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.marketing-subpage .subpage-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
  max-width: 52ch;
}

.marketing-subpage .subpage-intro {
  padding: 3.5rem 0;
}

.marketing-subpage .subpage-intro-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.marketing-subpage .subpage-intro-inner p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.marketing-subpage .subpage-intro-inner p:last-child {
  margin-bottom: 0;
}

.marketing-subpage .section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.marketing-subpage .section-header.site-faq-header {
  margin-bottom: 0.5rem;
}

.marketing-subpage .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.site-faq-band {
  padding: 3.75rem 0 4rem;
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-page .site-faq-band {
  padding: 4rem 0;
}

.site-faq {
  max-width: 760px;
  margin: 2rem auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 28px rgba(20, 18, 15, 0.05);
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text);
  padding: 1.05rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.15s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "";
  flex-shrink: 0;
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-summary::after {
  transform: rotate(-135deg);
  margin-top: 6px;
}

.faq-summary:hover {
  background: rgba(184, 134, 45, 0.06);
}

.faq-answer {
  padding: 0 1.25rem 1.2rem;
  border-top: 1px solid var(--line);
  background: #fdfcfa;
}

.faq-answer p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.marketing-subpage .subpage-cta {
  padding: 3.5rem 0 4.5rem;
  text-align: center;
}

.marketing-subpage .subpage-cta-inner {
  max-width: 560px;
  margin-inline: auto;
}

.marketing-subpage .subpage-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.marketing-subpage .subpage-cta-body {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.marketing-subpage .subpage-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
