:root {
  --ink: #0a0a0a;
  --paper: #f3f0e9;
  --paper-deep: #e7e1d7;
  --white: #ffffff;
  --muted: #6c6963;
  --line: rgba(10, 10, 10, 0.16);
  --accent: #b79a62;
  --accent-soft: #d7c7a6;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0.7rem var(--page-pad);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-scrolled] {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--ink);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
}

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

.brand-copy strong {
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  font-size: 0.86rem;
  font-weight: 650;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.button:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

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

.button-light:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.section-pad {
  padding-block: var(--section-space);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2.1rem;
  height: 1px;
  background: currentColor;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.62);
}

.display-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.display-title {
  max-width: 13ch;
  font-size: clamp(3.35rem, 7.6vw, 8rem);
}

.section-title {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.7vw, 6rem);
}

.section-intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: calc(100svh - 76px);
  border-bottom: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.15rem;
  z-index: 2;
  width: 0.55rem;
  height: 42%;
  background: var(--accent);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.hero-logo {
  position: absolute;
  top: clamp(2rem, 5vw, 5rem);
  left: var(--page-pad);
  z-index: 3;
  width: clamp(78px, 8vw, 118px);
  height: clamp(78px, 8vw, 118px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
}

.hero-caption {
  position: absolute;
  right: 2.5rem;
  bottom: 2.4rem;
  left: var(--page-pad);
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
}

.hero-caption strong {
  max-width: 21ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.7vw, 2.7rem);
  font-weight: 400;
  line-height: 1.02;
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
}

.hero-content .kicker {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-content p {
  max-width: 610px;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

.hero-meta {
  display: flex;
  gap: 2.6rem;
  margin-top: auto;
  padding-top: clamp(3rem, 7vw, 6rem);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 38s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  min-width: 100vw;
  justify-content: space-around;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  white-space: nowrap;
}

.ticker-group span::after {
  content: "✦";
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.8em;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 2rem;
}

.about-copy > p {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 2.05rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.about-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.about-note strong {
  color: var(--ink);
  font-size: 1.8rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar-index {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pillar h3 {
  margin: 3.8rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}

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

.dark-section {
  background: var(--ink);
  color: var(--white);
}

.dark-section .section-intro {
  color: rgba(255, 255, 255, 0.62);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: clamp(1.5rem, 2.6vw, 2.6rem);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.event-card:last-child {
  border-right: 0;
}

.event-card[data-image]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.9)), var(--event-image) center/cover;
  opacity: 0.5;
  transition: opacity 220ms ease, transform 600ms ease;
}

.event-card[data-image]:hover::before {
  opacity: 0.75;
  transform: scale(1.03);
}

.event-card > * {
  position: relative;
  z-index: 1;
}

.event-eyebrow {
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  max-width: 12ch;
  margin: auto 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.event-card p {
  max-width: 36ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.event-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.announcement {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.announcement span {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.35rem;
}

.leadership-wrap {
  overflow: hidden;
}

.leadership-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.leadership-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.executive-directory {
  margin-bottom: 0;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: 0;
  column-count: 2;
  column-gap: clamp(3rem, 9vw, 9rem);
  column-rule: 1px solid var(--line);
  list-style: none;
}

.executive-name {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  min-height: 96px;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  break-inside: avoid;
}

.executive-name span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.executive-name strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-media {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ink);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.2,.7,.2,1), filter 240ms ease;
}

.gallery-item--contain img {
  padding: clamp(0.55rem, 1.2vw, 0.9rem);
  object-fit: contain;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.gallery-item figcaption {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  min-height: 76px;
  padding: 1.1rem 1.2rem;
  border-top: 1px solid var(--line);
  align-items: center;
}

.gallery-item figcaption span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gallery-item figcaption strong {
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.join-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
  background: var(--accent);
}

.join-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--page-pad);
}

.join-copy .section-title {
  max-width: 11ch;
}

.join-copy > p {
  max-width: 620px;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.join-side {
  display: grid;
  align-content: center;
  gap: 0;
  padding: var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.join-point {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.join-point:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.join-point span {
  color: var(--accent-soft);
  font-size: 0.75rem;
}

.join-point strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  min-height: 480px;
  padding-block: clamp(5rem, 10vw, 9rem);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 110px;
}

.form-aside h2 {
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.form-aside p {
  color: var(--muted);
}

.form-aside .text-link {
  margin-top: 1rem;
}

.contact-form,
.editor-form {
  display: grid;
  gap: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.anonymous-toggle {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.anonymous-toggle > span:first-child {
  display: grid;
  gap: 0.25rem;
}

.anonymous-toggle strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.anonymous-toggle small {
  color: var(--muted);
  font-size: 0.76rem;
}

.toggle-control {
  position: relative;
  width: 52px;
  height: 28px;
  flex: 0 0 auto;
}

.toggle-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.toggle-control span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-deep);
  transition: background 180ms ease;
}

.toggle-control span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.toggle-control input:checked + span {
  background: var(--ink);
}

.toggle-control input:checked + span::after {
  background: var(--accent-soft);
  transform: translateX(24px);
}

.toggle-control input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-bottom-color: var(--accent);
  box-shadow: 0 2px 0 var(--accent);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.88rem;
}

.form-status[data-state="success"] { color: #286a38; }
.form-status[data-state="error"] { color: #9c241f; }

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.collaboration-hero {
  background: var(--ink);
  color: var(--white);
}

.collaboration-hero-inner {
  display: grid;
  min-height: min(760px, calc(100svh - 76px));
  padding-block: clamp(5rem, 10vw, 9rem);
  align-content: center;
}

.collaboration-hero h1 {
  max-width: 12ch;
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8.4vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.collaboration-hero p {
  max-width: 58ch;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.collaboration-hero .button {
  width: fit-content;
  margin-top: 2rem;
}

.collaboration-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.collaboration-types article {
  min-height: 290px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collaboration-types article > span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.collaboration-types h3 {
  max-width: 12ch;
  margin: 4.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.collaboration-types p {
  max-width: 34ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.collaboration-form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.admin-body {
  background: #ece9e1;
}

.admin-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 2rem var(--page-pad) 6rem;
}

.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.admin-head h1 {
  margin: 0.6rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.admin-head-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dev-badge {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  background: #fff2cc;
  border: 1px solid #d6b85d;
  font-size: 0.75rem;
  font-weight: 750;
}

.admin-login-shell {
  width: min(100% - (2 * var(--page-pad)), 1120px);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: stretch;
  padding: clamp(2rem, 6vw, 6rem) 0;
}

.admin-login-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 7vw, 6rem);
  background: var(--paper);
  border: 1px solid var(--line);
}

.admin-login-card h1 {
  margin: 0.8rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.admin-login-card > p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin-top: 2rem;
}

.admin-login-form .button { width: 100%; }

.admin-login-aside {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--ink);
  color: var(--white);
}

.admin-login-aside span {
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-login-aside p { margin: 0; color: rgba(255, 255, 255, 0.72); line-height: 1.7; }
.admin-login-aside a { width: fit-content; color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.5); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.stat-card {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.stat-card:last-child { border-right: 0; }
.stat-card span { color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.stat-card strong { display: block; margin-top: 0.7rem; font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--paper-deep);
}

.admin-tab {
  padding: 0.75rem 1rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
}

.admin-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
}

.admin-panel {
  display: none;
  padding-top: 2rem;
}

.admin-panel[data-active] { display: block; }

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-toolbar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.content-list {
  display: grid;
  gap: 0.75rem;
}

.content-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.content-row h3 { margin: 0; font-size: 1rem; }
.content-row p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.82rem; }
.row-actions { display: flex; gap: 0.5rem; }
.small-button { min-height: 36px; padding: 0.5rem 0.75rem; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 0.74rem; font-weight: 750; }
.small-button:hover { background: var(--ink); color: var(--white); }
.small-button.danger { border-color: #9c241f; color: #9c241f; }
.small-button.danger:hover { background: #9c241f; color: var(--white); }

.submission-row {
  align-items: start;
}

.submission-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.status-pill {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  background: var(--paper-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.62);
}

.dialog-backdrop[data-open] { display: grid; }

.editor-dialog {
  width: min(100%, 720px);
  max-height: 90vh;
  overflow: auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dialog-head h2 { margin: 0; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 1.3rem; }

.site-footer {
  padding: var(--section-space) var(--page-pad) 2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
}

.footer-statement {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-links span {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--accent-soft); }

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 10vw, 9rem);
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  transform: scale(1.15);
}

.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
  .primary-nav { gap: 1rem; }
  .primary-nav > a:not(.nav-cta):not(.nav-collaborate) { display: none; }
  .hero { grid-template-columns: 0.9fr 1.1fr; }
  .hero-visual { min-height: 620px; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .event-card:last-child { border-right: 1px solid rgba(255, 255, 255, 0.22); }
}

@media (max-width: 780px) {
  :root { --section-space: 5rem; }
  .site-header { min-height: 68px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { max-width: 20ch; }
  .brand-copy span { display: none; }
  .menu-button { display: inline-flex; align-items: center; gap: 0.45rem; }
  .primary-nav {
    position: fixed;
    inset: 68px 0 auto;
    z-index: -1;
    display: none;
    height: calc(100dvh - 68px);
    padding: 2rem var(--page-pad);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
  }
  .site-header[data-menu-open] .primary-nav { display: flex; }
  .site-header[data-menu-open] .primary-nav > a:not(.nav-cta) { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
  .site-header[data-menu-open] .nav-cta { margin-top: 1rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 68svh; order: 2; }
  .hero-content { min-height: calc(100svh - 68px); order: 1; }
  .hero-meta { margin-top: 3rem; }
  .about-grid,
  .leadership-header,
  .page-hero,
  .form-layout,
  .collaboration-form-layout,
  .join-panel,
  .footer-top { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
  .pillar h3 { margin-top: 2.2rem; }
  .section-heading-row { align-items: start; flex-direction: column; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 390px; border-right: 0 !important; }
  .announcement { grid-template-columns: 1fr; gap: 0.8rem; }
  .executive-directory { column-count: 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .collaboration-types { grid-template-columns: 1fr; }
  .collaboration-types article { min-height: auto; }
  .collaboration-types h3 { margin-top: 2.5rem; }
  .join-side { min-height: 480px; }
  .form-aside { position: static; }
  .admin-head { align-items: start; flex-direction: column; }
  .admin-head-actions { width: 100%; justify-content: space-between; }
  .admin-stats { grid-template-columns: 1fr; }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-card:last-child { border-bottom: 0; }
  .admin-login-shell { grid-template-columns: 1fr; }
  .admin-login-aside { min-height: 260px; }
  .footer-links { margin-top: 2rem; }
}

@media (max-width: 520px) {
  .brand-copy strong { font-size: 0.72rem; }
  .display-title { font-size: clamp(3.05rem, 16vw, 4.2rem); }
  .hero-actions,
  .join-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .join-actions .button { width: 100%; }
  .hero-caption { align-items: start; flex-direction: column; }
  .hero-meta { gap: 1rem; flex-direction: column; }
  .executive-name { min-height: 82px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .content-row { grid-template-columns: 1fr; }
  .row-actions { justify-content: flex-start; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

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