:root {
  color-scheme: dark;
  color: #111;
  background: #f4f0e9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  font-size: 17px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(172, 145, 111, 0.12), transparent 35%),
    linear-gradient(180deg, #f7f3ec 0%, #ede7dc 100%);
  color: #161616;
}

.page-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.88rem;
  color: #7a6757;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  max-width: 10ch;
  line-height: 1.05;
}

.hero-inner {
  display: grid;
  gap: 28px;
  align-items: start;
  margin-top: 12px;
}

.hero-art {
  position: relative;
  width: min(320px, 100%);
  margin: 0 auto;
}

.hero-art::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 2%;
  width: 56px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  transform: rotate(-6deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.hero-art-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(19, 18, 16, 0.08);
  transform: rotate(-2.5deg);
  background: #f3efe7;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(1.05) contrast(1.02);
}

.hero-art-label {
  position: absolute;
  bottom: -10px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(122, 103, 87, 0.8);
  background: #fff;
  color: #7a6757;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-copy {
  margin: 20px 0 0;
  color: #3f3630;
  max-width: 44rem;
}

.content-block {
  margin-top: 40px;
}

.blurb p,
.contact-block p,
.small-note {
  margin: 0 0 1.4em;
}

.blurb p:last-child,
.contact-block p:last-child,
.small-note {
  margin-bottom: 0;
}

.people-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.person-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
}

.person-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.person-card h2 {
  margin: 0 0 0.5em;
  font-size: 1.25rem;
}

.links-panel {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.links-panel h2 {
  margin-top: 0;
}

.links-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #2f312f;
  color: #f8f6f1;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}

.link-pill:hover,
.link-pill:focus-visible {
  background: #464a46;
  transform: translateY(-1px);
}

.contact-block {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 38px;
}

.contact-block h2 {
  margin-top: 0;
}

.contact-block a {
  color: #1c3c3d;
  text-decoration: underline;
}

@media (min-width: 720px) {
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .page-shell {
    padding: 24px 16px 36px;
  }
  .hero-copy {
    font-size: 1rem;
  }
}
