/* Jafar Management — 2026 redesign
   Brand palette preserved from jafarmanagement.com:
   navy #012444 · blue #013e77 · olive #99B207 · gold #f8b12d */

:root {
  --navy: #012444;
  --navy-deep: #01192f;
  --blue: #013e77;
  --olive: #99b207;
  --gold: #f8b12d;
  --ink: #14181f;
  --slate: #4d5765;
  --line: #e2e0d8;
  --paper: #ffffff;
  --sand: #f6f4ee;
  --sand-2: #efece3;

  --max: 1180px;
  --gut: clamp(20px, 5vw, 56px);
  --r: 14px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.015em; line-height: 1.12; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--gold); }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--slate); max-width: 62ch; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  padding: 14px 24px; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #22160a; }
.btn--gold:hover { background: #ffc356; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--blue); }
.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost-dark { border-color: rgba(1,36,68,.28); color: var(--navy); }
.btn--ghost-dark:hover { border-color: var(--navy); background: rgba(1,36,68,.05); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(1, 25, 47, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: 14.5px; font-weight: 500; letter-spacing: .01em;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; border-color: var(--gold); }
.nav .btn { padding: 11px 20px; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid rgba(255,255,255,.3);
  color: #fff; border-radius: 8px; padding: 8px 12px; font-size: 13px; font-weight: 600;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--navy-deep); border-bottom: 1px solid rgba(255,255,255,.12);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 16px var(--gut) 24px; margin: 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 10px 0; width: 100%; }
  .nav-links .btn { margin-top: 10px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 78% 0%, #04365f 0%, var(--navy) 42%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(72px, 11vw, 132px) 0 clamp(64px, 9vw, 108px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 78%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { font-size: clamp(34px, 5vw, 60px); letter-spacing: -0.025em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lede { color: rgba(255,255,255,.78); margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats div { min-width: 0; }
.hero-stats dt { font-family: var(--serif); font-size: 30px; color: #fff; }
.hero-stats dd {
  margin: 6px 0 0; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- figure / image slots ---------- */
.hero-grid .figure { min-height: 380px; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 34px 70px -34px rgba(0,0,0,.65); }
.figure { position: relative; border-radius: var(--r); overflow: hidden; background: var(--sand-2); }
.figure-art { display: block; width: 100%; height: 100%; }

/* ---------- sections ---------- */
section { padding: clamp(64px, 8vw, 110px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(27px, 3.4vw, 42px); }
.section-head p { margin-top: 18px; }
.sand { background: var(--sand); }
.navy { background: var(--navy); color: #fff; }
.navy .lede, .navy p { color: rgba(255,255,255,.78); }
.navy .section-head h2 { color: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .grid-2, .grid-3, .split { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(1,36,68,.45); border-color: #cfcabb; }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--slate); font-size: 16px; }
.card .kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.card--olive { border-top: 3px solid var(--olive); }
.card--gold { border-top: 3px solid var(--gold); }
.card--blue { border-top: 3px solid var(--blue); }

/* feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.feature { background: var(--paper); padding: clamp(22px, 3vw, 32px); }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { font-size: 15.5px; color: var(--slate); margin: 0; }
.feature-num { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--gold); display: block; margin-bottom: 14px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* steps */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.step { position: relative; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22); }
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-family: var(--serif); font-size: 15px; color: var(--gold);
  position: absolute; top: -30px; left: 0;
}
.step h3 { font-size: 21px; color: #fff; margin-bottom: 10px; }
.step p { font-size: 15.5px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 44px; } }

/* quote */
.quote { border-left: 3px solid var(--gold); padding-left: clamp(20px, 3vw, 34px); }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(19px, 2.1vw, 25px); line-height: 1.45; }
.quote cite { display: block; margin-top: 22px; font-family: var(--sans); font-style: normal; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.navy .quote cite { color: rgba(255,255,255,.62); }

/* comparison table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }
table.cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14.5px; }
table.cmp th, table.cmp td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); }
table.cmp thead th {
  font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); vertical-align: bottom; background: var(--sand);
}
table.cmp tbody th {
  text-align: left; font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink);
  min-width: 240px;
}
table.cmp .col-jm { background: rgba(1,36,68,.045); font-weight: 700; color: var(--navy); }
table.cmp thead .col-jm { background: var(--navy); color: #fff; }
.mark-y { color: var(--olive); font-weight: 700; }
.mark-n { color: #b9b4a8; }
.table-note { font-size: 13px; color: var(--slate); margin-top: 14px; }

/* contact */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }
.contact-list span { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; }

/* CTA band */
.cta-band { background: linear-gradient(115deg, var(--navy) 0%, var(--blue) 100%); color: #fff; }
.cta-band .inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-band h2 { font-size: clamp(25px, 3vw, 36px); max-width: 20ch; }

/* footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: clamp(48px, 6vw, 72px) 0 32px; font-size: 14.5px; }
.site-footer img { height: 42px; width: auto; margin-bottom: 18px; }
.site-footer h4 { font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.legal { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: rgba(255,255,255,.5); display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn:hover, .card:hover { transform: none; } }

/* ============================================================
   Utilities, forms, blog and article styles
   ============================================================ */
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #22160a; padding: 10px 16px; border-radius: 0 0 8px 0;
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.h2-sm { font-size: clamp(25px, 3.2vw, 38px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.quote-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.split--top { align-items: start; }
.section-head--row {
  max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.section-head--row h2 { font-size: clamp(27px, 3.4vw, 42px); }
.hero--page { padding-bottom: clamp(48px, 7vw, 82px); }
.hero-narrow { position: relative; z-index: 2; max-width: 820px; }
.hero--page h1 { font-size: clamp(31px, 4.4vw, 52px); }
.hero-narrow .lede { color: rgba(255,255,255,.78); margin-top: 20px; }
.hero-meta { margin-top: 26px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero-meta a { color: var(--gold); text-decoration: none; }

/* ---------- blog controls ---------- */
.blog-controls {
  display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center;
  justify-content: space-between; margin-bottom: clamp(28px, 4vw, 44px);
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: inherit; font-size: 13.5px; font-weight: 500; cursor: pointer;
  padding: 8px 16px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); color: var(--slate);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.search input {
  font: inherit; font-size: 15px; padding: 10px 16px; min-width: 240px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink);
}
.search input::placeholder { color: #98a1ad; }

/* ---------- post cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -30px rgba(1,36,68,.5); border-color: #cfcabb; }
.post-card > a { display: flex; flex-direction: column; gap: 12px; height: 100%; padding: clamp(22px, 2.6vw, 28px); text-decoration: none; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.tag { background: var(--sand-2); color: var(--navy); font-weight: 600; padding: 4px 10px; border-radius: 999px; letter-spacing: .06em; }
.post-card h3 { font-size: 22px; line-height: 1.2; color: var(--ink); }
.post-card p { font-size: 15px; color: var(--slate); margin: 0; flex: 1 1 auto; }
.post-more { font-size: 13.5px; font-weight: 600; color: var(--blue); }
.post-card:hover .post-more { color: var(--navy); }
.empty-state { margin-top: 32px; color: var(--slate); }
.link-btn { font: inherit; background: none; border: 0; padding: 0; color: var(--blue); font-weight: 600; cursor: pointer; text-decoration: underline; }

/* ---------- article ---------- */
.post-header {
  background: radial-gradient(120% 130% at 80% 0%, #04365f 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: #fff; padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 62px);
}
.post-header h1 { font-size: clamp(30px, 4vw, 48px); }
.post-header .eyebrow a { color: var(--gold); text-decoration: none; }
.post-byline { margin-top: 20px; font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.prose { max-width: 720px; margin: clamp(44px, 6vw, 72px) 0 0; font-size: 17.5px; line-height: 1.75; }
.prose > * + * { margin-top: 1.25em; }
.prose h2, .prose h3 { font-size: clamp(21px, 2.3vw, 27px); margin-top: 2em; line-height: 1.25; }
.prose h3 strong, .prose h2 strong { font-weight: 400; }
.prose p { margin-bottom: 0; }
.prose strong { font-weight: 600; color: var(--navy); }
.prose em { font-style: italic; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .6em; }
.prose blockquote {
  margin: 2em 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--gold);
  font-family: var(--serif); font-size: 20px; line-height: 1.5; color: var(--ink);
}
.prose blockquote p + p { margin-top: .8em; }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2.6em 0; }
.prose figure { margin: 2.2em 0; }
.prose img {
  width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.prose sup { font-size: .7em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose--legal { max-width: 780px; font-size: 16.5px; }
.prose--legal h2 { font-size: 20px; }
.prose--legal h3 { font-size: 19px; margin-top: 1.9em; }

.post-foot { max-width: 720px; margin: clamp(40px, 5vw, 60px) 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.post-foot p { font-size: 15.5px; color: var(--slate); }
.post-foot a { color: var(--blue); }
.post { padding-bottom: clamp(56px, 7vw, 96px); }
.pagers { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin-top: 26px; }
.pager {
  display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; transition: border-color .25s ease, background-color .25s ease;
}
.pager:hover { border-color: var(--navy); background: var(--sand); }
.pager span { display: block; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.pager strong { font-family: var(--serif); font-weight: 400; font-size: 18px; color: var(--navy); }
.pager--next { text-align: right; }

/* ---------- forms ---------- */
.form-card { background: var(--sand); }
.form-card p { color: var(--slate); font-size: 15.5px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(1,62,119,.12); }
.form-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; min-height: 1.2em; }
.form-status.is-error { color: #a3311f; }
.form-status.is-ok { color: var(--blue); }

/* ---------- scheduler ---------- */
.scheduler { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.scheduler iframe { display: block; width: 100%; height: 720px; border: 0; }
@media (max-width: 640px) { .scheduler iframe { height: 820px; } }

/* ---------- footer tweaks ---------- */
.contact-list { margin-bottom: 28px; }

/* ---------- eyebrow labels: larger, still restrained ---------- */
.eyebrow { font-size: 14px; letter-spacing: .13em; }
.post-meta { font-size: 13px; }
.tag { font-size: 12.5px; }

/* ---------- form hardening ---------- */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field--check label { text-transform: none; letter-spacing: .02em; font-size: 13.5px; color: var(--ink); }
.field--check input { max-width: 120px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--slate); }

/* ---------- footer ---------- */
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px); padding-bottom: clamp(36px, 5vw, 52px);
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; color: rgba(255,255,255,.66); }
.footer-contact { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 8px; }
.footer-contact a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(248,177,45,.5); padding-bottom: 1px; }
.footer-contact a:hover { border-color: var(--gold); color: var(--gold); }
.footer-nav h4, .footer-cta-label {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: #fff; margin: 0 0 18px;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-nav a { color: rgba(255,255,255,.66); text-decoration: none; transition: color .2s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-cta {
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r);
  padding: clamp(22px, 2.4vw, 28px); background: rgba(255,255,255,.04);
}
.footer-cta p:not(.footer-cta-label) { color: rgba(255,255,255,.66); font-size: 15px; margin-bottom: 20px; max-width: 26ch; }
.footer-cta .btn { padding: 12px 20px; }
.legal {
  margin-top: 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.52);
}
.legal-links { display: flex; flex-wrap: wrap; gap: 22px; }
.legal-links a { color: rgba(255,255,255,.52); text-decoration: none; }
.legal-links a:hover { color: var(--gold); }
.disclaimer { margin-top: 18px; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.4); max-width: 92ch; }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- homepage hero portrait ---------- */
.hero-portrait { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; align-self: start; }
.hero-portrait img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  object-position: 50% 22%; filter: saturate(.96) contrast(1.02);
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(1,25,47,.82) 0%, rgba(1,25,47,.24) 34%, rgba(1,25,47,0) 62%);
}
.hero-portrait figcaption {
  position: absolute; left: clamp(20px, 2.2vw, 28px); right: clamp(20px, 2.2vw, 28px);
  bottom: clamp(20px, 2.2vw, 26px); z-index: 1; display: grid; gap: 4px;
  padding-top: 16px; border-top: 2px solid var(--gold);
}
.hero-portrait figcaption strong {
  font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 1.7vw, 23px); color: #fff;
}
.hero-portrait figcaption span {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
@media (max-width: 860px) { .hero-portrait { max-width: 420px; } }

/* multi-paragraph pull quote */
.quote blockquote p { margin: 0 0 .7em; }
.quote blockquote p:last-child { margin-bottom: 0; }
.quote blockquote { font-size: clamp(17.5px, 1.65vw, 21px); line-height: 1.55; }
