:root {
  --navy: #0D1B2A;
  --navy-2: #13283D;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --cream: #F7F4EE;
  --paper: #FCFBF8;
  --charcoal: #2C2C2C;
  --mid-gray: #68645F;
  --light-rule: #DED8CE;
  --white: #FFFFFF;
  --success: #2E6048;
  --error: #A63D32;
  --shadow: 0 22px 60px rgba(13, 27, 42, 0.13);
  --max-width: 1160px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
p + p { margin-top: 18px; }
.container { width: min(100% - 48px, var(--max-width)); margin-inline: auto; }
.text-center { text-align: center; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus { top: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--navy { color: var(--navy); }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy p { color: var(--gold-light); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-top: 16px; color: var(--navy); font-size: clamp(34px, 5vw, 52px); }
.section--navy .section-heading h2 { color: var(--cream); }
.section-heading p { margin-top: 18px; color: var(--mid-gray); font-size: 18px; }
.section--navy .section-heading p { color: var(--gold-light); }

.topbar { background: #07111C; color: var(--gold-light); font-size: 13px; letter-spacing: 0.06em; }
.topbar .container { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: var(--gold); font-weight: 700; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.24);
  backdrop-filter: blur(12px);
}
.header-inner { width: min(100% - 48px, var(--max-width)); min-height: 82px; margin-inline: auto; display: flex; align-items: center; gap: 28px; }
.logo { flex: 0 1 auto; min-width: 0; line-height: 1; }
.logo-name { display: block; color: var(--gold); font-family: var(--font-head); font-size: 26px; letter-spacing: 0.04em; }
.logo-tag { display: block; margin-top: 7px; color: var(--cream); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--cream); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav .nav-cta { min-height: 44px; padding: 11px 18px; display: inline-flex; align-items: center; background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }
.main-nav .nav-cta:hover { background: var(--gold-light); color: var(--navy); }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; position: relative; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { position: absolute; left: 8px; width: 28px; height: 2px; background: var(--gold); transition: .25s ease; }
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.btn {
  min-height: 50px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--outline { border-color: rgba(232, 213, 163, 0.72); color: var(--cream); }
.btn--outline:hover { background: var(--cream); border-color: var(--cream); color: var(--navy); }
.btn--navy { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.btn--navy:hover { background: var(--navy-2); }
.btn--text { min-height: auto; padding: 0; color: var(--navy); border: 0; }
.btn-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--cream); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background: linear-gradient(90deg, rgba(201,168,76,.08) 1px, transparent 1px), linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-grid { min-height: 640px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 64px; align-items: center; position: relative; z-index: 1; padding: 58px 0; }
.hero-copy h1 { max-width: 790px; margin-top: 20px; font-size: clamp(44px, 4.6vw, 62px); color: var(--cream); }
.hero-copy .lead { max-width: 730px; margin-top: 24px; color: var(--gold-light); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-copy.fade-in { opacity: 1; transform: none; }
.hero-meta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--cream); font-size: 14px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.hero-portrait { position: relative; align-self: end; }
.portrait-frame { max-width: 420px; margin-left: auto; position: relative; overflow: hidden; border: 1px solid rgba(201,168,76,.55); background: var(--cream); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.portrait-frame img { width: 100%; height: 525px; object-fit: cover; object-position: 50% 17%; }
.portrait-proof { width: min(330px, 86%); margin: -64px 0 34px -36px; padding: 24px 26px; position: relative; z-index: 2; background: var(--cream); border-left: 4px solid var(--gold); color: var(--navy); box-shadow: var(--shadow); }
.portrait-proof strong { display: block; font-family: var(--font-head); font-size: 22px; line-height: 1.25; }
.portrait-proof span { display: block; margin-top: 8px; color: var(--mid-gray); font-size: 14px; line-height: 1.5; }
.hero--compact .hero-grid { min-height: auto; padding: 84px 0; grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr); }
.hero--compact .hero-copy h1 { font-size: clamp(40px, 5vw, 62px); }
.hero--compact .portrait-frame { max-width: 330px; }
.hero--compact .portrait-frame img { height: 412px; }

.proof-strip { background: var(--cream); border-bottom: 1px solid var(--light-rule); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 30px 26px; border-right: 1px solid var(--light-rule); }
.proof-item:first-child { border-left: 1px solid var(--light-rule); }
.proof-item strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 21px; line-height: 1.2; }
.proof-item span { display: block; margin-top: 7px; color: var(--mid-gray); font-size: 13px; line-height: 1.45; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { min-height: 100%; padding: 34px 30px; background: var(--white); border: 1px solid var(--light-rule); border-top: 4px solid var(--gold); box-shadow: 0 14px 42px rgba(13,27,42,.06); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-number { display: block; margin-bottom: 34px; color: var(--gold); font-family: var(--font-head); font-size: 18px; }
.card h3 { color: var(--navy); font-size: 25px; }
.card p { margin-top: 14px; color: var(--mid-gray); font-size: 16px; }
.card-link { margin-top: 24px; display: inline-flex; color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-link::after { content: "\2192"; margin-left: 8px; color: var(--gold); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); gap: 70px; align-items: start; }
.split h2 { margin-top: 16px; color: var(--cream); font-size: clamp(36px, 5vw, 54px); }
.split .body-copy { margin-top: 24px; color: var(--gold-light); font-size: 18px; }
.evidence-panel { padding: 34px; border: 1px solid rgba(201,168,76,.52); background: rgba(255,255,255,.035); }
.evidence-panel h3 { color: var(--gold); font-size: 24px; }
.evidence-list { margin-top: 24px; list-style: none; }
.evidence-list li { padding: 16px 0 16px 28px; position: relative; border-top: 1px solid rgba(201,168,76,.18); color: var(--cream); }
.evidence-list li::before { content: ""; position: absolute; left: 2px; top: 25px; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

.matter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 46px; }
.matter-item { padding: 22px 0; border-bottom: 1px solid var(--light-rule); }
.matter-item h3 { color: var(--navy); font-family: var(--font-body); font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }
.matter-item p { margin-top: 7px; color: var(--mid-gray); font-size: 15px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step { padding-top: 24px; border-top: 2px solid var(--gold); }
.process-step .step { color: var(--gold); font-family: var(--font-head); font-size: 32px; }
.process-step h3 { margin-top: 14px; color: var(--cream); font-family: var(--font-body); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.process-step p { margin-top: 10px; color: var(--gold-light); font-size: 15px; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card { padding: 30px; background: var(--white); border: 1px solid var(--light-rule); }
.resource-card .resource-type { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.resource-card h3 { margin-top: 14px; color: var(--navy); font-size: 23px; }
.resource-card p { margin-top: 14px; color: var(--mid-gray); font-size: 15px; }
.resource-card .card-link { margin-top: 22px; }

.cta-band { padding: 80px 0; background: var(--gold); color: var(--navy); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; }
.cta-band h2 { font-size: clamp(34px, 5vw, 50px); }
.cta-band p { max-width: 720px; margin-top: 14px; color: var(--navy); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 250px; }
.cta-actions .phone-link { text-align: center; color: var(--navy); font-family: var(--font-head); font-size: 21px; font-weight: 700; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; align-items: start; }
.content-main h2 { margin-top: 46px; color: var(--navy); font-size: 36px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 30px; color: var(--navy); font-size: 25px; }
.content-main p, .content-main li { color: var(--charcoal); }
.content-main ul { margin: 18px 0 0 22px; }
.content-main li + li { margin-top: 9px; }
.side-card { position: sticky; top: 112px; padding: 30px; background: var(--navy); color: var(--cream); border-top: 4px solid var(--gold); }
.side-card h2, .side-card h3 { color: var(--cream); font-size: 27px; }
.side-card p { margin-top: 14px; color: var(--gold-light); font-size: 15px; }
.side-card .btn { width: 100%; margin-top: 22px; }
.side-card ul { margin-top: 18px; list-style: none; }
.side-card li { padding: 10px 0; border-top: 1px solid rgba(201,168,76,.18); color: var(--gold-light); font-size: 14px; }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 42px; }
.detail-item { padding: 0 0 26px; border-bottom: 1px solid var(--light-rule); }
.detail-item h3 { color: var(--gold); font-family: var(--font-body); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.detail-item p { margin-top: 10px; color: var(--charcoal); font-size: 16px; }

.bio-grid { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 64px; align-items: start; }
.bio-photo { padding: 18px; background: var(--navy); border: 1px solid var(--light-rule); }
.bio-photo img { width: 100%; height: 430px; object-fit: cover; object-position: 50% 17%; }
.bio-caption { padding: 22px 8px 8px; color: var(--cream); }
.bio-caption strong { display: block; color: var(--gold); font-family: var(--font-head); font-size: 23px; }
.bio-caption span { display: block; margin-top: 6px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.bio-copy h2 { color: var(--navy); font-size: clamp(36px, 5vw, 50px); }
.bio-copy p { margin-top: 18px; }
.qualification-list { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; list-style: none; }
.qualification-list li { padding: 14px 0 14px 22px; position: relative; border-top: 1px solid var(--light-rule); font-size: 15px; }
.qualification-list li::before { content: ""; position: absolute; left: 1px; top: 23px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

.faq-list { max-width: 900px; }
.faq-item { padding: 26px 0; border-top: 1px solid var(--light-rule); }
.faq-item:last-child { border-bottom: 1px solid var(--light-rule); }
.faq-item h3 { color: var(--navy); font-size: 23px; }
.faq-item p { margin-top: 10px; color: var(--mid-gray); }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: start; }
.contact-intro h2 { color: var(--navy); font-size: 38px; }
.contact-detail { margin-top: 34px; }
.contact-detail + .contact-detail { margin-top: 26px; }
.contact-detail span { display: block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-detail strong, .contact-detail a { display: block; margin-top: 4px; color: var(--navy); font-family: var(--font-head); font-size: 22px; }
.contact-form { padding: 38px; background: var(--white); border: 1px solid var(--light-rule); border-top: 4px solid var(--gold); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-row { margin-bottom: 18px; }
.form-row--full { grid-column: 1 / -1; }
.form-row label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.form-row input, .form-row select, .form-row textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #CFC8BD; border-radius: 1px; background: var(--paper); color: var(--charcoal); font-size: 16px; }
.form-row textarea { min-height: 145px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 3px solid rgba(201,168,76,.2); border-color: var(--gold); }
.error-msg { display: none; margin-top: 5px; color: var(--error); font-size: 13px; }
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea { border-color: var(--error); }
.form-row.has-error .error-msg { display: block; }
.form-note { margin-top: 16px; color: var(--mid-gray); font-size: 13px; line-height: 1.55; }
.form-success { display: none; margin-bottom: 20px; padding: 22px; background: #EEF6F1; border: 1px solid #A8C8B7; color: var(--success); }
.form-success.show { display: block; }
.honeypot { position: absolute !important; left: -5000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.article-header { padding: 72px 0 62px; background: var(--navy); color: var(--cream); }
.article-header .container { max-width: 940px; }
.article-header h1 { margin-top: 18px; font-size: clamp(40px, 6vw, 64px); }
.article-meta { margin-top: 22px; color: var(--gold-light); font-size: 14px; }
.article-wrap { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 64px; }
.article-body { font-size: 18px; }
.article-body h2 { margin: 44px 0 16px; color: var(--navy); font-size: 34px; }
.article-body h3 { margin: 30px 0 12px; color: var(--navy); font-size: 24px; }
.article-body ul, .article-body ol { margin: 18px 0 0 24px; }
.article-body li + li { margin-top: 10px; }
.article-note { margin: 32px 0; padding: 24px; background: var(--cream); border-left: 4px solid var(--gold); }
.article-sidebar { position: sticky; top: 112px; align-self: start; }
.article-sidebar h2 { color: var(--navy); font-size: 22px; }
.article-sidebar ul { margin-top: 14px; list-style: none; }
.article-sidebar li { padding: 10px 0; border-top: 1px solid var(--light-rule); }
.article-sidebar a { color: var(--navy); font-size: 14px; font-weight: 700; }

.site-footer { background: #07111C; color: var(--cream); }
.footer-grid { padding: 58px 0 42px; display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 50px; }
.footer-brand strong { display: block; color: var(--gold); font-family: var(--font-head); font-size: 25px; }
.footer-brand p { margin-top: 10px; color: var(--gold-light); font-size: 14px; }
.footer-col h2 { color: var(--gold); font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.footer-col ul { margin-top: 14px; list-style: none; }
.footer-col li + li { margin-top: 8px; }
.footer-col a { color: var(--cream); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(201,168,76,.18); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 24px; color: #A8A6A1; font-size: 12px; }
.footer-bottom a { color: var(--gold-light); }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

@media (max-width: 1040px) {
  .header-inner { gap: 18px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 12px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--light-rule); }
  .card-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 36px, var(--max-width)); }
  .topbar .container { min-height: 40px; justify-content: center; text-align: center; }
  .topbar .topbar-secondary { display: none; }
  .header-inner { width: min(100% - 36px, var(--max-width)); min-height: 74px; }
  .logo-name { font-size: 23px; }
  .logo-tag { max-width: 220px; font-size: 10px; letter-spacing: .09em; white-space: normal; line-height: 1.25; }
  .nav-toggle { display: block; flex: 0 0 44px; }
  .main-nav {
    position: fixed;
    inset: 114px 0 auto 0;
    max-height: calc(100vh - 114px);
    overflow-y: auto;
    padding: 28px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,.2);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .28s ease, opacity .2s ease, visibility .2s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid rgba(201,168,76,.16); font-size: 14px; }
  .main-nav .nav-cta { margin-top: 18px; justify-content: center; }
  .section { padding: 72px 0; }
  .hero-grid, .hero--compact .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding: 64px 0 0; }
  .hero-copy h1 { font-size: clamp(42px, 11vw, 60px); }
  .hero-portrait { width: min(100%, 520px); margin-inline: auto; }
  .portrait-frame { max-width: 100%; }
  .portrait-proof { margin-left: 18px; }
  .hero--compact .hero-portrait { display: none; }
  .hero--compact .hero-grid { padding-bottom: 64px; }
  .split, .content-grid, .bio-grid, .contact-grid, .cta-grid { grid-template-columns: 1fr; gap: 42px; }
  .side-card, .article-sidebar { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { min-width: 0; }
  .article-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar { font-size: 12px; }
  .section { padding: 60px 0; }
  .hero-grid { padding-top: 54px; }
  .hero-copy h1 { font-size: clamp(38px, 12vw, 52px); overflow-wrap: break-word; }
  .hero-copy h1 br { display: none; }
  .hero-copy .lead { font-size: 18px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .proof-grid, .card-grid, .resource-grid, .matter-grid, .process-grid, .detail-grid, .qualification-list, .form-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { border-left: 1px solid var(--light-rule); border-right: 1px solid var(--light-rule); border-bottom: 1px solid var(--light-rule); }
  .resource-card:last-child { grid-column: auto; }
  .portrait-proof { width: calc(100% - 20px); margin: -42px 0 24px 10px; }
  .portrait-frame img, .hero--compact .portrait-frame img { height: calc((100vw - 36px) * 1.25); max-height: 525px; }
  .bio-photo img { height: calc((100vw - 72px) * 1.25); max-height: 430px; }
  .contact-form { padding: 26px 20px; }
  .form-row--full { grid-column: auto; }
  .article-header { padding: 58px 0 50px; }
  .article-header h1 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; }
}
