:root {
  --olive: #6d7a54;
  --olive-dark: #5a6a44;
  --olive-darker: #46532f;
  --page-bg: #EEEDEB;
  --content-bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --rule: #EEEDEB;
  --header-h: 64px;
  --content-max: 960px;
  --content-pad: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--olive-dark); }
a:hover { color: var(--olive-darker); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  max-width: var(--content-max);
  margin: 40px auto 0;
  background: var(--content-bg);
  z-index: 100;
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--rule);
}

.nav {
  height: 100%;
  padding: 0 var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--olive);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--olive);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--olive-darker); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}

/* ---------- Mobile menu overlay ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--content-bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  list-style: none;
  margin: 0; padding: 0;
  text-align: center;
}
.mobile-menu li { margin: 18px 0; }
.mobile-menu a {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--olive-dark);
  text-decoration: none;
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: 0;
  font-size: 40px;
  line-height: 1;
  color: var(--olive-dark);
  cursor: pointer;
  padding: 8px 12px;
}

body.menu-open { overflow: hidden; }

/* ---------- Content column ---------- */

.page {
  background: var(--content-bg);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px var(--content-pad) 44px;
  box-shadow: 0 0 40px rgba(0,0,0,0.03);
}

.section {
  padding: 40px 0;
}

.section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 24px;
  color: var(--text);
}

.section h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--text);
}

.divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: 20px;
}

.portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 0 40px;
}

.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.tagline {
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
  margin: 0 0 28px;
  line-height: 1.7;
}

.intro { margin-top: 40px; }

/* ---------- Prose ---------- */

.prose p { margin: 0 0 18px; }
.prose p.lead { font-weight: 600; }
.section p:has(> .btn) { margin-top: 32px; }

.prose ul.quotes,
.prose ul.bullets,
.prose ul.fees-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.prose ul.quotes li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  font-style: italic;
  color: #333;
}
.prose ul.quotes li::before {
  content: "";
  position: absolute;
  left: 4px; top: 14px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--olive);
}

.prose ul.bullets li,
.prose ul.fees-list li {
  padding-left: 20px;
  position: relative;
  margin: 8px 0;
}
.prose ul.bullets li::before,
.prose ul.fees-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--olive);
}

/* ---------- Button ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--olive-dark);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: background .2s ease, transform .1s ease;
}
.btn:hover {
  background: var(--olive-darker);
  color: #fff;
}
.btn:active { transform: translateY(1px); }

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 30px 20px 40px;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  :root {
    --content-pad: 24px;
  }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .display { font-size: 32px; }
  .section h2 { font-size: 28px; }
  .section h3 { font-size: 22px; }
  .portrait { width: 140px; height: 140px; margin-bottom: 28px; }
  body { font-size: 18px; }

  .page {
    padding-top: 16px;
    box-shadow: none;
  }
  .site-header {
    margin-top: 24px;
  }
  .mobile-menu a { font-size: 26px; }
}
