:root {
  --ink: #1e1b19;
  --ink-soft: #302b28;
  --red: #68432d;
  --red-bright: #82583c;
  --copper: #d2aa7a;
  --blue: #32434b;
  --paper: #f5f3f0;
  --white: #ffffff;
  --muted: #706760;
  --line: #dfd9d3;
  --success: #2d8b5f;
  --container: 1240px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.public-site {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.public-site a {
  color: inherit;
  text-decoration: none;
}

.public-site button,
.public-site input,
.public-site textarea {
  font: inherit;
}

.site-container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

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

.utility-bar {
  min-height: 38px;
  background: #d2aa7a;
  color: #3f291c;
  font-size: 12px;
  font-weight: 600;
}

.utility-inner,
.utility-links {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 24px;
}

.utility-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.utility-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45be7d;
  box-shadow: 0 0 0 4px rgba(69, 190, 125, .12);
}

.utility-links {
  gap: 18px;
}

.utility-links a:hover {
  color: #1e1b19;
}

.utility-divider {
  width: 1px;
  height: 14px;
  background: rgba(63, 41, 28, .3);
}

.utility-join {
  color: #4b3020 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.main-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(75, 48, 32, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}

.main-header.is-scrolled {
  box-shadow: 0 12px 38px rgba(46, 28, 18, .22);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  min-width: 0;
}

.site-brand img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-symbol {
  display: grid;
  gap: 4px;
  width: 33px;
  transform: skewY(30deg);
}

.brand-symbol i {
  display: block;
  width: 100%;
  height: 7px;
  background: var(--red);
}

.brand-symbol i:nth-child(2) {
  width: 78%;
}

.brand-symbol i:nth-child(3) {
  width: 56%;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 24px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.main-navigation a {
  position: relative;
  padding: 31px 0 28px;
  color: #fffaf5;
  font-size: 12px;
  font-weight: 700;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  transition: transform .2s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item,
.nav-parent {
  position: relative;
}

.nav-parent {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  display: grid;
  place-items: center;
  width: 25px;
  height: 32px;
  margin-left: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform .2s ease;
}

.nav-item.is-open .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.submenu {
  position: absolute;
  z-index: 110;
  top: calc(100% - 18px);
  left: -18px;
  display: none;
  min-width: 225px;
  padding: 10px;
  border-top: 3px solid var(--copper);
  background: var(--white);
  box-shadow: 0 22px 50px rgba(43, 27, 17, .2);
}

.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu,
.nav-item.is-open > .submenu {
  display: grid;
}

.main-navigation .submenu a {
  padding: 11px 13px;
  color: #3f291c;
  font-size: 12px;
  white-space: nowrap;
}

.main-navigation .submenu a:hover {
  background: #f4eee8;
  color: var(--red);
}

.main-navigation .submenu a::after {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.header-cta {
  justify-self: end;
  color: #3f291c !important;
  background: var(--copper);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.site-flash {
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid #a8dfc2;
  background: #ecfff4;
  color: #145f3d;
  font-weight: 700;
}

.site-main {
  min-height: 60vh;
}

.hero-stage {
  padding: 0;
  background: #211813;
}

.hero-stage > .site-container {
  width: 100%;
  max-width: none;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #23262b;
  box-shadow: none;
}

.hero-slides {
  position: relative;
  height: clamp(250px, 28vw, 430px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity .55s ease, visibility .55s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #22252a;
}

.hero-slide.fit-contain img {
  object-fit: contain;
  background: #171b22;
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(17, 18, 21, .56);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 17px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--white);
}

.hero-fallback {
  min-height: 360px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(16, 18, 22, .94) 0%, rgba(16, 18, 22, .78) 42%, rgba(16, 18, 22, .2) 100%),
    var(--hero-image, linear-gradient(135deg, #22262d, #581521));
  background-position: center;
  background-size: cover;
}

.hero-fallback-inner {
  padding-top: 34px;
  padding-bottom: 36px;
  color: var(--white);
}

.hero-fallback h1 {
  max-width: 610px;
  margin: 8px 0 12px;
  font-size: clamp(31px, 3.35vw, 46px);
  font-weight: 700;
  line-height: 1.04;
}

.hero-fallback p {
  max-width: 620px;
  margin: 0;
  color: #d4d7dc;
  font-size: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white) !important;
}

.button-primary:hover {
  border-color: var(--red-bright);
  background: var(--red-bright);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink) !important;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white) !important;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white) !important;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink) !important;
}

.access-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.access-grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  padding: 24px;
  border-left: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}

.access-grid > a:last-child {
  border-right: 1px solid var(--line);
}

.access-grid > a:hover {
  background: #f9f9f7;
  color: var(--red);
}

.access-number {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
}

.access-grid strong,
.access-grid small {
  display: block;
}

.access-grid strong {
  font-size: 14px;
}

.access-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.access-grid b {
  font-size: 18px;
  font-weight: 500;
}

.content-section {
  padding: 104px 0;
}

.news-section {
  padding: 70px 0 76px;
}

.news-section .section-heading {
  margin-bottom: 28px;
}

.news-section .section-heading h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2,
.institutional-section h2,
.event-feature h2,
.contact-section h2,
.content-shell .page-title {
  max-width: 780px;
  margin: 8px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 650;
  line-height: 1.08;
}

.section-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.section-kicker.light {
  color: #e0af78;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid #adb1b6;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span,
.card-link span {
  transition: transform .2s ease;
}

.text-link:hover span,
.card-link:hover span {
  transform: translateX(4px);
}

.text-link.light {
  border-color: #6e747d;
  color: var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 18px;
  align-items: stretch;
}

.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(59, 43, 30, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card-lead {
  grid-row: span 3;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: #d1c4b8;
  box-shadow: 0 22px 54px rgba(59, 43, 30, .11);
}

.news-media {
  display: block;
  overflow: hidden;
  background: var(--ink-soft);
}

.news-media,
.news-card:not(.news-card-lead) .news-media,
.news-card-lead .news-media {
  aspect-ratio: 16 / 9;
}

.news-card:not(.news-card-lead) {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
}

.news-card:not(.news-card-lead) .news-media {
  aspect-ratio: auto;
  min-height: 100%;
}

.news-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.news-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 104px;
  color: #737983;
  font-size: 18px;
  font-weight: 800;
}

.news-card-lead .news-copy {
  padding-top: 0;
}

.news-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 18px 18px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.news-meta span {
  color: var(--red);
}

.news-card h3 {
  margin: 9px 0 10px;
  font-size: 16px;
  line-height: 1.3;
}

.news-card-lead h3 {
  margin: 10px 0;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.14;
}

.news-card h3 a:hover {
  color: var(--red);
}

.news-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.card-link {
  margin-top: auto;
  border: 0;
  color: var(--red);
}

.news-card:not(.news-card-lead) .card-link {
  display: inline-flex;
}

.news-card:not(.news-card-lead) .news-copy {
  padding: 15px 17px;
}

.empty-state {
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.institutional-section {
  padding: 108px 0;
  background: var(--ink);
  color: var(--white);
}

.institutional-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
  gap: 50px 90px;
}

.institutional-copy p {
  margin: 0 0 28px;
  color: #c3c7cc;
  font-size: 18px;
  line-height: 1.8;
}

.impact-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3c4047;
  border-bottom: 1px solid #3c4047;
}

.impact-list div {
  display: grid;
  min-height: 155px;
  align-content: center;
  padding: 28px 40px;
  border-right: 1px solid #3c4047;
}

.impact-list div:first-child {
  padding-left: 0;
}

.impact-list div:last-child {
  border-right: 0;
}

.impact-list strong {
  color: #e2ad74;
  font-size: 42px;
  font-weight: 600;
}

.impact-list span {
  color: #aeb3ba;
  font-size: 12px;
}

.agenda-section {
  padding-bottom: 80px;
  background: var(--white);
}

.agenda-list {
  border-top: 1px solid var(--line);
}

.agenda-item {
  display: grid;
  grid-template-columns: 150px 1fr 60px;
  align-items: center;
  gap: 34px;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.agenda-item > time {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.agenda-item time strong {
  font-size: 44px;
  font-weight: 600;
}

.agenda-item time span {
  max-width: 52px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.agenda-type {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.agenda-item h3 {
  margin: 4px 0;
  font-size: 22px;
}

.agenda-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.agenda-arrow {
  color: var(--red);
  font-size: 24px;
  text-align: right;
}

.video-section {
  background: #202a34;
  color: var(--white);
}

.section-heading.on-dark h2 {
  color: var(--white);
}

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

.video-card {
  min-width: 0;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d1115;
}

.video-frame iframe,
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 17px 0 0;
  font-size: 16px;
  line-height: 1.35;
}

.video-empty {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 42px 0;
  border-top: 1px solid #4a535c;
  border-bottom: 1px solid #4a535c;
}

.video-empty > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #69727c;
  border-radius: 50%;
}

.video-empty p {
  margin: 4px 0 0;
  color: #aeb5bc;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 610px;
  background: #e9e6df;
}

.event-feature-media {
  min-height: 610px;
  background: linear-gradient(135deg, #5a6670, #1c3f5e);
  background-position: center;
  background-size: cover;
}

.event-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px clamp(44px, 6vw, 96px);
}

.event-feature h2 {
  margin-bottom: 24px;
  max-width: 680px;
  font-size: clamp(36px, 4.1vw, 62px);
}

.event-feature p {
  max-width: 640px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.banner-strip,
.ad-banner-band {
  padding: 24px 0;
  background: var(--paper);
}

.banner-strip-grid,
.ad-banner-grid,
.archive-ad-grid {
  display: grid;
  gap: 18px;
}

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

.ad-banner-grid,
.archive-ad-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-ad-grid {
  margin-bottom: 28px;
}

.site-banner {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f1eee8;
}

.site-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-banner.fit-contain img {
  object-fit: contain;
}

.banner-strip .site-banner {
  aspect-ratio: 21 / 6;
}

.ad-banner {
  aspect-ratio: 16 / 7;
}

.sidebar-banner-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.sidebar-banner {
  aspect-ratio: 4 / 5;
}

.contact-section {
  padding: 112px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.contact-intro > p {
  max-width: 450px;
  margin: 24px 0 40px;
  color: var(--muted);
}

.contact-detail {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-detail small {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-detail a,
.contact-detail span {
  font-size: 14px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 22px;
  padding-top: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full,
.form-submit {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid #abb0b6;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
}

.form-field textarea {
  min-height: 105px;
  resize: vertical;
}

.form-submit {
  justify-self: start;
  min-width: 205px;
  margin-top: 6px;
  cursor: pointer;
}

.main-footer {
  padding-top: 72px;
  background: #101216;
  color: #b5bac1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr .7fr 1fr .55fr;
  gap: 70px;
  padding-bottom: 62px;
}

.footer-logo {
  color: var(--white) !important;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-logo .brand-copy small {
  color: #999fa7;
}

.footer-brand p {
  max-width: 370px;
  margin: 24px 0 0;
  color: #8f969e;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 12px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--copper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #2a2d32;
  color: #747b84;
  font-size: 10px;
}

/* Internal pages */
.news-archive {
  background: var(--paper);
}

.archive-hero {
  padding: 54px 0 50px;
  background: #4b3020;
  color: var(--white);
}

.archive-hero h1 {
  margin: 7px 0 8px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 650;
  line-height: 1;
}

.archive-hero p {
  max-width: 650px;
  margin: 0;
  color: #decfbe;
  font-size: 14px;
}

.archive-content {
  padding: 58px 0 90px;
}

.content-shell {
  padding: 80px 0 110px;
}

.content-shell .page-header {
  max-width: 900px;
  margin-bottom: 50px;
}

.content-shell .page-title {
  color: var(--ink);
}

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

.archive-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(59, 43, 30, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  border-color: #d1c4b8;
  box-shadow: 0 26px 70px rgba(59, 43, 30, .11);
}

.archive-card .news-media {
  aspect-ratio: 16 / 9;
}

.archive-card .news-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 22px;
}

.archive-card h2 {
  margin: 10px 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.archive-card h2 a:hover {
  color: var(--red);
}

.archive-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.archive-card .card-link {
  margin-top: auto;
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.pagination a {
  color: var(--red);
}

.pagination a:last-child {
  justify-self: end;
}

.pagination span {
  color: var(--muted);
}

.news-detail-shell {
  padding: 58px 0 100px;
  background: var(--paper);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 120px minmax(0, 860px) 250px;
  gap: 28px;
  align-items: start;
}

.news-detail-meta,
.related-news {
  position: sticky;
  top: 120px;
}

.news-detail-meta {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-detail-meta a,
.related-head a {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.news-detail-header {
  margin-bottom: 24px;
}

.news-detail-header h1 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 650;
  line-height: 1.08;
}

.news-detail-header p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.news-detail-cover {
  overflow: hidden;
  margin: 0 0 26px;
  border-radius: 8px;
  background: var(--ink-soft);
}

.news-detail-cover img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.article-body {
  width: 100%;
  color: #34383d;
  font-size: 18px;
  line-height: 1.88;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 1.6em 0 .6em;
  color: var(--ink);
  line-height: 1.2;
}

.article-body h2 {
  font-size: 34px;
}

.article-body a {
  color: var(--red);
  text-decoration: underline;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.article-body figure {
  margin: 30px 0;
}

.article-body figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.article-body .article-lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}

.article-body .article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.article-body .article-gallery figure {
  margin: 0;
}

.article-body .article-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.article-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 12px 0 12px 28px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-size: 22px;
}

.related-news {
  display: grid;
  gap: 10px;
}

.related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.related-card {
  display: grid;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 6px;
  object-fit: cover;
}

.related-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

@media (max-width: 1120px) {
  .news-detail-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .news-detail-meta {
    position: static;
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-container {
    width: min(var(--container), calc(100% - 40px));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .main-navigation {
    gap: 17px;
  }

  .main-navigation a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .access-grid > a {
    padding: 20px 15px;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .banner-strip-grid,
  .ad-banner-grid,
  .archive-ad-grid {
    grid-template-columns: 1fr;
  }

  .article-body .article-gallery {
    grid-template-columns: 1fr;
  }

  .related-news {
    position: static;
  }

  :root {
    --header-height: 70px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .site-brand img {
    width: 180px;
    height: auto;
    max-height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 12px 20px 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    background: #4b3020;
    box-shadow: 0 24px 40px rgba(18, 20, 24, .14);
  }

  .main-navigation.is-open {
    display: grid;
  }

  .main-navigation a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: var(--white);
    font-size: 14px;
  }

  .main-navigation a::after {
    display: none;
  }

  .nav-parent {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .nav-parent > a {
    flex: 1;
    border-bottom: 0;
  }

  .submenu-toggle {
    width: 44px;
    height: 44px;
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 4px 0 10px 18px;
    border-top: 0;
    background: rgba(0, 0, 0, .1);
    box-shadow: none;
  }

  .main-navigation .submenu a {
    padding: 10px 12px;
    border-bottom: 0;
    color: #ead9c7;
  }

  .hero-slider {
    min-height: 0;
  }

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

  .access-grid > a:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .access-grid > a:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .news-card-lead {
    grid-row: auto;
  }

  .news-card:not(.news-card-lead) {
    grid-template-columns: 170px minmax(0, 1fr);
  }

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

  .impact-list {
    grid-column: auto;
  }

  .video-gallery,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .event-feature-media {
    min-height: 440px;
  }

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

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

@media (max-width: 620px) {
  .site-container,
  .article-body {
    width: min(100% - 32px, var(--container));
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-stage > .site-container {
    width: 100%;
  }

  .hero-slides {
    height: clamp(190px, 42vw, 280px);
  }

  .hero-slide img {
    object-fit: cover;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .hero-fallback {
    min-height: 320px;
  }

  .hero-fallback h1 {
    font-size: 29px;
  }

  .hero-fallback-inner {
    padding-top: 28px;
    padding-bottom: 30px;
  }

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

  .access-grid > a,
  .access-grid > a:nth-child(2),
  .access-grid > a:last-child {
    min-height: 94px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .content-section,
  .institutional-section,
  .contact-section {
    padding: 72px 0;
  }

  .news-section {
    padding: 58px 0 64px;
  }

  .section-heading {
    display: grid;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .institutional-section h2,
  .event-feature h2,
  .contact-section h2 {
    font-size: 38px;
  }

  .news-section .section-heading h2 {
    font-size: 34px;
  }

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

  .news-card,
  .news-card-lead {
    grid-column: auto;
    margin-bottom: 0;
  }

  .news-card:not(.news-card-lead) {
    grid-template-columns: 1fr;
  }

  .news-card:not(.news-card-lead) .news-media {
    aspect-ratio: 16 / 10;
  }

  .news-card:not(.news-card-lead) .news-copy {
    padding-top: 20px;
  }

  .news-card h3,
  .news-card-lead h3 {
    font-size: 21px;
  }

  .news-card:not(.news-card-lead) .card-link {
    display: inline-flex;
  }

  .impact-list,
  .video-gallery,
  .archive-grid,
  .contact-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .impact-list div,
  .impact-list div:first-child {
    min-height: 120px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #3c4047;
  }

  .impact-list div:last-child {
    border-bottom: 0;
  }

  .agenda-item {
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .agenda-item > time {
    grid-template-columns: 1fr;
  }

  .agenda-arrow {
    display: none;
  }

  .event-feature-media {
    min-height: 320px;
  }

  .event-feature-copy {
    padding: 54px 24px 64px;
  }

  .form-field-full,
  .form-submit {
    grid-column: auto;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-bottom {
    display: grid;
  }

  .archive-hero {
    padding: 42px 0 38px;
  }

  .archive-hero h1 {
    font-size: 44px;
  }

  .archive-content {
    padding: 36px 0 65px;
  }

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

  .pagination span {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .content-shell {
    padding-top: 52px;
  }

  .content-shell .page-title {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Institutional pages */
.internal-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #4b3020;
  color: var(--white);
}

.internal-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(35, 22, 16, .96) 0%, rgba(50, 31, 21, .84) 54%, rgba(50, 31, 21, .38) 100%),
    var(--page-cover, none);
  background-position: center;
  background-size: cover;
}

.internal-hero:not(.has-image)::after {
  position: absolute;
  right: -4%;
  bottom: -160px;
  width: 42%;
  height: 300px;
  border: 1px solid rgba(210, 170, 122, .25);
  content: "";
  transform: skewX(-28deg);
}

.internal-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 300px;
  padding-top: 46px;
  padding-bottom: 50px;
}

.internal-hero h1 {
  max-width: 900px;
  margin: 9px 0 12px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 650;
  line-height: 1.02;
}

.internal-hero p {
  max-width: 690px;
  margin: 0;
  color: #e2d7cb;
  font-size: 16px;
}

.about-hero {
  min-height: 340px;
}

.about-hero .internal-hero-inner {
  min-height: 340px;
}

.about-intro,
.about-story,
.team-page,
.presidents-page,
.general-page,
.video-archive {
  padding: 92px 0;
  background: #f7f6f3;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 42px 64px;
  align-items: start;
}

.about-prose {
  max-width: 760px;
}

.about-lead h2,
.story-copy h2,
.team-intro h2,
.presidents-intro h2,
.video-archive-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 650;
  line-height: 1.1;
}

.about-prose p,
.story-copy p,
.story-continuation p {
  margin: 0 0 18px;
  color: #554f4a;
  font-size: 16px;
  line-height: 1.85;
}

.about-wide-image {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  overflow: hidden;
  aspect-ratio: 2.45 / 1;
  background: #ded9d2;
}

.about-wide-image img,
.story-image img,
.person-photo img,
.president-card-media img,
.president-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purpose-band {
  background: #223137;
  color: var(--white);
}

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

.purpose-grid > div {
  min-height: 260px;
  padding: 50px 42px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.purpose-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.purpose-grid span,
.team-group-title span,
.president-number {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
}

.purpose-grid h3 {
  margin: 36px 0 10px;
  font-size: 25px;
}

.purpose-grid p {
  margin: 0;
  color: #bdc6c9;
  font-size: 14px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  gap: 50px 64px;
  align-items: start;
}

.story-copy,
.story-continuation {
  min-width: 0;
}

.story-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: #ded9d2;
}

.story-continuation {
  grid-column: auto;
  columns: 1;
  padding: 26px 0 0 34px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.institutional-cta {
  padding: 70px 0;
  background: #68432d;
  color: var(--white);
}

.institutional-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.institutional-cta h2 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 80px;
  align-items: end;
  max-width: 1050px;
  margin-bottom: 78px;
}

.team-intro .section-kicker,
.team-intro h2 {
  grid-column: 1;
}

.team-intro p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
}

.team-group + .team-group {
  margin-top: 78px;
}

.team-group-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 27px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.team-group-title h2 {
  margin: 0;
  font-size: 28px;
}

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

.person-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.person-photo {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  background: #26343a;
  color: rgba(255,255,255,.3);
  font-size: 46px;
  font-weight: 700;
}

.person-photo img,
.president-card-media img,
.president-photo img {
  position: absolute;
  inset: 0;
}

.person-copy {
  min-height: 118px;
  padding: 21px 20px;
  border-top: 3px solid var(--copper);
}

.person-copy h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.25;
}

.person-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

.presidents-intro {
  max-width: 820px;
  margin-bottom: 65px;
}

.president-list {
  border-top: 1px solid var(--line);
}

.president-row {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.president-row.is-reversed {
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
}

.president-row.is-reversed .president-photo {
  grid-column: 2;
}

.president-row.is-reversed .president-copy {
  grid-column: 1;
  grid-row: 1;
}

.president-photo {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #223137;
  color: rgba(255,255,255,.18);
  font-size: 58px;
  font-weight: 700;
}

.president-copy {
  max-width: 720px;
}

.president-copy h2 {
  margin: 10px 0 8px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.president-copy h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.president-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.president-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(59, 43, 30, .08);
}

.president-card-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: #223137;
  color: rgba(255,255,255,.18);
  font-size: 52px;
  font-weight: 700;
}

.president-card-copy {
  padding: 22px;
}

.president-card-copy h2 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.08;
}

.president-card-copy h3 {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.president-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.general-page-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 850px);
  justify-content: space-between;
  gap: 70px;
  align-items: start;
}

.page-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  border-top: 1px solid var(--line);
}

.page-aside span {
  padding: 16px 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-aside a {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.page-aside a:hover {
  color: var(--red);
}

.rich-content {
  min-width: 0;
  color: #4f4a46;
  font-size: 16px;
  line-height: 1.85;
}

.rich-content > :first-child {
  margin-top: 0 !important;
}

.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5 {
  margin: 1.55em 0 .55em;
  color: var(--ink);
  line-height: 1.18;
}

.rich-content h2 { font-size: clamp(28px, 3.5vw, 42px); }
.rich-content h3 { font-size: 26px; }
.rich-content h4,
.rich-content h5 { font-size: 20px; }

.rich-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 30px 0;
  object-fit: cover;
}

.rich-content a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}

.rich-content ul,
.rich-content ol {
  padding-left: 22px;
}

.rich-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.rich-content td,
.rich-content th {
  padding: 12px;
  border: 1px solid var(--line);
}

.video-archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.video-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 22px;
}

.video-archive-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.video-archive-copy {
  padding: 18px 0 24px;
}

.video-archive-copy span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-archive-copy h2 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.archive-empty {
  color: var(--ink);
  border-color: var(--line);
}

.membership-page {
  padding: 84px 0 96px;
  background: var(--paper);
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .8fr);
  gap: 52px;
  align-items: start;
}

.membership-copy h2 {
  max-width: 680px;
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}

.membership-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.document-checklist {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #d9cfc5;
  border-radius: 8px;
  background: var(--white);
}

.document-checklist strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
}

.document-checklist ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.document-checklist li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.membership-file-callout {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(104, 67, 45, .22);
  border-radius: 8px;
  background: #fff8ef;
}

.membership-file-callout span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.membership-file-callout strong {
  color: var(--ink);
  line-height: 1.35;
}

.membership-file-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.membership-file-callout .button {
  width: fit-content;
  margin-top: 6px;
}

.button-secondary {
  border: 1px solid rgba(104, 67, 45, .26);
  background: #fff;
  color: var(--wood);
}

/* Hero banners: "largura total sem cortar" uses the image ratio instead of side bars. */
.hero-slider:has(.hero-slide.fit-contain.is-active) {
  background: transparent;
}

.hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slides {
  height: auto;
}

.hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slide.is-active {
  position: relative;
  inset: auto;
}

.hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.membership-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.membership-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.membership-steps span {
  grid-row: span 2;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.membership-steps strong {
  color: var(--ink);
}

.membership-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.membership-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid #d9cfc5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(59, 43, 30, .1);
}

.membership-form small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.membership-notes {
  padding: 72px 0;
  background: var(--white);
}

.article-body .article-image,
.article-body .article-video,
.rich-content .article-image,
.rich-content .article-video {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.article-body .article-video iframe,
.article-body .article-video video,
.rich-content .article-video iframe,
.rich-content .article-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #101828;
}

@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .president-row,
  .president-row.is-reversed {
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1fr);
    gap: 36px;
  }

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

  .membership-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  body.public-site {
    background: #f4f5f2;
  }

  :root {
    --header-height: 64px;
  }

  .main-header {
    border-bottom: 0;
    box-shadow: 0 10px 28px rgba(38, 27, 20, .2);
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 0;
  }

  .site-brand img {
    width: 158px;
    max-height: 34px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
  }

  .nav-toggle span {
    width: 22px;
    margin: 3px 0;
  }

  .main-navigation {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(75, 48, 32, .12);
    border-radius: 8px;
    background: #fffaf5;
    box-shadow: 0 24px 70px rgba(30, 27, 25, .28);
  }

  .main-navigation.is-open {
    display: grid;
  }

  .main-navigation a,
  .nav-parent {
    min-height: 48px;
    border: 1px solid #ebe2d7;
    border-radius: 8px;
    background: #fff;
    color: #2e2018;
  }

  .main-navigation a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 14px;
  }

  .nav-parent {
    overflow: hidden;
  }

  .nav-parent > a {
    border: 0;
    border-radius: 0;
  }

  .submenu-toggle {
    width: 50px;
    height: 48px;
    color: #4b3020;
  }

  .submenu {
    margin: 6px 0 0;
    padding: 6px;
    border: 1px solid #ebe2d7;
    border-radius: 8px;
    background: #f6f1ec;
  }

  .main-navigation .submenu a {
    border: 0;
    background: transparent;
    color: #4b3020;
  }

  .main-navigation a::after {
    display: none;
  }

  .site-main {
    background: #f4f5f2;
  }

  .section-heading,
  .video-archive-heading,
  .institutional-cta-inner {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-container,
  .article-body {
    width: min(100% - 28px, var(--container));
  }

  .site-main {
    min-height: 70vh;
  }

  .hero-slides {
    height: clamp(230px, 62vw, 330px);
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .access-bar {
    overflow: hidden;
    border-bottom: 0;
    background: transparent;
  }

  .access-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 14px 8px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
  }

  .access-grid > a,
  .access-grid > a:nth-child(2),
  .access-grid > a:nth-child(n+3),
  .access-grid > a:last-child {
    flex: 0 0 78%;
    min-height: 98px;
    border: 1px solid #e5ddd3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(59, 43, 30, .08);
    scroll-snap-align: start;
  }

  .content-section,
  .institutional-section,
  .contact-section,
  .about-intro,
  .about-story,
  .team-page,
  .presidents-page,
  .general-page,
  .video-archive,
  .membership-page {
    padding: 54px 0;
  }

  .news-section {
    padding: 46px 0 52px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 22px;
  }

  .section-heading h2,
  .institutional-section h2,
  .event-feature h2,
  .contact-section h2,
  .content-shell .page-title,
  .membership-copy h2,
  .about-lead h2,
  .story-copy h2,
  .team-intro h2,
  .presidents-intro h2,
  .video-archive-heading h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .news-section .section-heading h2,
  .archive-hero h1,
  .internal-hero h1 {
    font-size: 34px;
  }

  .news-card,
  .person-card,
  .president-card,
  .document-checklist,
  .membership-form,
  .membership-file-callout {
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(59, 43, 30, .08);
  }

  .news-card h3,
  .news-card-lead h3 {
    font-size: 20px;
  }

  .news-copy {
    padding: 16px;
  }

  .button,
  .header-cta,
  .form-submit button {
    width: 100%;
    min-height: 50px;
  }

  .article-body,
  .rich-content {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-body .article-image,
  .article-body .article-video,
  .rich-content .article-image,
  .rich-content .article-video {
    width: 100% !important;
  }
}

.article-body .article-table,
.rich-content .article-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}

.article-body .article-table th,
.article-body .article-table td,
.rich-content .article-table th,
.rich-content .article-table td {
  padding: 12px;
  border: 1px solid var(--line);
}

.article-body .article-table th,
.rich-content .article-table th {
  background: #fff3e4;
  color: #4b3020;
}

.article-body .article-callout,
.rich-content .article-callout {
  margin: 30px 0;
  padding: 18px;
  border: 1px solid #e7c9a5;
  border-left: 5px solid #b36f43;
  border-radius: 8px;
  background: #fff8ef;
  color: #3f291c;
}

.article-body .article-callout p,
.rich-content .article-callout p {
  margin: 6px 0 0;
}

.mobile-app-nav {
  display: none;
}

@media (max-width: 760px) {
  body.public-site {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
    background: #f6f1ec;
  }

  .site-container,
  .article-body {
    width: min(100% - 26px, var(--container));
  }

  .main-header {
    top: 8px;
    width: calc(100% - 26px);
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(75, 48, 32, .97);
    box-shadow: 0 16px 34px rgba(62, 38, 24, .24);
  }

  .header-inner {
    min-height: 58px;
  }

  .site-brand img {
    width: 142px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(210, 170, 122, .22);
  }

  .main-navigation {
    top: 76px;
    right: 13px;
    left: 13px;
    border: 1px solid rgba(104, 67, 45, .14);
    border-radius: 8px;
    background: #ffffff;
  }

  .hero-stage,
  .access-bar,
  .news-section,
  .agenda-section,
  .contact-section,
  .about-intro,
  .about-story,
  .team-page,
  .presidents-page,
  .general-page,
  .video-archive,
  .membership-page {
    background: #f6f1ec;
  }

  .hero-stage {
    padding-top: 12px;
  }

  .hero-slider,
  .hero-fallback,
  .news-card,
  .site-banner,
  .document-checklist,
  .membership-form,
  .person-card,
  .president-card,
  .video-card,
  .contact-form {
    border: 1px solid rgba(104, 67, 45, .12);
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 14px 34px rgba(62, 38, 24, .11);
  }

  .hero-slider {
    overflow: hidden;
  }

  .hero-slides {
    height: clamp(235px, 64vw, 360px);
  }

  .slider-dots {
    bottom: 12px;
  }

  .access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 16px 13px 4px;
    scroll-snap-type: none;
  }

  .access-grid > a,
  .access-grid > a:nth-child(2),
  .access-grid > a:nth-child(n+3),
  .access-grid > a:last-child {
    min-height: 108px;
    border: 1px solid rgba(104, 67, 45, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(62, 38, 24, .1);
  }

  .section-kicker {
    color: #b36f43;
  }

  .news-card:not(.news-card-lead),
  .news-card-lead {
    display: flex;
    flex-direction: column;
  }

  .news-card:not(.news-card-lead) .news-media,
  .news-card-lead .news-media {
    aspect-ratio: 16 / 10;
  }

  .news-copy {
    padding: 17px;
  }

  .news-meta span,
  .card-link,
  .text-link {
    color: #8a4f2d;
  }

  .button,
  .form-submit button {
    min-height: 52px;
    border-radius: 8px;
  }

  .internal-hero {
    margin: 12px 13px 0;
    border-radius: 8px;
  }

  .content-shell,
  .archive-content {
    padding-bottom: 84px;
  }

  .mobile-app-nav {
    position: fixed;
    z-index: 140;
    right: 13px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 13px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    min-height: 68px;
    padding: 8px 8px 7px;
    border: 1px solid rgba(104, 67, 45, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 46px rgba(62, 38, 24, .22);
    backdrop-filter: blur(16px);
  }

  .mobile-app-nav a {
    display: grid;
    place-items: center;
    gap: 4px;
    min-width: 0;
    color: #765f4e;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-app-nav a.is-active {
    color: #5b3925;
  }

  .mobile-app-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff3e4;
    color: #8a4f2d;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-app-action {
    width: 48px;
    height: 48px;
    margin-top: -22px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #5b3925;
    color: #fff;
    box-shadow: 0 12px 28px rgba(91, 57, 37, .34);
  }

  .mobile-app-nav small {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 800px) {
  .about-intro,
  .about-story,
  .team-page,
  .presidents-page,
  .general-page,
  .video-archive,
  .membership-page {
    padding: 68px 0;
  }

  .about-intro-grid,
  .story-grid,
  .team-intro,
  .general-page-grid {
    grid-template-columns: 1fr;
  }

  .team-intro .section-kicker,
  .team-intro h2,
  .team-intro p {
    grid-column: auto;
    grid-row: auto;
  }

  .story-continuation {
    grid-column: auto;
    columns: 1;
    padding: 0;
    border-left: 0;
  }

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

  .purpose-grid > div {
    min-height: 230px;
  }

  .purpose-grid > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.13);
  }

  .page-aside {
    position: static;
    display: none;
  }

  .president-row,
  .president-row.is-reversed {
    grid-template-columns: 1fr;
  }

  .president-row.is-reversed .president-photo,
  .president-row.is-reversed .president-copy {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .internal-hero,
  .about-hero,
  .internal-hero-inner,
  .about-hero .internal-hero-inner {
    min-height: 260px;
  }

  .internal-hero h1 {
    font-size: 42px;
  }

  .internal-hero p {
    font-size: 14px;
  }

  .about-wide-image {
    aspect-ratio: 4 / 3;
  }

  .purpose-grid,
  .team-grid,
  .video-archive-grid,
  .membership-form {
    grid-template-columns: 1fr;
  }

  .membership-form {
    padding: 22px;
  }

  .purpose-grid > div,
  .purpose-grid > div:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 36px 24px;
    border-top: 1px solid rgba(255,255,255,.13);
    border-right: 1px solid rgba(255,255,255,.13);
    border-left: 1px solid rgba(255,255,255,.13);
  }

  .purpose-grid h3 {
    margin-top: 18px;
  }

  .institutional-cta-inner,
  .video-archive-heading {
    display: grid;
  }

  .person-photo {
    aspect-ratio: 4 / 4;
  }
}

@media (max-width: 900px) {
  .main-navigation {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 14px;
    left: 14px;
    max-height: calc(100dvh - 92px);
    border-radius: 8px;
    background: #fffaf5;
  }

  .main-navigation a,
  .nav-parent {
    color: #2e2018;
  }
}

@media (max-width: 620px) {
  .about-intro,
  .about-story,
  .team-page,
  .presidents-page,
  .general-page,
  .video-archive,
  .membership-page,
  .content-section,
  .institutional-section,
  .contact-section {
    padding: 54px 0;
  }

  .archive-hero h1,
  .internal-hero h1,
  .content-shell .page-title,
  .section-heading h2,
  .membership-copy h2,
  .about-lead h2,
  .story-copy h2,
  .team-intro h2,
  .presidents-intro h2,
  .video-archive-heading h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .access-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 14px 8px;
    scroll-snap-type: x mandatory;
  }

  .access-grid > a,
  .access-grid > a:nth-child(2),
  .access-grid > a:nth-child(n+3),
  .access-grid > a:last-child {
    flex: 0 0 78%;
    min-height: 98px;
    border: 1px solid #e5ddd3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(59, 43, 30, .08);
    scroll-snap-align: start;
  }

  .article-body .article-image,
  .article-body .article-video,
  .rich-content .article-image,
  .rich-content .article-video {
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  body.public-site {
    background: #f6f1ec;
  }

  .hero-stage,
  .access-bar,
  .news-section,
  .agenda-section,
  .contact-section,
  .about-intro,
  .about-story,
  .team-page,
  .presidents-page,
  .general-page,
  .video-archive,
  .membership-page {
    background: #f6f1ec;
  }

  .main-header {
    background: rgba(75, 48, 32, .97);
    box-shadow: 0 16px 34px rgba(62, 38, 24, .24);
  }

  .access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 16px 13px 4px;
    scroll-snap-type: none;
  }

  .access-grid > a,
  .access-grid > a:nth-child(2),
  .access-grid > a:nth-child(n+3),
  .access-grid > a:last-child {
    flex: none;
    min-height: 110px;
    border: 1px solid rgba(104, 67, 45, .12);
    border-radius: 8px;
    background: #fffaf5;
    box-shadow: 0 14px 30px rgba(62, 38, 24, .1);
    scroll-snap-align: none;
  }

  .access-number,
  .section-kicker,
  .news-meta span,
  .card-link,
  .text-link {
    color: #b36f43;
  }

  .mobile-app-nav {
    border-color: rgba(104, 67, 45, .14);
    box-shadow: 0 18px 46px rgba(62, 38, 24, .22);
  }

  .mobile-app-nav a {
    color: #765f4e;
  }

  .mobile-app-nav a.is-active {
    color: #5b3925;
  }

  .mobile-app-icon {
    background: #fff3e4;
    color: #8a4f2d;
  }

  .mobile-app-action {
    background: #5b3925;
    color: #fff;
  }
}

@media (max-width: 760px) {
  body.public-site {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-container,
  .article-body {
    width: min(100% - 24px, var(--container));
  }

  .hero-stage {
    padding-top: 8px;
  }

  .hero-stage > .site-container {
    width: min(100% - 24px, var(--container));
  }

  .hero-slider,
  .hero-fallback {
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(62, 38, 24, .1);
  }

  .hero-slides,
  .hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slides {
    height: clamp(142px, 42vw, 185px);
  }

  .hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slide.is-active {
    position: absolute;
    inset: 0;
  }

  .hero-slider:has(.hero-slide.fit-contain.is-active) .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .banner-strip,
  .ad-banner-band {
    padding: 10px 0;
  }

  .banner-strip-grid,
  .ad-banner-grid,
  .archive-ad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .banner-strip .site-banner,
  .ad-banner,
  .archive-ad-grid .site-banner {
    aspect-ratio: 16 / 7;
    max-height: 82px;
  }

  .access-bar {
    margin-top: 2px;
  }

  .access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 8px 0 12px;
  }

  .access-grid > a,
  .access-grid > a:nth-child(2),
  .access-grid > a:nth-child(n+3),
  .access-grid > a:last-child {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: 62px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(62, 38, 24, .08);
  }

  .access-number {
    font-size: 10px;
  }

  .access-grid strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .access-grid small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.25;
  }

  .access-grid b {
    font-size: 13px;
  }

  .news-section {
    padding: 28px 0 36px;
  }

  .news-section .section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
  }

  .news-section .section-heading h2 {
    display: none;
  }

  .news-section .text-link {
    margin-left: auto;
    font-size: 12px;
  }

  .editorial-grid {
    display: grid;
    gap: 10px;
  }

  .news-card,
  .news-card-lead,
  .news-card:not(.news-card-lead) {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    min-height: 96px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(62, 38, 24, .08);
  }

  .news-card .news-media,
  .news-card-lead .news-media,
  .news-card:not(.news-card-lead) .news-media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .news-card .news-media img,
  .news-card-lead .news-media img,
  .news-card:not(.news-card-lead) .news-media img {
    height: 100%;
  }

  .news-copy,
  .news-card:not(.news-card-lead) .news-copy {
    padding: 10px 12px;
  }

  .news-meta {
    gap: 8px;
    font-size: 9px;
  }

  .news-card h3,
  .news-card-lead h3 {
    margin: 5px 0 7px;
    font-size: 14px;
    line-height: 1.24;
  }

  .news-card p,
  .news-card-lead p {
    display: none;
  }

  .card-link {
    font-size: 11px;
  }

  .content-section,
  .institutional-section,
  .contact-section {
    padding: 42px 0;
  }

  .mobile-app-nav {
    min-height: 62px;
    padding: 7px 8px 6px;
  }

  .mobile-app-icon {
    width: 25px;
    height: 25px;
  }

  .mobile-app-action {
    width: 44px;
    height: 44px;
    margin-top: -18px;
  }
}
