/* BankTheLot — editorial, paper-on-desk aesthetic
   Warm cream background, deep navy type, racing-green accent, bank-like tone.
   Instrument Serif display + Inter Tight body. */

:root {
  /* Warm paper palette — lighter, more refined */
  --bg:           #faf6ec;   /* soft ivory, paper white */
  --bg-2:         #f3eddd;   /* section alt */
  --bg-3:         #ece4ce;   /* card surface */
  --ink:          #1a1a1a;   /* near-black ink */
  --ink-2:        #2e2e2e;
  --muted:        #6a6a6a;
  --rule:         #d9cfb3;   /* hairline rule */
  --rule-soft:    #e4dcc2;

  /* Accents — warmer, less saturated, classic */
  --accent:       #b83423;   /* refined brick red */
  --accent-2:     #972818;   /* hover */
  --accent-3:     #d4a73c;   /* antique gold */
  --accent-3-2:   #b98f2a;
  --accent-ink:   #ffffff;
  --accent-yellow-ink: #2a1d05;
  --danger:       #b83423;
  --warn:         #b87817;
  --good:         #2d6a4f;

  /* "Dark" contrast section — warm espresso, not cold navy */
  --dark:         #1c140e;
  --dark-2:       #2a1d12;
  --dark-rule:    #3a2b1c;
  --dark-ink:     #faf6ec;
  --dark-muted:   #c9bfa7;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --shadow-paper: 0 1px 0 rgba(19,38,58,.06), 0 12px 32px -16px rgba(19,38,58,.18);
  --shadow-lift:  0 20px 50px -24px rgba(19,38,58,.35);

  --maxw: 1180px;
  --maxw-narrow: 780px;

  --font-display: 'Playfair Display', 'Source Serif 4', Georgia, serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper grain — a very soft SVG noise underlay.
   Keeps the cream from reading flat/digital. */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0.035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .15s ease; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 700; /* Playfair needs weight to feel editorial */
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
h1 em, h2 em { font-style: italic; color: var(--accent); font-weight: inherit; }
h1 em.alt, h2 em.alt { color: var(--accent-3-2); }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
.muted { color: var(--muted); }
.tiny { font-size: .85rem; }
.h-center { text-align: center; margin-bottom: 28px; }
.center { text-align: center; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.narrow { max-width: var(--maxw-narrow); }

.skip {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--bg);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-weight: 600;
}
.skip:focus { top: 12px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 241, 231, .88);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand:hover { color: var(--accent); }
.brand-mark {
  width: 30px; height: 30px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.wordmark { line-height: 1; font-weight: 700; letter-spacing: -0.015em; }
.wordmark .wm-accent { font-style: italic; color: var(--accent-3-2); font-weight: 500; }
.wordmark .wm-period { color: var(--accent); }
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 6px; align-items: center;
}
.primary-nav .nav-link,
.primary-nav .nav-btn {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  opacity: .82;
  transition: opacity .15s ease, color .15s ease, background-color .15s ease;
}
.primary-nav .nav-link:hover,
.primary-nav .nav-btn:hover,
.primary-nav .has-menu.open .nav-btn {
  color: var(--accent);
  opacity: 1;
  background: rgba(184, 52, 35, .06);
}
.primary-nav .nav-ico { opacity: .7; }
.primary-nav .nav-btn:hover .nav-ico,
.primary-nav .has-menu.open .nav-btn .nav-ico { opacity: 1; }
.primary-nav .nav-caret {
  opacity: .55;
  transition: transform .15s ease, opacity .15s ease;
}
.primary-nav .has-menu.open .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.primary-nav .nav-cta .btn { margin-left: 10px; }

/* ---- Nav dropdown menus ---- */
.primary-nav .has-menu { position: relative; }
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(28, 20, 14, 0.28), 0 2px 6px rgba(28, 20, 14, 0.06);
  padding: 8px;
  display: none;
  z-index: 30;
}
.primary-nav .has-menu.open .nav-menu { display: block; }
.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .12s ease;
}
.nav-menu a:hover { background: rgba(184, 52, 35, .07); }
.nav-menu .nm-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.2;
}
.nav-menu .nm-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.35;
}
.nav-menu a:hover .nm-title { color: var(--accent); }

/* ---- Mobile nav toggle (hidden on desktop) ---- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle:hover { background: rgba(28,20,14,0.04); }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;                /* pill — a signature */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, color .15s ease, border .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 8px 16px; font-size: .88rem; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 2px 0 rgba(0,0,0,.05), 0 12px 28px -12px rgba(232, 69, 44, .55);
}
.btn-primary:hover {
  background: var(--accent-2); border-color: var(--accent-2); color: #ffffff;
  box-shadow: 0 3px 0 rgba(0,0,0,.06), 0 18px 36px -14px rgba(232, 69, 44, .65);
  transform: translateY(-1px);
}
.btn-accent-yellow {
  background: var(--accent-3);
  color: var(--accent-yellow-ink);
  border-color: var(--accent-3);
  box-shadow: 0 2px 0 rgba(0,0,0,.05), 0 12px 28px -12px rgba(245, 197, 49, .6);
}
.btn-accent-yellow:hover {
  background: var(--accent-3-2); border-color: var(--accent-3-2); color: var(--accent-yellow-ink);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-2); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.section-dark { background: var(--dark); color: var(--dark-ink); border-top: 1px solid var(--dark-rule); border-bottom: 1px solid var(--dark-rule); }
.section-dark h2 em, .section-dark h3 em { color: var(--accent-3); }
.section-dark .btn-primary { background: var(--accent-3); color: var(--accent-yellow-ink); border-color: var(--accent-3); box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 12px 28px -12px rgba(245,197,49,.5); }
.section-dark .btn-primary:hover { background: var(--accent-3-2); border-color: var(--accent-3-2); color: var(--accent-yellow-ink); }
.section-dark h2, .section-dark h3 { color: var(--dark-ink); }
.section-dark .muted { color: var(--dark-muted); }
.section-dark .lede { color: var(--dark-muted); }
.section-accent {
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head .lede { color: var(--muted); font-size: 1.15rem; line-height: 1.5; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
}
.eyebrow::before { content: "§ "; opacity: .7; }

/* ---- Hero ---- */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(900px 540px at 92% -20%, rgba(245,197,49,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(232,69,44,.08), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
/* Thin rule under the header, newspaper style */
.hero::before {
  content: "";
  position: absolute;
  left: 28px; right: 28px; top: 28px;
  border-top: 1px solid var(--rule);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  margin-top: 12px;
}
.hero-copy h1 em {
  font-style: italic; color: var(--accent); font-weight: 400;
}
.hero-copy h1 em.alt {
  color: var(--accent-3-2);
}
.hero-copy .lede {
  font-size: 1.22rem; color: var(--ink-2);
  max-width: 560px;
  line-height: 1.45;
  font-family: var(--font-body);
}
.hero-copy .lede strong { color: var(--ink); font-weight: 600; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }

/* ---- Capability accordion ("and a bunch more") ---- */
.feature-more {
  margin: 56px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
}
.more-item {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fffbf0;
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.more-item[open] {
  border-color: rgba(184, 52, 35, 0.3);
  background: #fff;
  box-shadow: 0 6px 18px -12px rgba(28, 20, 14, 0.18);
}
.more-item > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.more-item > summary::-webkit-details-marker { display: none; }
.more-item > summary::marker { content: ""; }
.more-item:hover > summary { color: var(--accent); }
.more-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.more-label { flex: 1 1 auto; min-width: 0; }
.more-chev {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
.more-item[open] > summary .more-chev {
  transform: rotate(180deg);
  color: var(--accent);
}
.more-item > p {
  margin: 0;
  padding: 0 16px 16px 48px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 1100px) {
  .feature-more { grid-template-columns: repeat(2, 1fr); }
}
.trust-row {
  list-style: none; margin: 24px 0 0; padding: 20px 0 0;
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  color: var(--muted); font-size: .9rem;
  border-top: 1px solid var(--rule);
}
.trust-row strong { color: var(--ink); font-weight: 600; }

.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
  background: var(--bg-3);
}
.hero-photo img { display: block; }

/* ---- Trap cards ---- */
.trap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.trap-card {
  background: transparent;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 28px;
}
.trap-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  margin-top: 10px;
  line-height: 1.18;
}
.trap-card h3 em { font-style: italic; color: var(--accent); }
.trap-card p { color: var(--muted); margin: 0; }
.trap-num {
  font-family: var(--font-mono);
  font-weight: 500; font-size: .72rem;
  letter-spacing: .14em;
  color: var(--accent);
}
.trap-foot {
  text-align: center; color: var(--muted);
  margin-top: 36px; font-size: 1.05rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
}
.trap-foot strong { color: var(--ink); font-style: normal; font-family: var(--font-body); font-weight: 600; }

.trap-cta {
  margin-top: 18px !important;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trap-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.trap-cta a:hover {
  color: var(--accent-3);
  border-bottom-color: var(--accent-3);
}

/* ---- Compare table ---- */
.compare-scroll { overflow-x: auto; margin: 0 -8px; padding: 0 8px; }
.compare {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--bg);
  font-size: .95rem;
  font-family: var(--font-body);
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.compare thead th {
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding: 12px 18px;
}
.compare tbody tr:last-child td { border-bottom: 2px solid var(--ink); }
.compare tr.us { background: rgba(13,92,58,.07); }
.compare tr.us td { color: var(--ink); font-weight: 500; }
.compare tr.us td:first-child strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; }
.compare td.good { color: var(--good); font-weight: 600; }
.compare td.bad  { color: var(--danger); }
.compare td.mid  { color: var(--warn); }
.tag {
  display: inline-block;
  background: var(--accent); color: var(--accent-ink);
  font-size: .65rem; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  margin-left: 8px; letter-spacing: .14em;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: var(--font-body);
}

.savings-card {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
}
.sav-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: var(--accent-3);         /* antique gold pops on dark espresso */
  line-height: 1;
  letter-spacing: -0.02em;
}
.sav-meta { display: flex; flex-direction: column; gap: 4px; }
.sav-meta strong { color: var(--bg); font-size: 1.08rem; font-weight: 600; }
.sav-meta span { color: #9fb0c4; font-size: .9rem; }
.savings-card .btn-primary { background: var(--accent-3); color: var(--accent-yellow-ink); border-color: var(--accent-3); }
.savings-card .btn-primary:hover { background: var(--accent-3-2); border-color: var(--accent-3-2); color: var(--accent-yellow-ink); }

/* ---- Feature grid (editorial, image-led) ---- */
/* Uniform 3-column grid on desktop — every card gets the same footprint
   so the page reads as a tight, intentional editorial spread. */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
  margin-top: 10px;
}
.feature {
  grid-column: span 1;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
}
/* `.feature-wide` used to span 3/6 cols and look taller than its neighbors.
   Now a no-op — every card is uniform. Kept as a class name so existing markup
   doesn't need to change. */
.feature-wide {
  grid-column: span 1;
}
.feature-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  box-shadow: 0 1px 0 rgba(26, 20, 14, 0.04), 0 14px 28px -20px rgba(26, 20, 14, 0.28);
}
.feature-media-tall {
  aspect-ratio: 1 / 1;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}
.feature:hover .feature-media img {
  transform: scale(1.03);
}
.feature-media::after {
  /* subtle warm wash to unify imagery with ivory palette */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 246, 236, 0) 55%, rgba(28, 20, 14, 0.16) 100%);
  pointer-events: none;
}
.feature-media .feature-ico {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 12px 6px;
  letter-spacing: 0.01em;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(28, 20, 14, 0.25);
}
.feature-body {
  padding: 0 2px;
}
.feature-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.feature-wide h3 {
  font-size: 1.85rem;
}
.feature p {
  color: var(--ink-2);
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.55;
}
.feature-proof {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 0.92rem !important;
  color: var(--muted) !important;
  font-style: italic;
}
.feature-proof strong {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ---- "And a bunch more" secondary grid ---- */
.feature-more {
  margin: 56px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
.feature-more li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.feature-more li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}
.feature-more strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature-wide { grid-column: span 1; }
  .feature-more { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Swap grid ---- */
.swap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.swap-steps { padding-left: 1.2em; }
.swap-steps li {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 6px;
}
.swap-steps li::marker { color: var(--accent); font-family: var(--font-mono); font-size: .85em; }
.swap-steps li strong { color: var(--ink); font-weight: 600; }
.swap-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
}

/* ---- Companion app module ---- */
.app-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.app-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-bullets li {
  color: var(--muted);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  font-size: 1rem;
}
.app-bullets li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: .9em;
  font-weight: 600;
}
.app-bullets li strong { color: var(--ink); font-weight: 600; }
.app-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}
.app-micro { font-size: .88rem; margin: 0; }
.app-phone {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
  background: var(--bg);
}
.app-phone img { display: block; width: 100%; height: auto; transition: transform .4s ease; }
.app-phone a:hover img { transform: scale(1.015); }

/* ---- /app page ---- */
.app-hero {
  padding: 84px 0 56px;
  background: linear-gradient(180deg, var(--bg) 0%, #f5ead0 100%);
  border-bottom: 1px solid var(--rule);
}
.app-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.app-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  margin: 14px 0 18px;
  letter-spacing: -.01em;
}
.app-hero .lede { font-size: 1.1rem; }
.app-hero-phones {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
  background: #f4ecd4;
}
.app-hero-phones img { display: block; width: 100%; height: auto; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.cap-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 28px 26px 26px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.cap-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -18px rgba(184,52,35,.35);
}
.cap-card .cap-kicker {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.25;
}
.cap-card p { color: var(--muted); font-size: .94rem; line-height: 1.55; margin: 0; }

.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: .95rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.vs-table th, .vs-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.vs-table thead th {
  background: #f1e6cb;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table .vs-capability { width: 32%; font-weight: 600; color: var(--ink); }
.vs-table .vs-them { color: var(--muted); }
.vs-table .vs-us { color: var(--ink); }
.vs-yes { color: #2e7d3d; font-weight: 700; margin-right: 6px; }
.vs-no { color: var(--accent); font-weight: 700; margin-right: 6px; }

/* ---- Pricing (lives on dark section) ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-rule);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--dark-ink);
}
.price-card.featured {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  transform: translateY(-8px);
}
.price-card.featured h3 { color: var(--ink); }
.price-card.featured .muted { color: var(--muted); }
.featured-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-body);
  font-size: .66rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.price-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 6px;
  line-height: 1;
}
.price-head .muted { font-size: .9rem; }
.price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin: 24px 0 6px;
  border-bottom: 1px solid var(--dark-rule);
  padding-bottom: 18px;
}
.price-card.featured .price-row { border-bottom-color: var(--rule); }
.price-row .now {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.price-card.featured .price-row .now { color: var(--accent); }
.price-row .per { color: var(--dark-muted); font-size: .95rem; }
.price-card.featured .price-row .per { color: var(--muted); }
.price-sub { color: var(--dark-muted); margin: 14px 0 0; font-size: .95rem; font-style: italic; }
.price-card.featured .price-sub { color: var(--muted); }
.price-list {
  list-style: none; padding: 0; margin: 20px 0 28px;
  flex: 1;
}
.price-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid var(--dark-rule);
}
.price-card.featured .price-list li { border-bottom-color: var(--rule-soft); color: var(--ink-2); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "→";
  position: absolute; left: 0; top: 10px;
  color: var(--accent); font-weight: 600;
  font-family: var(--font-body);
}
.price-card:not(.featured) .price-list li::before { color: var(--accent-3); }
.pricing-foot {
  margin-top: 36px; text-align: center;
  max-width: 700px; margin-left: auto; margin-right: auto;
  color: var(--dark-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
}
.pricing-foot strong { font-family: var(--font-body); font-style: normal; color: var(--dark-ink); }

/* ---- FAQ ---- */
.faq {
  background: transparent;
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  margin: 0;
}
.faq:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  line-height: 1.2;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.faq[open] summary::after { content: "–"; }
.faq p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 62ch;
}

/* ---- Lead form ---- */
.lead-form {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-paper);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.form-grid label {
  display: flex; flex-direction: column; gap: 7px;
}
.form-grid label.full { grid-column: 1 / -1; }
.form-grid span {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-grid input, .form-grid select, .form-grid textarea {
  background: var(--bg);
  border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  padding: 10px 2px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border .15s ease;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  border-bottom-width: 2.5px;
}
.form-grid textarea { resize: vertical; min-height: 100px; border: 1px solid var(--rule); border-radius: var(--r-sm); padding: 12px 14px; }
.form-grid textarea:focus { border-color: var(--accent); border-width: 1.5px; }
.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2313263a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
}
.form-foot { text-align: center; margin-top: 16px; }

/* ---- Thanks page ---- */
.thanks-badge {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 400;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 64px 0 28px;
  background: var(--bg);
  color: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.foot-cta-btn { margin-top: 4px; }
.foot-brand { max-width: 380px; }
.foot-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
  color: var(--ink);
}
.foot-mark { display: block; width: 28px; height: 28px; }
.foot-wordmark-text { font-size: 1.35rem; }
.foot-wordmark:hover .foot-wordmark-text { color: var(--ink); }
.foot-tag {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.foot-addr {
  font-style: normal;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}
.foot-addr strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
}
.foot-addr a { color: var(--ink-2); }
.foot-addr a:hover { color: var(--accent); }

.foot-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 6px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col li { font-size: .92rem; }
.foot-col a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
  display: inline-block;
}
.foot-col a:hover { color: var(--accent); transform: translateX(2px); }
.foot-col a.foot-cta {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .01em;
}
.foot-col a.foot-cta:hover { color: var(--accent-3); }

.foot-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted);
}
.foot-copy { letter-spacing: .01em; }
.foot-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-legal a { color: var(--muted); text-decoration: none; }
.foot-legal a:hover { color: var(--accent); }
.foot-badge {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .trap-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature, .feature-wide { grid-column: span 1; }
  .feature-media, .feature-media-tall { aspect-ratio: 4 / 3; }
  .feature-more { grid-template-columns: 1fr; gap: 10px; margin-top: 40px; padding-top: 24px; }
  .more-item > p { padding: 0 16px 14px 48px; }
  .swap-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-hero { padding: 56px 0 36px; }
  .cap-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
  .cap-card { padding: 22px 20px; }
  .vs-table, .vs-table thead, .vs-table tbody, .vs-table tr, .vs-table th, .vs-table td { display: block; }
  .vs-table thead { display: none; }
  .vs-table tr { border-bottom: 1px solid var(--rule); padding: 14px 0; }
  .vs-table tr:last-child { border-bottom: 0; }
  .vs-table td { padding: 6px 18px; border: 0; }
  .vs-table td.vs-capability { padding-top: 12px; padding-bottom: 8px; }
  .savings-card { grid-template-columns: 1fr; text-align: center; gap: 14px; padding: 26px; }
  .sav-num { font-size: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .foot-brand { grid-column: 1 / -1; max-width: none; }
  .foot-bottom { justify-content: center; text-align: center; }
  .foot-legal { justify-content: center; }
  .price-card.featured { transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .brand { font-size: 1.3rem; }
  .hero { padding: 60px 0 40px; }

  /* Mobile nav: hamburger + slide-down panel */
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 40px -18px rgba(28, 20, 14, 0.28);
    display: none;
    padding: 12px 20px 20px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  body.nav-open .primary-nav { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .primary-nav ul > li { width: 100%; }
  .primary-nav .nav-link,
  .primary-nav .nav-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
    opacity: 1;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
  }
  .primary-nav .nav-btn { justify-content: space-between; }
  .primary-nav .nav-btn > span { flex: 1; text-align: left; margin-left: 4px; }

  .nav-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 2px 0 8px 36px;
    min-width: 0;
  }
  .primary-nav .has-menu.open .nav-menu { display: block; }
  .nav-menu a { padding: 10px 12px; }
  .primary-nav .nav-cta {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }
  .primary-nav .nav-cta .btn { width: 100%; margin-left: 0; }
  .nav { padding: 12px 20px; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .wrap { padding: 0 20px; }
  .nav { padding: 12px 20px; }
  .lead-form { padding: 24px; }
  h1 { font-size: 3rem; line-height: 1; }
  .hero-copy .lede { font-size: 1.05rem; }
  .cta-row { gap: 12px; }
  .cta-row .btn { width: 100%; }
  .trust-row { gap: 10px 20px; }
  .faq summary { font-size: 1.1rem; }
  .compare { min-width: 640px; font-size: .85rem; }
  .compare th, .compare td { padding: 10px 12px; }
  .trap-foot { font-size: 1.15rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   BLOG
   ============================================================ */
.wrap-narrow { max-width: 760px; }

.crumbs {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.crumbs a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.crumbs a:hover { border-bottom-color: var(--accent); }
.crumbs span[aria-hidden] { margin: 0 8px; color: var(--rule); }

/* ---- Blog index ---- */
.blog-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
  padding: 70px 0 50px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 8px 0 16px;
  max-width: 920px;
}
.blog-hero-lede {
  font-family: var(--font-body);
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 680px;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.3fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.post-card:last-child { border-bottom: 1px solid var(--rule); }
.post-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  box-shadow: 0 14px 28px -20px rgba(26,20,14,0.28);
}
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms ease; }
.post-card:hover .post-card-media img { transform: scale(1.03); }
.post-card-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  display: inline-block;
}
.post-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.post-card h2 a { color: var(--ink); text-decoration: none; background-image: linear-gradient(var(--accent),var(--accent)); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size 220ms ease; }
.post-card h2 a:hover { background-size: 100% 1px; }
.post-card-deck { color: var(--ink-2); font-size: 1rem; line-height: 1.55; margin: 0 0 12px; }
.post-card-meta { color: var(--muted); font-size: 0.88rem; font-family: var(--font-body); }
.post-card-meta span[aria-hidden] { margin: 0 8px; color: var(--rule); }

@media (max-width: 820px) {
  .post-card { grid-template-columns: 1fr; gap: 18px; padding: 28px 0; }
}

/* ---- Single post ---- */
.post-head { padding: 60px 0 30px; background: var(--bg-2); border-bottom: 1px solid var(--rule); }
.post-category {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.post-head h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.post-deck {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 680px;
}
.post-meta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.post-meta span[aria-hidden] { margin: 0 10px; color: var(--rule); }

.post-hero {
  margin: 0;
  padding: 40px 24px 10px;
  max-width: 1280px;
  margin: 0 auto;
}
.post-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 40px -26px rgba(26,20,14,0.32);
}
.post-hero figcaption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  padding-top: 12px;
  text-align: center;
}

/* Post body typography — magazine feel */
.post-body {
  padding: 40px 0 20px;
  font-family: var(--font-body);
  font-size: 1.09rem;
  line-height: 1.72;
  color: var(--ink-2);
}
.post-body .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.post-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.post-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 32px 0 12px;
  color: var(--ink);
}
.post-body p { margin: 0 0 18px; }
.post-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,52,35,0.35);
  transition: border-color 180ms ease;
}
.post-body a:hover { border-bottom-color: var(--accent); }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body ul li::marker { color: var(--accent-3); }
.post-body blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent-3);
  background: transparent;
  color: var(--ink-2);
}
.post-body blockquote p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; line-height: 1.55; margin: 0; }

.post-figure {
  margin: 40px -40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.post-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule);
}
.post-figure figcaption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  padding-top: 12px;
  text-align: center;
}
@media (max-width: 820px) {
  .post-figure { margin: 32px 0; }
}

/* FAQ */
.post-faq {
  margin: 48px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--rule);
}
.post-faq > h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.faq-qa { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.faq-qa:first-of-type { border-top: 1px solid var(--rule); }
.faq-qa h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--ink);
}
.faq-qa p { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }

/* Tags */
.post-tags { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--rule); }
.post-tags h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.post-tags ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.post-tags li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-2);
  border: 1px solid var(--rule);
  padding: 6px 12px;
  background: var(--bg-2);
}

/* CTA */
.post-cta {
  margin-top: 56px;
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
}
.post-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.post-cta p { margin: 0 0 14px; color: var(--ink-2); }
.post-cta .btn + .btn { margin-left: 6px; }

/* Related */
.post-related { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--rule); }
.post-related h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 20px;
}
.post-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-related-card { display: block; color: inherit; text-decoration: none; }
.post-related-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--rule); margin-bottom: 12px; }
.post-related-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; line-height: 1.25; color: var(--ink); margin: 0; }
@media (max-width: 820px) { .post-related-grid { grid-template-columns: 1fr; } }
