:root {
  --ink: #241619;
  --muted: #746568;
  --paper: #f8f3ec;
  --cream: #fffaf4;
  --wine: #7a1234;
  --wine-dark: #260811;
  --gold: #cfa45e;
  --line: rgba(71, 39, 47, .16);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.keyword {
  color: var(--wine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(207, 164, 94, .65);
  text-decoration-thickness: 1px;
  text-underline-offset: .17em;
}
.hero h1 .keyword,
.section-heading h2 .keyword,
.article-heading h2 .keyword { font-weight: inherit; text-decoration: none; }
.context-link { color: var(--wine); border-bottom: 1px solid var(--gold); }
.context-link .keyword { text-decoration: none; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 72px;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 250, 244, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(48, 14, 25, .05); }
.site-header nav { display: flex; align-items: center; gap: clamp(1rem, 3.5vw, 3rem); }
.site-header nav a {
  padding: .35rem 0;
  color: #553e43;
  border-bottom: 1px solid transparent;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-header nav a:hover { color: var(--wine); border-color: var(--gold); }

.hero {
  min-height: min(78vh, 800px);
  padding: clamp(5rem, 10vw, 8.5rem) 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
}
.hero-copy { width: 100%; max-width: 1080px; }
.eyebrow {
  margin: 0 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--wine);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.3vw, 7.6rem);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.045em;
}
.hero h1 em { display: block; margin-top: .2em; color: var(--ink); font-weight: 500; }
.hero h1 em .keyword { color: var(--ink); }
.hero-lead { max-width: 760px; margin: 2.1rem auto 0; color: var(--muted); font-size: clamp(.9rem, 1.1vw, 1rem); }
.hero-actions { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.primary-link {
  min-height: 49px;
  padding: .82rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: var(--cream);
  background: var(--wine);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.primary-link span { font-size: .95rem; }
.plain-link { color: var(--wine); border-bottom: 1px solid var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.profiles,
.landing-article { padding: clamp(5.5rem, 10vw, 9rem) clamp(1.2rem, 7vw, 9rem); }
.profiles { background: var(--cream); border-top: 1px solid var(--line); }
.section-heading { max-width: 900px; margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.section-heading > p,
.meeting-heading > p,
.article-heading > p,
.closing > p { margin: 0 0 1rem; color: var(--wine); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-heading h2,
.meeting-heading h2,
.article-heading h2,
.closing h2 { margin: 0; font-family: var(--display); font-size: clamp(3.1rem, 5.3vw, 5.8rem); font-weight: 600; line-height: .92; letter-spacing: -.035em; }
.section-heading > span { display: block; max-width: 700px; margin-top: 1.4rem; color: var(--muted); }

.profile-directory { border-top: 1px solid var(--line); }
.profile-entry {
  padding: clamp(2.3rem, 4vw, 3.7rem) 0;
  display: grid;
  grid-template-columns: minmax(190px, .58fr) minmax(0, 1.35fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.2rem);
  border-bottom: 1px solid var(--line);
}
.profile-name > span { color: var(--wine); font-size: .56rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.profile-name h3 { margin: .42rem 0 0; font-family: var(--display); font-size: clamp(2.8rem, 4vw, 4.5rem); font-weight: 600; line-height: .85; }
.profile-name h3 .keyword { font-weight: inherit; text-decoration: none; }
.profile-name p { margin: .85rem 0 0; color: var(--muted); font-size: .71rem; }
.profile-name .profile-alias { margin-top: 1rem; }
.profile-description { margin: 0; color: var(--muted); font-size: .84rem; }
.profile-entry > a { display: flex; align-items: center; gap: .6rem; color: var(--wine); font-size: .58rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.profile-entry > a span { font-size: .9rem; }

.profile-page { background: var(--paper); }
.profile-hero {
  min-height: 62vh;
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 8vw, 10rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.profile-hero .eyebrow { justify-content: flex-start; }
.profile-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 8.4rem);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.045em;
}
.profile-hero h1 .keyword { font-weight: inherit; text-decoration: none; }
.profile-hero > .profile-summary {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(.88rem, 1.15vw, 1rem);
}
.profile-hero > .profile-location {
  max-width: 760px;
  margin: .8rem 0 0;
  color: var(--wine);
  font-size: .78rem;
  line-height: 1.75;
}
.profile-hero > .profile-alias {
  margin: 1.4rem 0 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-return {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--wine);
  border-bottom: 1px solid var(--gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.profile-story {
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.2rem, 8vw, 10rem);
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
}
.profile-story > header { position: sticky; top: 105px; align-self: start; }
.profile-story > header p,
.peer-directory header p {
  margin: 0 0 1rem;
  color: var(--wine);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.profile-story > header h2,
.peer-directory header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.8vw, 5.3rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.035em;
}
.profile-story-copy { max-width: 760px; }
.profile-story-copy p { margin: 0; color: var(--muted); font-size: .93rem; }
.profile-story-copy p + p { margin-top: 1.4rem; }
.site-reference { color: var(--wine); font-weight: 700; }
.peer-directory {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.2rem, 8vw, 10rem);
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.peer-directory header { max-width: 820px; }
.peer-directory ul {
  margin: clamp(2.8rem, 5vw, 4.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}
.peer-directory li { border-bottom: 1px solid var(--line); }
.peer-directory li:nth-child(3n + 2) { border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.peer-directory a {
  min-height: 74px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: .75rem;
}
.peer-directory a:hover { color: var(--wine); background: rgba(122, 18, 52, .035); }
.peer-directory a strong { margin-right: .32em; color: var(--wine); }

.meeting-band {
  padding: clamp(4.8rem, 8vw, 7.5rem) clamp(1.2rem, 7vw, 9rem);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--cream);
  background: var(--wine-dark);
}
.meeting-heading > p { color: var(--gold); }
.meeting-band .keyword { color: #f0d398; text-decoration-color: rgba(207,164,94,.45); }
.meeting-copy { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-self: end; }
.meeting-copy p { margin: 0; color: rgba(255,250,244,.7); font-size: .88rem; }

.landing-article { background: var(--paper); }
.geo-focus { padding-top: clamp(5rem, 9vw, 8rem); }
.article-heading { max-width: 1030px; margin-bottom: clamp(4rem, 8vw, 7rem); }
.article-heading > p:last-child { max-width: 760px; margin: 1.5rem 0 0; color: var(--muted); font-size: .96rem; }
.article-body { max-width: 1120px; margin-left: auto; }
.article-body section {
  padding: clamp(2.8rem, 5vw, 4.7rem) 0;
  display: grid;
  grid-template-columns: minmax(240px, .52fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
}
.article-body section:last-child { border-bottom: 1px solid var(--line); }
.article-body h3 { margin: 0; color: var(--wine); font-family: var(--display); font-size: clamp(2rem, 2.8vw, 3rem); font-weight: 600; line-height: 1; }
.article-body section p { grid-column: 2; margin: 0; color: var(--muted); font-size: .9rem; }
.article-body section p + p { margin-top: 1.25rem; }

.closing {
  padding: clamp(5rem, 9vw, 8rem) 1.2rem;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.closing h2 { max-width: 850px; }
.closing > a { margin-top: 1.8rem; color: var(--wine); border-bottom: 1px solid var(--gold); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.site-footer {
  min-height: 104px;
  padding: 1.4rem clamp(1.2rem, 6vw, 7rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  color: rgba(255,250,244,.62);
  background: #12070b;
}
.site-footer nav { display: flex; gap: 1.4rem; }
.site-footer nav a { color: #efd39b; font-size: .59rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer > small { justify-self: end; font-size: .59rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-delay { transition-delay: .08s; }
.reveal-delay-two { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .profile-entry { grid-template-columns: minmax(180px, .6fr) 1fr; }
  .profile-entry > a { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .site-header nav a:nth-child(3) { display: none; }
  .hero { min-height: 680px; }
  .hero h1 { font-size: clamp(4rem, 13vw, 6.2rem); }
  .profile-entry { grid-template-columns: 1fr 1fr; }
  .profile-description, .profile-entry > a { grid-column: 1 / -1; }
  .meeting-band { grid-template-columns: 1fr; }
  .article-body { margin: 0; }
  .article-body section { grid-template-columns: 1fr; gap: 1.4rem; }
  .article-body section p { grid-column: 1; }
  .profile-story { grid-template-columns: 1fr; gap: 2.2rem; }
  .profile-story > header { position: static; }
  .peer-directory ul { grid-template-columns: repeat(2, 1fr); }
  .peer-directory li:nth-child(3n + 2) { border-right: 0; border-left: 0; }
  .peer-directory li:nth-child(2n) { border-left: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .site-header { min-height: 66px; }
  .site-header nav a:last-child { display: none; }
  .hero { min-height: 610px; padding-left: 1rem; padding-right: 1rem; }
  .hero h1 { font-size: clamp(3.4rem, 15.5vw, 4.8rem); line-height: .86; }
  .hero-lead { font-size: .86rem; }
  .hero-actions { align-items: center; flex-direction: column; }
  .section-heading h2, .meeting-heading h2, .article-heading h2, .closing h2 { font-size: clamp(2.7rem, 12.5vw, 3.9rem); }
  .profile-entry { grid-template-columns: 1fr; gap: 1.5rem; }
  .profile-description, .profile-entry > a { grid-column: 1; }
  .meeting-copy { grid-template-columns: 1fr; }
  .profile-hero h1 { font-size: clamp(3.6rem, 17vw, 5.4rem); }
  .profile-story, .peer-directory { padding-left: 1rem; padding-right: 1rem; }
  .peer-directory ul { grid-template-columns: 1fr; }
  .peer-directory li:nth-child(2n) { border-left: 0; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > small { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
