:root {
  --bg: #efe5d6;
  --ink: #2b2218;
  --muted: #5d4c39;
  --border: #cdbba3;
  --accent: #8b6b4a;
  --accent-hover: #75583c;
  --card: #ffffff;
  --panel: #fffaf2;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f3ebdf 0%, #efe5d6 55%, #e7dbc7 100%);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #6f5439;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid #8b6b4a;
  outline-offset: 2px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 244, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

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

.logo {
  text-decoration: none;
  color: #2b2218;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 0.98rem;
}

.hero {
  padding: 4.25rem 0 2.75rem;
}

.hero .narrow {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.25rem;
}

.eyebrow {
  margin: 0;
  color: #7a5b3f;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0.55rem 0 0.8rem;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.lead {
  margin: 0;
  color: var(--muted);
}

.lead-small {
  margin-top: 0.7rem;
}

.top-image-wrap {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.top-image {
  display: block;
  width: 100%;
  height: auto;
}

.founders {
  padding: 1.2rem 0 2rem;
}

.founders .narrow {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.headshots-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  justify-items: center;
}

.headshot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.35rem;
  margin: 0;
  width: min(100%, 210px);
}

.headshot-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 0;
}

.headshot-photo-hunter {
  object-position: center 60%;
}

.headshot-card figcaption {
  margin-top: 0.45rem;
  text-align: center;
}

.headshot-name {
  display: block;
  color: #2d241a;
  font-weight: 700;
}

.headshot-credential {
  display: block;
  color: #5d4c39;
  font-weight: 600;
}

.headshot-membership {
  display: block;
  color: #5d4c39;
  font-weight: 600;
}

.headshot-title {
  display: block;
  color: #7a654e;
  font-size: 0.92rem;
}

.contact {
  padding: 2rem 0 3rem;
}

.contact .narrow {
  padding: 0;
  text-align: center;
}

.contact h2 {
  margin: 0 0 0.6rem;
}

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

.email-link {
  color: #6b4f35;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.contact-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  justify-items: center;
}

.contact-card {
  padding: 0;
  width: min(100%, 420px);
}

.contact-card h3 {
  margin: 0;
}

.contact-card p {
  margin: 0.35rem 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.65rem 1rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f7efe2;
}

.footer-inner {
  padding: 1.2rem 0;
}

.footer-inner p {
  margin: 0.2rem 0;
  color: #5b4a37;
}

.footer-inner a {
  color: inherit;
}

.hero h1,
.contact h2,
.contact-card h3 {
  color: #2b2218;
}

.lead,
.contact p,
.contact-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem 0;
  }

  .headshots-grid {
    grid-template-columns: 1fr;
  }
}
