:root {
  --ink: #14302d;
  --muted: #5d6f69;
  --paper: #f6f4ed;
  --paper-strong: #fffdf7;
  --line: #d7dfd5;
  --green: #19483f;
  --green-2: #2f6f63;
  --sea: #a8d7cf;
  --gold: #d8b568;
  --coral: #c96f51;
  --shadow: 0 18px 45px rgba(20, 48, 45, 0.12);
  --radius: 8px;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/assets/mirror/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2") format("woff2");
}

@font-face {
  font-family: Cardo;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/mirror/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2") format("woff2");
}

@font-face {
  font-family: Cardo;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/mirror/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2") format("woff2");
}

@font-face {
  font-family: Cardo;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/mirror/wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_700.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img,
iframe,
video {
  max-width: 100%;
}

a {
  color: var(--green-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 237, 0.94);
  border-bottom: 1px solid rgba(20, 48, 45, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 750;
}

.brand-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(20, 48, 45, 0.16);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  max-width: 320px;
  color: var(--ink);
  text-decoration: none;
}

.brand-text span:first-child {
  font-size: 15px;
}

.brand-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-strong);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.nav-dropdown-button {
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown-button:hover,
.nav-dropdown-button[aria-current="page"],
.nav-dropdown.is-open .nav-dropdown-button {
  background: rgba(47, 111, 99, 0.1);
  color: var(--green);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.nav-dropdown-button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 11px;
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #12302d;
}

.hero::before,
.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 0%;
}

.hero::before {
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 34, 31, 0.76), rgba(12, 34, 31, 0.36) 48%, rgba(12, 34, 31, 0.12)),
    linear-gradient(0deg, rgba(12, 34, 31, 0.64), rgba(12, 34, 31, 0.04) 46%);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 700;
}

.hero-title-context {
  display: block;
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.14;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(20, 48, 45, 0.16);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  background: #0f302a;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.42);
}

.button.light {
  background: var(--paper-strong);
  color: var(--green);
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--paper-strong);
}

.section.deep {
  color: #eef7f1;
  background: var(--green);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.page-title h1 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: 42px;
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.deep .section-heading p {
  color: rgba(238, 247, 241, 0.76);
}

.support-shell {
  display: grid;
  gap: 38px;
}

.support-tier {
  display: grid;
  gap: 22px;
}

.support-tier-secondary {
  padding-top: 8px;
  border-top: 1px solid rgba(40, 76, 69, 0.12);
}

.support-copy {
  width: min(760px, 100%);
}

.support-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.feature-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.page-card,
.timeline-card,
.note-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  color: var(--ink);
  text-decoration: none;
}

.feature-card img,
.page-card img,
.timeline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card div,
.page-card div,
.timeline-card div {
  padding: 20px;
}

.feature-card h3,
.page-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p,
.page-card p,
.timeline-card p,
.note-card p {
  margin: 0;
  color: var(--muted);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.note-card {
  display: grid;
  grid-template-rows: 200px 1fr;
  color: var(--ink);
  text-decoration: none;
  box-shadow: none;
}

.note-card-media {
  position: relative;
  overflow: hidden;
}

.note-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 22, 20, 0.38), rgba(7, 22, 20, 0) 34%),
    linear-gradient(0deg, rgba(7, 22, 20, 0.68), rgba(7, 22, 20, 0) 48%);
  pointer-events: none;
}

.note-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.note-card:hover img {
  transform: scale(1.035);
}

.note-card-body {
  padding: 18px;
}

.note-badge,
.note-author {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 24px);
  color: #fffdf7;
  line-height: 1.15;
  text-shadow:
    0 1px 2px rgba(3, 18, 16, 0.88),
    0 8px 24px rgba(3, 18, 16, 0.42);
}

.note-badge {
  top: 12px;
  left: 12px;
  font-family: Cardo, Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  font-feature-settings: "onum" 1;
  font-variant-numeric: oldstyle-nums;
}

.note-author {
  right: 12px;
  bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.note-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
}

.field-note-stream {
  width: min(900px, calc(100% - 32px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
}

.field-note-card {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.field-note-card .note-card-media {
  border-radius: 4px;
  background: #e7ebe3;
  box-shadow: 0 14px 36px rgba(20, 48, 45, 0.12);
}

.field-note-card .note-card-media::after {
  background:
    linear-gradient(180deg, rgba(7, 22, 20, 0.34), rgba(7, 22, 20, 0) 38%),
    linear-gradient(0deg, rgba(7, 22, 20, 0.58), rgba(7, 22, 20, 0) 42%);
}

.field-note-card img {
  display: block;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.field-note-card:hover img {
  transform: none;
}

.field-note-card .note-card-body {
  padding: 13px 0 0;
}

.field-note-card h3 {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.18;
}

.field-note-card .field-note-date {
  margin: 0 0 8px;
  color: #263f3a;
  font-size: 12px;
}

.field-note-card p:not(.field-note-date) {
  color: #263f3a;
  font-size: 14px;
  line-height: 1.62;
}

.field-note-read {
  color: var(--green);
  font-style: italic;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(238, 247, 241, 0.2);
  border-radius: var(--radius);
  background: rgba(238, 247, 241, 0.2);
}

.stat {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-family: Cardo, Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.stat span {
  color: rgba(238, 247, 241, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-card {
  box-shadow: none;
}

.timeline-card img {
  aspect-ratio: 1.45;
  display: block;
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.partners-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-logo {
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  text-decoration: none;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.partner-logo--institution {
  min-height: 144px;
  padding: 26px;
}

.partner-logo:hover {
  border-color: rgba(47, 111, 99, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.partner-logo--institution img {
  max-height: 88px;
}


.page-hero {
  background: var(--green);
  color: #fff;
  padding: 82px 0 56px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--sea);
  font-size: 14px;
}

.breadcrumb a {
  color: inherit;
}

.page-title {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
}

.page-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.note-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--paper-strong), var(--paper));
}

.note-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 46px;
  align-items: end;
}

.note-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: 56px;
  line-height: 1.02;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(20, 48, 45, 0.14);
  border-radius: 999px;
  background: rgba(47, 111, 99, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.note-deck {
  max-width: 760px;
  margin: 0;
  color: #263f3a;
  font-size: 20px;
  line-height: 1.65;
}

.note-hero-image {
  margin: 0;
}

.note-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.note-hero-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.article-shell {
  padding: 54px 0 86px;
}

.article-body {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  color: #203b36;
  font-family: Cardo, Georgia, serif;
  font-size: 20px;
  line-height: 1.76;
}

.article-body::after {
  display: block;
  clear: both;
  content: "";
}

.article-body p {
  margin: 0 0 26px;
}

.article-signoff {
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 750;
}

.article-body p:first-of-type::first-letter {
  float: left;
  margin: 10px 8px 0 0;
  color: var(--green);
  font-size: 72px;
  line-height: 0.72;
}

.article-figure {
  margin: 8px 0 24px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.article-figure.is-right {
  float: right;
  width: min(42%, 340px);
  margin-left: 30px;
}

.article-figure.is-left {
  float: left;
  width: min(42%, 340px);
  margin-right: 30px;
}

.article-figure.is-wide {
  clear: both;
  width: min(960px, calc(100vw - 32px));
  margin: 42px 0 34px 50%;
  transform: translateX(-50%);
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.article-figure figcaption {
  margin-top: 8px;
}

.article-video {
  clear: both;
  width: min(960px, calc(100vw - 32px));
  margin: 42px 0 0 50%;
  transform: translateX(-50%);
}

.article-section-heading {
  clear: both;
  width: min(760px, calc(100% - 32px));
  margin: 46px auto 18px;
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.author-bio {
  clear: both;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  margin: 54px 0 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.author-bio img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.author-bio span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.author-bio h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.author-bio p {
  margin: 0;
  color: #263f3a;
  font-size: 15px;
  line-height: 1.65;
}

.article-gallery-wrap {
  clear: both;
  margin-top: 52px;
}

.article-gallery .media-tile img {
  height: 260px;
}

.content-shell {
  padding: 62px 0 86px;
}

.content {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.content .alignwide,
.content .alignfull {
  width: min(1180px, calc(100vw - 32px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.content h1,
.content h2,
.content h3,
.content h4 {
  margin: 42px 0 18px;
  color: var(--green);
  line-height: 1.15;
}

.content h2,
.content h3 {
  font-family: Cardo, Georgia, serif;
}

.content p,
.content li {
  color: #263f3a;
}

.content img {
  height: auto;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.content figure {
  margin: 28px 0;
}

.content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.content .wp-block-table {
  overflow-x: auto;
}

.content .wp-block-table table {
  min-width: 720px;
}

.content th,
.content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.content tr:nth-child(even) {
  background: #f1f6f0;
}

.wp-block-cover {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  isolation: isolate;
}

.wp-block-cover__image-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.wp-block-cover__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 38, 35, 0.4);
}

.wp-block-cover__inner-container {
  padding: 38px;
  color: #fff;
}

.wp-block-cover__inner-container a {
  color: #fff;
}

.wp-block-media-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.46fr);
  gap: 28px;
  align-items: center;
  margin: 34px 0;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  order: 2;
}

.wp-block-media-text__media img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow);
}

.team-shell {
  padding-top: 44px;
}

.team-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.team-content .alignwide,
.team-content .alignfull {
  width: 100%;
  margin-left: 0;
  transform: none;
}

.team-group + .team-group {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.team-group-title {
  margin: 0 0 18px;
  color: var(--coral);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  box-shadow: 0 18px 46px rgba(9, 40, 29, 0.08);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(9, 40, 29, 0.12);
  border-color: rgba(22, 89, 65, 0.24);
}

.team-card[open] {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: stretch;
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(9, 40, 29, 0.12);
  border-color: rgba(22, 89, 65, 0.24);
}

.team-card-summary {
  position: relative;
  display: grid;
  grid-template-rows: minmax(56px, auto) auto;
  align-content: start;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.team-card[open] .team-card-summary {
  padding: 22px;
}

.team-card-summary::-webkit-details-marker {
  display: none;
}

.team-card-summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(22, 89, 65, 0.08);
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.team-card[open] .team-card-summary::after {
  content: "-";
}

.team-card-name {
  display: flex;
  min-height: 56px;
  align-items: flex-end;
  justify-content: center;
  padding-right: 40px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.team-card-photo {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 89, 65, 0.12), rgba(22, 89, 65, 0.03));
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-card-body {
  padding: 0 18px 20px;
  border-top: 1px solid var(--line);
}

.team-card[open] .team-card-body {
  padding: 22px 26px 26px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.team-card[open] .team-card-body p:first-child {
  margin-top: 0;
}

.team-card-body p,
.team-card-body li {
  font-size: 15px;
  line-height: 1.68;
}

.team-card-body p:first-child {
  margin-top: 16px;
}

.team-card-body ul {
  padding-left: 20px;
}

.team-card-body a {
  overflow-wrap: anywhere;
}

.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: #fff !important;
  font-weight: 750;
  text-decoration: none;
}

.wp-block-button__link:hover {
  background: #0f302a;
  color: #fff !important;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wp-block-spacer,
.lightbox-trigger,
.wp-lightbox-overlay {
  display: none !important;
}

.field-feature {
  padding: 34px 0 26px;
  background: var(--paper-strong);
}

.field-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.field-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-feature h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: 38px;
  line-height: 1.08;
}

.field-feature p:last-child {
  margin: 18px 0 0;
  color: #263f3a;
}

.gallery-shell {
  padding-top: 82px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-tile {
  margin: 0;
  min-height: 0;
  border-radius: var(--radius);
  background: #e6ece4;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: zoom-in;
}

.media-tile:focus {
  outline: 3px solid rgba(201, 111, 81, 0.45);
  outline-offset: 4px;
}

.media-tile img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.field-gallery .media-tile img {
  height: 260px;
}

.oae-gallery-shell {
  padding-top: 82px;
}

.oae-gallery-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.oae-gallery-lead {
  margin-bottom: 42px;
}

.oae-gallery-lead-figure {
  margin: 0;
  text-align: center;
}

.oae-gallery-lead-figure img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.oae-gallery-lead-figure figcaption {
  margin-top: 14px;
  color: #3a5750;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.oae-gallery-kicker {
  margin: 0 0 22px;
  color: var(--coral);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.oae-gallery-group + .oae-gallery-group {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.oae-gallery-group-title {
  margin: 0 0 18px;
  max-width: 920px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}

.oae-gallery-grid .media-tile img {
  height: 300px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 24, 22, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.construction-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.construction-panel h2 {
  margin-top: 0;
}

.map-shell {
  padding-top: 42px;
}

.map-frame-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.map-frame-card iframe {
  display: block;
  width: 100%;
  height: min(78vh, 760px);
  min-height: 520px;
  border: 0;
  background: #fff;
}

.map-frame-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.map-frame-actions span {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0f2b27;
  padding: 42px 0;
}

.footer-grid {
  max-width: 760px;
}

.footer-grid a {
  color: #fff;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 6px 12px;
    box-shadow: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-title-context {
    font-size: 22px;
  }

  .section-heading,
  .page-title,
  .note-hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-grid,
  .cards-grid,
  .timeline,
  .note-grid,
  .partners,
  .wp-block-columns,
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .wp-block-media-text,
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media,
  .field-feature-grid {
    grid-template-columns: 1fr;
    order: initial;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .oae-gallery-grid .media-tile img {
    height: 260px;
  }

  .article-figure.is-left,
  .article-figure.is-right {
    float: none;
    width: 100%;
    margin: 30px 0;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .team-card[open] {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }

  .team-card-summary {
    padding: 16px;
  }

  .team-card[open] .team-card-summary {
    padding: 18px;
  }

  .team-card-name {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-inner {
    padding: 88px 0 54px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-title-context {
    font-size: 18px;
  }

  .note-hero-copy h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .note-deck {
    font-size: 18px;
  }

  .article-body {
    font-size: 18px;
  }

  .author-bio {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .feature-grid,
  .cards-grid,
  .timeline,
  .note-grid,
  .partners,
  .wp-block-columns,
  .stats-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-kicker {
    display: none;
  }

  .brand-text {
    max-width: 210px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-tile img,
  .field-gallery .media-tile img {
    height: auto;
    aspect-ratio: 1.22;
  }

  .map-frame-card iframe {
    min-height: 420px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card[open] {
    grid-template-columns: 1fr;
  }

  .team-card-summary {
    padding: 16px;
  }

  .team-card[open] .team-card-summary {
    padding: 18px;
  }

  .team-card[open] .team-card-body {
    padding: 18px 18px 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .team-card-name {
    font-size: 20px;
  }
}
