:root {
  --ink: #0b0b0b;
  --ink-soft: #171717;
  --paper: #f4f3ef;
  --white: #ffffff;
  --muted: #626262;
  --line: #d7d5cf;
  --orange: #f5a000;
  --orange-dark: #d88900;
  --shell: min(1200px, calc(100vw - 48px));
  --radius: 2px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(11, 11, 11, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.brand { display: block; width: 150px; flex: 0 0 auto; }
.brand img { width: 150px; height: 58px; object-fit: contain; mix-blend-mode: screen; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: #f6f3eb;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--orange); }


.mobile-menu { display: none; color: var(--white); }

.home-page { --header-height: 78px; }
.home-page > .site-header { margin-bottom: calc(-1 * var(--header-height)); }
.home-page .hero { padding-top: var(--header-height); min-height: 838px; }
@media (max-width: 980px) {
  .home-page .hero { min-height: 798px; }
}
@media (max-width: 640px) {
  .home-page { --header-height: 70px; }
  .home-page .hero { min-height: 870px; }
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/hero-current.jpg") center center / cover no-repeat;
  filter: saturate(0.7) contrast(1.05);
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.78) 42%, rgba(5,5,5,0.18) 78%, rgba(5,5,5,0.28) 100%),
    linear-gradient(0deg, rgba(5,5,5,0.88) 0%, transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(92px, 13vw, 152px);
  padding-bottom: 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark { color: #e38605; }

h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -0.035em; }

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 760;
}

h1 span { color: var(--orange); }

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 720;
}

h3 { font-size: 1.45rem; }

.hero-copy {
  max-width: 690px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: #ffb11f; }
.button-quiet { border-color: rgba(255,255,255,0.45); color: var(--white); }
.button-quiet:hover, .button-quiet:focus-visible { border-color: var(--orange); color: var(--orange); }

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.24);
}

.hero-metrics > div {
  min-height: 122px;
  padding: 24px 30px 28px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.hero-metrics > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.24);
}

.hero-metrics strong { color: var(--orange); font-size: clamp(2rem, 3.4vw, 3.3rem); line-height: 1; }
.hero-metrics span { max-width: 150px; color: rgba(255,255,255,0.68); font-size: 0.82rem; line-height: 1.35; }

.section { padding: clamp(78px, 10vw, 130px) 0; }
.section-light { background: var(--paper); }
.section-ink { background: var(--ink); color: var(--white); }

.split-intro,
.related-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.split-intro h2,
.related-grid h2 { max-width: 570px; }
.body-copy { max-width: 690px; color: #3d3d3d; font-size: 1.08rem; }
.body-copy p:first-child { margin-top: 4px; }
.body-copy p + p { margin-top: 22px; }

.process-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article { padding: 30px 34px 0 0; }
.process-grid article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.process-grid span, .card-number { color: #a76b00; font-size: 0.74rem; font-weight: 760; letter-spacing: 0.1em; }
.process-grid h3 { margin: 22px 0 14px; }
.process-grid p { margin: 0; color: var(--muted); }

.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.inverse h2 { color: var(--white); }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.capability-card { min-height: 420px; padding: 34px; }
.capability-card:first-child { padding-left: 0; }
.capability-card + .capability-card { border-left: 1px solid rgba(255,255,255,0.2); }
.card-number { margin: 0 0 84px; color: var(--orange); }
.capability-card h3 { font-size: 1.625rem; }
.capability-card > p:not(.card-number) { color: rgba(255,255,255,0.7); }
.capability-card .focus { margin-top: 30px; color: var(--orange); font-size: 0.88rem; }

.related-firm { background: #d7d9db; }
.related-firm .eyebrow, .related-firm .text-link { color: var(--orange); }
.related-grid > div:last-child { padding-top: 7px; }
.related-grid > div:last-child > p:first-child { margin-top: 0; font-size: 1.2rem; }
.fine-print { margin: 28px 0; font-size: 0.84rem; color: rgba(11,11,11,0.68); }

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link:hover, .text-link:focus-visible { text-decoration-thickness: 3px; }

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.heading-row .text-link { max-width: 260px; margin-bottom: 8px; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.press-card {
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.press-card:hover, .press-card:focus-visible { background: #fff9ed; }
.press-featured { background: var(--ink); color: var(--white); }
.press-featured:hover, .press-featured:focus-visible { background: #202020; }
.press-card > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.press-type, .press-year { color: #8b5a00; font-size: 0.73rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.press-featured .press-type, .press-featured .press-year { color: var(--orange); }
.publication { margin: 54px 0 10px; color: var(--muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.press-featured .publication { color: rgba(255,255,255,0.55); }
.press-card h3 { margin-bottom: 16px; font-size: 1.45rem; }
.press-card > p:not(.publication) { margin: 0; color: var(--muted); font-size: 0.92rem; }
.press-featured > p:not(.publication) { color: rgba(255,255,255,0.68); }
.read-more { margin-top: auto; padding-top: 24px; color: #8b5a00; font-size: 0.78rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.06em; }
.press-featured .read-more { color: var(--orange); }

#perspective { background: #000; color: var(--white); }
#perspective .eyebrow,
#perspective .text-link,
#perspective .press-type,
#perspective .press-year,
#perspective .read-more { color: var(--orange); }
#perspective .press-grid { background: #333; border-color: #333; }
#perspective .press-card { background: #000; color: var(--white); }
#perspective .press-card:hover,
#perspective .press-card:focus-visible { background: var(--ink-soft); }
#perspective .publication,
#perspective .press-card > p:not(.publication) { color: var(--paper); }

.brand-experience { padding-block: 80px; background: var(--white); }
.brand-experience h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.logo-row {
  margin-top: 46px;
  padding-block: 30px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-row img { width: 100%; max-height: 54px; object-fit: contain; filter: grayscale(1) brightness(0) invert(0.5); opacity: 1; }
.trademark-note { max-width: 780px; margin: 18px 0 0; color: #777; font-size: 0.76rem; }

.team-heading > p { max-width: 360px; margin: 0 0 8px; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { background: var(--white); border-bottom: 3px solid transparent; transition: border-color 180ms ease; }
.team-card:hover { border-color: var(--orange); }
.team-card img { width: 120px; height: 120px; margin: 24px 24px 0; object-fit: cover; object-position: center 18%; filter: saturate(0.72); }
.team-card-copy { padding: 24px; }
.team-card .role { min-height: 38px; margin: 0 0 16px; color: #9a6300; font-size: 0.68rem; font-weight: 780; line-height: 1.35; letter-spacing: 0.08em; text-transform: uppercase; }
.team-card h3 { margin-bottom: 13px; font-size: 1.4rem; }
.team-card-copy > p:not(.role) { margin: 0; color: var(--muted); font-size: 0.9rem; }
.team-card a { display: inline-block; margin-top: 22px; color: #855600; font-size: 0.76rem; font-weight: 750; text-underline-offset: 4px; text-transform: uppercase; }
.team-card a + a { margin-left: 14px; }

.profile-page { background: var(--paper); }
.profile-header { min-height: 360px; padding-block: 88px; background: var(--ink); color: var(--white); }
.profile-header .eyebrow { margin-bottom: 22px; }
.profile-header h1 { max-width: 900px; margin-bottom: 16px; font-size: clamp(3rem, 7vw, 6rem); }
.profile-role { max-width: 720px; margin: 0; color: var(--orange); font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; }
.profile-body { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.profile-photo { width: 120px; height: 120px; aspect-ratio: 1/1; object-fit: cover; object-position: center 18%; filter: saturate(0.72); }
.profile-content { max-width: 760px; }
.profile-content h2 { margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3.6rem); }
.profile-content > p { color: var(--muted); font-size: 1.08rem; }
.profile-content > h3 { margin-top: 32px; margin-bottom: 14px; }
.profile-focus { margin: 42px 0 0; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-focus h3 { margin-bottom: 18px; }
.profile-focus ul { margin: 0; padding-left: 20px; color: var(--muted); }
.profile-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.profile-actions .button { min-width: 190px; }
.profile-actions .button-secondary { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.profile-actions .button-secondary:hover, .profile-actions .button-secondary:focus-visible { background: var(--ink); color: var(--white); }
.profile-return { display: none; color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; }

.contact-band { padding: 88px 0; background: var(--ink); color: var(--white); }
.contact-grid { align-items: center; }
.contact-band h2 { max-width: 660px; margin-bottom: 0; font-size: clamp(2.2rem, 4.6vw, 4.8rem); }
.contact-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 14px; }
.contact-actions .button { min-width: 330px; }

.site-footer { padding: 56px 0 28px; background: #050505; color: rgba(255,255,255,0.6); }
.footer-grid { display: flex; align-items: start; justify-content: space-between; gap: 48px; }
.footer-grid img { width: 150px; height: auto; }
.footer-grid p { margin: 14px 0 0; font-size: 0.82rem; }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.78); font-size: 0.78rem; font-weight: 650; text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--orange); }
.legal { margin-top: 48px; padding-top: 22px; display: grid; grid-template-columns: 1fr 2fr; gap: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.legal p { margin: 0; font-size: 0.72rem; line-height: 1.5; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .profile-return { display: inline-block; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { cursor: pointer; list-style: none; padding: 12px 14px; min-height: 44px; border: 1px solid rgba(255,255,255,0.4); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; right: 0; top: 48px; width: min(280px, calc(100vw - 48px)); padding: 18px; display: grid; gap: 4px; background: var(--ink-soft); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 18px 50px rgba(0,0,0,0.4); }
  .mobile-menu nav a { padding: 10px; color: var(--white); text-decoration: none; font-weight: 650; }
  .mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--orange); }
  .hero { min-height: 720px; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.67) 65%, rgba(5,5,5,0.5) 100%), linear-gradient(0deg, rgba(5,5,5,0.94) 0%, transparent 44%); }
  .hero-metrics > div { display: block; }
  .hero-metrics strong, .hero-metrics span { display: block; }
  .hero-metrics span { margin-top: 8px; }
  .split-intro, .related-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card, .capability-card:first-child { min-height: auto; padding: 34px 0; }
  .capability-card + .capability-card { border-left: 0; border-top: 1px solid rgba(255,255,255,0.2); }
  .card-number { margin-bottom: 38px; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-row { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-body { grid-template-columns: 120px minmax(0, 1fr); gap: 32px; }
  .contact-grid { gap: 42px; }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
  .contact-actions .button { min-width: 0; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 32px, 1200px); }
  html { scroll-padding-top: 70px; }
  .site-header { min-height: 70px; padding-inline: 16px; }
  .brand, .brand img { width: 126px; }
  .brand img { height: 50px; }
  .hero { min-height: 800px; }
  .hero-image { background-position: 62% center; }
  .hero-content { padding-top: 82px; padding-bottom: 50px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; padding-bottom: 22px; }
  .hero-metrics > div, .hero-metrics > div + div { min-height: auto; padding: 16px 0; display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 14px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .hero-metrics span { max-width: none; margin-top: 0; }
  .section { padding-block: 72px; }
  .heading-row { align-items: start; flex-direction: column; gap: 14px; }
  .press-grid { grid-template-columns: 1fr; }
  .press-card { min-height: 350px; padding: 26px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .logo-row img { max-height: 46px; }
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-card img { width: 120px; height: 120px; object-position: center 19%; }
  .team-card a + a { margin-left: 0; }
  .profile-header { min-height: 300px; padding-block: 64px; }
  .profile-body { grid-template-columns: 1fr; gap: 34px; }
  .profile-photo { width: 120px; height: 120px; object-position: center 19%; }
  .profile-actions, .profile-actions .button { width: 100%; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .contact-actions { flex-direction: column; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; gap: 18px; }
  .legal { grid-template-columns: 1fr; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

.profile-content > .eyebrow { color: var(--orange); }
.profile-header .profile-back { margin-bottom: 28px; min-height: 44px; }

/* Press archive and source-led article pages. */
.capability-grid, .process-grid, .press-grid, .team-grid { align-items: stretch; }
/* Shared tracks let the tallest content set each row for all adjacent cards. */
@supports (grid-template-rows: subgrid) {
  .capability-card { display: grid; grid-row: span 4; grid-template-rows: subgrid; row-gap: 0; }
  .process-grid article { display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 0; }
  .press-grid .press-card { display: grid; grid-row: span 5; grid-template-rows: subgrid; row-gap: 0; }
  .press-grid .press-card > * { align-self: start; }
  .press-grid .press-card .read-more { margin-top: 0; }
  .team-card { display: grid; grid-row: span 5; grid-template-rows: subgrid; row-gap: 0; }
  .team-card-copy { display: grid; grid-row: span 4; grid-template-rows: subgrid; row-gap: 0; }
  .team-card-copy > * { align-self: start; }
}
.team-actions { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px 14px; padding-top: 22px; }
.team-actions a, .team-actions a + a { margin: 0; }
.desktop-nav .nav-contact, .mobile-menu nav .nav-contact { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 16px; background: var(--orange); color: var(--ink); }
.desktop-nav .nav-contact:hover, .desktop-nav .nav-contact:focus-visible, .mobile-menu nav .nav-contact:hover, .mobile-menu nav .nav-contact:focus-visible { color: var(--ink); background: #ffb11f; }
.press-hero { padding: 80px 0; background: var(--ink); color: var(--white); border-bottom: 4px solid var(--orange); }
.press-hero h1 { max-width: 1050px; font-size: clamp(2.6rem, 6vw, 5.5rem); line-height: 1.08; letter-spacing: -0.035em; overflow-wrap: break-word; }
.press-intro { max-width: 760px; color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.7; margin: 28px 0 0; }
.press-back { display: inline-block; margin-bottom: 36px; color: var(--white); text-underline-offset: 5px; padding-block: 10px; }
.mobile-menu summary,
.mobile-menu nav a,
.press-back,
.press-back-button {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-menu summary,
.press-back,
.press-back-button { font-size: 0.875rem; }
.mobile-menu nav a { font-size: 1rem; }
.article-hero h1 { font-size: clamp(2.3rem, 4.8vw, 4.4rem); }
.article-meta { margin-top: 28px; color: var(--orange); font-size: .95rem; line-height: 1.8; }
.press-card > div:first-child { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.press-card .press-year { white-space: nowrap; }
.press-card h2 { font-size: 1.6rem; line-height: 1.25; margin: 16px 0; }
.press-card h3 { overflow-wrap: break-word; }
.archive-grid { gap: 20px; }
.archive-grid .press-listing-photo { display: block; width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: cover; object-position: center 22%; margin-bottom: 24px; }
@supports (grid-template-rows: subgrid) {
  .archive-grid .press-card { grid-row: span 6; }
}
.archive-grid .press-card { min-height: 360px; }
.archive-grid .press-type, .archive-grid .press-year, .press-page .publication { font-size: .875rem; }
.press-contact { padding: 52px 0; background: #d7d9db; }
.press-contact .shell { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.press-contact h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: space-between; gap: 60px; padding-block: 72px; }
.article-facts { align-self: start; border-top: 3px solid var(--orange); padding-top: 24px; }
.article-facts dt { font-size: .875rem; color: var(--muted); margin-top: 22px; }
.article-facts dd { margin: 5px 0 24px; font-weight: 650; }
.article-facts a, .article-copy a:not(.button) { color: #855600; text-underline-offset: 4px; }
.article-copy { min-width: 0; }
.article-copy section { margin-bottom: 36px; }
.article-copy h2 { margin-bottom: 16px; font-size: clamp(1.5rem, 2.8vw, 2rem); line-height: 1.25; }
.article-copy p { font-size: 1.0625rem; line-height: 1.85; color: var(--muted); }
.press-figure { margin: 0 0 40px; }
.press-figure img { display: block; width: auto; max-width: 100%; height: auto; max-height: 520px; object-fit: contain; }
.press-figure figcaption { margin-top: 10px; font-size: .875rem; color: var(--muted); }
.article-source { border-top: 1px solid var(--line); padding-top: 28px; }
.press-contact-button { border: 1px solid var(--ink); color: var(--ink); }
.press-contact-button:hover { background: var(--ink); color: var(--white); }
.related-press { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px; }
@media (max-width: 1100px) and (min-width: 981px) {
  .desktop-nav { gap: 16px; }
  .site-header { gap: 20px; }
}
@media (max-width: 760px) {
  .press-hero { padding-block: 52px; }
  .article-layout { grid-template-columns: 1fr; gap: 36px; padding-block: 44px; }
  .article-facts dl { display: grid; grid-template-columns: minmax(95px, 1fr) 2fr; gap: 14px; }
  .article-facts dt, .article-facts dd { margin: 0; }
  .press-contact .shell { flex-direction: column; align-items: flex-start; }
  .related-press { grid-template-columns: 1fr; }
  .archive-grid .press-card { min-height: 0; }
}

.footer-links .button { font-size: .84rem; font-weight: 750; letter-spacing: .05em; }
.footer-links .button-primary, .footer-links .button-primary:hover, .footer-links .button-primary:focus-visible { color: var(--ink); }
.footer-links .button-quiet { color: var(--orange); }
.footer-links .button-quiet:hover, .footer-links .button-quiet:focus-visible { color: var(--orange); }

.archive-grid .press-event-photo { object-position: center 65%; }
