@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color: #151515;
  background: #f7f4ee;
  font-family: "Manrope", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --night: #0d0e0f;
  --paper: #f7f4ee;
  --ink: #171717;
  --wine: #a80d2d;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(23, 23, 23, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.overlay-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #e64261;
  outline-offset: 4px;
}

.dark-stage {
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(100% - 80px, 1440px);
  min-height: 94px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.brand-mark-shell {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
}

.brand-mark-shell img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 5px;
  text-transform: uppercase;
}

.brand-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand-descriptor {
  color: #aaa;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  margin-left: auto;
  margin-right: clamp(20px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  color: #b7b7b7;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  transition: right 180ms ease;
}

.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-button,
.language-button,
.mobile-menu-button,
.overlay-header button,
.dialog-close {
  display: inline-grid;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
}

.language-control { position: relative; }

.language-button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.language-menu {
  position: absolute;
  top: 32px;
  right: 0;
  width: 152px;
  padding: 8px;
  border: 1px solid #313131;
  background: #171819;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.language-menu button {
  width: 100%;
  padding: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 11px;
}

.language-menu button:disabled { color: #777; cursor: default; }
.mobile-menu-button { display: none; }

/* Version 1.0.4: guarantee readable mobile navigation on the dark overlay. */
.mobile-nav {
  position: fixed;
  z-index: 18;
  inset: 0;
  display: grid;
  padding: 128px 32px 40px;
  background: rgba(13, 14, 15, 0.98);
  color: #f7f4ee;
  align-content: start;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: 29px;
}

.hero {
  display: grid;
  width: min(100% - 80px, 1440px);
  min-height: 675px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.22fr) minmax(390px, 0.78fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 900px;
  padding: 77px 24px 72px 0;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #aaa;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.75;
  text-transform: uppercase;
}

.accent-line,
.section-kicker span,
.closing-signature > span {
  width: 42px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--wine);
}

.hero h1 {
  max-width: 940px;
  margin: 30px 0 26px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 em { color: #dad7d1; font-weight: 400; }

.hero-intro {
  max-width: 680px;
  margin: 0;
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  margin-top: 35px;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 47px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: #fff; }
.button-primary:hover { background: #c11238; }
.button-secondary { border-color: #424242; color: #d8d8d8; }
.button-secondary:hover { border-color: #8a8a8a; }
.hero-portrait { position: relative; min-width: 0; }

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.hero-motto {
  position: absolute;
  right: 10px;
  bottom: 66px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b6b6b6;
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  line-height: 1.25;
}

.hero-motto span {
  width: 30px;
  height: 1px;
  margin-top: 7px;
  background: var(--wine);
}
.hero-motto i { font-style: inherit; }

.evidence-band {
  display: grid;
  width: min(100% - 80px, 1440px);
  min-height: 145px;
  margin-inline: auto;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, minmax(130px, 1fr)) minmax(245px, 1.2fr);
}

.evidence-item {
  display: grid;
  padding: 0 25px;
  gap: 7px;
  border-right: 1px solid var(--line-dark);
}

.evidence-item:first-child { padding-left: 0; }

.evidence-item strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.evidence-item span {
  color: #898989;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-statement {
  margin: 0;
  padding-left: clamp(25px, 3.5vw, 55px);
  color: #c8c5c0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

.work-section {
  padding: 99px max(40px, calc((100vw - 1440px) / 2)) 105px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(430px, 1.25fr) minmax(260px, 0.75fr) auto;
  gap: 50px;
}

.section-kicker {
  display: flex;
  margin: 0 0 21px;
  align-items: center;
  gap: 13px;
  color: #77726b;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-kicker span { width: 30px; }

.section-heading h2,
.initiatives-lead h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 4.5vw, 65px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.section-summary {
  max-width: 430px;
  margin: 0;
  color: #6f6a63;
  font-size: 12px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  padding: 0 0 8px;
  align-items: center;
  gap: 30px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  margin-top: 66px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.project-card {
  display: grid;
  min-width: 0;
  padding: 20px 23px 0;
  border-left: 1px solid var(--line-light);
  grid-template-rows: auto auto auto 1fr auto;
}

.project-card:first-child { padding-left: 0; border-left: 0; }
.project-card:last-child { padding-right: 0; }

.project-meta {
  display: flex;
  margin-bottom: 26px;
  justify-content: space-between;
  gap: 10px;
  color: #746f68;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-image-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 168px;
  padding: 0;
  border: 0;
  background: #d3d0c9;
  cursor: pointer;
}

.project-image-button::after {
  position: absolute;
  inset: 0;
  background: rgba(168, 13, 45, 0.12);
  content: "";
  opacity: 0;
  transition: opacity 250ms ease;
}

.project-image-button img {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.05);
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card-accent .project-image-button img {
  filter: none;
}

.project-card:hover .project-image-button img { transform: scale(1.035); }
.project-card:hover .project-image-button::after { opacity: 1; }

.project-card h3 {
  margin: 23px 0 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.08;
}

.project-card > p {
  margin: 0;
  color: #6a665f;
  font-size: 9px;
  line-height: 1.55;
}

.project-arrow {
  display: grid;
  width: 37px;
  height: 37px;
  margin-top: 21px;
  border: 1px solid #aaa69f;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition: background 180ms ease, color 180ms ease;
}

.project-arrow:hover { background: var(--wine); color: #fff; }

.initiatives-section {
  display: grid;
  padding: 68px max(40px, calc((100vw - 1440px) / 2));
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line-light);
  grid-template-columns: minmax(400px, 0.9fr) minmax(560px, 1.1fr);
  gap: 7vw;
}

.initiatives-lead .section-kicker { color: #77726b; }

.initiatives-lead h2 {
  color: var(--ink);
  font-size: clamp(39px, 3.6vw, 54px);
}

.initiative-list {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.initiative-list article {
  display: flex;
  min-height: 144px;
  padding: 20px 34px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--wine);
}

.initiative-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.initiative-list p {
  max-width: 280px;
  margin: 14px 0 0;
  color: #6f6a63;
  font-size: 11px;
  line-height: 1.7;
}

.closing-section {
  position: relative;
  display: grid;
  min-height: 350px;
  padding: 64px max(40px, calc((100vw - 1440px) / 2));
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  grid-template-columns: 120px minmax(450px, 1fr) 210px;
  gap: 38px;
}

.quote-mark {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 124px;
  line-height: 0.6;
}

.closing-section blockquote {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 47px);
  font-style: italic;
  line-height: 1.16;
}

.closing-section cite {
  display: block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-signature {
  display: flex;
  align-items: flex-start;
  justify-self: end;
  gap: 15px;
  color: #77726b;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.closing-signature > span { width: 34px; margin-top: 7px; }

.site-footer {
  display: flex;
  min-height: 135px;
  padding: 34px max(40px, calc((100vw - 1440px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--night);
}

.site-footer > p {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-profile-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-profile-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a5a5a5;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-profile-links a:hover { color: #fff; }

.footer-contact-link {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--wine);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 30px;
  overflow-y: auto;
  background: rgba(5, 5, 5, 0.86);
  place-items: center;
}

.search-panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 60px);
  padding: 36px;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay-header p { margin: 0; font-family: var(--serif); font-size: 31px; }

.search-panel > label {
  display: block;
  margin: 38px 0 10px;
  color: #756f67;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-field {
  display: flex;
  padding: 15px 0;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--ink);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 22px;
}

.search-results { display: grid; margin-top: 25px; }

.search-results > button {
  display: grid;
  padding: 18px 0;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  text-align: left;
  cursor: pointer;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
}

.search-results > button span {
  color: #77716a;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-results > button strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.search-results > button svg { grid-column: 2; grid-row: 1 / 3; }

.project-dialog {
  position: relative;
  display: grid;
  width: min(980px, 100%);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  grid-template-columns: 0.9fr 1.1fr;
}

.project-dialog > img {
  width: 100%;
  min-height: 540px;
  height: 100%;
  filter: grayscale(1);
  object-fit: cover;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--paper);
}

.dialog-content { padding: 70px 60px 55px; }

.dialog-category {
  color: #756f68;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-content h2 {
  margin: 20px 0 22px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 53px);
  font-weight: 400;
  line-height: 1;
}

.dialog-content > p:not(.dialog-category, .confidentiality-note) {
  color: #5f5a53;
  font-size: 13px;
  line-height: 1.75;
}

.dialog-content dl { margin: 38px 0; border-top: 1px solid var(--line-light); }

.dialog-content dl > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 95px 1fr;
}

.dialog-content dt {
  color: #77716a;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-content dd { margin: 0; font-size: 11px; line-height: 1.5; }

.confidentiality-note {
  padding-left: 15px;
  border-left: 2px solid var(--wine);
  color: #77716a;
  font-size: 9px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .site-header, .hero, .evidence-band { width: min(100% - 56px, 1440px); }
  .desktop-nav { gap: 15px; margin-right: 24px; }
  .hero { grid-template-columns: 1.1fr 0.9fr; }
  .hero h1 { font-size: clamp(48px, 5.5vw, 66px); }
  .evidence-band { grid-template-columns: repeat(4, 1fr); }
  .evidence-statement { display: none; }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-card:nth-child(4) { padding-left: 0; border-left: 0; }
  .project-card:nth-child(n + 4) { padding-top: 45px; border-top: 1px solid var(--line-light); }
  .initiatives-section { gap: 7vw; }
}

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-grid; }
  .hero { min-height: 650px; grid-template-columns: 1fr 0.75fr; }
  .hero-copy { padding-top: 60px; }
  .hero h1 br { display: none; }
  .section-heading { align-items: start; grid-template-columns: 1fr auto; }
  .section-summary { max-width: 600px; grid-column: 1 / -1; grid-row: 2; }
  .text-link { grid-column: 2; grid-row: 1; }
  .initiatives-section { grid-template-columns: 1fr; }
  .closing-section { grid-template-columns: 80px 1fr; }
  .closing-signature { display: none; }
}

@media (max-width: 720px) {
  .site-header, .hero, .evidence-band { width: calc(100% - 40px); }
  .site-header { min-height: 81px; }
  .brand-mark-shell { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-name { font-size: 9px; }
  .brand-descriptor { font-size: 5.5px; }
  .header-actions { gap: 14px; }
  .language-control { display: none; }
  .hero { display: block; min-height: auto; }
  .hero-copy { min-height: 595px; padding: 65px 0 45px; }
  .hero h1 { margin-top: 27px; font-size: clamp(42px, 12.5vw, 59px); line-height: 0.99; }
  .hero-intro { max-width: 95%; font-size: 12px; }
  .hero-actions { flex-wrap: wrap; }
  .button { min-height: 45px; }
  .hero-portrait { height: 480px; margin-inline: -20px; }
  .hero-motto { right: 26px; bottom: 38px; }
  .evidence-band { padding: 20px 0; grid-template-columns: repeat(2, 1fr); }
  .evidence-item { min-height: 92px; padding: 15px 20px; border-bottom: 1px solid var(--line-dark); }
  .evidence-item:first-child, .evidence-item:nth-child(3) { padding-left: 0; }
  .evidence-item:nth-child(2), .evidence-item:nth-child(4) { border-right: 0; }
  .evidence-item:nth-child(3), .evidence-item:nth-child(4) { border-bottom: 0; }
  .work-section, .initiatives-section, .closing-section, .site-footer { padding-right: 20px; padding-left: 20px; }
  .work-section { padding-top: 76px; padding-bottom: 75px; }
  .section-heading { display: block; }
  .section-heading h2, .initiatives-lead h2 { font-size: clamp(39px, 11vw, 52px); }
  .section-summary { margin-top: 28px; }
  .text-link { margin-top: 26px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:first-child, .project-card:nth-child(4) { padding: 30px 0 35px; border-top: 1px solid var(--line-light); border-left: 0; }
  .project-card:first-child { border-top: 0; }
  .project-image-button { height: 260px; }
  .project-card h3 { font-size: 26px; }
  .initiatives-section { padding-top: 75px; padding-bottom: 78px; }
  .initiative-list { margin-top: 50px; grid-template-columns: 1fr; }
  .initiative-list article { min-height: 130px; padding: 20px 0 20px 24px; }
  .closing-section { min-height: 330px; grid-template-columns: 1fr; gap: 0; }
  .quote-mark { height: 50px; }
  .closing-section blockquote { font-size: 31px; }
  .site-footer { padding-top: 50px; padding-bottom: 50px; align-items: flex-start; flex-direction: column; }
  .footer-profile-links { flex-wrap: wrap; }
  .overlay { padding: 12px; }
  .search-panel { padding: 25px 20px; }
  .project-dialog { grid-template-columns: 1fr; }
  .project-dialog > img { min-height: 270px; max-height: 330px; }
  .dialog-content { padding: 42px 25px 35px; }
  .dialog-close { top: 16px; right: 16px; }
}

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

/* Multi-page production structure */

.header-stage {
  color: #fff;
  background: var(--night);
}

.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a.active::after {
  right: 0;
}

.search-results > a {
  display: grid;
  padding: 18px 0;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
}

.search-results > a span {
  color: #77716a;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-results > a strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.search-results > a svg {
  grid-column: 2;
  grid-row: 1 / 3;
}

.inner-page,
.case-page,
.article-page {
  min-height: 70vh;
  background: var(--paper);
}

.page-hero {
  display: grid;
  min-height: 430px;
  padding: 96px max(40px, calc((100vw - 1440px) / 2));
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(520px, 1.3fr) minmax(320px, 0.7fr);
  gap: 8vw;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.page-hero-aside > p:first-child {
  margin: 0;
  color: #5e5952;
  font-size: 1rem;
  line-height: 1.75;
}

.page-note {
  margin: 25px 0 0;
  padding-left: 17px;
  border-left: 2px solid var(--wine);
  color: #77716a;
  font-size: 0.82rem !important;
}

.archive-section {
  padding: 55px max(40px, calc((100vw - 1440px) / 2)) 110px;
}

.archive-toolbar {
  display: flex;
  padding-bottom: 27px;
  flex-wrap: wrap;
  gap: 11px;
  border-bottom: 1px solid var(--line-light);
}

.archive-toolbar button {
  padding: 10px 15px;
  border: 1px solid #b8b3aa;
  background: transparent;
  color: #5f5a53;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.archive-toolbar button.active,
.archive-toolbar button:hover {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.archive-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px 1px;
}

.archive-grid .project-card {
  padding: 0 34px;
  border-left: 1px solid var(--line-light);
}

.archive-grid .project-card:nth-child(3n + 1) {
  padding-left: 0;
  border-left: 0;
}

.archive-grid .project-card:nth-child(3n) {
  padding-right: 0;
}

.archive-grid .project-image-button {
  height: 270px;
}

.archive-grid .project-card h3 {
  font-size: 1.85rem;
}

.archive-grid .project-card > p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.case-hero {
  display: grid;
  min-height: 610px;
  color: #fff;
  background: var(--night);
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
}

.case-hero-copy {
  display: flex;
  padding: 75px max(40px, calc((100vw - 1440px) / 2));
  padding-right: 7vw;
  flex-direction: column;
  justify-content: center;
}

.back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 58px;
  align-items: center;
  gap: 9px;
  color: #858585;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-hero .section-kicker {
  color: #9a9a9a;
}

.case-hero h1 {
  max-width: 800px;
  margin: 18px 0 27px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.case-hero-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #a5a5a5;
  font-size: 1rem;
  line-height: 1.7;
}

.case-hero > img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  filter: grayscale(1);
  object-fit: cover;
}

.case-hero-accent > img {
  filter: none;
}

.case-facts {
  padding: 0 max(40px, calc((100vw - 1440px) / 2));
  background: #eae6de;
}

.case-facts dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-facts dl > div {
  min-height: 125px;
  padding: 30px;
  border-left: 1px solid var(--line-light);
}

.case-facts dl > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.case-facts dl > div:nth-child(4n + 1) {
  padding-left: 0;
  border-left: 0;
}

.case-facts dt {
  margin-bottom: 12px;
  color: #77716a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.35;
}

.case-story {
  display: grid;
  padding: 95px max(40px, calc((100vw - 1440px) / 2)) 120px;
  grid-template-columns: minmax(230px, 0.7fr) minmax(560px, 1.3fr);
  gap: 10vw;
}

.case-story aside {
  position: sticky;
  top: 35px;
  height: max-content;
}

.confidentiality-callout {
  max-width: 330px;
  margin: 35px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--wine);
  color: #6f6a63;
  font-size: 0.85rem;
  line-height: 1.7;
}

.case-related {
  display: flex;
  margin-top: 42px;
  flex-wrap: wrap;
  gap: 8px;
}

.case-related p {
  width: 100%;
  margin: 0 0 8px;
  color: #77716a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-related span {
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  color: #666159;
  font-size: 0.72rem;
  line-height: 1.25;
}

.case-narrative article {
  display: grid;
  padding: 0 0 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 55px 230px 1fr;
  gap: 25px;
}

.case-narrative article > span {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.case-narrative h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.case-section-content {
  display: grid;
  gap: 22px;
}

.case-section-content p,
.case-section-content li {
  margin: 0;
  color: #5f5a53;
  font-size: 1rem;
  line-height: 1.75;
}

.case-section-content ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}

.case-section-content li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
}

.case-section-content li svg {
  margin-top: 5px;
  color: var(--wine);
}

.case-section-content li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 600;
}

.next-project {
  padding: 65px max(40px, calc((100vw - 1440px) / 2)) 78px;
  color: #fff;
  background: var(--night);
}

.next-project > p {
  color: #777;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.next-project a {
  display: grid;
  margin-top: 20px;
  align-items: end;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  grid-template-columns: 1fr auto;
  gap: 10px 30px;
}

.next-project a span {
  grid-column: 1 / -1;
  color: #999;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.expertise-grid {
  display: grid;
  padding: 85px max(40px, calc((100vw - 1440px) / 2)) 105px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-grid article {
  min-height: 275px;
  padding: 34px;
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.expertise-grid article:nth-child(3n + 1) {
  padding-left: 0;
  border-left: 0;
}

.expertise-grid article > span,
.principles-grid article > span,
.initiative-page-grid article > span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.expertise-grid h2,
.principles-grid h2,
.initiative-page-grid h2 {
  margin: 35px 0 17px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.expertise-grid p,
.principles-grid p,
.initiative-page-grid p {
  margin: 0;
  color: #625d56;
  font-size: 0.95rem;
  line-height: 1.7;
}

.evidence-panel {
  display: grid;
  padding: 85px max(40px, calc((100vw - 1440px) / 2));
  color: #fff;
  background: var(--night);
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.evidence-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.2vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.evidence-panel .section-kicker { color: #999; }

.evidence-panel-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.evidence-panel-stats p {
  display: grid;
  min-height: 105px;
  margin: 0;
  padding: 20px;
  align-content: center;
  border: 1px solid var(--line-dark);
  color: #888;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-panel-stats strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0;
}

.about-hero {
  display: grid;
  min-height: 690px;
  color: #fff;
  background: var(--night);
  grid-template-columns: minmax(400px, 0.85fr) minmax(540px, 1.15fr);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  object-fit: cover;
}

.about-intro {
  display: flex;
  padding: 90px max(40px, calc((100vw - 1440px) / 2));
  padding-left: 7vw;
  flex-direction: column;
  justify-content: center;
}

.about-intro .section-kicker { color: #999; }

.about-intro h1 {
  max-width: 800px;
  margin: 15px 0 35px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.3vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.about-intro > p:not(.section-kicker) {
  max-width: 720px;
  color: #a8a8a8;
  font-size: 1rem;
  line-height: 1.75;
}

.about-intro .about-lead {
  color: #e3e0da !important;
  font-family: var(--serif);
  font-size: 1.45rem !important;
}

.principles-section {
  padding: 85px max(40px, calc((100vw - 1440px) / 2)) 110px;
}

.principles-grid {
  display: grid;
  margin-top: 45px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principles-grid article {
  min-height: 260px;
  padding: 30px;
  border-left: 1px solid var(--line-light);
}

.principles-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.initiative-page-grid {
  display: grid;
  padding: 90px max(40px, calc((100vw - 1440px) / 2)) 115px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.initiative-page-grid article {
  min-height: 440px;
  padding: 55px;
  border-left: 1px solid var(--wine);
}

.initiative-page-grid h2 {
  margin-top: 110px;
  font-size: clamp(2.7rem, 4vw, 4.8rem);
}

.initiative-page-grid .initiative-status {
  margin-top: 60px;
  color: #8a857e;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.insights-list {
  padding: 40px max(40px, calc((100vw - 1440px) / 2)) 110px;
}

.insights-list article {
  display: grid;
  min-height: 190px;
  padding: 40px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 180px minmax(330px, 0.9fr) minmax(270px, 0.8fr) 150px;
  gap: 35px;
}

.insights-list article > div {
  display: grid;
  gap: 12px;
  color: #77716a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insights-list h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.insights-list article > p {
  margin: 0;
  color: #625d56;
  font-size: 0.95rem;
  line-height: 1.65;
}

.insights-list article > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-page {
  padding: 80px max(40px, calc((100vw - 1120px) / 2)) 120px;
}

.article-page header {
  max-width: 980px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-light);
}

.article-page header h1 {
  margin: 18px 0 30px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.article-page header > p:not(.section-kicker) {
  max-width: 760px;
  color: #5f5a53;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.article-page header > span {
  color: #77716a;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-page > article {
  max-width: 760px;
  margin: 65px auto 0;
}

.article-page > article p {
  color: #3f3b36;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.8;
}

.article-page blockquote {
  margin: 55px 0;
  padding: 25px 0 25px 30px;
  border-left: 3px solid var(--wine);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  padding: 85px max(40px, calc((100vw - 1440px) / 2)) 115px;
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  gap: 10vw;
}

.contact-layout aside > a {
  display: flex;
  margin: 16px 0 38px;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.contact-label {
  color: #77716a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-layout aside > p:not(.contact-label, .confidentiality-callout) {
  color: #625d56;
  line-height: 1.7;
}

.profile-label { margin-top: 42px; }

.contact-profile-links {
  display: grid;
  margin: 14px 0 42px;
  gap: 4px;
}

.contact-profile-links a {
  display: flex;
  min-height: 42px;
  margin: 0;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-profile-links a:hover { color: var(--wine); }

.contact-layout form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
}

.contact-layout label {
  display: grid;
  gap: 10px;
  color: #6b665f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-layout label:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.contact-layout input,
.contact-layout select,
.contact-layout textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #8c877f;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-layout textarea { resize: vertical; }
.contact-layout form .button { width: max-content; cursor: pointer; }
.form-status { grid-column: 1 / -1; color: #625d56; font-size: 0.85rem; }

.not-found {
  min-height: 70vh;
  padding: 120px max(40px, calc((100vw - 1100px) / 2));
  background: var(--paper);
}

.not-found h1 {
  max-width: 850px;
  margin: 25px 0 45px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

@media (max-width: 1050px) {
  .page-hero { grid-template-columns: 1fr; gap: 45px; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-grid .project-card:nth-child(3n + 1) { padding-left: 34px; border-left: 1px solid var(--line-light); }
  .archive-grid .project-card:nth-child(2n + 1) { padding-left: 0; border-left: 0; }
  .archive-grid .project-card:nth-child(3n) { padding-right: 34px; }
  .archive-grid .project-card:nth-child(2n) { padding-right: 0; }
  .case-hero { grid-template-columns: 1fr 0.8fr; }
  .case-story { grid-template-columns: 220px 1fr; gap: 6vw; }
  .case-narrative article { grid-template-columns: 45px 180px 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid article:nth-child(3n + 1) { padding-left: 34px; border-left: 1px solid var(--line-light); }
  .expertise-grid article:nth-child(2n + 1) { padding-left: 0; border-left: 0; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-list article { grid-template-columns: 120px 1fr 1fr; }
  .insights-list article > a { grid-column: 2 / -1; width: max-content; gap: 28px; }
}

@media (max-width: 720px) {
  .page-hero { min-height: 0; padding: 72px 20px; }
  .page-hero h1 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .archive-section, .expertise-grid, .evidence-panel, .principles-section, .initiative-page-grid, .insights-list, .contact-layout { padding-right: 20px; padding-left: 20px; }
  .archive-toolbar { flex-wrap: nowrap; overflow-x: auto; }
  .archive-toolbar button { flex: 0 0 auto; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-grid .project-card, .archive-grid .project-card:nth-child(3n + 1), .archive-grid .project-card:nth-child(2n + 1), .archive-grid .project-card:nth-child(3n), .archive-grid .project-card:nth-child(2n) { padding: 30px 0; border-left: 0; }
  .case-hero { grid-template-columns: 1fr; }
  .case-hero-copy { min-height: 530px; padding: 65px 20px; }
  .case-hero h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .case-hero > img { min-height: 420px; max-height: 480px; }
  .case-facts { padding: 0 20px; }
  .case-facts dl { grid-template-columns: repeat(2, 1fr); }
  .case-facts dl > div { min-height: 115px; padding: 25px 15px; border-bottom: 1px solid var(--line-light); }
  .case-facts dl > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .case-story { padding: 75px 20px 90px; grid-template-columns: 1fr; gap: 55px; }
  .case-story aside { position: static; }
  .case-narrative article { grid-template-columns: 40px 1fr; gap: 18px; }
  .case-narrative .case-section-content { grid-column: 2; }
  .next-project { padding: 55px 20px; }
  .expertise-grid, .evidence-panel, .initiative-page-grid, .contact-layout { grid-template-columns: 1fr; }
  .expertise-grid article, .expertise-grid article:nth-child(3n + 1), .expertise-grid article:nth-child(2n + 1) { min-height: 230px; padding: 30px 0; border-left: 0; }
  .evidence-panel { gap: 55px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-portrait { height: 480px; }
  .about-intro { padding: 70px 20px 85px; }
  .about-intro h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article, .principles-grid article:first-child { min-height: 220px; padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line-light); }
  .initiative-page-grid article { min-height: 370px; padding: 45px 0 45px 25px; }
  .initiative-page-grid h2 { margin-top: 75px; }
  .insights-list article { grid-template-columns: 1fr; gap: 22px; }
  .insights-list article > a { grid-column: auto; }
  .article-page { padding: 65px 20px 90px; }
  .article-page header h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .article-page > article p { font-size: 1.12rem; }
  .contact-layout form { grid-template-columns: 1fr; }
  .contact-layout label, .contact-layout label:nth-child(n + 3), .form-status { grid-column: 1; }
}

/* WordPress integration */

[hidden] { display: none !important; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--paper);
  color: var(--ink);
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-navigation { margin-left: auto; }

.desktop-nav,
.mobile-nav-list {
  padding: 0;
  list-style: none;
}

.desktop-nav { margin-top: 0; margin-bottom: 0; }
.desktop-nav li { margin: 0; }
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_parent > a,
.desktop-nav .current-menu-ancestor > a { color: #fff; }
.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_parent > a::after,
.desktop-nav .current-menu-ancestor > a::after { right: 0; }

.language-indicator {
  color: #b7b7b7;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mobile-nav { overflow-y: auto; }
.mobile-nav-list { margin: 0; }
.mobile-nav-list li { margin: 0; }
.mobile-nav-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #f7f4ee;
  font-family: var(--serif);
  font-size: 29px;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus-visible,
.mobile-nav-list .current-menu-item > a,
.mobile-nav-list .current_page_parent > a,
.mobile-nav-list .current-menu-ancestor > a {
  color: #ffffff;
}

.overlay-header svg,
.icon-button svg,
.mobile-menu-button svg { width: 1.35rem; height: 1.35rem; }
.search-panel form { display: block; }
.search-panel form > label {
  display: block;
  color: #77716a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-field { position: relative; }
.search-field svg { flex: 0 0 auto; }
.search-submit {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  background: var(--wine);
  color: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.search-guidance { color: #716b64; font-size: 0.85rem; line-height: 1.65; }

.button svg,
.text-link svg,
.project-arrow svg,
.back-link svg,
.next-project svg,
.insights-list svg { width: 1.15rem; height: 1.15rem; }

.project-grid.project-grid-limited {
  width: min(940px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-grid-limited .project-image-button { height: 285px; }
.project-grid-limited .project-card h3 { font-size: 1.8rem; }
.project-grid-limited .project-card > p { font-size: 0.88rem; }

.project-image-placeholder,
.case-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 240px;
  place-items: center;
  background: #d8d3ca;
  color: rgba(23, 23, 23, 0.34);
  font-family: var(--serif);
  font-size: 3rem;
  letter-spacing: 0.1em;
}

.archive-filters {
  display: grid;
  padding-bottom: 30px;
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto auto;
  gap: 15px;
}

.archive-filters label { display: grid; gap: 8px; }
.archive-filters label > span {
  color: #716c65;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.archive-filters select,
.archive-filters input {
  width: 100%;
  min-height: 47px;
  padding: 0 12px;
  border: 1px solid #aaa49b;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
}
.archive-filters .button { cursor: pointer; }
.filter-reset {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  color: #6b665f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-empty {
  margin-top: 45px;
  padding: 38px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: #625d56;
}
.archive-empty h2 { margin: 0 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.navigation.pagination { margin-top: 55px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; padding: 8px 11px; place-items: center; border: 1px solid #aaa49b; font-size: 0.82rem; }
.page-numbers.current { border-color: var(--wine); background: var(--wine); color: #fff; }

.case-narrative { counter-reset: case-section; }
.case-narrative > h2 {
  display: grid;
  margin: 0 0 26px;
  padding-top: 58px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 55px minmax(210px, 0.42fr) minmax(320px, 0.58fr);
  gap: 25px;
  counter-increment: case-section;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}
.case-narrative > h2:first-child { padding-top: 0; border-top: 0; }
.case-narrative > h2::before {
  content: counter(case-section, decimal-leading-zero);
  color: var(--wine);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.case-narrative > p,
.case-narrative > ul,
.case-narrative > ol {
  margin: 0 0 24px;
  margin-left: calc(55px + 25px + 42% + 25px);
  color: #5f5a53;
  font-size: 1rem;
  line-height: 1.8;
}
.case-narrative > ul,
.case-narrative > ol { padding-left: 1.2rem; }
.case-narrative li { margin-bottom: 12px; padding-left: 4px; }
.case-narrative li::marker { color: var(--wine); }
.case-narrative strong { color: var(--ink); }

.about-intro .wp-content { max-width: 720px; }
.about-intro .wp-content p { margin: 0 0 18px; color: #a8a8a8; font-size: 1rem; line-height: 1.75; }
.about-intro .wp-content .lead { color: #e3e0da; font-family: var(--serif); font-size: 1.45rem; line-height: 1.5; }

.editorial-page-content {
  padding: 85px max(40px, calc((100vw - 1180px) / 2)) 110px;
}
.editorial-page-content > *:first-child { margin-top: 0; }
.editorial-page-content > *:last-child { margin-bottom: 0; }
.wp-content p,
.wp-content li { font-size: 1rem; line-height: 1.78; }
.wp-content a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.wp-content h2,
.wp-content h3 { font-family: var(--serif); font-weight: 400; }

.expertise-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}
.expertise-card {
  min-height: 285px;
  padding: 38px;
  border-left: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.expertise-card:nth-child(odd) { padding-left: 0; border-left: 0; }
.expertise-card > span,
.initiative-card > span { color: var(--wine); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.expertise-card h2 { margin: 45px 0 18px; font-size: 2.2rem; line-height: 1.05; }
.expertise-card p { margin: 0; color: #625d56; }

.initiative-page-grid { gap: 1px; }
.initiative-page-grid .initiative-card {
  min-height: 430px;
  padding: 55px;
  border-left: 1px solid var(--wine);
}
.initiative-card h2 { margin: 105px 0 20px; font-size: clamp(2.7rem, 4vw, 4.8rem); line-height: 1; }
.initiative-card p { color: #625d56; }

.home-editorial-content { padding: 70px max(40px, calc((100vw - 980px) / 2)); }

.contact-content > .lead { margin: 0 0 38px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.55; }
.jms-contact-form { display: block !important; }
.jms-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px; }
.jms-contact-form p { margin: 0 0 27px; }
.jms-contact-form label { display: grid; gap: 10px; }
.jms-contact-form .jms-consent label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; line-height: 1.6; letter-spacing: 0; text-transform: none; }
.jms-contact-form .jms-consent input { width: auto; margin-top: 4px; }
.jms-contact-form .button-primary {
  min-height: 47px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jms-honeypot { position: absolute !important; left: -9999px !important; }
.jms-form-notice { margin-bottom: 25px; padding: 15px 18px; border-left: 3px solid var(--wine); background: #e9e4dc; font-size: 0.9rem; }
.jms-form-notice.is-success { border-color: #48654d; }

.search-page-results { padding: 45px max(40px, calc((100vw - 1120px) / 2)) 110px; }
.search-page-results article { padding: 32px 0; border-bottom: 1px solid var(--line-light); }
.search-page-results article > span { color: #77716a; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.search-page-results h2 { margin: 12px 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.search-page-results p { max-width: 760px; color: #625d56; line-height: 1.7; }

@media (max-width: 1050px) {
  .archive-filters { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
  .case-narrative > h2 { grid-template-columns: 45px minmax(180px, 0.4fr) minmax(280px, 0.6fr); }
  .case-narrative > p,
  .case-narrative > ul,
  .case-narrative > ol { margin-left: calc(45px + 25px + 40% + 25px); }
}

@media (max-width: 720px) {
  .primary-navigation { display: none; }
  .language-indicator { display: none; }
  .project-grid.project-grid-limited { grid-template-columns: 1fr; }
  .project-grid-limited .project-card { padding: 30px 0; border-left: 0; }
  .project-grid-limited .project-image-button { height: 250px; }
  .archive-filters { grid-template-columns: 1fr; }
  .case-narrative > h2 { grid-template-columns: 40px 1fr; gap: 18px; }
  .case-narrative > p,
  .case-narrative > ul,
  .case-narrative > ol { margin-left: 58px; }
  .editorial-page-content,
  .search-page-results { padding-right: 20px; padding-left: 20px; }
  .expertise-content,
  .initiative-page-grid { grid-template-columns: 1fr; }
  .expertise-card,
  .expertise-card:nth-child(odd) { min-height: 230px; padding: 34px 0; border-left: 0; }
  .initiative-page-grid .initiative-card { min-height: 360px; padding: 45px 0 45px 25px; }
  .jms-form-grid { grid-template-columns: 1fr; }
  .search-field { flex-wrap: wrap; }
  .search-submit { width: 100%; }
}

/* Version 1.0.1: focused accessibility and legibility refinements. */
.hero-intro,
.section-summary,
.project-card > p,
.initiative-list p,
.dialog-content > p:not(.dialog-category, .confidentiality-note) {
  font-size: 1rem;
}

.desktop-nav a,
.language-button,
.language-menu button,
.section-kicker,
.text-link,
.site-footer > p,
.footer-contact-link,
.dialog-category,
.confidentiality-note {
  font-size: 0.75rem;
}

.dialog-content dd { font-size: 0.8125rem; }

.button,
.archive-toolbar button,
.jms-contact-form .button-primary {
  font-size: 0.875rem;
}

.site-footer > p { color: #8f8f8f; }

.icon-button,
.mobile-menu-button,
.dialog-close,
.overlay-header button {
  min-width: 44px;
  min-height: 44px;
}

select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #e64261;
  outline-offset: 4px;
}

/* Version 1.0.2: normalize high-specificity card and metadata text. */
.project-grid-limited .project-card > p,
.archive-grid .project-card > p {
  font-size: 1rem;
}

.eyebrow,
.evidence-item span,
.project-meta,
.closing-section cite,
.closing-signature,
.footer-profile-links a,
.language-indicator,
.case-facts dt,
.expertise-card > span,
.initiative-card > span,
.search-page-results article > span {
  font-size: 0.75rem;
}
