@font-face { font-family: "Newsreader"; font-style: normal; font-weight: 300 600; font-display: swap; src: url("../fonts/newsreader-roman.9b1ed7f6c6.woff2") format("woff2"); }
@font-face { font-family: "Newsreader"; font-style: italic; font-weight: 300 500; font-display: swap; src: url("../fonts/newsreader-italic.f9ad0d69c6.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("../fonts/hanken-grotesk.66b34f877a.woff2") format("woff2"); }
:root {
  --green: #123F35;
  --green-deep: #0D3129;
  --green-line: #2E5A4F;
  --gilt: #D8B76E;
  --on-green: #EEF1EC;
  --on-green-muted: #A9BDB5;

  --bg: #F4F5F2;
  --surface: #FFFFFF;
  --ink: #1B211E;
  --muted: #55605A;
  --rule: #D6DBD6;
  --accent: #7E5F22;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, system-ui, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --hdr: 64px;

  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0E1412; --surface: #141C19; --ink: #E3E7E2; --muted: #9AA59F; --rule: #26312D; --accent: #D8B76E;
    --green: #10362E; --green-deep: #0B2822; color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0E1412; --surface: #141C19; --ink: #E3E7E2; --muted: #9AA59F; --rule: #26312D; --accent: #D8B76E;
  --green: #10362E; --green-deep: #0B2822; color-scheme: dark;
}

*, *::before, *::after { box-sizing: inherit; }
html { scroll-behavior: smooth; scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--hdr) + 1rem); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--serif); font-size: 1.125rem; line-height: 1.6;
  font-optical-sizing: auto; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gilt); outline-offset: 3px; border-radius: 2px; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 50; background: var(--gilt); color: var(--green-deep); padding: .6rem 1rem; font-family: var(--sans); font-weight: 600; text-decoration: none; }
.skip:focus { top: calc(env(safe-area-inset-top, 0px) + .75rem); }

/* Header */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
  background: var(--green); color: var(--on-green);
  border-bottom: 1px solid var(--green-line);
}
.site-header .wrap { display: flex; align-items: center; gap: 2rem; min-height: var(--hdr); }
.wordmark { font-family: var(--serif); font-size: 1.3rem; color: var(--gilt); text-decoration: none; white-space: nowrap; letter-spacing: -.005em; }
.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.nav a { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--on-green-muted); text-decoration: none; padding-block: .4rem; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.nav a:hover, .nav a[aria-current="true"] { color: var(--on-green); border-color: var(--gilt); }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; text-decoration: none;
  padding: .8rem 1.35rem; border-radius: 999px; border: 1px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-gilt { background: var(--gilt); color: var(--green-deep); }
.btn-gilt:hover { background: #E6CA8C; }
.btn-line { border-color: var(--on-green-muted); color: var(--on-green); }
.btn-line:hover { border-color: var(--gilt); color: var(--gilt); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* Hero */
.hero { background: var(--green); color: var(--on-green); padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3.5rem, 7vw, 5.5rem); }
.hero-wrap { container-type: inline-size; }
.hero-role { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--on-green-muted); margin: 0 0 1rem; }
.hero h1 {
  font-family: var(--serif); font-weight: 380; font-variation-settings: "opsz" 72;
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  font-size: clamp(3.5rem, 13.4cqi, 10rem); /* the name is ~7.2em wide: this keeps it on one line */
  line-height: .95; letter-spacing: -.025em;
  color: var(--gilt); margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: start;
  padding-top: clamp(1.75rem, 3vw, 2.5rem); border-top: 1px solid var(--gilt);
}
.hero-lead { font-weight: 350; font-size: clamp(1.15rem, 1.55vw, 1.4rem); line-height: 1.6; max-width: 60ch; margin: 0 0 2.25rem; }
.hero-lead a { color: var(--on-green); text-decoration-color: var(--gilt); text-decoration-thickness: 1px; text-underline-offset: .2em; transition: color .2s; }
.hero-lead a:hover { color: var(--gilt); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.credentials { list-style: none; margin: 0; padding: 0; display: grid; }
.credentials li { padding-block: 1.1rem; border-bottom: 1px solid var(--green-line); }
.credentials li:first-child { padding-top: .2rem; }
.credentials li:last-child { border-bottom: 0; }
.credentials span { display: block; font-family: var(--sans); font-size: .85rem; color: var(--on-green-muted); margin-bottom: .3rem; }
.credentials strong { font-weight: 450; font-size: 1.15rem; line-height: 1.35; }

@media (prefers-reduced-motion: no-preference) {
  .hero-role, .hero h1, .hero-lead, .hero-actions, .credentials { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
  .hero h1 { animation-delay: .08s; }
  .hero-lead { animation-delay: .25s; }
  .hero-actions { animation-delay: .38s; }
  .credentials { animation-delay: .55s; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* Sections */
section.block { padding-block: clamp(4rem, 9vw, 7rem); }
section.block + section.block { border-top: 1px solid var(--rule); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 60; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.05; letter-spacing: -.015em; margin: 0 0 1rem; }
.section-head p { color: var(--muted); margin: 0; max-width: 60ch; }
h3 { font-family: var(--serif); font-weight: 450; margin: 0; }
.meta { font-family: var(--sans); font-size: .85rem; color: var(--muted); }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about-grid h2 { max-width: 12ch; }
.about-body p { margin: 0 0 1.2rem; max-width: 62ch; line-height: 1.7; }
.about-body p:first-child { font-size: 1.3rem; line-height: 1.55; }
.byline-note { margin-top: 2rem; padding-top: 1.1rem; border-top: 1px solid var(--rule); font-family: var(--sans); font-size: .9rem; color: var(--muted); }

/* Reporting */
.beat { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr); gap: clamp(1.5rem, 5vw, 4.5rem); padding-block: 2.75rem; border-top: 1px solid var(--rule); }
.beat-head { position: sticky; top: calc(env(safe-area-inset-top, 0px) + var(--hdr) + 1.75rem); align-self: start; }
.beat-head h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.15; font-weight: 400; margin-bottom: .75rem; }
.beat-head p { color: var(--muted); margin: 0; font-size: 1.02rem; max-width: 34ch; }
.stories { list-style: none; margin: 0; padding: 0; }
.stories li + li { border-top: 1px solid var(--rule); }
.stories a { display: block; padding-block: 1.05rem; text-decoration: none; }
.stories .headline { display: block; font-size: 1.28rem; line-height: 1.32; font-weight: 420; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .18em; text-decoration-thickness: 1px; transition: text-decoration-color .2s; }
.stories a:hover .headline, .stories a:focus-visible .headline { text-decoration-color: var(--accent); }
.stories .meta { display: block; margin-top: .35rem; }
.stories .feature .headline { font-size: 1.55rem; font-style: italic; font-weight: 380; }
.stories .feature .meta { color: var(--accent); font-weight: 500; }
.beat-more { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--rule); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr); gap: clamp(1.5rem, 5vw, 4.5rem); }
.beat-more p { margin: 0; max-width: 58ch; }
.text-link { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--accent); text-underline-offset: .25em; }

/* Recognition */
.honours { list-style: none; margin: 0; padding: 0; }
.honours li { display: grid; grid-template-columns: 9.5rem minmax(0, 1fr); gap: 1.5rem; padding-block: 1.6rem; border-top: 1px solid var(--rule); }
.honours li:last-child { border-bottom: 1px solid var(--rule); }
.honours .year { font-family: var(--serif); font-size: 1.15rem; color: var(--accent); font-variant-numeric: lining-nums tabular-nums; }
.honours h3 { font-size: 1.4rem; line-height: 1.25; font-weight: 420; }
.honours p { margin: .35rem 0 0; color: var(--muted); max-width: 64ch; }
.honours a { color: var(--ink); text-underline-offset: .2em; text-decoration-color: var(--accent); }

/* Career */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 5px; top: .6rem; bottom: .6rem; width: 1px; background: var(--rule); }
.org { position: relative; padding-left: 2.5rem; padding-bottom: 2.75rem; }
.org:last-child { padding-bottom: 0; }
.org::before { content: ""; position: absolute; left: 0; top: .55rem; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent); }
.org:first-child::before { background: var(--accent); }
.org-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem 1rem; margin-bottom: .9rem; }
.org-head h3 { font-size: 1.65rem; font-weight: 420; }
.roles { list-style: none; margin: 0; padding: 0; max-width: 46rem; }
.roles li { display: flex; justify-content: space-between; gap: 1.5rem; padding-block: .55rem; border-bottom: 1px dotted var(--rule); }
.roles .role { font-size: 1.12rem; }
.roles .meta { white-space: nowrap; font-variant-numeric: tabular-nums; }
.org-note { margin: 1rem 0 0; color: var(--muted); max-width: 60ch; }

/* Credentials */
.creds-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: clamp(2.5rem, 6vw, 5rem); }
.creds-grid h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--ink); }
.creds-col + .creds-col, .creds-stack > * + * { margin-top: 0; }
.creds-stack { display: grid; gap: 3rem; align-content: start; }
.plain { list-style: none; margin: 0; padding: 0; }
.plain li { padding-block: .7rem; border-bottom: 1px solid var(--rule); line-height: 1.45; }
.plain .meta { display: block; margin-top: .15rem; }
.training li { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr); gap: 1rem; }
.training .yr { font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--accent); padding-top: .15rem; font-variant-numeric: tabular-nums; }

/* Contact */
.contact { background: var(--green); color: var(--on-green); padding-block: clamp(4.5rem, 10vw, 7.5rem); }
.contact h2 { color: var(--gilt); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: end; }
.contact p { color: var(--on-green-muted); max-width: 44ch; margin: 0 0 2rem; }
.email { font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.6rem); font-weight: 350; color: var(--on-green); text-decoration: underline; text-decoration-color: var(--gilt); text-decoration-thickness: 1px; text-underline-offset: .2em; overflow-wrap: anywhere; }
.email:hover { color: var(--gilt); }
.contact-links { list-style: none; margin: 0; padding: 0; font-family: var(--sans); }
.contact-links li { border-top: 1px solid var(--green-line); }
.contact-links li:last-child { border-bottom: 1px solid var(--green-line); }
.contact-links a { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1rem; text-decoration: none; font-weight: 500; }
.contact-links a span { color: var(--on-green-muted); font-weight: 400; }
.contact-links a:hover { color: var(--gilt); }
.site-footer { background: var(--green-deep); color: var(--on-green-muted); font-family: var(--sans); font-size: .85rem; padding-block: 1.5rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .credentials { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--green-line); }
  .credentials li, .credentials li:first-child { padding: 0; border: 0; }
  .site-header .wrap { flex-wrap: wrap; gap: 0 1rem; padding-block: .6rem 0; }
  .nav { order: 3; width: 100%; margin: 0 calc(-1 * var(--gutter)); padding-inline: var(--gutter); overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav ul { gap: 1.35rem; padding-block: .35rem .6rem; }
  .nav a { white-space: nowrap; }
  .header-cv { margin-left: auto; }
  :root { --hdr: 100px; }
  .about-grid, .beat, .beat-more, .creds-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .beat-head { position: static; }
  .about-grid h2 { max-width: none; }
}
@media (max-width: 640px) {
  body { font-size: 1.0625rem; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 6rem); }
  .credentials { grid-template-columns: minmax(0, 1fr); gap: 1.1rem; }
  .hero-lead { font-size: 1.1rem; }
  .honours li { grid-template-columns: minmax(0, 1fr); gap: .35rem; }
  .roles li { flex-direction: column; gap: .1rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .stories .headline { font-size: 1.18rem; }
  .stories .feature .headline { font-size: 1.38rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
@media print {
  .site-header, .hero-actions, .skip { display: none; }
  .hero, .contact { background: none; color: #000; }
  .hero h1, .contact h2 { color: #000; }
}
.flush { margin: 0; }
