:root {
  --bg: #f6f2ec;
  --surface: #fffdf9;
  --ink: #2c2a26;
  --muted: #6f6a62;
  --rule: #e3ddd2;
  --accent: #7a8b6f;
  --accent-soft: #c8d0bf;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1px 0 rgba(44, 42, 38, 0.04);
}

.hero {
  margin: 0 auto 1.75rem;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rule);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

h1 {
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36ch;
  margin: 0 auto 2rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
  font-size: 0.95rem;
}

.contact a:hover { border-bottom-color: var(--accent); }

footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: var(--muted);
  font-size: 0.8rem;
}
