:root{
  --ink: #26161a;
  --ink-soft: #5c4844;
  --oxblood: #7a1230;
  --oxblood-deep: #2c0712;
  --oxblood-deeper: #1c0209;
  --brass: #a97c3f;
  --brass-light: #dcb877;
  --parchment: #f7f0e2;
  --parchment-dim: #ece0c7;
  --parchment-line: #ddccab;
  --on-dark: #f3e6d3;
  --on-dark-soft: #cfae83;
  --shadow: 0 14px 30px -14px rgba(44,7,18,0.35);
  --shadow-sm: 0 6px 14px -8px rgba(44,7,18,0.3);
  --header-h: 76px;
}
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }
body{
  margin: 0;
  padding-top: var(--header-h);
  background: var(--parchment);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{ font-family: "Fraunces", Georgia, serif; margin: 0; font-weight: 560; text-wrap: balance; }
p{ margin: 0; }
ul{ margin: 0; padding: 0; list-style: none; }
img{ max-width: 100%; display: block; }
a{ color: inherit; }

.label{ font-family: "Archivo", sans-serif; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.eyebrow{ color: var(--brass); }
.eyebrow.on-dark{ color: var(--on-dark-soft); }

.wrap{ max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.wrap-narrow{ max-width: 880px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* ---- progress bar ---- */
#progress{ position: fixed; left: 0; top: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--brass), var(--oxblood)); z-index: 100; transition: width 0.1s linear; }

/* ---- reveal-on-scroll ---- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ================= SITE HEADER / NAV ================= */
.site-header{ position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 90; background: rgba(247,240,226,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--parchment-line); }
.header-inner{ height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand{ display: flex; align-items: center; flex: none; }
.brand img{ height: calc(var(--header-h) - 24px); width: auto; max-width: 220px; object-fit: contain; }
.site-nav ul{ display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }
.site-nav a{ font-family: "Archivo", sans-serif; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); text-decoration: none; position: relative; padding-bottom: 4px; transition: color 0.25s ease; }
.site-nav a::after{ content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--brass); transition: right 0.25s ease; }
.site-nav a:hover{ color: var(--oxblood); }
.site-nav a:hover::after{ right: 0; }
.site-nav a.active{ color: var(--oxblood); }
.site-nav a.active::after{ right: 0; }
.nav-toggle{ display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0; flex: none; }
.nav-toggle span{ display: block; height: 2px; width: 100%; background: var(--oxblood); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px){
  .nav-toggle{ display: flex; }
  .site-nav{ position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--parchment); border-bottom: 1px solid var(--parchment-line); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: var(--shadow); }
  .site-nav.open{ max-height: 420px; }
  .site-nav ul{ flex-direction: column; align-items: flex-start; padding: 8px clamp(20px, 5vw, 64px) 20px; gap: 0; }
  .site-nav li{ width: 100%; border-bottom: 1px solid var(--parchment-line); }
  .site-nav a{ display: block; padding: 14px 0; }
}

/* ================= HERO ================= */
.hero{ min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 8vh 20px; }
.hero::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 8%, rgba(169,124,63,0.16), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(122,18,48,0.10), transparent 65%);
  pointer-events: none;
}
.hero-portrait{ position: relative; z-index: 1; width: clamp(140px, 20vw, 210px); margin-bottom: 1.4rem; display: flex; align-items: center; justify-content: center; }
.hero-portrait::before{ content:""; position: absolute; width: 88%; height: 88%; border-radius: 50%; background: radial-gradient(circle, var(--parchment-dim) 0%, rgba(236,224,199,0) 70%); z-index: -1; }
.hero-portrait img{ width: 100%; filter: drop-shadow(0 16px 18px rgba(44,7,18,0.28)); }
.hero-eyebrow{ position: relative; z-index: 1; margin-bottom: 1.2rem; }
.hero h1{ position: relative; z-index: 1; font-size: clamp(2.4rem, 6.4vw, 5.2rem); line-height: 1.04; color: var(--oxblood); max-width: 16ch; }
.hero h1 em{ font-style: italic; font-weight: 440; color: var(--ink); }
.hero .sub{ position: relative; z-index: 1; margin-top: 1.6rem; font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-style: italic; color: var(--ink-soft); max-width: 46ch; }
.hero .tagline{ position: relative; z-index: 1; margin-top: 2.6rem; }
.scroll-cue{ position: relative; z-index: 1; margin-top: 4.5rem; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--brass); opacity: 0.75; }
.scroll-cue .line{ width: 1px; height: 42px; background: linear-gradient(var(--brass), transparent); animation: pulse-line 2.4s ease-in-out infinite; }
@keyframes pulse-line{ 0%,100%{ opacity:.35; } 50%{ opacity:1; } }
@media (prefers-reduced-motion: reduce){ .scroll-cue .line{ animation:none; } }

/* ---- inner-page banner ---- */
.page-hero{ position: relative; padding: clamp(56px, 10vw, 96px) 20px clamp(44px, 7vw, 64px); text-align: center; overflow: hidden; background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--oxblood-deep), var(--oxblood-deeper)); color: var(--on-dark); }
.page-hero .label{ position: relative; z-index: 1; }
.page-hero h1{ position: relative; z-index: 1; margin-top: 0.6rem; font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--on-dark); }
.page-hero p{ position: relative; z-index: 1; margin-top: 1rem; font-size: 1.03rem; color: var(--on-dark-soft); max-width: 58ch; margin-left: auto; margin-right: auto; }
.breadcrumb{ position: relative; z-index: 1; margin-top: 1.3rem; font-family: "Archivo", sans-serif; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--on-dark-soft); }
.breadcrumb a{ color: var(--brass-light); text-decoration: none; }
.breadcrumb a:hover{ text-decoration: underline; }

/* ================= SECTION SHELL ================= */
section{ position: relative; }
.band{ padding: clamp(56px, 10vw, 120px) 0; }
.band-head{ margin-bottom: clamp(32px, 6vw, 56px); }
.band-head h2{ font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--oxblood); margin-top: 0.5rem; }
.band-head h2.on-dark{ color: var(--on-dark); }
.band-head .lede{ margin-top: 1rem; font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.band-head .lede.on-dark{ color: var(--on-dark-soft); }
.rule{ width: 46px; height: 2px; background: var(--brass); border: none; margin: 0; }

/* ================= TEACHER ================= */
.teacher{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.teacher-photo{ position: relative; display: flex; align-items: flex-end; justify-content: center; aspect-ratio: 4 / 5; border-radius: 10px; overflow: hidden; background: radial-gradient(ellipse 90% 70% at 50% 15%, var(--oxblood) 0%, var(--oxblood-deep) 60%, var(--oxblood-deeper) 100%); box-shadow: var(--shadow); }
.teacher-photo::before{ content:""; position: absolute; inset: 10px; border: 1px solid rgba(220,184,119,0.35); border-radius: 6px; pointer-events: none; }
.teacher-photo img{ position: relative; width: 88%; top: 8%; filter: drop-shadow(0 14px 18px rgba(0,0,0,0.4)); }
.pull-quote{ font-family: "Fraunces", serif; font-style: italic; font-weight: 440; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.35; color: var(--oxblood); }
.pull-quote .mark{ display:block; font-size: 3rem; color: var(--brass); line-height: 0.6; margin-bottom: 0.6rem; font-style: normal; }
.teacher-attr{ margin-top: 1.4rem; font-family: "Archivo", sans-serif; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink-soft); }
.teacher-body{ margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.9rem; }
.teacher-body p{ font-size: 1rem; color: var(--ink); }
.teacher-body b{ color: var(--oxblood); font-weight: 600; }
@media (max-width: 760px){ .teacher{ grid-template-columns: 1fr; } .teacher-photo{ max-width: 320px; margin: 0 auto; } }

/* ================= ROOT / MVM ================= */
.root-stats{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--parchment-line); border: 1px solid var(--parchment-line); margin: 2.6rem 0; box-shadow: var(--shadow); }
.stat-cell{ background: var(--parchment); padding: 1.6rem 1.2rem; text-align: center; }
.stat-cell .num{ font-family: "Fraunces", serif; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--oxblood); font-weight: 650; font-variant-numeric: tabular-nums; }
.stat-cell .lbl{ margin-top: 0.35rem; font-family: "Archivo", sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.root-grid{ display: grid; grid-template-columns: 0.95fr 1.15fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.root-grid p{ color: var(--ink); font-size: 1.02rem; margin-bottom: 1rem; }
.root-photo{ border-radius: 8px; overflow: hidden; border: 1px solid var(--parchment-line); box-shadow: var(--shadow); }
.root-photo img{ width: 100%; height: 340px; object-fit: cover; }
@media (max-width: 760px){ .root-grid{ grid-template-columns: 1fr; } .root-stats{ grid-template-columns: repeat(2,1fr); } }

/* ---- circular photo collage ---- */
.mvm-collage{ position: relative; width: 100%; aspect-ratio: 16 / 7.4; margin-top: clamp(40px, 6vw, 72px); }
.cbubble{ position: absolute; display: block; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 6px solid var(--parchment-dim); box-shadow: var(--shadow); }
.cbubble img{ width: 100%; height: 100%; object-fit: cover; }
.b1{ left: 0%;    top: 2%;   width: 37%; }
.b2{ left: 28%;   top: 30%;  width: 34%; }
.b3{ left: 56%;   top: -3%;  width: 35%; }
.b4{ left: 4%;    top: 46%;  width: 34%; }
.b5{ left: 61%;   top: 42%;  width: 37%; }
@media (max-width: 700px){
  .mvm-collage{ aspect-ratio: auto; height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: static; }
  .cbubble{ position: static; width: 100%; aspect-ratio: 1; }
  .b1{ grid-column: span 2; }
}

/* ================= TIMELINE ================= */
.timeline-wrap{ position: relative; max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.thread{ position: absolute; left: 50%; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--parchment-line), var(--brass) 8%, var(--brass) 92%, var(--parchment-line)); transform: translateX(-50%); }
.station{ position: relative; width: calc(50% - 42px); margin-bottom: clamp(40px, 6vw, 72px); }
.station:nth-child(odd){ margin-right: calc(50% + 42px); text-align: right; }
.station:nth-child(even){ margin-left: calc(50% + 42px); text-align: left; }
.station .dot{ position: absolute; top: 8px; width: 13px; height: 13px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 5px var(--parchment); }
.station:nth-child(odd) .dot{ right: -35px; }
.station:nth-child(even) .dot{ left: -35px; }
.station .year{ font-family: "Fraunces", serif; font-weight: 650; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--brass); line-height: 1; }
.station h3{ margin-top: 0.4rem; font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--oxblood); }
.station .status{ display: inline-block; margin-top: 0.5rem; font-family: "Archivo", sans-serif; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--oxblood); background: var(--parchment-dim); border: 1px solid var(--parchment-line); padding: 3px 10px; border-radius: 3px; }
.station p{ margin-top: 0.7rem; font-size: 0.95rem; color: var(--ink-soft); }
.station .view-link{ display: inline-block; margin-top: 0.9rem; font-family: "Archivo", sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--oxblood); text-decoration: none; border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.station .view-link:hover{ color: var(--brass); }
.station-media{ margin-bottom: 1rem; display: flex; }
.station:nth-child(odd) .station-media{ justify-content: flex-end; }
.station:nth-child(even) .station-media{ justify-content: flex-start; }
.station-media img{ width: 100%; max-width: 340px; height: 190px; object-fit: cover; border-radius: 6px; border: 1px solid var(--parchment-line); box-shadow: var(--shadow); }
.timeline-collage{ position: relative; width: 100%; max-width: 980px; aspect-ratio: 16 / 8.6; margin: clamp(48px, 7vw, 84px) auto 0; }
.tbubble{ position: absolute; display: block; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 6px solid var(--parchment-dim); box-shadow: var(--shadow); }
.tbubble img{ width: 100%; height: 100%; object-fit: cover; }
.tbubble.c1{ left: 0%;    top: 0%;  width: 24%; }
.tbubble.c2{ left: 25.3%; top: 2%;  width: 24%; }
.tbubble.c3{ left: 50.6%; top: 0%;  width: 24%; }
.tbubble.c4{ left: 75.7%; top: 2%;  width: 23.5%; }
.tbubble.c5{ left: 6%;    top: 40%; width: 24%; }
.tbubble.c6{ left: 38%;   top: 38%; width: 24%; }
.tbubble.c7{ left: 70%;   top: 40%; width: 24%; }
@media (max-width: 700px){
  .timeline-collage{ aspect-ratio: auto; height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: static; }
  .tbubble{ position: static; width: 100%; }
}

@media (max-width: 720px){
  .thread{ left: 14px; }
  .station, .station:nth-child(odd), .station:nth-child(even){ width: 100%; margin-left: 42px; margin-right: 0; text-align: left; padding-left: 4px; }
  .station:nth-child(odd) .dot, .station:nth-child(even) .dot{ left: -34px; right: auto; }
  .station:nth-child(odd) .station-media, .station:nth-child(even) .station-media{ justify-content: flex-start; }
}

/* ================= UNIVERSITY GRID ================= */
.uni-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.uni-card{ background: var(--parchment); border: 1px solid var(--parchment-line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.uni-card:hover{ box-shadow: var(--shadow); transform: translateY(-3px); }
.uni-card .uni-media{ width: 100%; height: 190px; overflow: hidden; }
.uni-card .uni-media img{ width: 100%; height: 100%; object-fit: cover; }
.uni-card-body{ padding: 1.5rem 1.4rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.uni-card .year{ font-family: "Fraunces", serif; font-weight: 650; font-size: 1.35rem; color: var(--brass); line-height: 1; }
.uni-card h3{ margin-top: 0.5rem; font-size: 1.12rem; color: var(--oxblood); }
.uni-card .status{ display: inline-block; margin-top: 0.6rem; font-family: "Archivo", sans-serif; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--oxblood); background: var(--parchment-dim); border: 1px solid var(--parchment-line); padding: 3px 10px; border-radius: 3px; align-self: flex-start; }
.uni-card p{ margin-top: 0.8rem; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.uni-card .view-more{ margin-top: 1.3rem; display: inline-block; text-align: center; font-family: "Archivo", sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--parchment); background: var(--oxblood); padding: 0.75rem 1rem; border-radius: 4px; text-decoration: none; transition: background 0.25s ease; }
.uni-card .view-more:hover{ background: var(--oxblood-deep); }
@media (max-width: 960px){ .uni-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .uni-grid{ grid-template-columns: 1fr; } }

/* ================= EVIDENCE (dark band) ================= */
.evidence{ background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--oxblood-deep), var(--oxblood-deeper)); color: var(--on-dark); }
.evidence-stats{ display: flex; gap: clamp(28px, 6vw, 72px); flex-wrap: wrap; margin: 2rem 0 3rem; }
.evidence-stats .num{ font-family: "Fraunces", serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 650; color: var(--brass-light); line-height: 1; }
.evidence-stats .lbl{ margin-top: 0.4rem; font-family: "Archivo", sans-serif; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-soft); max-width: 22ch; }

.coherence{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.4vw, 28px); margin-top: 1rem; }
.coherence-step{ border: 1px solid rgba(220,184,119,0.28); border-radius: 4px; padding: 1.4rem 1.3rem; position: relative; box-shadow: 0 10px 22px -12px rgba(0,0,0,0.4); }
.coherence-step .n{ font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--brass-light); font-weight: 650; }
.coherence-step h4{ margin-top: 0.5rem; font-size: 1rem; color: var(--on-dark); font-family: "Archivo", sans-serif; letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.82rem; font-weight: 600; }
.coherence-step p{ margin-top: 0.5rem; font-size: 0.88rem; color: var(--on-dark-soft); line-height: 1.45; }
.coherence-arrow{ display:none; }
@media (min-width: 640px){
  .coherence{ align-items: stretch; }
}
@media (max-width: 640px){ .coherence{ grid-template-columns: 1fr; } }

.evidence-footnote{ margin-top: 2.2rem; font-style: italic; color: var(--on-dark-soft); font-size: 0.92rem; border-top: 1px solid rgba(220,184,119,0.22); padding-top: 1.2rem; max-width: 70ch; }

.applied{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,32px); margin-top: clamp(40px,6vw,64px); }
.applied-card{ background: rgba(247,240,226,0.04); border: 1px solid rgba(220,184,119,0.22); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.applied-card img{ width: 100%; height: 190px; object-fit: cover; }
.applied-card img.contain{ object-fit: contain; background: rgb(253,253,253); padding: 18px; }
.applied-card-body{ padding: 1.4rem 1.5rem 1.7rem; }
.applied-card .tag{ font-family: "Archivo", sans-serif; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-light); }
.applied-card h4{ margin-top: 0.5rem; font-size: 1.2rem; color: var(--on-dark); font-family: "Fraunces", serif; font-weight: 560; }
.applied-card ul{ margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.55rem; }
.applied-card li{ font-size: 0.88rem; color: var(--on-dark-soft); line-height: 1.4; display: flex; gap: 0.5rem; }
.applied-card li::before{ content:""; flex:none; width:5px; height:5px; border-radius:50%; background: var(--brass-light); margin-top: 0.5rem; }
.applied-card b{ color: var(--on-dark); }
@media (max-width: 700px){ .applied{ grid-template-columns: 1fr; } }

/* ================= ECOSYSTEM (closing) ================= */
.synthesis{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--parchment-line); border: 1px solid var(--parchment-line); box-shadow: var(--shadow); }
.synth-card{ background: var(--parchment); padding: 1.8rem 1.5rem; }
.synth-card .idx{ font-family: "Fraunces", serif; color: var(--brass); font-size: 0.85rem; font-weight: 650; }
.synth-card h4{ margin-top: 0.6rem; font-size: 1.05rem; color: var(--oxblood); font-family: "Fraunces", serif; font-weight: 560; }
.synth-card p{ margin-top: 0.6rem; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.4; }
.synth-card .more{ display: inline-block; margin-top: 0.9rem; font-family: "Archivo", sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--oxblood); text-decoration: none; border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.synth-card .more:hover{ color: var(--brass); }
@media (max-width: 860px){ .synthesis{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .synthesis{ grid-template-columns: 1fr; } }

.closing{ text-align: center; padding: clamp(60px,10vw,120px) 20px; }
.closing .mark{ width: 46px; height: 46px; margin: 0 auto 1.6rem; }
.closing h2{ font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--oxblood); max-width: 22ch; margin: 0 auto; font-style: italic; font-weight: 440; }
.closing .final-tag{ margin-top: 1.4rem; }

footer{ text-align: center; padding: 2.4rem 20px 3rem; font-family: "Archivo", sans-serif; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--ink-soft); border-top: 1px solid var(--parchment-line); }

/* ================= GOVERNING BODY ================= */
.board-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.board-card{ background: var(--parchment); border: 1px solid var(--parchment-line); border-radius: 8px; padding: 1.8rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm); }
.board-avatar{ width: 76px; height: 76px; margin: 0 auto 1rem; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--brass-light), var(--brass) 65%); display: flex; align-items: center; justify-content: center; font-family: "Fraunces", serif; font-weight: 650; font-size: 1.5rem; color: var(--oxblood-deeper); }
.board-card h4{ font-size: 1.05rem; color: var(--oxblood); }
.board-card .role{ margin-top: 0.3rem; font-family: "Archivo", sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); }
.board-card p{ margin-top: 0.8rem; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 860px){ .board-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .board-grid{ grid-template-columns: 1fr; } }

/* ================= CONTACT ================= */
.contact-grid{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info{ display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item .label{ display: block; margin-bottom: 0.4rem; }
.contact-item p, .contact-item a{ font-size: 1rem; color: var(--ink); text-decoration: none; }
.contact-item a:hover{ color: var(--oxblood); }
.contact-form{ display: flex; flex-direction: column; gap: 1rem; background: var(--parchment-dim); border: 1px solid var(--parchment-line); border-radius: 8px; padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.contact-form label{ font-family: "Archivo", sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 0.4rem; }
.contact-form input, .contact-form textarea{ width: 100%; font-family: "Source Serif 4", Georgia, serif; font-size: 0.98rem; padding: 0.7rem 0.85rem; border: 1px solid var(--parchment-line); border-radius: 5px; background: var(--parchment); color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus{ outline: 2px solid var(--brass); outline-offset: 1px; }
.contact-form textarea{ min-height: 130px; resize: vertical; }
.contact-form button{ align-self: flex-start; font-family: "Archivo", sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--parchment); background: var(--oxblood); border: none; padding: 0.85rem 1.8rem; border-radius: 4px; cursor: pointer; transition: background 0.25s ease; }
.contact-form button:hover{ background: var(--oxblood-deep); }
.contact-form .note{ font-size: 0.78rem; color: var(--ink-soft); font-style: italic; }
@media (max-width: 760px){ .contact-grid{ grid-template-columns: 1fr; } }
