/* =====================================================================
   M&A Playbook — Template styles
   Layered on top of kit.css. Editorial financial-paper.
   ===================================================================== */

@import url("assets/kit.css");

html, body { background: var(--bg); }
body { font-feature-settings: "lnum", "tnum"; }

/* Paper grain — let kit own it (z-index 1000, opacity 0.035). */

/* ─── EMBEDDED MODE ────────────────────────────────────────────────
   Host site owns its own nav + footer. We drop our top margin
   (was nav-h reservation) and let the page start at the hero. The
   bottom-most section now provides its own closing border so the
   page doesn't end on an unbordered band.
   ───────────────────────────────────────────────────────────────── */
.pb-embedded .pb-hero { margin-top: 0; padding-top: 96px; }

/* ─── HERO ─────────────────────────────────────────────────────────
   Company name is the headline. Italic continuation, lede below.
   ───────────────────────────────────────────────────────────────── */
.pb-hero {
  margin-top: var(--nav-h);
  padding: 128px 0 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.pb-hero-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.pb-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  font: 500 12px var(--sans); letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 56px;
}
.pb-hero-rule { display: inline-block; width: 64px; height: 1px; background: var(--rule-dk); }

.pb-hero-title {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 40px;
  text-wrap: balance;
}
.pb-hero-company {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 7.6vw, 124px); line-height: 0.96;
  letter-spacing: -0.038em; color: var(--ink);
  display: block;
}
.pb-hero-titletail {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 88px); line-height: 1.02;
  letter-spacing: -0.028em; display: block;
  margin-top: 8px;
}
.pb-hero-titletail em { font-style: italic; color: var(--accent); font-weight: 300; }

.pb-hero-lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5;
  letter-spacing: -0.005em; color: var(--ink-soft);
  max-width: 740px; margin-bottom: 80px;
  text-wrap: pretty;
}
.pb-hero-lede em { font-style: italic; color: var(--accent); font-weight: 400; }

/* ─── HERO META STRIP — sized to fit actual cells ─────────────────  */
.pb-hero-meta-strip {
  border-top: 1px solid var(--rule);
  background: var(--bg-alt);
}
.pb-hero-meta-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.pb-hero-mcell {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.pb-hero-mcell:first-child { padding-left: 0; }
.pb-hero-mcell:not(:first-child) { padding-left: 24px; }
.pb-hero-mcell:last-child { border-right: none; padding-right: 0; }
.pb-hero-mlabel {
  font: 500 10px var(--sans); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.pb-hero-mvalue {
  font: 500 14px var(--sans); color: var(--ink);
  font-feature-settings: "lnum", "tnum";
}
.pb-hero-mvalue.pulse { display: inline-flex; align-items: center; gap: 8px; }
.pb-hero-mvalue.pulse::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pb-pulse 2.4s ease-in-out infinite;
}
.pb-hero-mlink {
  font: 500 14px var(--sans); color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px; transition: color .2s;
}
.pb-hero-mlink:hover { color: var(--ink); }
.pb-hero-mlink svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.5; }


/* ─── SNAPSHOT ─────────────────────────────────────────────────────  */
.pb-snapshot { border-bottom: 1px solid var(--rule); background: var(--bg); }
.pb-snapshot-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  display: grid; grid-template-columns: repeat(4, 1fr);
  /* Shared row tracks so every tile's label / value / note line up across all 4 columns.
     Row 1 (auto) = label, sized by tallest label across all tiles.
     Row 2 (auto) = value, sized by tallest value.
     Row 3 (1fr)  = note, expands to fill remaining height — all notes share the same top edge. */
  grid-template-rows: auto auto 1fr;
}
.pb-snap {
  padding: 72px 36px 72px 0;
  border-right: 1px solid var(--rule);
  /* Subgrid: each tile uses the parent's 3 row tracks so label/value/note align across tiles. */
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 24px;
}
.pb-snap:first-child { padding-left: 0; }
.pb-snap:not(:first-child) { padding-left: 36px; }
.pb-snap:last-child { border-right: none; padding-right: 0; }
.pb-snap-label {
  font: 500 11px var(--sans); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  align-self: start;
}
.pb-snap-value {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 3.6vw, 56px); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--ink);
  font-feature-settings: "lnum", "tnum";
  align-self: start;
}
.pb-snap-value em { font-style: italic; color: var(--accent); font-weight: 300; }
.pb-snap-value-sm { font-size: clamp(16px, 1.4vw, 20px); letter-spacing: 0; line-height: 1.4; }
.pb-snap-value-md { font-size: clamp(22px, 1.9vw, 28px); }
.pb-snap-note {
  font: 400 13.5px/1.5 var(--sans); color: var(--muted);
  align-self: start;
}

/* ─── SECTION HEADER (shared) ──────────────────────────────────────  */
.pb-section-head {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  display: grid; grid-template-columns: 220px 1fr; gap: 80px;
  align-items: end; margin-bottom: 64px;
}
.pb-section-label {
  font: 500 12px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; gap: 12px;
}
.pb-section-rule { width: 56px; height: 1px; background: var(--rule-dk); }
.pb-section-label.on-dark { color: rgba(251,249,244,0.7); }
.pb-section-label.on-dark .pb-section-rule { background: rgba(251,249,244,0.35); }
.pb-section-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.04;
  letter-spacing: -0.028em; color: var(--ink); max-width: 22ch;
  text-wrap: balance;
}
.pb-section-h em { font-style: italic; color: var(--accent); font-weight: 300; }
.pb-section-sub {
  font-family: var(--serif); font-weight: 300;
  font-size: 19px; line-height: 1.5; letter-spacing: -0.005em;
  color: var(--ink-soft); max-width: 600px; margin-top: 22px;
  text-wrap: pretty;
}
.pb-patterns-wrap .pb-section-h { color: var(--paper); }
.pb-patterns-wrap .pb-section-h em { color: var(--accent-gold); }
.pb-patterns-wrap .pb-section-sub { color: rgba(251,249,244,0.75); }

/* ─── TIMELINE ─────────────────────────────────────────────────────  */
.pb-timeline-wrap { border-bottom: 1px solid var(--rule); padding: 120px 0 80px; }
.pb-timeline-svg-wrap {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
}
.pb-timeline { position: relative; height: 260px; width: 100%; }
.pb-timeline svg { display: block; width: 100%; height: 100%; overflow: visible; }
.pb-timeline-base { stroke: var(--rule-dk); stroke-width: 1; }
.pb-timeline-tick { stroke: var(--rule); stroke-width: 1; }
.pb-timeline-stem { stroke: var(--rule-dk); stroke-width: 1; stroke-dasharray: 0; }
.pb-timeline-dot {
  fill: var(--accent); stroke: var(--bg); stroke-width: 3;
  cursor: pointer; transition: fill .2s;
}
.pb-timeline-marker-g { cursor: pointer; }
.pb-timeline-marker-g:hover .pb-timeline-dot { fill: var(--ink); }
.pb-timeline-marker-g:hover .pb-timeline-label { fill: var(--ink); }
.pb-timeline-marker-g:hover .pb-timeline-stem { stroke: var(--ink); }
.pb-timeline-value {
  font-family: var(--serif); font-weight: 400; font-size: 18px;
  letter-spacing: -0.018em; fill: var(--ink);
  font-feature-settings: "lnum", "tnum";
}
.pb-timeline-label {
  font: 500 11px var(--sans); letter-spacing: 0.04em; fill: var(--muted);
  transition: fill .2s;
}
.pb-timeline-year {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 13px; fill: var(--accent);
}
.pb-timeline-axis-yr {
  font: 500 10px var(--sans); letter-spacing: 0.06em; fill: var(--dim);
}

/* ─── DEAL ENTRY — accordion ──────────────────────────────────────  */
#deals {
  background: var(--bg);
  padding: 120px 0 80px;
}
.pb-section-head-deals { align-items: end; }

.pb-deal-list {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  border-top: 1px solid var(--rule-dk);
}

.pb-deal {
  border-bottom: 1px solid var(--rule-dk);
  scroll-margin-top: 80px;
}
.pb-deal-inner { /* no extra container — pb-deal-list owns max-width */ }

/* the always-visible row (button) */
.pb-deal-row {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 120px 1fr 200px 140px 24px;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  background: transparent; border: none; cursor: pointer;
  text-align: left; font-family: inherit; color: inherit;
  transition: background .2s;
}
.pb-deal-row:hover { background: var(--bg-alt); }
.pb-deal.is-open .pb-deal-row {
  border-bottom: 1px solid var(--rule);
  background: var(--bg-alt);
}
.pb-deal-row-no {
  font: 500 12px var(--sans); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 6px;
}
.pb-deal-row-no-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: -0.005em; text-transform: none;
  color: var(--accent);
  font-feature-settings: "lnum", "tnum";
}
.pb-deal-row-yr {
  font: 500 13px var(--sans); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  font-feature-settings: "lnum", "tnum";
}
.pb-deal-row-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.1vw, 32px); line-height: 1.15;
  letter-spacing: -0.018em; color: var(--ink);
}
.pb-deal-row:hover .pb-deal-row-title { color: var(--accent); }
.pb-deal-row-segment {
  font: 400 13px/1.4 var(--sans); color: var(--muted);
}
.pb-deal-row-value {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.1vw, 32px); line-height: 1; letter-spacing: -0.022em;
  color: var(--ink); text-align: right;
  font-feature-settings: "lnum", "tnum";
}
.pb-deal-row-value em { font-style: italic; color: var(--accent); font-weight: 300; }
.pb-deal-row-chev {
  display: inline-flex; align-items: center; justify-content: flex-end;
  width: 24px; height: 24px; color: var(--muted);
  transition: transform .3s var(--ease-out), color .2s;
}
.pb-deal-row-chev svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pb-deal.is-open .pb-deal-row-chev { transform: rotate(180deg); color: var(--accent); }

/* the collapsible panel */
.pb-deal-panel {
  overflow: hidden;
  animation: pb-fade-in .35s var(--ease-out);
}
.pb-deal-panel[hidden] { display: none !important; }
@keyframes pb-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.pb-deal-panel-inner {
  padding: 48px 0 72px;
}

/* summary strip */
.pb-deal-summary {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.pb-deal-summary .pb-fact {
  padding: 20px 24px 20px 0; border-right: 1px solid var(--rule); border-top: none;
  display: flex; flex-direction: column; gap: 8px;
}
.pb-deal-summary .pb-fact:first-child { padding-left: 0; }
.pb-deal-summary .pb-fact:not(:first-child) { padding-left: 24px; }
.pb-deal-summary .pb-fact:last-child { border-right: none; padding-right: 0; }
.pb-fact-link {
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 13.5px var(--sans); color: var(--accent); transition: color .2s;
}
.pb-fact-link:hover { color: var(--ink); }
.pb-fact-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* body — narrative + facts */
.pb-deal-body {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 88px;
  align-items: start;
  margin-bottom: 64px;
}
.pb-narrative { min-width: 0; }
.pb-narrative > * + * { margin-top: 36px; }

.pb-description {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px); line-height: 1.5;
  letter-spacing: -0.012em; color: var(--ink);
  text-wrap: pretty;
}

.pb-caps { display: flex; flex-wrap: wrap; gap: 8px; }
.pb-cap {
  font: 500 12px var(--sans); color: var(--ink-soft);
  padding: 7px 12px; background: var(--bg); border: 1px solid var(--rule);
}

.pb-rationale {
  border-left: 2px solid var(--accent);
  padding: 8px 0 12px 28px;
}
.pb-rationale-body {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px); line-height: 1.5; letter-spacing: -0.008em;
  color: var(--ink);
  text-wrap: pretty;
}
.pb-rationale-body::before { content: "\201C"; margin-left: -10px; }
.pb-rationale-body::after  { content: "\201D"; }
.pb-rationale-attr {
  margin-top: 16px;
  font: 500 11px var(--sans); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* ── FINANCIALS — prominent in-deal block ─────────────────────── */
.pb-fin {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0 28px;
}
.pb-fin-head { margin-bottom: 24px; }
.pb-fin-tag {
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.pb-fin-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0; margin-bottom: 24px;
}
.pb-fin-cell {
  padding: 0 24px 0 0; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
}
.pb-fin-cell:not(:first-child) { padding-left: 24px; }
.pb-fin-cell:last-child { border-right: none; padding-right: 0; }
.pb-fin-l {
  font: 500 10px var(--sans); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.pb-fin-v {
  font-family: var(--serif); font-weight: 400;
  font-size: 18px; line-height: 1.3; letter-spacing: -0.012em;
  color: var(--ink-soft);
  font-feature-settings: "lnum", "tnum";
}
.pb-fin-cell-hero .pb-fin-v {
  font-size: clamp(40px, 3.8vw, 60px); letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
}
.pb-fin-cell-hero .pb-fin-v em { font-style: italic; color: var(--accent); font-weight: 300; }
.pb-fin-v-nd {
  font-style: italic; color: var(--dim); font-size: 14px;
}
.pb-fin-s {
  font: 400 13px/1.5 var(--sans); color: var(--muted);
}
.pb-fin-body {
  font: 400 14.5px/1.65 var(--sans); color: var(--ink-soft);
  padding-top: 20px; border-top: 1px solid var(--rule);
}
.pb-fin-body-l {
  display: inline-block; margin-right: 10px;
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  vertical-align: 1px;
}

/* ── WHY ATTRACTIVE — numbered serif list ─────────────────────── */
.pb-attractive { padding: 0; }
.pb-attractive-head { margin-bottom: 16px; }
.pb-attractive-tag {
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.pb-attractive-list {
  list-style: none;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.pb-attractive-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.pb-attractive-n {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 18px; letter-spacing: -0.005em; color: var(--accent);
  font-feature-settings: "lnum", "tnum";
}
.pb-attractive-text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.4; letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
}

/* ── CAPABILITIES wrap ─────────────────────────────────────────── */
.pb-capwrap-head { margin-bottom: 14px; }
.pb-capwrap-tag {
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}

/* facts column */
.pb-deal-facts {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 28px 28px 8px;
  min-width: 0;
}
.pb-facts-h {
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  padding-bottom: 14px; margin-bottom: 4px;
}
.pb-fact { padding: 14px 0; border-top: 1px solid var(--rule); }
.pb-deal-facts .pb-fact:first-of-type { border-top: none; padding-top: 14px; }
.pb-fact-label {
  display: block;
  font: 500 10px var(--sans); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.pb-fact-value {
  font: 400 13.5px/1.5 var(--sans); color: var(--ink-soft);
  font-feature-settings: "lnum", "tnum";
}
.pb-fact-value.nd { color: var(--dim); font-style: italic; }

/* quotes — FULL WIDTH, single-block layout */
.pb-quotes {
  display: flex; flex-direction: column; gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
}
.pb-quote {
  position: relative;
  padding-left: 56px;
}
.pb-quote::before {
  content: "\201C";
  position: absolute; left: 0; top: -0.15em;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 72px; line-height: 1; color: var(--accent);
}
.pb-quote-body {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px); line-height: 1.4;
  letter-spacing: -0.012em; color: var(--ink);
  text-wrap: pretty;
}
.pb-quote-attr {
  margin-top: 18px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  font: 500 11px var(--sans); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.pb-quote-attr-rule { display: inline-block; width: 24px; height: 1px; background: var(--rule-dk); }
.pb-quote-attr-who { color: var(--ink); }

/* post-close */
.pb-post {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.pb-post-tag {
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.pb-post-body {
  font: 400 14.5px/1.7 var(--sans); color: var(--ink-soft);
}

/* deal footer */
.pb-deal-footer {
  padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px;
}
.pb-deal-footer a {
  display: inline-flex; align-items: center; gap: 16px;
  font: 500 11px var(--sans); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.pb-deal-footer-link {
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.pb-deal-footer a:hover .pb-deal-footer-link { color: var(--ink); }
.pb-deal-footer svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pb-deal-footer-tr {
  font: 400 11px var(--sans); letter-spacing: 0.06em;
  color: var(--dim);
}

/* ─── PATTERNS ─────────────────────────────────────────────────────  */
.pb-patterns-wrap { background: var(--ink); padding: 140px 0; }
.pb-patterns {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(251,249,244,0.18);
}
.pb-pattern {
  padding: 56px 40px 56px 0;
  border-right: 1px solid rgba(251,249,244,0.18);
}
.pb-pattern:first-child { padding-left: 0; }
.pb-pattern:not(:first-child) { padding-left: 40px; }
.pb-pattern:last-child { border-right: none; padding-right: 0; }
.pb-pattern-n {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 18px; color: var(--accent-gold); margin-bottom: 32px;
}
.pb-pattern-tag {
  font: 500 10px var(--sans); letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(251,249,244,0.6); margin-bottom: 16px;
}
.pb-pattern-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--paper); margin-bottom: 24px;
}
.pb-pattern-body {
  font: 400 15.5px/1.7 var(--sans); color: rgba(251,249,244,0.78); margin-bottom: 28px;
}
.pb-pattern-ev { display: flex; flex-wrap: wrap; gap: 8px; }
.pb-pattern-evchip {
  font: 500 11px var(--sans); letter-spacing: 0.04em;
  color: rgba(251,249,244,0.88);
  padding: 5px 10px; border: 1px solid rgba(251,249,244,0.25);
}

/* ─── DEAL BOOK CLOSING STRIP — bridges to FAQs ───────────────────  */
.pb-deals-close {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  border-top: 1px solid var(--rule-dk);
}
.pb-deals-close-inner {
  padding: 28px 0 0;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: baseline;
}
.pb-deals-close-l {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 11px var(--sans); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.pb-deals-close-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.pb-deals-close-m {
  text-align: center;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.4;
  letter-spacing: -0.005em; color: var(--ink-soft);
  font-feature-settings: "lnum", "tnum";
}
.pb-deals-close-m em { font-style: italic; color: var(--accent); font-weight: 400; }
.pb-deals-close-sep { color: var(--rule-dk); margin: 0 12px; }
.pb-deals-close-r {
  text-align: right;
  font: 500 11px var(--sans); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* ─── FAQS — alt bg gives visual separation from dealbook ─────────  */
.pb-faqs {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-alt);
}
.pb-faq-head {
  max-width: var(--container-wide); margin: 0 auto 56px;
  padding: 0 var(--pad-page);
}
.pb-faq-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.04;
  letter-spacing: -0.028em; color: var(--ink);
}
.pb-faq-list {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  border-top: 1px solid var(--rule-dk);
}
.pb-faq {
  border-bottom: 1px solid var(--rule-dk);
}
.pb-faq-row {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  background: transparent; border: none; cursor: pointer;
  text-align: left; font-family: inherit; color: inherit;
  transition: background .2s;
}
.pb-faq-row:hover { background: var(--bg-alt); }
.pb-faq.is-open .pb-faq-row { background: var(--bg-alt); }
.pb-faq-n {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 20px; letter-spacing: -0.005em; color: var(--accent);
  font-feature-settings: "lnum", "tnum";
}
.pb-faq-q {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.25;
  letter-spacing: -0.018em; color: var(--ink);
  text-wrap: balance;
}
.pb-faq-row:hover .pb-faq-q { color: var(--accent); }
.pb-faq-chev {
  display: inline-flex; align-items: center; justify-content: flex-end;
  width: 24px; color: var(--muted);
  transition: transform .3s var(--ease-out), color .2s;
}
.pb-faq-chev svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pb-faq.is-open .pb-faq-chev { transform: rotate(180deg); color: var(--accent); }
.pb-faq-a {
  display: grid; grid-template-columns: 80px 1fr 32px; gap: 32px;
  padding: 0 0 36px;
  animation: pb-fade-in .35s var(--ease-out);
}
.pb-faq-a[hidden] { display: none !important; }
.pb-faq-a > p {
  grid-column: 2;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55;
  letter-spacing: -0.005em; color: var(--ink-soft);
  max-width: 820px;
  text-wrap: pretty;
}
.pb-toast {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 180; /* below nav (200), above content */
  display: flex; flex-direction: column; align-items: flex-end;
  font-family: var(--sans);
  pointer-events: none;
}
.pb-toast > * { pointer-events: auto; }

/* The always-visible pill */
.pb-toast-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 10px 7px 11px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  font: 500 11px var(--sans); letter-spacing: 0.005em;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(15, 19, 26, 0.16);
  transition: transform .2s var(--ease-out), box-shadow .2s;
  align-self: flex-end;
}
.pb-toast-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 19, 26, 0.24);
}
.pb-toast-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
  animation: pb-pulse 2.4s ease-in-out infinite;
}
.pb-toast-pill-text {
  white-space: nowrap;
}
.pb-toast-pill-text strong {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: -0.015em; font-size: 12px;
}
.pb-toast-pill-text em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 12px; color: var(--accent-gold);
}
.pb-toast-pill-chev {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  color: rgba(251,249,244,0.7);
  transition: transform .25s var(--ease-out);
}
.pb-toast-pill-chev svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pb-toast.is-open .pb-toast-pill-chev { transform: rotate(180deg); }

/* The expanded panel — sits above the pill */
.pb-toast-panel {
  position: relative;
  width: 300px; max-width: calc(100vw - 32px);
  background: var(--paper);
  border: 1px solid var(--rule-dk);
  padding: 18px 18px 16px;
  margin-bottom: 10px;
  box-shadow: 0 10px 30px rgba(15, 19, 26, 0.14);
  animation: pb-toast-in .35s var(--ease-out);
  align-self: flex-end;
}
@keyframes pb-toast-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.pb-toast-close {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: transparent; border: none; cursor: pointer;
  font-size: 24px; line-height: 1;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.pb-toast-close:hover { color: var(--ink); }

.pb-toast-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 9px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.pb-toast-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: pb-pulse 2.4s ease-in-out infinite;
}
.pb-toast-h {
  font-family: var(--serif); font-weight: 400;
  font-size: 21px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 10px;
  text-wrap: balance;
}
.pb-toast-h em { font-style: italic; color: var(--accent); font-weight: 300; }
.pb-toast-body {
  font: 400 12px/1.55 var(--sans); color: var(--ink-soft);
  margin-bottom: 14px;
  text-wrap: pretty;
}
.pb-toast-stats-h {
  font: 500 9px var(--sans); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 7px;
}
.pb-toast-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); /* lines between cells */
  border: 1px solid var(--rule);
  margin-bottom: 14px;
}
.pb-toast-stat {
  background: var(--paper);
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.pb-toast-stat-n {
  font-family: var(--serif); font-weight: 400;
  font-size: 18px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "lnum", "tnum";
}
.pb-toast-stat-n em { font-style: italic; color: var(--accent); font-weight: 400; }
.pb-toast-stat-l {
  font: 500 9px var(--sans); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.pb-toast-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px var(--sans); letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink);
  padding: 9px 12px;
  border: 1px solid var(--ink);
  transition: background .2s, color .2s;
  width: 100%; justify-content: center;
}
.pb-toast-cta:hover { background: var(--ink); color: var(--paper); }
.pb-toast-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }

@media (max-width: 600px) {
  .pb-toast { bottom: 12px; right: 12px; }
  .pb-toast-panel { width: calc(100vw - 24px); padding: 22px 22px 20px; }
  .pb-toast-pill-text { font-size: 12px; }
}

@media (max-width: 900px) {
  .pb-deals-close-inner { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .pb-deals-close-m, .pb-deals-close-r { text-align: left; }
}

/* ─── CTA ──────────────────────────────────────────────────────────  */
.pb-cta {
  padding: 120px 0;
  background: var(--ink); color: var(--bg);
  border-top: 1px solid rgba(251,249,244,0.18);
  position: relative; overflow: hidden;
}
.pb-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(197,165,98,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(91,72,36,0.20), transparent 60%);
}
.pb-cta-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-page);
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end;
}
.pb-cta-eyebrow {
  font: 500 11px var(--sans); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.pb-cta-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--accent-gold);
}
.pb-cta-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 5.6vw, 84px); line-height: 1.02;
  letter-spacing: -0.028em; color: var(--paper); max-width: 14ch;
  text-wrap: balance;
}
.pb-cta-h em { font-style: italic; color: var(--accent-gold); font-weight: 300; }
.pb-cta-sub {
  font: 400 15.5px/1.65 var(--sans); color: rgba(251,249,244,0.78);
  max-width: 480px; margin-bottom: 32px;
}
.pb-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pb-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 13px var(--sans); letter-spacing: 0.06em;
  padding: 16px 24px;
  background: var(--paper); color: var(--ink); border: 1px solid var(--paper);
  transition: background .2s, color .2s;
}
.pb-cta-btn:hover { background: transparent; color: var(--paper); }
.pb-cta-btn.alt {
  background: transparent; color: var(--paper); border-color: rgba(251,249,244,0.4);
}
.pb-cta-btn.alt:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.pb-cta-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ─── FOOTER ───────────────────────────────────────────────────────  */
.pb-footer {
  padding: 56px 0 36px;
  background: var(--ink);
  border-top: 1px solid rgba(251,249,244,0.12);
}
.pb-footer-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--pad-page);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  align-items: center;
}
.pb-footer-logo {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  letter-spacing: -0.015em; color: var(--paper);
}
.pb-footer-logo em { color: var(--accent-gold); font-style: italic; }
.pb-footer-mid {
  font: 400 12px/1.6 var(--sans); color: rgba(251,249,244,0.65);
  text-align: center;
}
.pb-footer-meta {
  text-align: right; font: 500 11px var(--sans); letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(251,249,244,0.55);
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.pb-footer-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-gold); transition: color .2s;
}
.pb-footer-link:hover { color: var(--paper); }
.pb-footer-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pb-footer-meta-pulse { display: inline-flex; align-items: center; gap: 8px; }
.pb-footer-meta-pulse::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-gold);
  animation: pb-pulse 2.4s ease-in-out infinite;
}
@keyframes pb-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ─── TWEAKS — density modifiers ──────────────────────────────────  */
.pb-density-compact .pb-deal { padding: 56px 0 72px; }
.pb-density-compact .pb-deal-title { margin-bottom: 24px; }
.pb-density-compact .pb-deal-body { margin-bottom: 48px; }
.pb-density-compact .pb-narrative > * + * { margin-top: 28px; }
.pb-density-compact .pb-quotes { padding: 40px 0; gap: 40px; margin-bottom: 40px; }
.pb-density-compact .pb-description { font-size: 19px; }
.pb-density-compact .pb-hero { padding-top: 88px; }
.pb-density-compact .pb-hero-sub { margin-bottom: 56px; }

.pb-hide-nd .pb-fact.is-nd { display: none; }
.pb-show-nd-dash .pb-fact-value.nd { font-style: normal; }

.pb-stacked .pb-deal-body { grid-template-columns: 1fr; gap: 48px; }
.pb-stacked .pb-deal-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px;
  background: transparent; border: none; padding: 24px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.pb-stacked .pb-deal-facts .pb-facts-h { grid-column: 1 / -1; border-bottom: 1px solid var(--rule); padding-bottom: 14px; margin-bottom: 14px; }
.pb-stacked .pb-fact { border-top: none !important; padding: 10px 0; }

/* ─── RESPONSIVE ───────────────────────────────────────────────────
   Strategy:
   - 1280px down: tighten padding, narrow sidebars; keep grids intact
   - 1100px down: deal-row strips columns, but rest of page stays
   - 900px down: full stacking (snapshot/hero-meta/etc go single-column)
   ─────────────────────────────────────────────────────────────── */

@media (max-width: 1280px) {
  :root { --pad-page: 40px; }
  .pb-section-head { grid-template-columns: 180px 1fr; gap: 48px; }
  .pb-deal-body { grid-template-columns: minmax(0, 1fr) 280px; gap: 56px; }
  .pb-deal-row { grid-template-columns: 48px 96px 1fr 180px 120px 24px; gap: 24px; }
  .pb-deal-row-segment { font-size: 12px; }
  .pb-quote { padding-left: 48px; }
  .pb-quote::before { font-size: 64px; }
}

@media (max-width: 1100px) {
  .pb-deal-row {
    grid-template-columns: 48px 88px 1fr 110px 24px;
    gap: 20px;
  }
  .pb-deal-row-segment { display: none; }
}

@media (max-width: 900px) {
  :root { --pad-page: 24px; }
  .pb-section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }

  .pb-hero { padding-top: 80px; }
  .pb-hero-eyebrow { margin-bottom: 32px; }
  .pb-hero-meta-inner { grid-template-columns: 1fr; }
  .pb-hero-mcell {
    border-right: none !important;
    border-bottom: 1px solid var(--rule);
    padding: 14px 0 !important;
  }
  .pb-hero-mcell:last-child { border-bottom: none; }

  .pb-snapshot-inner { grid-template-columns: repeat(2, 1fr); }
  .pb-snap {
    border-right: none !important; border-bottom: 1px solid var(--rule);
    padding: 32px 0 !important;
  }
  .pb-snap:nth-child(odd) { border-right: 1px solid var(--rule) !important; padding-right: 20px !important; }
  .pb-snap:nth-child(even) { padding-left: 20px !important; }

  .pb-deal-row {
    grid-template-columns: auto 1fr auto 24px;
    gap: 16px; padding: 20px 0;
  }
  .pb-deal-row-yr { display: none; }
  .pb-deal-row-title { font-size: 20px; }
  .pb-deal-row-value { font-size: 20px; }

  .pb-deal-body { grid-template-columns: 1fr; gap: 40px; }

  .pb-deal-summary { grid-template-columns: repeat(2, 1fr); }
  .pb-deal-summary .pb-fact {
    border-right: none !important; border-bottom: 1px solid var(--rule);
    padding: 14px 0 !important;
  }
  .pb-deal-summary .pb-fact:nth-child(odd) { border-right: 1px solid var(--rule) !important; padding-right: 16px !important; }
  .pb-deal-summary .pb-fact:nth-child(even) { padding-left: 16px !important; }
  .pb-deal-summary .pb-fact:last-child { grid-column: 1 / -1; border-bottom: none !important; }

  .pb-attractive-item { grid-template-columns: 40px 1fr; gap: 14px; }

  .pb-fin-grid { grid-template-columns: 1fr; gap: 0; }
  .pb-fin-cell {
    border-right: none !important; border-bottom: 1px solid var(--rule);
    padding: 14px 0 !important;
  }
  .pb-fin-cell:last-child { border-bottom: none; }

  .pb-patterns { grid-template-columns: 1fr; }
  .pb-pattern {
    border-right: none; border-bottom: 1px solid rgba(251,249,244,0.18);
    padding: 32px 0 !important;
  }
  .pb-pattern:last-child { border-bottom: none; }

  .pb-cta-inner { grid-template-columns: 1fr; gap: 28px; }

  .pb-footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .pb-footer-mid { text-align: left; }
  .pb-footer-meta { text-align: left; align-items: flex-start; }
}

/* ─── COVERAGE STRIP ──────────────────────────────────────────────── */
.pb-coverage {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.pb-coverage-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 16px var(--pad-page);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font: 400 13px/1.5 var(--sans); color: var(--ink-soft);
}
.pb-coverage-left {
  display: inline-flex; align-items: center; gap: 12px;
}
.pb-coverage-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.pb-coverage-dot.is-full     { background: #2e7d54; }
.pb-coverage-dot.is-high     { background: #b58a25; }
.pb-coverage-dot.is-partial  { background: #c14b3a; }
.pb-coverage-dot.is-verified { background: #2e7d54; }   /* matches "Verified" label */
.pb-coverage-label {
  font: 500 10px var(--sans); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.pb-coverage-stat strong {
  font-family: var(--serif); font-weight: 500;
  color: var(--ink); font-size: 15px;
  font-feature-settings: "lnum", "tnum";
}
.pb-coverage-right { display: inline-flex; align-items: center; }
.pb-coverage-complete {
  font-style: italic; color: var(--muted);
}
.pb-coverage-details summary {
  cursor: pointer; color: var(--accent);
  font-weight: 500;
  list-style: none;
}
.pb-coverage-details summary::-webkit-details-marker { display: none; }
.pb-coverage-details summary::before {
  content: "▸ ";
  transition: transform .2s;
  display: inline-block;
}
.pb-coverage-details[open] summary::before { content: "▾ "; }
.pb-coverage-missing {
  margin: 12px 0 4px;
  padding-left: 18px;
  font: 400 13px/1.6 var(--sans); color: var(--ink-soft);
}
.pb-coverage-missing li { margin-bottom: 2px; }
.pb-coverage-cite {
  margin-top: 8px;
  font: 400 11px/1.5 var(--sans); color: var(--muted);
}
.pb-coverage-cite a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================================
   SITE CHROME — nav + footer copied from vectorshift.ai/pe-basic/vF/index.html
   so playbook pages render with the same top bar and bottom footer as the
   main site. Keep these rules in sync if the live site's chrome changes.
   ===================================================================== */

/* Fixed nav (56px high) — push playbook content down so it isn't hidden. */
.pb-root.pb-embedded { margin-top: 56px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 56px;
  background: rgba(255,254,251,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
  height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Newsreader', 'Times New Roman', Georgia, serif;
  font-size: 24px; font-weight: 500; letter-spacing: -0.015em;
  color: var(--ink); white-space: nowrap;
}
.nav-logo em { font-style: normal; font-weight: 500; color: #8B7548; }
.nav-links {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
}
.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-login {
  font-size: 14px; font-weight: 400; color: var(--ink-soft);
  transition: color 0.2s; white-space: nowrap;
}
.nav-login:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 8px 16px; border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* Footer (dark) */
.footer {
  padding: 72px 0 48px; background: var(--ink);
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.footer-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: center;
}
.footer-logo {
  font-family: 'Newsreader', 'Times New Roman', Georgia, serif;
  font-size: 22px; font-weight: 400; letter-spacing: -0.015em;
  color: var(--bg);
}
.footer-logo em { color: var(--bg); font-style: normal; }
.footer-links {
  display: flex; gap: 32px; list-style: none; justify-self: center;
}
.footer-links a {
  font-size: 13.5px; font-weight: 400;
  color: rgba(242,239,232,0.85);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bg); }
.footer-copy {
  font-size: 12px; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(242,239,232,0.6); justify-self: end;
}
