/* ============================================================
   christianhouck.com — main stylesheet
   ------------------------------------------------------------
   Section map (find the labeled section comment to jump):
       Top bar
       Hero
       Section base
       About
       Leadership timeline
       Capitol Hill / Experience
       Academics + Athletics
       Origin story (gutter + flyer)
       Press
       Contact
       Footer
       Reveal animations

   Color quick reference:
       Goucher Blue        #336699   (--accent)
       Deepened Navy       #1F4571   (--navy)
       Tempered Gold       #D4B43E   (--gold)
       Full Goucher Gold   #FFDD00   (--gold-bright, used sparingly)
       Athletics Gray      #BBB0A6   (--ath-gray)
   ============================================================ */

:root {
  /* Core */
  --navy: #1F4571;          /* Deepened Goucher Blue — primary dark for prose, hero, contact */
  --navy-soft: #2C5587;     /* Lighter shade for soft surfaces */
  --cream: #F5F0E8;
  --cream-warm: #EDE5D7;
  --paper: #FAF7F1;
  --ink: #1A1A1A;

  /* Goucher accent palette */
  --accent: #336699;        /* Goucher Blue — used as the "pop" color (italic emphasis, eyebrows, hover) */
  --accent-soft: #4878AD;
  --gold: #D4B43E;          /* Tempered Goucher Gold — refined, warm, recognizable */
  --gold-bright: #FFDD00;   /* Full-saturation Goucher Gold — reserved for one or two moments */
  --ath-gray: #BBB0A6;      /* Goucher athletics gray — quiet third accent */

  /* Legacy aliases — keep so any straggling reference still resolves */
  --oxblood: var(--accent);
  --oxblood-soft: var(--accent-soft);

  --rule: rgba(31, 69, 113, 0.16);
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Offset for sticky topbar when jumping to anchors */
section[id], main[id] {
  scroll-margin-top: 80px;
}
@media (max-width: 720px) {
  section[id], main[id] { scroll-margin-top: 110px; }
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }

::selection { background: var(--navy); color: var(--cream); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  line-height: 1;
}
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand-first {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.brand-last {
  font-weight: 500;
  color: var(--navy);
}
.brand-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-1px);
  transition: background 0.2s ease, transform 0.3s ease;
}
.brand:hover .brand-dot {
  background: var(--gold-bright);
  transform: translateY(-1px) scale(1.3);
}
.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav a {
  color: var(--navy);
  opacity: 0.7;
  position: relative;
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }

@media (max-width: 720px) {
  .topbar-inner {
    padding: 14px 20px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .brand-wordmark { font-size: 17px; gap: 7px; }
  .brand-dot { width: 4px; height: 4px; }
  .nav {
    flex: 1;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    justify-content: flex-end;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}

/* Background image fills the entire hero section */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: contrast(1.08) saturate(0.85) brightness(0.85);
}

/* Overlay: lighter on the left (where the watermark sits and the image breathes),
   deeper on the right (where the content sits) for legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(15, 36, 62, 0.35) 0%,
    rgba(15, 36, 62, 0.55) 45%,
    rgba(15, 36, 62, 0.92) 100%
  );
  pointer-events: none;
}

/* Giant C watermark, anchored to the left half */
.hero-watermark {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(360px, 48vw, 640px);
  line-height: 0.78;
  color: var(--gold);
  opacity: 0.12;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* 50/50 grid: empty spacer left, content right */
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.hero-spacer { display: block; }

.hero-content {
  display: flex;
  flex-direction: column;
  padding: 64px clamp(32px, 5vw, 72px) 64px clamp(24px, 3vw, 48px);
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Name on one line — sized to fit comfortably in the right column */
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.22);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero-subtitle em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.92);
  max-width: 520px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* CTA buttons — matching the Contact section style */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  padding: 14px 26px;
  border: 1px solid rgba(245, 240, 232, 0.35);
  transition: all 0.2s ease;
}
.hero-cta-btn:hover,
.hero-cta-btn:focus-visible {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  outline: none;
}

@media (max-width: 920px) {
  .hero {
    height: auto;
    min-height: 80vh;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-spacer { display: none; }
  .hero-content {
    padding: 100px 28px 72px;
    max-width: 100%;
  }
  .hero-watermark {
    font-size: clamp(280px, 70vw, 480px);
    left: auto;
    right: -10%;
    top: 18%;
    transform: none;
    opacity: 0.08;
  }
  .hero-title { font-size: clamp(40px, 9vw, 64px); }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 36, 62, 0.4) 0%,
      rgba(15, 36, 62, 0.82) 100%
    );
  }
}

@media (max-width: 560px) {
  .hero-content { padding: 80px 22px 60px; }
  .hero-title { font-size: clamp(36px, 11vw, 56px); white-space: normal; }
  .hero-lede { font-size: 15px; }
  .hero-cta { gap: 10px; }
  .hero-cta-btn { padding: 12px 20px; font-size: 11px; }
}

/* ---------- Section base ---------- */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 32px;
}
.section-tight { padding: 80px 32px; }

/* ---------- Maryland heraldry ribbon (section divider) ---------- */
.md-ribbon {
  display: block;
  width: 100%;
  height: 18px;
  background-image: url('../../images/maryland-ribbon.svg?v=20260511e');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 -1px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 720px) {
  .md-ribbon { height: 14px; }
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '§';
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
}
.section-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 900px;
}
.section-heading em {
  font-style: italic;
  color: var(--oxblood);
}

@media (max-width: 720px) {
  .section { padding: 80px 24px; }
}

/* ---------- About ---------- */
.about {
  background: var(--paper);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-side {
  position: sticky;
  top: 100px;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 2px;
  max-width: 360px;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.about-pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy);
  padding: 20px 0 0;
  border-top: 2px solid var(--navy);
}
.about-pullquote-attr {
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-top: 12px;
  font-weight: 500;
}
.about-body {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 300;
}
.about-body p {
  margin-bottom: 24px;
}
.about-body p:first-of-type::first-letter {
  font-size: 64px;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--oxblood);
  font-family: var(--serif);
}
.about-body strong {
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-side { position: static; max-width: 360px; }
  .about-body { font-size: 18px; }
}

/* ---------- Leadership timeline ---------- */
.leadership {
  background: var(--cream);
  position: relative;
}
.leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10, 22, 40, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.leadership .section { position: relative; }

.timeline {
  margin-top: 60px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 144px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--rule);
}
.timeline-row {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 48px;
  padding: 28px 0;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-row::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 38px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--accent);
}
.timeline-row.current::before {
  background: var(--gold-bright);
  box-shadow: 0 0 0 1px var(--gold-bright), 0 0 0 6px rgba(255, 221, 0, 0.22);
}
.timeline-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  padding-top: 4px;
  white-space: nowrap;
}
.timeline-content { padding-left: 48px; }
.timeline-role {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.timeline-org {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 600;
  margin-bottom: 14px;
}
.timeline-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 700px;
}
.timeline-desc strong {
  color: var(--navy);
  font-weight: 600;
}

.wins {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.win {
  background: var(--paper);
  padding: 36px 32px;
  border-left: 3px solid var(--oxblood);
}
.win-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 600;
  margin-bottom: 14px;
}
.win-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.win-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

@media (max-width: 720px) {
  .timeline::before { left: 6px; }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 28px;
  }
  .timeline-row::before { left: 2px; top: 32px; }
  .timeline-content { padding-left: 0; }
  .timeline-role { font-size: 22px; }
  .wins { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Capitol Hill / Experience ---------- */
.capitol {
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(15, 36, 62, 0.92) 0%, rgba(20, 46, 77, 0.88) 100%),
    url('../../images/Maryland_Flag.jpg?v=20260511e');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.capitol .section { padding: 110px 32px; position: relative; z-index: 1; }
.capitol .section-eyebrow { color: var(--gold); }
.capitol .section-eyebrow::before { color: var(--gold); }
.capitol .section-heading { color: var(--cream); }
.capitol .section-heading em { color: var(--gold); }

.capitol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.capitol-image {
  border: 1px solid rgba(212, 180, 62, 0.32);
  position: relative;
}
.capitol-image img {
  width: 100%;
  height: auto;
  display: block;
}
.capitol-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.capitol-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.capitol-meta {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.capitol-list {
  list-style: none;
  padding: 0;
}
.capitol-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  display: flex;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
}
.capitol-list li:last-child { border-bottom: none; }
.capitol-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 400;
}

@media (max-width: 920px) {
  .capitol-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Academics + Athletics two-up ---------- */
.dual {
  background: var(--paper);
}
.dual-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.dual-card {
  background: var(--paper);
  padding: 56px 48px;
  position: relative;
}
.dual-card.dual-athletics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ath-gray);
}
.dual-card.dual-athletics .dual-eyebrow { color: var(--ath-gray); }
.dual-card.dual-athletics .deans {
  border-left-color: var(--ath-gray);
  background: rgba(187, 176, 166, 0.10);
}
.dual-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.dual-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
}
.dual-list {
  list-style: none;
  padding: 0;
}
.dual-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  gap: 16px;
}
.dual-list li:last-child { border-bottom: none; }
.dual-list-key {
  color: var(--ink);
  font-weight: 500;
}
.dual-list-val {
  font-family: var(--serif);
  font-style: italic;
  color: var(--oxblood);
  text-align: right;
  flex-shrink: 0;
}

.deans {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.5;
}
.deans strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

@media (max-width: 920px) {
  .dual-grid { grid-template-columns: 1fr; }
  .dual-card { padding: 40px 28px; }
}

/* ---------- Origin story (gutter letters + flyer) ---------- */
.origin {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.origin::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-image: url('../../images/Maryland_Corner_ribbon.png?v=20260511e');*/
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}
.origin .section { padding: 130px 32px; max-width: 1280px; position: relative; z-index: 1; }
@media (max-width: 720px) {
  .origin::before { width: 240px; height: 180px; opacity: 0.25; }
}

.origin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.origin-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 0;
}

.origin-main .section-eyebrow { color: var(--oxblood); }
.origin-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.origin-headline em {
  font-style: italic;
  color: var(--oxblood);
}
.origin-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 720px;
}
.origin-body p { margin-bottom: 18px; }
.origin-body p:last-child { margin-bottom: 0; }
.origin-body strong {
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
}
.origin-kicker {
  font-style: italic;
  font-weight: 500;
  color: var(--oxblood);
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.01em;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 45, 45, 0.18);
  margin-top: 6px !important;
}

.origin-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 16px;
}
.origin-then, .origin-now {
  position: relative;
  background: var(--paper);
  padding: 14px 14px 50px;
  box-shadow: 0 18px 40px -12px rgba(10, 22, 40, 0.25);
  margin: 0;
}
.origin-then {
  width: 78%;
  align-self: flex-start;
  transform: rotate(-3deg);
  margin-bottom: -36px;
  z-index: 1;
}
.origin-now {
  width: 62%;
  align-self: flex-end;
  transform: rotate(2.5deg);
  z-index: 2;
}
.origin-then img, .origin-now img {
  width: 100%;
  height: auto;
  display: block;
}
.origin-stamp {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
}
.origin-stamp .num {
  color: var(--oxblood);
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 920px) {
  .origin .section { padding: 90px 24px; }
  .origin-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .origin-main { gap: 24px; }
  .origin-images { padding-top: 0; max-width: 540px; margin: 0 auto; }
}

/* ---------- Press ---------- */
.press {
  background: var(--cream-warm);
}
.press .section { padding: 110px 32px; }

.press-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.press-heading-center + .press-grid { margin-top: 64px; }
.press .section-eyebrow {
  justify-content: center;
}

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

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  min-height: 360px;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease;
  box-shadow: 0 1px 0 var(--rule);
  overflow: hidden;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(31, 69, 113, 0.28);
}

/* Source "logo" area at top of card */
.press-card-source {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 28px 28px;
  min-height: 140px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.press-source-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.press-source-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ath-gray);
  font-weight: 500;
  margin-top: 10px;
}

/* Stanford — italic serif lockup */
.press-source-stanford .press-source-mark {
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  color: #8C1515; /* Stanford cardinal — typographic respect, not a logo lift */
}

/* Quindecim — student-paper feel: heavier serif with a small underline rule */
.press-source-quindecim .press-source-mark {
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.press-source-quindecim .press-source-mark::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 36px;
  height: 1px;
  background: var(--accent);
  transform: translateX(-50%);
}

/* Goucher — institutional: bold serif with the school's blue */
.press-source-goucher .press-source-mark {
  color: var(--accent);
  font-weight: 600;
}

/* Card body */
.press-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  gap: 24px;
}
.press-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}
.press-card-cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.press-card:hover .press-card-cta { gap: 12px; }

@media (max-width: 920px) {
  .press-grid { grid-template-columns: 1fr; gap: 20px; }
  .press-card { min-height: 0; }
  .press-card-source { min-height: 120px; padding: 28px 24px 22px; }
  .press-card-title { font-size: 20px; }
}

/* ---------- Contact ---------- */
.contact {
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(15, 36, 62, 0.93) 0%, rgba(20, 46, 77, 0.96) 100%),
    url('../../images/Maryland_Corner_ribbon.png?v=20260511e');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--cream);
  position: relative;
}
.contact .section {
  padding: 130px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.contact-heading em {
  font-style: italic;
  color: var(--gold);
}
.contact-sub {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.75);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 56px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-email:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  padding: 14px 26px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  transition: all 0.2s ease;
}
.contact-link:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(245, 240, 232, 0.5);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer em {
  font-family: var(--serif);
  font-style: italic;
}

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-eyebrow, .hero-lockup, .hero-subtitle, .hero-lede, .hero-meta {
    animation: heroIn 1s cubic-bezier(.2,.7,.3,1) both;
  }
  .hero-lockup { animation-delay: 0.1s; }
  .hero-subtitle { animation-delay: 0.25s; }
  .hero-lede { animation-delay: 0.4s; }
  .hero-meta { animation-delay: 0.55s; }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}