:root {
  color-scheme: light;
  --paper: #f7f4ed;
  --paper-bright: #fffefa;
  --ink: #132438;
  --ink-soft: #425166;
  --blue: #245f83;
  --blue-deep: #123954;
  --blue-pale: #dce8ee;
  --gold: #846132;
  --line: #d8d5cc;
  --white: #ffffff;
  --shadow: 0 30px 80px rgb(19 36 56 / 0.11);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(247 244 237 / 0.91);
  border-bottom: 1px solid rgb(216 213 204 / 0.82);
  backdrop-filter: blur(18px);
}

.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }

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

.brand-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: block;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(15 34 52 / 0.18);
}

.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.11rem; font-weight: 500; }
.brand-copy small { margin-top: 5px; color: var(--ink-soft); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 31px; }
.site-nav a { color: var(--ink-soft); font-size: 0.86rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); }
.site-nav .nav-contact { padding: 10px 17px; border: 1px solid var(--ink); color: var(--ink); }
.site-nav .nav-contact:hover, .site-nav .nav-contact:focus-visible { background: var(--ink); color: var(--white); }

.menu-button { display: none; width: 44px; height: 44px; place-content: center; gap: 5px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { width: 22px; height: 2px; display: block; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; overflow: hidden; padding: 96px 0 0; background: var(--paper-bright); }

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background-image: linear-gradient(rgb(19 36 56 / 0.055) 1px, transparent 1px), linear-gradient(90deg, rgb(19 36 56 / 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  right: -220px;
  top: -160px;
  border: 1px solid rgb(36 95 131 / 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgb(36 95 131 / 0.025), 0 0 0 144px rgb(36 95 131 / 0.02);
}

.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.72fr); align-items: center; gap: 92px; }

.eyebrow { margin: 0 0 20px; color: var(--blue); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; display: inline-block; margin: 0 10px 3px; background: var(--gold); }
.eyebrow-light { color: #bcd5e2; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.035em; }
h1 { max-width: 780px; margin-bottom: 27px; font-size: clamp(3.35rem, 5.65vw, 5.75rem); line-height: 0.99; }
h2 { margin-bottom: 24px; font-size: clamp(2.45rem, 4vw, 4.1rem); line-height: 1.04; }
h3 { font-size: 1.18rem; line-height: 1.35; }

.hero-statement { max-width: 700px; margin: -4px 0 19px; color: var(--blue-deep); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.35; }
.hero-lead { max-width: 710px; margin-bottom: 35px; color: var(--ink-soft); font-size: 1.09rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 27px; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; font-size: 0.83rem; font-weight: 800; text-decoration: none; transition: transform 180ms ease, background 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 32px rgb(36 95 131 / 0.22); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue-deep); }
.button-text { min-height: auto; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.button-text span { margin-left: 12px; color: var(--blue); font-size: 1.1rem; }

.portrait-card { position: relative; margin: 0; box-shadow: var(--shadow); }
.portrait-card::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; z-index: -1; border: 1px solid rgb(180 138 81 / 0.5); }
.portrait-field { height: 464px; overflow: hidden; background: linear-gradient(145deg, #d5e3e9, #9cb8c7); }
.portrait-field img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 25%; }
.portrait-initials { color: rgb(19 36 56 / 0.28); font-family: Georgia, "Times New Roman", serif; font-size: 9rem; line-height: 1; letter-spacing: -0.09em; }
.portrait-note { display: grid; gap: 4px; margin-top: 38px; color: rgb(19 36 56 / 0.66); }
.portrait-note span { font-size: 0.64rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.portrait-note strong { font-size: 0.82rem; }
.portrait-caption { display: flex; justify-content: space-between; gap: 20px; padding: 15px 18px; background: var(--ink); color: var(--white); font-size: 0.72rem; }
.portrait-caption span:last-child { color: #bcd5e2; }

.credibility { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 92px; border-top: 1px solid var(--line); }
.credibility div { display: grid; gap: 4px; padding: 25px 28px 29px 0; border-right: 1px solid var(--line); }
.credibility div:not(:first-child) { padding-left: 38px; }
.credibility div:last-child { border-right: 0; }
.credibility strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; font-weight: 500; }
.credibility span { color: var(--ink-soft); font-size: 0.78rem; }

.section { padding: 118px 0; }
.split-heading { display: grid; grid-template-columns: 0.87fr 1.13fr; gap: 100px; align-items: start; }
.prose { color: var(--ink-soft); font-size: 1.03rem; line-height: 1.82; }
.prose p { margin-bottom: 22px; }

.about-photo { display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(270px, 0.52fr); margin-top: 66px; background: var(--ink); box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 390px; display: block; object-fit: cover; object-position: center; }
.about-photo figcaption { display: flex; flex-direction: column; justify-content: end; gap: 12px; padding: 40px; color: var(--white); }
.about-photo figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.about-photo figcaption span { color: #b9c8d3; font-size: 0.87rem; line-height: 1.7; }

.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 66px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.focus-card { min-height: 260px; padding: 36px 34px 28px 0; border-right: 1px solid var(--line); }
.focus-card:not(:first-child) { padding-left: 34px; }
.focus-card:last-child { border-right: 0; }
.card-number { display: inline-block; margin-bottom: 43px; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 0.84rem; }
.focus-card h3 { margin-bottom: 13px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; }
.focus-card p { color: var(--ink-soft); font-size: 0.92rem; }

.record { background: #e9eef0; }
.section-heading { max-width: 735px; margin-bottom: 66px; }
.section-heading > p:last-child { max-width: 620px; color: var(--ink-soft); }

.record-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid #bdc9ce; background: #bdc9ce; }
.record-card { min-height: 390px; display: grid; grid-template-rows: auto 1fr; padding: 34px; background: rgb(255 255 255 / 0.62); }
.record-card-lead { min-height: 430px; grid-column: 1 / -1; grid-template-columns: 0.3fr 1fr; grid-template-rows: 1fr; gap: 60px; padding: 48px; background: var(--blue-deep); color: var(--white); }
.record-card:last-child { min-height: 280px; grid-column: 1 / -1; grid-template-columns: 0.3fr 1fr; grid-template-rows: 1fr; gap: 60px; }
.record-date { color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.record-card-lead .record-date { color: #bcd5e2; font-size: 1.32rem; }
.record-card-content { display: flex; flex-direction: column; align-items: flex-start; }
.record-kicker { margin: 24px 0 10px; color: var(--gold); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.record-card-lead .record-kicker { margin-top: 0; color: #d2b37f; }
.record-card:last-child .record-kicker { margin-top: 0; }
.record-card h3 { max-width: 650px; margin-bottom: 15px; font-family: Georgia, "Times New Roman", serif; font-size: 1.48rem; font-weight: 500; }
.record-card-lead h3 { max-width: 780px; font-size: clamp(2.15rem, 3.8vw, 3.8rem); line-height: 1.05; }
.record-card-content > p:not(.record-kicker) { color: var(--ink-soft); line-height: 1.7; }
.record-card-lead .record-card-content > p:not(.record-kicker) { max-width: 740px; color: #cedbe3; font-size: 1.02rem; }
.record-card a { display: inline-flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 16px; color: var(--blue); font-size: 0.8rem; font-weight: 800; text-underline-offset: 4px; }
.record-card-lead a { color: #d8bd8e; }
.record-links { display: flex; flex-wrap: wrap; gap: 4px 24px; margin-top: auto; }
.record-links a { margin-top: 0; }

.media { background: var(--paper-bright); }
.media-heading { max-width: none; display: grid; grid-template-columns: 1fr 0.62fr; gap: 80px; align-items: end; }
.media-heading > p { margin-bottom: 30px; }
.featured-coverage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.coverage-card { min-height: 372px; display: flex; flex-direction: column; padding: 34px; background: var(--paper-bright); text-decoration: none; transition: background 180ms ease, transform 180ms ease; }
.coverage-card:hover, .coverage-card:focus-visible { position: relative; z-index: 1; background: #f2f6f7; transform: translateY(-3px); }
.coverage-meta { margin-bottom: 36px; color: var(--blue); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.coverage-card h3 { margin-bottom: 15px; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 500; }
.coverage-card p { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.7; }
.coverage-link { margin-top: auto; padding-top: 20px; color: var(--blue); font-size: 0.77rem; font-weight: 800; }
.coverage-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: auto; }
.coverage-links .coverage-link { margin-top: 0; padding-top: 0; text-underline-offset: 4px; }
.coverage-subheading { max-width: 720px; margin: 76px 0 30px; }
.coverage-subheading .eyebrow { margin-bottom: 12px; }
.coverage-subheading h3 { margin-bottom: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.media-list { border-top: 1px solid var(--line); }
.media-row { display: grid; grid-template-columns: 0.65fr 1.65fr 0.6fr auto; gap: 30px; align-items: center; padding: 27px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.media-row:hover strong, .media-row:focus-visible strong { color: var(--blue); }
.media-source, .media-date { color: var(--ink-soft); font-size: 0.75rem; }
.media-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.03rem; font-weight: 500; transition: color 180ms ease; }
.media-arrow { color: var(--blue); font-size: 1.2rem; }

.contact { padding-top: 36px; background: var(--paper-bright); }
.contact-panel { border-top: 1px solid var(--line); }
.contact-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: 80px; align-items: end; padding: 72px 0 52px; }
.contact-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -48px; }
.contact-heading h2 { max-width: 720px; margin-bottom: 0; }
.contact-heading > p:last-child { margin-bottom: 8px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; }
.contact-options { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-choice { min-width: 0; padding: 48px; }
.contact-choice-label { margin-bottom: 25px; color: var(--gold); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-choice h3 { margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 500; line-height: 1.12; }
.contact-choice > p:not(.contact-choice-label) { color: var(--ink-soft); line-height: 1.75; }
.contact-choice-public { display: flex; flex-direction: column; background: var(--blue-deep); color: var(--white); }
.contact-choice-public .contact-choice-label { color: #d2b37f; }
.contact-choice-public > p:not(.contact-choice-label) { color: #cedbe3; }
.contact-link { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; align-self: flex-start; margin-top: auto; padding: 14px 23px; background: var(--white); color: var(--blue-deep); font-size: 0.84rem; font-weight: 900; text-decoration: none; box-shadow: 0 14px 30px rgb(6 35 52 / 0.22); transition: transform 180ms ease, background 180ms ease; }
.contact-link:hover, .contact-link:focus-visible { background: #edf4f7; transform: translateY(-2px); }
.contact-link span { color: var(--blue); font-size: 1.05rem; }
.contact-choice-private { background: var(--paper); }
.contact-form { display: grid; gap: 20px; margin-top: 30px; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-field { display: grid; gap: 7px; }
.contact-field label { color: var(--ink); font-size: 0.78rem; font-weight: 800; }
.contact-field input, .contact-field textarea { width: 100%; border: 1px solid #a8b1b7; border-radius: 0; background: var(--white); color: var(--ink); font: inherit; font-size: 0.93rem; outline: 0; transition: border-color 160ms ease, box-shadow 160ms ease; }
.contact-field input { min-height: 48px; padding: 10px 12px; }
.contact-field textarea { min-height: 150px; padding: 12px; resize: vertical; line-height: 1.55; }
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(36 95 131 / 0.2); }
.contact-hint { color: var(--ink-soft); font-size: 0.72rem; line-height: 1.5; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-widget { min-height: 70px; display: flex; align-items: center; color: var(--ink-soft); font-size: 0.78rem; }
.turnstile-widget > div { max-width: 100%; }
.contact-privacy { margin: -2px 0 0; color: var(--ink-soft); font-size: 0.74rem; line-height: 1.55; }
.contact-submit { min-height: 52px; justify-self: start; padding: 13px 21px; border: 0; background: var(--blue); color: var(--white); font: inherit; font-size: 0.82rem; font-weight: 900; cursor: pointer; transition: background 160ms ease, transform 160ms ease; }
.contact-submit:hover, .contact-submit:focus-visible { background: var(--blue-deep); transform: translateY(-2px); }
.contact-submit:disabled { background: #687985; cursor: not-allowed; transform: none; }
.contact-status { min-height: 24px; margin: -7px 0 0; color: var(--blue-deep); font-size: 0.78rem; font-weight: 800; }

.site-footer { padding: 64px 0; background: var(--ink); color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1.4fr auto; gap: 60px; align-items: start; }
.footer-brand .brand-mark { border-color: var(--paper-bright); box-shadow: 0 3px 12px rgb(0 0 0 / 0.28); }
.footer-brand .brand-copy small { color: #9fb0bf; }
.footer-inner > div:first-child > p { margin: 25px 0 0; color: #9fb0bf; font-size: 0.8rem; }
.footer-inner nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 13px 38px; }
.footer-inner nav a { color: #c2ced7; font-size: 0.78rem; text-decoration: none; }
.footer-inner nav a:hover, .footer-inner nav a:focus-visible { color: var(--white); }
@media (max-width: 940px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-nav { gap: 20px; }
  .hero { padding-top: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 66px; }
  .hero-copy { max-width: 760px; }
  .portrait-card { width: min(440px, 100%); }
  .split-heading { grid-template-columns: 1fr; gap: 35px; }
  .about-photo { grid-template-columns: 1fr; }
  .about-photo img { height: min(54vw, 430px); }
  .about-photo figcaption { padding: 30px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card, .focus-card:not(:first-child) { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .focus-card:last-child { border-bottom: 0; }
  .card-number { margin-bottom: 18px; }
  .media-heading { grid-template-columns: 1fr; gap: 0; }
  .media-heading > p { margin-bottom: 0; }
  .featured-coverage { grid-template-columns: 1fr; }
  .coverage-card { min-height: 300px; }
  .media-row { grid-template-columns: 0.55fr 1.45fr auto; }
  .media-date { display: none; }
  .contact-heading { grid-template-columns: 1fr; gap: 24px; }
  .contact-heading .eyebrow { grid-column: auto; margin-bottom: -8px; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-choice-public { min-height: 390px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 32px); }
  .header-inner { min-height: 72px; }
  .menu-button { display: grid; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 72px 0 0; height: calc(100vh - 72px); height: calc(100dvh - 72px); display: none; align-content: start; align-items: stretch; gap: 0; overflow-y: auto; padding: 30px 24px; background: var(--paper-bright); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 17px 5px; border-bottom: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 500; }
  .site-nav .nav-contact { margin-top: 18px; border: 1px solid var(--ink); text-align: center; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .portrait-field { height: 420px; }
  .portrait-initials { font-size: 7rem; }
  .portrait-caption { flex-direction: column; gap: 1px; }
  .credibility { grid-template-columns: 1fr; margin-top: 72px; }
  .credibility div, .credibility div:not(:first-child) { padding: 21px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 84px 0; }
  .about-photo { width: 100%; margin-top: 48px; }
  .about-photo img { height: 245px; }
  .about-photo figcaption { padding: 26px 22px; }
  .coverage-card { min-height: 0; padding: 28px 24px; }
  .coverage-meta { margin-bottom: 24px; }
  .coverage-link { margin-top: 16px; }
  .coverage-subheading { margin-top: 58px; }
  .record-grid { grid-template-columns: 1fr; }
  .record-card, .record-card-lead { min-height: 0; grid-column: auto; grid-template-columns: 1fr; gap: 20px; padding: 30px 24px; }
  .record-card { min-height: 360px; }
  .record-card-lead { min-height: 430px; }
  .record-card:last-child { min-height: 360px; grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: 20px; }
  .record-card:last-child .record-kicker { margin-top: 24px; }
  .record-card-lead h3 { font-size: clamp(2.25rem, 12vw, 3.25rem); }
  .media-row { grid-template-columns: 1fr auto; gap: 8px 20px; }
  .media-source { grid-column: 1 / 2; }
  .media-row strong { grid-column: 1 / 2; }
  .media-arrow { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .contact { padding-top: 10px; }
  .contact-heading { padding: 62px 0 38px; }
  .contact-choice { padding: 32px 24px; }
  .contact-choice-public { min-height: 350px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; justify-self: stretch; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
