:root {
  color-scheme: light;
  --paper: #ffffff;
  --wash: #f6f4f1;
  --ink: #181716;
  --muted: #67615c;
  --line: #ded9d3;
  --accent: #a32632;
  --accent-dark: #761d27;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.header-inner,
.page-shell,
.site-footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand span { color: var(--accent); }

.primary-nav { display: flex; gap: 22px; }
.primary-nav a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:hover { color: var(--accent); }

.hero {
  padding: clamp(64px, 9vw, 118px) 0 68px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  font-weight: 500;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}

.section { padding: 76px 0; }
.section + .section { border-top: 1px solid var(--line); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 500;
}

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

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 18px;
}

.profile-card { min-width: 0; }
.profile-card > a { text-decoration: none; }
.profile-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--wash);
}
.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.profile-card > a:hover img { transform: scale(1.025); }
.profile-card h3 {
  margin: 15px 0 5px;
  font-size: 1.28rem;
}
.profile-keyword {
  margin: 0;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 750;
}
.profile-teaser {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .91rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.profile-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.editorial {
  max-width: 900px;
  margin-inline: auto;
}
.editorial-intro {
  margin: 0 0 50px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  line-height: 1.48;
}
.copy-section {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  gap: 38px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.copy-section h2 {
  position: sticky;
  top: 100px;
  align-self: start;
  margin: 0;
  font-size: 1.45rem;
  font-weight: 500;
}
.copy-section p { margin: 0 0 18px; color: #393633; }

.keyword-highlight {
  padding: .04em .14em;
  border-bottom: 1px solid rgba(163, 38, 50, .38);
  background: #fbefef;
  color: var(--accent-dark);
  font-weight: 780;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.breadcrumb {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: .88rem;
}
.breadcrumb a { text-underline-offset: 3px; }

.profile-hero {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding: 50px 0 78px;
}
.profile-portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  background: var(--wash);
}
.profile-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}
.profile-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.profile-location {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent-dark);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-note {
  max-width: 650px;
  margin: 20px 0 0;
  padding: 15px 18px;
  border-left: 3px solid var(--accent);
  background: var(--wash);
  color: #393633;
  font-size: .94rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(210px, 310px) minmax(0, 700px);
  gap: clamp(34px, 8vw, 100px);
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.story-layout h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
}
.story-copy p { margin: 0 0 20px; color: #34312f; }

.related { padding: 70px 0; border-top: 1px solid var(--line); }
.related h2 { margin: 0 0 30px; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 500; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.related-card {
  padding: 18px;
  border: 1px solid var(--line);
  text-decoration: none;
}
.related-card:hover { border-color: var(--accent); }
.related-card strong { display: block; font-family: Georgia, "Times New Roman", serif; }
.related-card span { display: block; margin-top: 5px; color: var(--muted); font-size: .79rem; }

.home-return {
  display: inline-flex;
  margin-top: 34px;
  color: var(--accent-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-footer { border-top: 1px solid var(--line); background: var(--wash); }
.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
  color: var(--muted);
  font-size: .84rem;
}
.site-footer p { margin: 0; }

@media (max-width: 920px) {
  .profile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .profile-hero { grid-template-columns: .8fr 1fr; gap: 38px; }
}

@media (max-width: 700px) {
  .header-inner, .page-shell, .site-footer-inner { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 64px; }
  .primary-nav a:not(:last-child) { display: none; }
  .hero { padding: 52px 0 48px; }
  .hero h1 { font-size: clamp(2.55rem, 15vw, 4.8rem); }
  .section { padding: 54px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
  .copy-section { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; }
  .copy-section h2 { position: static; }
  .profile-hero { grid-template-columns: 1fr; padding: 30px 0 52px; }
  .profile-portrait { max-height: 72vh; }
  .story-layout { grid-template-columns: 1fr; gap: 24px; padding: 52px 0; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer-inner { display: block; }
  .site-footer p + p { margin-top: 6px; }
}

@media (max-width: 420px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card { display: grid; grid-template-columns: 112px 1fr; gap: 14px; }
  .profile-card .profile-image-wrap { grid-row: 1 / span 3; }
  .profile-card h3 { margin-top: 0; }
  .profile-teaser { -webkit-line-clamp: 2; }
  .related-grid { grid-template-columns: 1fr; }
}
