:root {
  --primary: #0b2748;
  --accent: #b99a5b;
  --ink: #07182e;
  --paper: #f6f4ef;
  --paper-deep: #eeece6;
  --white: #ffffff;
  --text: #526176;
  --line: rgba(11, 39, 72, 0.14);
  --shadow: 0 28px 80px rgba(7, 24, 46, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(11, 39, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 39, 72, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
a:focus-visible, button:focus-visible { border-radius: 2px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.hidden { display: none !important; }
.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;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 3.5vw, 4rem);
  color: #fff;
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
.site-header.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 239, 0.94);
  color: var(--primary);
  box-shadow: 0 10px 35px rgba(7, 24, 46, 0.08);
  backdrop-filter: blur(16px);
}
.site-header.scrolled .identity span { border-color: var(--line); background: var(--primary); color: #fff; }
.site-header.scrolled .menu-button { border-color: var(--line); color: var(--primary); }
.inner-page { padding-top: 92px; }
.identity { display: flex; align-items: center; gap: 0.9rem; }
.identity span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font: 600 1rem "Playfair Display", Georgia, serif;
  backdrop-filter: blur(8px);
}
.identity .identity-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.identity strong {
  max-width: 180px;
  font-size: 0.67rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--primary);
  font-size: 0.69rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.site-header nav a { opacity: 0.72; transition: 0.2s; }
.site-header nav a:hover { opacity: 1; }
.site-header nav a.pill-link {
  opacity: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.site-header nav a.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-left: -0.6rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  opacity: 0.82;
  font-size: 0.63rem;
}
.site-header nav a.lang-toggle .lang-flag { font-size: 0.95rem; line-height: 1; }
.site-header.scrolled nav a.lang-toggle, .inner-header nav a.lang-toggle { border-color: var(--line); background: rgba(255, 255, 255, 0.52); }
.site-header nav a.lang-toggle:hover { opacity: 1; }
.menu-button {
  display: none;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(7, 24, 46, 0.08);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(430px, 44%) 1fr;
}
.hero-visual { position: relative; min-height: 100vh; color: #fff; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 46, 0.05), rgba(7, 24, 46, 0.3) 48%, rgba(7, 24, 46, 0.94)),
    linear-gradient(90deg, rgba(0, 158, 219, 0.09), transparent 55%);
}
.location-chip {
  position: absolute;
  z-index: 2;
  top: 8.5rem;
  left: clamp(1.5rem, 3.5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(7, 24, 46, 0.18);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}
.location-chip span { width: 7px; height: 7px; border-radius: 50%; background: #32bff3; box-shadow: 0 0 0 4px rgba(50, 191, 243, 0.18); }
.portrait-wrap {
  position: absolute;
  z-index: 4;
  top: 48%;
  right: -5.75rem;
  width: 194px;
  height: 194px;
  padding: 6px;
  transform: translateY(-45%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 24px 70px rgba(3, 15, 30, 0.3);
}
.portrait-wrap::before { content: ""; position: absolute; inset: -14px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; }
.portrait-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; }
.portrait-wrap > span { position: absolute; right: 3px; bottom: 14px; width: 21px; height: 21px; border: 4px solid #fff; border-radius: 50%; background: #009edb; }
.hero blockquote {
  position: absolute;
  z-index: 2;
  left: clamp(1.5rem, 3.5vw, 4rem);
  right: 4.5rem;
  bottom: 3.5rem;
  max-width: 560px;
  margin: 0;
  font: 600 clamp(1.8rem, 2.6vw, 2.8rem)/1.14 "Playfair Display", Georgia, serif;
}
.hero blockquote small {
  display: block;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font: 600 0.62rem "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.27em;
}
.hero blockquote small::before, .eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-right: 0.8rem;
  background: var(--accent);
  vertical-align: middle;
}
.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8rem clamp(3rem, 6vw, 7rem) 5rem clamp(6.5rem, 8vw, 9rem);
}
.eyebrow {
  margin: 0 0 1.7rem;
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.27em;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(4.5rem, 6vw, 7rem)/0.93 "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
}
.role { max-width: 850px; margin: 1.9rem 0 0; color: var(--primary); font-size: 0.95rem; font-weight: 600; line-height: 1.65; }
.role i { display: inline-block; width: 1px; height: 1rem; margin: 0 0.7rem; background: var(--accent); vertical-align: -0.15rem; }
.intro { max-width: 790px; margin: 1.8rem 0 0; font-size: 1.05rem; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.15rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.primary-action:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(7, 24, 46, 0.22); }
.primary-action span { color: var(--accent); transition: transform 0.2s; }
.primary-action:hover span { transform: translateX(3px); }
.text-action { color: var(--primary); font-size: 0.77rem; font-weight: 600; }
.notify-form { max-width: 760px; margin-top: 2.5rem; padding: 1.6rem; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 1rem; background: rgba(255, 255, 255, 0.88); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.notify-form > div:first-child { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.1rem; }
.notify-form strong { color: var(--ink); font: 600 1.3rem "Playfair Display", serif; }
.notify-form span { font-size: 0.82rem; }
.notify-controls { display: flex; gap: 0.75rem; }
.notify-controls input { min-width: 0; flex: 1; padding: 0.95rem 1rem; border: 1px solid #ccd4df; border-radius: 0.5rem; background: #fff; outline: none; }
.notify-controls input:focus { border-color: #009edb; box-shadow: 0 0 0 4px rgba(0, 158, 219, 0.1); }
.notify-controls button { padding: 0 1.5rem; border: 0; border-radius: 0.5rem; background: var(--primary); color: #fff; font-weight: 600; cursor: pointer; }
.form-status { margin: 0.75rem 0 0; font-size: 0.82rem; }
.form-status.success { color: #087c54; }
.form-status.error { color: #a73333; }

/* Career highlights */
.impact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary);
  color: #fff;
}
.milestone { min-height: 190px; padding: 2.4rem clamp(1.5rem, 3vw, 3.2rem); border-right: 1px solid rgba(255, 255, 255, 0.12); transition: background-color 0.25s; }
.milestone:hover { background: rgba(255, 255, 255, 0.05); }
.milestone:last-child { border-right: 0; }
.milestone strong { display: block; margin-bottom: 1rem; color: #fff; font: 600 3rem "Playfair Display", serif; }
.milestone span { display: block; max-width: 260px; color: rgba(255, 255, 255, 0.68); font-size: 0.78rem; line-height: 1.6; }

/* Shared sections */
.section { position: relative; z-index: 1; max-width: 1480px; margin: 0 auto; padding: 7.5rem clamp(1.5rem, 6vw, 6.5rem); border-top: 1px solid var(--line); }
.section-intro { display: flex; justify-content: space-between; gap: 2rem; margin-bottom: 4.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.section-intro > div { display: flex; align-items: baseline; gap: 2rem; }
.section-intro span { color: var(--accent); font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; }
.section-intro p { max-width: 560px; margin: 0; font-size: 0.8rem; line-height: 1.6; }
.section-intro > p { color: rgba(11, 39, 72, 0.3); font: 600 1.4rem "Playfair Display", serif; }
.section-heading { max-width: 870px; margin-bottom: 3.5rem; }
.section h2, .contact-section h2 { margin: 0; color: var(--ink); font: 600 clamp(2.8rem, 4.5vw, 4.8rem)/1.06 "Playfair Display", Georgia, serif; letter-spacing: -0.035em; }

/* Profile */
.profile-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.72fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.about-copy p { margin: 1.4rem 0 0; font-size: 1.05rem; line-height: 1.9; }
.mandate-card { padding: 2rem; border-top: 3px solid var(--accent); background: var(--primary); color: rgba(255, 255, 255, 0.72); box-shadow: var(--shadow); transition: transform 0.3s; }
.mandate-card:hover { transform: translateY(-4px); }
.mandate-card .mini-label { margin: 0 0 2.2rem; color: var(--accent); font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; }
.mandate-card h3 { margin: 0 0 1rem; color: #fff; font: 600 1.8rem/1.18 "Playfair Display", serif; }
.mandate-card > p { font-size: 0.86rem; line-height: 1.75; }
.mandate-card > div { display: grid; gap: 0.25rem; margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.mandate-card > div span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; }
.mandate-card > div strong { color: #fff; font-size: 0.82rem; }
.credential-bar { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: 4.5rem; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credential-bar > div { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; align-items: baseline; }
.credential-bar > div span { color: var(--accent); font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.credential-bar p { margin: 0; color: var(--ink); font-size: 0.84rem; font-weight: 600; line-height: 1.6; }
.credential-bar a { color: var(--primary); font-size: 0.75rem; font-weight: 600; }

/* Expertise */
.focus-section { max-width: none; padding-left: max(1.5rem, calc((100vw - 1480px) / 2 + 6.5rem)); padding-right: max(1.5rem, calc((100vw - 1480px) / 2 + 6.5rem)); background: var(--paper-deep); }
.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.focus-card { min-height: 330px; padding: 2.5rem; background: var(--paper); transition: 0.25s; }
.focus-card:hover { position: relative; z-index: 2; transform: translateY(-4px); box-shadow: var(--shadow); }
.card-top, .insight-meta { display: flex; justify-content: space-between; align-items: center; }
.focus-card .card-top span { color: var(--accent); font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; }
.focus-card .card-top b, .insight-meta b { color: rgba(11, 39, 72, 0.23); font: 600 1.1rem "Playfair Display", serif; }
.focus-card h3 { max-width: 420px; margin: 5rem 0 1.2rem; color: var(--ink); font: 600 2rem/1.14 "Playfair Display", serif; }
.focus-card > p { max-width: 500px; margin: 0; font-size: 0.9rem; line-height: 1.8; }

/* Career timeline */
.experience { background: rgba(255, 255, 255, 0.35); }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 70px minmax(280px, 0.82fr) 1.18fr; gap: 2.5rem; padding: 2.2rem 0; border-bottom: 1px solid var(--line); transition: padding-left 0.25s, background-color 0.25s; }
.timeline-item:hover { padding-left: 0.5rem; background: rgba(11, 39, 72, 0.02); }
.timeline-marker { padding-top: 0.15rem; }
.timeline-marker span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 0.67rem; }
.timeline-role > span { color: var(--accent); font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; }
.timeline-item h3 { margin: 0.55rem 0 0.35rem; color: var(--ink); font: 600 1.6rem "Playfair Display", serif; }
.timeline-item .organization { margin: 0; color: var(--primary); font-size: 0.8rem; font-weight: 600; }
.timeline-item > p { max-width: 650px; margin: 0; font-size: 0.88rem; line-height: 1.8; }

/* Selected work */
.work-section { max-width: none; padding-left: max(1.5rem, calc((100vw - 1480px) / 2 + 6.5rem)); padding-right: max(1.5rem, calc((100vw - 1480px) / 2 + 6.5rem)); background: var(--primary); color: rgba(255, 255, 255, 0.68); }
.work-section .section-intro { border-color: rgba(255, 255, 255, 0.14); }
.work-section .section-intro > p, .work-section .insight-meta b { color: rgba(255, 255, 255, 0.22); }
.work-section .section-heading h2 { color: #fff; }
.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.14); }
.insight-card { min-height: 380px; background: var(--primary); }
.insight-card > img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.insight-card > div { padding: 2.3rem; }
.insight-meta span, .insight-kicker { color: var(--accent); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; }
.insight-kicker { margin: 3.2rem 0 0.8rem; }
.insight-card h3 { max-width: 500px; margin: 0 0 1rem; color: #fff; font: 600 1.8rem/1.18 "Playfair Display", serif; }
.insight-card > div > p:not(.insight-kicker) { max-width: 560px; margin: 0; font-size: 0.85rem; line-height: 1.8; }
.insight-card a { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 2rem; padding-bottom: 0.35rem; border-bottom: 1px solid rgba(255, 255, 255, 0.22); color: #fff; font-size: 0.72rem; font-weight: 600; }
.insight-card a span { color: var(--accent); }

/* Contact and footer */
.contact-section { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: end; padding: 7rem max(1.5rem, calc((100vw - 1480px) / 2 + 6.5rem)); background: #fff; }
.contact-section .eyebrow { color: var(--primary); }
.contact-section h2 { max-width: 900px; }
.contact-links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }
.contact-links a { padding: 0.5rem 0; border-bottom: 1px solid var(--line); color: var(--primary); font-size: 0.8rem; font-weight: 600; }
.contact-links .social-link { display: inline-flex; align-items: center; gap: 0.65rem; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
footer { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem clamp(1.5rem, 4vw, 4rem); background: #06172c; color: rgba(255, 255, 255, 0.55); font-size: 0.7rem; }
footer button, footer a { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.footer-social { display: flex; align-items: center; gap: 0.65rem; }
.footer-social a { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 50%; transition: 0.2s; }
.footer-social a:hover { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.footer-social svg { width: 13px; height: 13px; fill: currentColor; }

@media (max-width: 1180px) {
  .site-header .identity strong { display: none; }
  .menu-button { display: block; }
  .site-header nav {
    position: absolute;
    top: 74px;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .site-header.open nav { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: opacity 0.22s ease, transform 0.22s ease; }
  .site-header nav a { padding: 0.9rem; }
  .site-header nav a.pill-link { border: 0; }
  .site-header nav a.lang-toggle { justify-content: flex-start; margin: 0.35rem 0 0; padding: 0.78rem 0.9rem; border: 1px solid var(--line); background: var(--paper); opacity: 1; }
  .hero { display: block; }
  .hero-visual { min-height: 680px; }
  .portrait-wrap { top: auto; right: 3rem; bottom: -76px; transform: none; }
  .hero-copy { min-height: 700px; padding: 8.5rem 3rem 5rem; }
  .impact-strip { grid-template-columns: repeat(2, 1fr); }
  .milestone:nth-child(2) { border-right: 0; }
  .milestone:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .profile-grid { grid-template-columns: 1fr; }
  .mandate-card { max-width: 620px; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 1.25rem; }
  .inner-page { padding-top: 74px; }
  .identity span { width: 43px; height: 43px; }
  .hero-visual { min-height: 590px; }
  .location-chip { top: 5.8rem; left: 1.25rem; }
  .portrait-wrap { right: 1.4rem; bottom: -60px; width: 150px; height: 150px; }
  .hero blockquote { left: 1.5rem; right: 1.5rem; bottom: 2.1rem; font-size: 1.8rem; }
  .hero-copy { min-height: 0; padding: 7.5rem 1.5rem 4.5rem; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5rem); }
  .role { font-size: 0.86rem; }
  .role i { margin: 0 0.35rem; }
  .intro { font-size: 0.96rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .notify-form { padding: 1.2rem; }
  .notify-form > div:first-child, .notify-controls { display: block; }
  .notify-form span { display: block; margin-top: 0.3rem; }
  .notify-controls input, .notify-controls button { width: 100%; }
  .notify-controls button { margin-top: 0.65rem; padding: 1rem; }
  .impact-strip { grid-template-columns: 1fr 1fr; }
  .milestone { min-height: 165px; padding: 1.5rem; }
  .milestone strong { font-size: 2.35rem; }
  .section { padding: 5rem 1.5rem; }
  .section-intro { margin-bottom: 3rem; }
  .section-intro > div { display: block; }
  .section-intro > div p { margin-top: 0.7rem; }
  .section h2, .contact-section h2 { font-size: 2.7rem; }
  .profile-grid { gap: 2.5rem; }
  .about-copy p { font-size: 0.98rem; }
  .credential-bar, .credential-bar > div { display: block; }
  .credential-bar p { margin-top: 0.7rem; }
  .credential-bar a { display: inline-block; margin-top: 1.3rem; }
  .focus-grid, .insight-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 290px; padding: 1.7rem; }
  .focus-card h3 { margin-top: 3.5rem; }
  .timeline-item { grid-template-columns: 45px 1fr; gap: 1rem; }
  .timeline-item > p { grid-column: 2; }
  .contact-section { display: block; padding: 5rem 1.5rem; }
  .contact-links { align-items: flex-start; margin-top: 2.5rem; }
  footer { flex-wrap: wrap; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Newsroom cards shared by the homepage and archive */
.newsroom-preview { background: #fff; }
.news-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3.5rem; }
.news-heading > a { padding-bottom: 0.4rem; border-bottom: 1px solid var(--line); color: var(--primary); font-size: 0.76rem; font-weight: 600; }
.news-heading > a span { display: inline-block; color: var(--accent); transition: transform 0.2s; }
.news-heading > a:hover span { transform: translateX(3px); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.news-card { overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.news-image, .news-placeholder { display: block; height: 220px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.news-card:hover .news-image img { transform: scale(1.025); }
.news-placeholder { display: flex; flex-direction: column; justify-content: space-between; padding: 1.6rem; background: var(--primary); color: #fff; }
.news-placeholder span { color: rgba(255, 255, 255, 0.28); font: 600 2.2rem "Playfair Display", serif; }
.news-placeholder b { max-width: 180px; color: var(--accent); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.17em; }
.news-card > div { padding: 1.6rem; }
.news-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--accent); font-size: 0.63rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.news-meta time { color: var(--text); font-weight: 500; letter-spacing: 0.04em; }
.news-card h3 { margin: 1.3rem 0 0.9rem; color: var(--ink); font: 600 1.55rem/1.2 "Playfair Display", serif; }
.news-card > div > p { margin: 0; font-size: 0.82rem; line-height: 1.7; }
.read-link { display: inline-flex; gap: 0.6rem; margin-top: 1.5rem; color: var(--primary); font-size: 0.72rem; font-weight: 600; }
.read-link span { display: inline-block; color: var(--accent); transition: transform 0.2s; }
.read-link:hover span { transform: translateX(3px); }

/* News archive */
.inner-page::before { opacity: 0.35; }
.inner-header { border-bottom: 1px solid var(--line); background: rgba(246, 244, 239, 0.92); color: var(--primary); backdrop-filter: blur(12px); }
.inner-header .identity span { border-color: var(--line); background: var(--primary); color: #fff; }
.inner-header .menu-button { border-color: var(--line); color: var(--primary); }
.inner-header nav a[aria-current="page"] { opacity: 1; }
.newsroom-page, .article-page { position: relative; z-index: 1; }
.newsroom-masthead { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 6rem; align-items: end; max-width: 1480px; margin: 0 auto; padding: 7rem clamp(1.5rem, 6vw, 6.5rem) 5rem; }
.newsroom-masthead h1 { max-width: 920px; margin: 0; color: var(--ink); font: 600 clamp(3.8rem, 6vw, 6.5rem)/0.98 "Playfair Display", serif; letter-spacing: -0.045em; }
.newsroom-summary > p { margin: 0; font-size: 0.92rem; line-height: 1.8; }
.newsroom-summary > div { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--primary); font-size: 0.7rem; font-weight: 600; }
.featured-story { display: grid; grid-template-columns: 1.05fr 0.95fr; max-width: 1480px; min-height: 540px; margin: 0 auto 7rem; padding: 0 clamp(1.5rem, 6vw, 6.5rem); }
.featured-visual { min-height: 500px; overflow: hidden; background: var(--primary); }
.featured-visual > img { width: 100%; height: 100%; object-fit: cover; }
.featured-monogram { display: flex; height: 100%; min-height: 500px; align-items: center; justify-content: center; color: #fff; font: 600 clamp(5rem, 10vw, 9rem) "Playfair Display", serif; }
.featured-monogram span { margin-left: 1.3rem; padding-left: 1.3rem; border-left: 1px solid rgba(255, 255, 255, 0.2); color: var(--accent); font: 600 0.68rem "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: 0.2em; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem; border: 1px solid var(--line); border-left: 0; background: #fff; }
.featured-copy h2 { margin: 1.5rem 0 1.2rem; color: var(--ink); font: 600 clamp(2.3rem, 3.3vw, 3.8rem)/1.08 "Playfair Display", serif; letter-spacing: -0.025em; }
.featured-copy > p { margin: 0 0 2rem; font-size: 0.9rem; line-height: 1.8; }
.featured-copy .primary-action { align-self: flex-start; }
.news-archive { max-width: 1480px; margin: 0 auto; padding: 0 clamp(1.5rem, 6vw, 6.5rem) 8rem; }
.archive-grid { grid-template-columns: repeat(3, 1fr); }
.news-empty { grid-column: 1/-1; padding: 5rem 1rem; border: 1px solid var(--line); text-align: center; }

/* Article pages */
.article-hero { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem 4.5rem; text-align: center; }
.back-link { display: inline-block; margin-bottom: 3.5rem; color: var(--primary); font-size: 0.72rem; font-weight: 600; }
.article-meta { display: flex; justify-content: center; gap: 1rem; color: var(--accent); font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.article-meta time { padding-left: 1rem; border-left: 1px solid var(--line); color: var(--text); }
.article-hero h1 { max-width: 1050px; margin: 1.5rem auto; color: var(--ink); font: 600 clamp(3.5rem, 6vw, 6.3rem)/1 "Playfair Display", serif; letter-spacing: -0.045em; }
.article-hero > p { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }
.article-page > figure { max-width: 1280px; margin: 0 auto 5rem; padding: 0 1.5rem; }
.article-page > figure img { width: 100%; max-height: 700px; object-fit: cover; }
.article-page > figure figcaption { margin-top: 0.65rem; color: var(--text); font-size: 0.65rem; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 6rem; justify-content: center; max-width: 1180px; margin: 0 auto; padding: 2rem 1.5rem 7rem; }
.article-layout > aside { display: flex; flex-direction: column; align-self: start; padding-top: 0.5rem; }
.article-layout > aside span { margin-top: 1.3rem; color: var(--accent); font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.article-layout > aside span:first-child { margin-top: 0; }
.article-layout > aside strong { margin-top: 0.35rem; color: var(--primary); font-size: 0.76rem; line-height: 1.5; }
.article-body p { margin: 0 0 1.6rem; color: #39495e; font: 400 1.08rem/1.95 "DM Sans", sans-serif; }
.article-body p:first-child::first-letter { float: left; margin: 0.06rem 0.45rem 0 0; color: var(--primary); font: 600 4.3rem/0.8 "Playfair Display", serif; }
.source-link { display: inline-flex; gap: 0.6rem; margin-top: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); color: var(--primary); font-size: 0.78rem; font-weight: 600; }
.source-link span { color: var(--accent); }
.related-section { padding: 6rem max(1.5rem, calc((100vw - 1480px) / 2 + 6.5rem)); background: var(--paper-deep); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.related-story { display: grid; min-height: 220px; align-content: space-between; padding: 1.7rem; background: var(--paper); }
.related-story span { color: var(--accent); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.13em; }
.related-story strong { color: var(--ink); font: 600 1.35rem/1.25 "Playfair Display", serif; }
.related-story time { color: var(--text); font-size: 0.66rem; }

/* Gallery */
.gallery-section { background: var(--paper); }
.gallery-archive { max-width: 1480px; margin: 0 auto; padding: 1rem clamp(1.5rem, 6vw, 6.5rem) 8rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.1rem; }
.gallery-item { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 0.6rem; background: var(--paper-deep); box-shadow: 0 1px 0 var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(7, 24, 46, 0.85));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }
.gallery-empty { grid-column: 1/-1; padding: 5rem 1rem; border: 1px solid var(--line); text-align: center; }

/* Grouped collection preview on the home page */
.gallery-collection-preview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.gallery-collection-card { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr); min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: 0.75rem; background: var(--white); box-shadow: 0 16px 42px rgba(7, 24, 46, 0.07); transition: transform 0.25s, box-shadow 0.25s; }
.gallery-collection-card:only-child { grid-column: 1 / -1; }
.gallery-collection-card:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(7, 24, 46, 0.12); }
.gallery-collection-cover { position: relative; display: grid; place-items: center; min-height: 330px; overflow: hidden; background: var(--paper-deep); }
.gallery-collection-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.gallery-collection-card:hover .gallery-collection-cover img { transform: scale(1.025); }
.gallery-collection-cover > span { position: absolute; right: 1rem; bottom: 1rem; padding: 0.45rem 0.7rem; border-radius: 999px; background: rgba(7, 24, 46, 0.82); color: #fff; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.gallery-collection-copy { display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
.gallery-collection-copy small { color: var(--accent); font-size: 0.62rem; font-weight: 600; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.13em; }
.gallery-collection-copy strong { margin: 0.8rem 0 2rem; color: var(--ink); font: 600 clamp(1.45rem, 2vw, 2rem)/1.15 "Playfair Display", serif; }
.gallery-collection-copy b { margin-top: auto; color: var(--primary); font-size: 0.7rem; }
.gallery-collection-copy i { margin-left: 0.35rem; color: var(--accent); font-style: normal; }

/* Collection archive */
.gallery-collection-index { margin: 0 0 6rem; padding: 2rem 0 0; border-top: 1px solid var(--line); }
.gallery-collection-index > p { margin: 0 0 1.3rem; color: var(--text); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.gallery-collection-index > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.gallery-collection-index a { display: grid; grid-template-columns: 76px 1fr auto; gap: 1rem; align-items: center; min-height: 104px; padding: 0.85rem; background: var(--paper); transition: background-color 0.2s; }
.gallery-collection-index a:hover { background: var(--white); }
.gallery-index-image { width: 76px; height: 76px; overflow: hidden; background: var(--paper-deep); }
.gallery-index-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-collection-index a > span:nth-child(2) { display: grid; gap: 0.35rem; }
.gallery-collection-index small { color: var(--accent); font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.gallery-collection-index strong { color: var(--ink); font: 600 1.05rem/1.25 "Playfair Display", serif; }
.gallery-collection-index i { padding-right: 0.6rem; color: var(--accent); font-style: normal; }
.gallery-collections { display: grid; gap: 8rem; }
.gallery-collection { scroll-margin-top: 8rem; }
.gallery-collection + .gallery-collection { padding-top: 7rem; border-top: 1px solid var(--line); }
.gallery-collection-header { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 5rem; align-items: end; margin-bottom: 2.5rem; }
.gallery-collection-header h2 { max-width: 920px; margin: 0.8rem 0 0; color: var(--ink); font: 600 clamp(2.3rem, 4vw, 4.3rem)/1.04 "Playfair Display", serif; letter-spacing: -0.035em; }
.gallery-collection-header > div > p:last-child:not(.eyebrow) { max-width: 820px; margin: 1.3rem 0 0; font-size: 0.9rem; line-height: 1.8; }
.gallery-collection-header aside { display: grid; gap: 0.7rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.gallery-collection-header aside span { color: var(--accent); font-size: 0.61rem; font-weight: 600; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.12em; }
.gallery-collection-header aside strong { color: var(--primary); font-size: 0.72rem; }
.gallery-collection-header aside a { margin-top: 0.6rem; color: var(--text); font-size: 0.65rem; }
.gallery-collection-grid { column-count: 3; column-gap: 1.25rem; }
.gallery-collection-photo { position: relative; display: inline-block; width: 100%; margin: 0 0 1.25rem; overflow: hidden; break-inside: avoid; border: 1px solid var(--line); border-radius: 0.65rem; background: var(--white); box-shadow: 0 14px 36px rgba(7, 24, 46, 0.07); transition: transform 0.25s, box-shadow 0.25s; }
.gallery-collection-photo:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(7, 24, 46, 0.12); }
.gallery-collection-photo .gallery-item { aspect-ratio: auto; border-radius: 0; box-shadow: none; }
.gallery-collection-photo .gallery-item img { width: 100%; height: auto; object-fit: contain; transform: none; }
.gallery-photo-number { position: absolute; top: 0.75rem; right: 0.75rem; display: grid; place-items: center; min-width: 2rem; height: 2rem; padding: 0 0.45rem; border-radius: 999px; background: rgba(7, 24, 46, 0.76); color: #fff; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; backdrop-filter: blur(8px); }
.gallery-collection-photo figcaption { padding: 0.9rem 1rem 1rem; border-top: 1px solid var(--line); color: var(--ink); font-size: 0.74rem; font-weight: 600; line-height: 1.45; }

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 5vw, 4rem);
  background: rgba(4, 12, 24, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.25s ease; }
.lightbox-figure { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: min(1100px, 100%); max-height: 100%; transform: scale(0.97); transition: transform 0.25s ease; }
.lightbox.open .lightbox-figure { transform: none; }
.lightbox-figure img { max-width: 100%; max-height: 78vh; border-radius: 0.4rem; object-fit: contain; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); }
.lightbox-caption { display: grid; grid-template-columns: 1fr auto; gap: 0.25rem 1rem; width: min(720px, 100%); color: rgba(255, 255, 255, 0.85); text-align: left; }
.lightbox-caption strong { grid-column: 1; color: var(--accent); font-size: 0.62rem; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.12em; }
.lightbox-caption-text { grid-column: 1; font-size: 0.82rem; line-height: 1.5; }
.lightbox-position { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: rgba(255, 255, 255, 0.62); font-size: 0.68rem; letter-spacing: 0.08em; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(7, 24, 46, 0.55);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(11, 39, 72, 0.85); }
.lightbox-close { top: clamp(0.5rem, 3vw, 1.5rem); right: clamp(0.5rem, 3vw, 1.5rem); }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: clamp(0.25rem, 2vw, 1.25rem); }
.lightbox-next { right: clamp(0.25rem, 2vw, 1.25rem); }

@media (max-width: 1000px) {
  .news-grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .newsroom-masthead { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-story { grid-template-columns: 1fr; }
  .featured-copy { border-left: 1px solid var(--line); }
  .article-layout { grid-template-columns: 1fr; gap: 2rem; }
  .article-layout > aside { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 0.5rem 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
  .article-layout > aside span { margin-top: 0; }
  .gallery-collection-preview { grid-template-columns: 1fr; }
  .gallery-collection-index > div { grid-template-columns: 1fr; }
  .gallery-collection-header { gap: 2.5rem; }
  .gallery-collection-grid { column-count: 2; }
}

@media (max-width: 680px) {
  .news-heading { display: block; }
  .news-heading > a { display: inline-block; margin-top: 1.3rem; }
  .news-grid, .archive-grid { grid-template-columns: 1fr; }
  .newsroom-masthead { padding: 4.5rem 1.5rem 3.5rem; }
  .newsroom-masthead h1 { font-size: 3.5rem; }
  .featured-story { margin-bottom: 5rem; padding: 0 1.5rem; }
  .featured-visual, .featured-monogram { min-height: 300px; }
  .featured-copy { padding: 1.6rem; }
  .news-archive { padding: 0 1.5rem 5rem; }
  .article-hero { padding: 4rem 1.5rem 3rem; text-align: left; }
  .article-meta { justify-content: flex-start; }
  .article-hero h1 { font-size: 3.25rem; }
  .article-layout { padding-bottom: 5rem; }
  .article-layout > aside { grid-template-columns: 1fr 1fr; }
  .article-body p { font-size: 1rem; }
  .related-section { padding: 5rem 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .gallery-archive { padding: 1rem 1.5rem 5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .gallery-caption { padding: 1.8rem 0.8rem 0.7rem; font-size: 0.68rem; }
  .gallery-collection-card { grid-template-columns: 1fr; }
  .gallery-collection-cover { min-height: 280px; }
  .gallery-collection-copy { min-height: 220px; padding: 1.5rem; }
  .gallery-collection-index { margin-bottom: 4rem; }
  .gallery-collection-index a { grid-template-columns: 64px 1fr auto; min-height: 88px; }
  .gallery-index-image { width: 64px; height: 64px; }
  .gallery-collections { gap: 5rem; }
  .gallery-collection + .gallery-collection { padding-top: 5rem; }
  .gallery-collection-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-collection-header h2 { font-size: 2.65rem; }
  .gallery-collection-header aside { grid-template-columns: 1fr auto; align-items: center; }
  .gallery-collection-header aside a { grid-column: 1 / -1; }
  .gallery-collection-grid { column-count: 1; }
  .gallery-collection-photo { margin-bottom: 1rem; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 0.95rem; }
  .lightbox-close { width: 38px; height: 38px; }
  .lightbox { padding: 3.75rem 1rem 1.25rem; }
  .press-section { padding: 2.5rem 1.5rem 0; }
  .boilerplate-block > div { padding: 0 1.5rem; }
  .portrait-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-switch { padding: 0 1.5rem; margin-bottom: 2.5rem; }
  .award-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* Footer utility links */
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.footer-links a { opacity: 0.75; transition: 0.2s; }
.footer-links a:hover { opacity: 1; }

/* News / Speeches tab switch */
.tab-switch { display: flex; gap: 0.6rem; max-width: 1480px; margin: 0 auto 3.5rem; padding: 0 clamp(1.5rem, 6vw, 6.5rem); }
.tab-link { padding: 0.65rem 1.2rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; transition: 0.2s; }
.tab-link:hover { border-color: var(--primary); color: var(--primary); }
.tab-link.active { border-color: var(--primary); background: var(--primary); color: #fff; }

/* Awards & recognitions */
.awards-list { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.award-item { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; padding: 1.9rem 0; background: var(--paper); }
.award-item .award-year { color: var(--accent); font: 600 1.15rem "Playfair Display", serif; }
.award-item .award-org { margin: 0 0 0.35rem; color: var(--primary); font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; }
.award-item h3 { margin: 0 0 0.5rem; color: var(--ink); font: 600 1.4rem/1.25 "Playfair Display", serif; }
.award-item p { margin: 0; max-width: 650px; font-size: 0.86rem; line-height: 1.75; }
.award-item a { display: inline-flex; gap: 0.5rem; margin-top: 0.8rem; color: var(--primary); font-size: 0.72rem; font-weight: 600; }
.award-item a span { color: var(--accent); }

/* Press & media kit */
.press-page { padding-bottom: 4rem; }
.press-section { max-width: 900px; margin: 0 auto; padding: 3.5rem clamp(1.5rem, 6vw, 6.5rem) 0; }
.press-section h2 { margin: 0 0 1.6rem; color: var(--ink); font: 600 1.9rem "Playfair Display", serif; }
.press-lede { margin: 0 0 1rem; color: var(--primary); font-size: 1rem; font-weight: 600; line-height: 1.7; }
.press-bio p { margin: 0 0 1.2rem; font-size: 0.95rem; line-height: 1.85; }
.portrait-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.portrait-download { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 0.6rem; background: var(--paper-deep); text-align: center; transition: 0.2s; }
.portrait-download img { width: 100%; height: 200px; object-fit: cover; }
.portrait-download > *:not(img) { display: block; padding: 0.35rem 0.9rem 0; font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.portrait-download span { padding-top: 0.2rem; padding-bottom: 0.8rem; color: var(--primary); font-size: 0.68rem; font-weight: 600; }
.portrait-download:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.press-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.press-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.press-list strong { flex: 1 1 260px; color: var(--ink); font-size: 0.92rem; }
.press-list span { color: var(--primary); font-size: 0.75rem; }
.press-list time { margin-left: auto; color: var(--text); font-size: 0.72rem; }
.press-list .empty { color: var(--text); font-size: 0.85rem; }
.boilerplate-block { max-width: none; padding-top: 3.5rem; padding-bottom: 3.5rem; margin-top: 3.5rem; background: var(--paper-deep); }
.boilerplate-block > div { max-width: 900px; margin: 0 auto; padding: 0 clamp(1.5rem, 6vw, 6.5rem); }
.boilerplate-block p { margin: 0 0 1rem; color: var(--text); font-size: 0.86rem; line-height: 1.75; }
.press-contact-block { padding-bottom: 4rem; }
.press-contact-block p { font-size: 1.05rem; font-weight: 600; }
.press-contact-block a { color: var(--primary); }

/* Legal pages */
.legal-page .article-hero { padding-bottom: 2rem; text-align: left; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 0 1.5rem 6rem; }
.legal-body p { margin: 0 0 1.4rem; color: var(--text); font-size: 0.95rem; line-height: 1.85; }

/* Error / 404 page */
.error-page { display: flex; min-height: 100vh; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; padding: 2rem; text-align: center; }
.error-page .identity { color: var(--primary); }
.error-page .identity span { border-color: var(--line); background: rgba(11, 39, 72, 0.06); color: var(--primary); }
.error-page .error-code { margin: 0; color: rgba(11, 39, 72, 0.14); font: 700 clamp(5rem, 14vw, 9rem) "Playfair Display", serif; line-height: 1; }
.error-page h1 { margin: -2rem 0 0; color: var(--ink); font: 600 clamp(1.6rem, 3vw, 2.4rem) "Playfair Display", serif; }
.error-page .error-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1rem; }

/* Article share row */
.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.share-row > span { color: var(--text); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.share-row a, .share-row button { padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--primary); font: inherit; font-size: 0.72rem; font-weight: 600; cursor: pointer; transition: 0.2s; }
.share-row a:hover, .share-row button:hover { border-color: var(--primary); }
