:root {
  --bg: #f7f3ea;
  --paper: #fbf8f1;
  --text: #181614;
  --muted: #5a544d;
  --line: rgba(24, 22, 20, 0.12);
  --line-strong: rgba(24, 22, 20, 0.2);
  --accent: #1c1a18;
  --shadow: 0 18px 45px rgba(24, 22, 20, 0.06);
  --max: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top, #fcfaf5 0%, var(--bg) 40%, #f3ede2 100%);
  color: var(--text);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.6;
}

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

.site-shell {
  min-height: 100vh;
  padding: 34px 18px 48px;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.card {
  background: rgba(251, 248, 241, 0.86);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.profile-card,
.page-card {
  padding: 28px 28px 24px;
}

.brand-mark {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.brand-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 600;
}

.brand-subtitle,
.eyebrow,
.footer-copy,
.meta,
.kicker {
  color: var(--muted);
}

.brand-subtitle,
.eyebrow {
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.05;
  margin: 18px 0 12px;
  text-align: center;
  font-weight: 600;
}

.hero-lead,
.center-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.06rem;
  color: #2d2925;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 26px 0;
}

.section {
  padding: 26px 0 4px;
}

.section h2 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  font-weight: 600;
}

.section p {
  margin: 0 0 14px;
  color: #2e2a26;
}

.grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.28);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.feature p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

.cta-row,
.contact-links,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.link-pill:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fffdf8;
  border-color: var(--accent);
}

.button.secondary,
.link-pill {
  background: rgba(255,255,255,0.45);
}

.mini-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.profile-name {
  text-align: center;
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  line-height: 1.04;
  margin: 10px 0 8px;
  font-weight: 600;
}

.profile-role {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.profile-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.contact-links a {
  flex: 1 1 180px;
}

.contact-links.three a {
  flex-basis: calc(33.333% - 8px);
}

.centered {
  text-align: center;
}

.footer {
  margin-top: 22px;
  text-align: center;
  font-size: 0.88rem;
}

.small-spacer { margin-top: 10px; }
.large-spacer { margin-top: 22px; }

.note-block {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.38);
}

.nav-inline {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.nav-inline a {
  text-decoration: none;
  color: var(--muted);
}

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .profile-card,
  .page-card { padding: 22px 18px 20px; }
  .contact-links.three a { flex-basis: 100%; }
}
