@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --bg: #f6f3ec;
  --ink: #151515;
  --accent: #1f6f5c;
  --accent-2: #ff8a3d;
  --panel: #fffaf0;
  --line: #d8d2c6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 95%, rgba(0,0,0,0.06) 96%),
    linear-gradient(90deg, transparent 95%, rgba(0,0,0,0.06) 96%);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: -1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 10px;
  position: sticky;
  top: 0;
  background: linear-gradient(var(--bg), rgba(246,243,236,0.6));
  backdrop-filter: blur(6px);
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

main {
  padding: 0 8vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  padding: 40px 0 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #555;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin: 10px 0 12px;
}

.hero-name {
  font-size: clamp(40px, 7vw, 76px);
  margin: 6px 0 8px;
}

.hero-tagline {
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 500;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  max-width: 520px;
}

.cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button.ghost {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.portrait {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.card-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.card-foot {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}

.photo-credit {
  font-size: 11px;
  color: #777;
  margin-top: 8px;
}

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

h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin: 0 0 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.text-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
}

.panel-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.bullets {
  padding-left: 18px;
  margin: 10px 0 0;
}

.note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #555;
}

.contact {
  background: linear-gradient(120deg, rgba(31,111,92,0.08), rgba(255,138,61,0.08));
  border-radius: 18px;
  padding: 30px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 26px 8vw 40px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: #555;
}

@media (max-width: 900px) {
  .hero, .two-col {
    grid-template-columns: 1fr;
  }
  .site-header {
    flex-direction: column;
    gap: 12px;
  }
  .nav a {
    margin: 0 10px;
  }
}
