:root {
  --bg: #090909;
  --surface: #11110f;
  --surface-raised: #151411;
  --ink: #f0eadf;
  --muted: #928d84;
  --dim: #5c5953;
  --gold: #c8aa67;
  --gold-bright: #dec789;
  --line: rgba(240, 234, 223, 0.14);
  --line-strong: rgba(240, 234, 223, 0.25);
  --grid-line: rgba(255, 255, 255, 0.012);
  --header-bg: rgba(9, 9, 9, 0.88);
  --panel-bg: rgba(17, 17, 15, 0.72);
  --accent-ink: #090909;
  --sans: Arial, Helvetica, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: clamp(1.25rem, 4.2vw, 4rem);
  --section-space: clamp(6rem, 10vw, 10rem);
}

html[data-theme="light"] {
  --bg: #f3efe7;
  --surface: #e9e2d6;
  --surface-raised: #ded5c7;
  --ink: #1a1814;
  --muted: #5f5a51;
  --dim: #81796e;
  --gold: #896326;
  --gold-bright: #6f4e18;
  --line: rgba(26, 24, 20, 0.14);
  --line-strong: rgba(26, 24, 20, 0.27);
  --grid-line: rgba(26, 24, 20, 0.032);
  --header-bg: rgba(243, 239, 231, 0.9);
  --panel-bg: rgba(233, 226, 214, 0.8);
  --accent-ink: #fffaf2;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 5rem 5rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--accent-ink); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 1px solid var(--gold-bright); outline-offset: 5px; }
h1, h2, h3, p { margin-top: 0; }
ul, dl, dd { margin: 0; padding: 0; }
ul { list-style: none; }

.skip-link {
  background: var(--gold);
  color: var(--accent-ink);
  font: 0.65rem/1 var(--mono);
  left: 1rem;
  padding: 0.9rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-200%);
  z-index: 100;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
  min-height: 4.5rem;
  padding: 0 var(--gutter);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand { align-items: center; display: inline-flex; gap: 0.8rem; justify-self: start; }
.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  display: inline-flex;
  flex: 0 0 auto;
  font: 600 0.68rem/1 var(--mono);
  justify-content: center;
  letter-spacing: 0.1em;
  width: 2.2rem;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.brand-copy small { color: var(--dim); font: 0.55rem/1.5 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.primary-nav { align-items: center; display: flex; gap: clamp(1rem, 2.4vw, 2.5rem); }
.primary-nav a {
  color: var(--muted);
  font: 0.61rem/1 var(--mono);
  letter-spacing: 0.12em;
  padding: 1.9rem 0;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.primary-nav a:hover { color: var(--ink); }
.header-controls { align-items: center; display: flex; gap: 0.55rem; justify-self: end; }
.switch-control {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  display: inline-flex;
  font: 0.6rem/1 var(--mono);
  letter-spacing: 0.12em;
  padding: 0.2rem;
  position: relative;
  text-transform: uppercase;
}
.theme-switcher { cursor: pointer; }
.switch-indicator {
  background: var(--gold);
  height: calc(100% - 0.4rem);
  left: 0.2rem;
  pointer-events: none;
  position: absolute;
  top: 0.2rem;
  transform: translateX(0);
  transition: background-color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  width: calc(50% - 0.2rem);
}
.switch-label {
  align-items: center;
  display: inline-flex;
  height: 1.8rem;
  justify-content: center;
  position: relative;
  transition: color 180ms ease;
  z-index: 1;
}
.theme-switcher .switch-label { width: 3.65rem; }
.language-switcher .switch-label { width: 2.4rem; }
html[data-theme="light"] .theme-switcher .switch-indicator,
.language-switcher[data-locale="fr"] .switch-indicator { transform: translateX(100%); }
html[data-theme="dark"] .theme-switcher [data-theme-option="dark"],
html[data-theme="light"] .theme-switcher [data-theme-option="light"],
.language-switcher[data-locale="en"] [data-locale-option="en"],
.language-switcher[data-locale="fr"] [data-locale-option="fr"] { color: var(--accent-ink); }
html[data-theme="dark"] .theme-switcher [data-theme-option="light"],
html[data-theme="light"] .theme-switcher [data-theme-option="dark"],
.language-switcher[data-locale="en"] [data-locale-option="fr"],
.language-switcher[data-locale="fr"] [data-locale-option="en"] { color: var(--muted); }
.language-switcher a:hover { color: var(--ink); }

.hero {
  display: grid;
  gap: 4rem clamp(2rem, 7vw, 7.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  min-height: calc(100svh - 4.5rem);
  overflow: hidden;
  padding: clamp(4rem, 8vh, 7rem) var(--gutter) 2rem;
  position: relative;
}
.hero::before {
  background: radial-gradient(circle, rgba(200, 170, 103, 0.13), transparent 68%);
  content: "";
  height: 30rem;
  left: -15rem;
  pointer-events: none;
  position: absolute;
  top: 4rem;
  width: 30rem;
}
.hero-copy { align-self: center; max-width: 53rem; position: relative; z-index: 1; }
.eyebrow, .section-label, .panel-heading, .panel-footer, .hero-footer, .work-card-top, .detail-label {
  font: 0.62rem/1.4 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow { align-items: center; color: var(--gold); display: flex; gap: 0.65rem; margin-bottom: clamp(1.5rem, 4vh, 3.5rem); }
.status-dot {
  animation: statusPulse 2.6s ease-out infinite;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(200, 170, 103, 0.45);
  display: inline-block;
  height: 0.42rem;
  width: 0.42rem;
}
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 170, 103, 0.42); }
  60%, 100% { box-shadow: 0 0 0 0.6rem rgba(200, 170, 103, 0); }
}
.display-name {
  color: var(--gold);
  font-size: clamp(4rem, 11vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.72;
  margin: 0 0 clamp(2.4rem, 5vh, 4rem) -0.06em;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.25vw, 4.9rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero-summary { color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.7; margin-bottom: 2.4rem; max-width: 45rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.button {
  align-items: center;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  font: 0.65rem/1 var(--mono);
  gap: 1.25rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 3.1rem;
  padding: 0.95rem 1.15rem;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--gold); border-color: var(--gold); color: var(--accent-ink); }
.button-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.button-secondary:hover { border-color: var(--gold); color: var(--gold-bright); }

.facts-panel {
  align-self: center;
  background: var(--panel-bg);
  border: 1px solid var(--line-strong);
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  position: relative;
}
.facts-panel::after, .facts-panel::before {
  border-color: var(--gold);
  border-style: solid;
  content: "";
  height: 1.4rem;
  pointer-events: none;
  position: absolute;
  width: 1.4rem;
}
.facts-panel::before { border-width: 1px 0 0 1px; left: -1px; top: -1px; }
.facts-panel::after { border-width: 0 1px 1px 0; bottom: -1px; right: -1px; }
.panel-heading { align-items: center; color: var(--gold); display: grid; gap: 0.7rem; grid-template-columns: auto 1fr auto; margin-bottom: 1.6rem; }
.panel-heading span:last-child { color: var(--dim); }
.facts-panel dl { border-top: 1px solid var(--line); }
.facts-panel dl > div { align-items: baseline; border-bottom: 1px solid var(--line); display: grid; gap: 1.5rem; grid-template-columns: minmax(5.5rem, 0.65fr) minmax(0, 1.35fr); padding: 0.9rem 0; }
.facts-panel dt { color: var(--dim); font: 0.59rem/1.4 var(--mono); letter-spacing: 0.13em; text-transform: uppercase; }
.facts-panel dd { color: var(--ink); font-size: 0.82rem; text-align: right; }
.panel-footer { color: var(--dim); display: flex; justify-content: space-between; margin-top: 1.5rem; }
.hero-footer { align-items: center; align-self: end; border-top: 1px solid var(--line); color: var(--dim); display: flex; grid-column: 1 / -1; justify-content: space-between; padding-top: 1.2rem; }

.metrics { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 var(--gutter); }
.metric { min-height: 14rem; padding: 2.4rem clamp(1rem, 2.2vw, 2.4rem); }
.metric + .metric { border-left: 1px solid var(--line); }
.metric-value { color: var(--gold-bright); font-family: var(--serif); font-size: clamp(3.4rem, 6vw, 6.2rem); font-style: italic; line-height: 0.9; margin-bottom: 2.2rem; }
.metric-value sup { font: 0.8rem/1 var(--mono); margin: 0 0.3rem; vertical-align: top; }
.metric > p:last-child { color: var(--muted); font-size: 0.82rem; line-height: 1.55; max-width: 17rem; }

.section, .contact-section { border-bottom: 1px solid var(--line); padding: var(--section-space) var(--gutter); }
.section-label { align-items: center; color: var(--gold); display: grid; gap: 1.25rem; grid-template-columns: auto auto 1fr; margin-bottom: clamp(2.8rem, 6vw, 5.5rem); }
.section-label span:first-child { color: var(--dim); }
.section-label .rule { background: var(--line); height: 1px; }
.section-intro { margin-bottom: clamp(3rem, 7vw, 6rem); max-width: 76rem; }
.section-intro h2, .contact-layout h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 0;
  text-wrap: balance;
}
.split-intro { display: grid; gap: clamp(2.5rem, 7vw, 8rem); grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr); max-width: none; }
.body-copy { align-self: end; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.body-copy p:last-child { margin-bottom: 0; }
.principles-grid { border: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.principle { min-height: 18rem; padding: clamp(1.5rem, 3vw, 2.6rem); }
.principle + .principle { border-left: 1px solid var(--line); }
.principle > span, .credential > span, .capability-heading > span { color: var(--gold); font: 0.59rem/1 var(--mono); letter-spacing: 0.14em; }
.principle h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-style: italic; font-weight: 400; margin: 4.5rem 0 1rem; }
.principle p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; max-width: 23rem; }

.timeline { border-top: 1px solid var(--line-strong); }
.timeline-item { border-bottom: 1px solid var(--line); display: grid; gap: clamp(2rem, 4vw, 5rem); grid-template-columns: minmax(10rem, 0.55fr) minmax(18rem, 0.9fr) minmax(20rem, 1.25fr); padding: clamp(2rem, 4vw, 4rem) 0; }
.timeline-meta { color: var(--dim); display: flex; flex-direction: column; font: 0.62rem/1.6 var(--mono); gap: 0.25rem; letter-spacing: 0.1em; text-transform: uppercase; }
.timeline-role > p:first-child { color: var(--gold); font: 0.64rem/1.4 var(--mono); letter-spacing: 0.15em; margin-bottom: 0.8rem; text-transform: uppercase; }
.timeline-role h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.7vw, 2.8rem); font-style: italic; font-weight: 400; line-height: 1.08; margin-bottom: 1rem; }
.timeline-role > p:last-child { color: var(--muted); font-size: 0.88rem; margin-bottom: 0; }
.timeline-item > ul { color: var(--muted); font-size: 0.87rem; }
.timeline-item > ul li { border-top: 1px solid var(--line); padding: 0.8rem 0 0.8rem 1.2rem; position: relative; }
.timeline-item > ul li::before { color: var(--gold); content: "·"; left: 0; position: absolute; }

.work-heading { align-items: end; display: grid; gap: clamp(2rem, 8vw, 8rem); grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr); max-width: none; }
.work-heading > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 0; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.work-card { border: 1px solid var(--line); margin: -1px 0 0 -1px; min-height: 29rem; padding: clamp(1.5rem, 3vw, 2.7rem); transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.work-card:hover { background: var(--surface); border-color: rgba(200, 170, 103, 0.55); position: relative; transform: translateY(-1px); z-index: 2; }
.work-card-top { color: var(--dim); display: flex; justify-content: space-between; }
.work-card-top span:first-child { color: var(--gold); }
.work-card h3 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-style: italic; font-weight: 400; letter-spacing: -0.035em; line-height: 1; margin: clamp(3.5rem, 8vw, 7rem) 0 1rem; max-width: 12ch; }
.work-card .impact { color: var(--gold-bright); font: 0.68rem/1.4 var(--mono); letter-spacing: 0.12em; margin-bottom: 1.5rem; text-transform: uppercase; }
.work-card > p:not(.impact) { color: var(--muted); font-size: 0.88rem; max-width: 38rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 2rem; }
.tag-list li { border: 1px solid var(--line); color: var(--dim); font: 0.56rem/1 var(--mono); letter-spacing: 0.08em; padding: 0.55rem 0.65rem; text-transform: uppercase; }

.capabilities-grid { border-left: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.capabilities-grid > article { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-height: 17rem; padding: clamp(1.4rem, 3vw, 2.5rem); }
.capability-heading { align-items: baseline; display: flex; gap: 1rem; }
.capability-heading h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.7vw, 2.6rem); font-style: italic; font-weight: 400; margin: 0; }
.capabilities-grid ul { color: var(--muted); display: flex; flex-wrap: wrap; font-size: 0.82rem; gap: 0.35rem 1rem; margin-top: 4rem; }
.capabilities-grid li::after { color: var(--gold); content: " ·"; }

.credentials-grid { border-left: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.credential { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-height: 15rem; padding: clamp(1.4rem, 2.5vw, 2.4rem); }
.credential > p { color: var(--gold); font: 0.58rem/1.4 var(--mono); letter-spacing: 0.12em; margin: 3.3rem 0 0.65rem; text-transform: uppercase; }
.credential h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.25rem); font-style: italic; font-weight: 400; line-height: 1.1; margin: 0 0 1.2rem; }
.credential small { color: var(--dim); font: 0.58rem/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.details-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); margin-top: clamp(3rem, 6vw, 6rem); }
.details-grid article { background: var(--surface); min-height: 15rem; padding: clamp(1.4rem, 2.5vw, 2.4rem); }
.detail-label { color: var(--gold); margin-bottom: 3rem; }
.details-grid h3 { font-family: var(--serif); font-size: 1.75rem; font-style: italic; font-weight: 400; line-height: 1.1; margin-bottom: 0.75rem; }
.details-grid article > p:not(.detail-label), .details-grid li { color: var(--muted); font-size: 0.82rem; }
.details-grid small { color: var(--dim); font: 0.58rem/1 var(--mono); letter-spacing: 0.1em; }
.details-grid li { border-top: 1px solid var(--line); padding: 0.65rem 0; }

.contact-section { background: radial-gradient(circle at 85% 20%, rgba(200, 170, 103, 0.08), transparent 24rem), var(--surface); }
.contact-layout { display: grid; gap: clamp(3rem, 8vw, 9rem); grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr); }
.contact-layout h2 { max-width: 13ch; }
.contact-layout > div:first-child > p { color: var(--muted); line-height: 1.8; margin: 2rem 0 0; max-width: 42rem; }
.contact-links { border-top: 1px solid var(--line-strong); }
.contact-links a { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 0.8rem; grid-template-columns: 1fr auto; padding: 1.5rem 0; transition: color 160ms ease, padding 160ms ease; }
.contact-links a:hover { color: var(--gold-bright); padding-left: 0.35rem; }
.contact-links a span:first-child { color: var(--dim); font: 0.58rem/1 var(--mono); grid-column: 1 / -1; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-links a strong { font-size: 0.9rem; font-weight: 400; overflow-wrap: anywhere; }

footer { align-items: end; display: grid; gap: 2rem; grid-template-columns: 1fr auto; padding: 3rem var(--gutter); }
.footer-brand { align-items: center; display: flex; gap: 1rem; }
.footer-brand strong { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-brand p { color: var(--dim); font: 0.56rem/1.4 var(--mono); letter-spacing: 0.08em; margin-bottom: 0; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.text-link { color: var(--muted); font: 0.62rem/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; transition: color 160ms ease; }
.text-link:hover { color: var(--gold-bright); }
.copyright { color: var(--dim); font: 0.56rem/1 var(--mono); grid-column: 1 / -1; letter-spacing: 0.08em; margin: 1rem 0 0; text-transform: uppercase; }

html.theme-ready body,
html.theme-ready .site-header,
html.theme-ready .facts-panel,
html.theme-ready .details-grid article,
html.theme-ready .contact-section { transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease; }

main > section,
main > footer { transition: opacity 180ms ease, transform 180ms ease; }
html.language-leaving main > section,
html.language-leaving main > footer { opacity: 0; transform: translateY(0.35rem); }
html.language-leaving { cursor: progress; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .hero { gap: 4rem; grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-copy { max-width: 62rem; }
  .facts-panel { max-width: 48rem; width: 100%; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .timeline-item { grid-template-columns: minmax(9rem, 0.5fr) minmax(0, 1.5fr); }
  .timeline-item > ul { grid-column: 2; }
}

@media (max-width: 800px) {
  :root { --section-space: 5rem; }
  body { background-size: 3.5rem 3.5rem; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; padding-top: 3.5rem; }
  .display-name { font-size: clamp(4.2rem, 25vw, 7.8rem); }
  .hero-footer { display: none; }
  .metrics, .principles-grid, .capabilities-grid, .credentials-grid, .details-grid { grid-template-columns: 1fr; }
  .metric { border-left: 0 !important; border-top: 1px solid var(--line); min-height: 11rem; }
  .metric:first-child { border-top: 0; }
  .split-intro, .work-heading, .contact-layout { grid-template-columns: 1fr; }
  .principle { min-height: 14rem; }
  .principle + .principle { border-left: 0; border-top: 1px solid var(--line); }
  .timeline-item { gap: 1.5rem; grid-template-columns: 1fr; }
  .timeline-item > ul { grid-column: auto; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 25rem; }
  .work-card h3 { margin-top: 4.5rem; }
  .details-grid { gap: 1px; }
  footer { align-items: start; grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (max-width: 480px) {
  .site-header { min-height: 4rem; }
  .brand-copy { display: none; }
  .brand-mark { width: 1.95rem; }
  .header-controls { gap: 0.4rem; }
  .switch-label { height: 1.65rem; }
  .theme-switcher .switch-label { font-size: 0.52rem; width: 3.25rem; }
  .language-switcher .switch-label { width: 2rem; }
  .hero { padding-top: 2.5rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-actions, .button { width: 100%; }
  .facts-panel { padding: 1.25rem; }
  .facts-panel dl > div { gap: 0.8rem; grid-template-columns: 5rem 1fr; }
  .facts-panel dd { font-size: 0.73rem; }
  .panel-footer { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .section-intro h2, .contact-layout h2 { font-size: 2.75rem; }
  .section-label { gap: 0.7rem; }
  .work-card-top { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
}

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