@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #24211C;
  --ink-soft: #55524A;
  --muted: #837F73;
  --accent: #3F6B60;
  --paper: #FBFAF7;
  --line: #E4E0D5;
  --max: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

h1 { font-size: 2.3rem; font-weight: 500; }
h2 { font-size: 1.4rem; margin: 0 0 14px; font-weight: 500; }
h3 { font-size: 1.15rem; margin: 0 0 6px; font-weight: 500; }

p { color: var(--ink-soft); }
a { color: var(--accent); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header.site { border-bottom: 1px solid var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 50%; display: block; }
.brand span { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1rem; color: var(--ink); }
nav.links { display: flex; gap: 24px; flex-wrap: wrap; }
nav.links a { text-decoration: none; color: var(--ink-soft); font-size: 0.92rem; }
nav.links a:hover, nav.links a.active { color: var(--accent); }

.hero { padding: 60px 0 8px; }
.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.hero p.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 58ch; }

.hero-with-photo { display: flex; gap: 26px; align-items: flex-start; flex-wrap: wrap; }
.hero-with-photo img.portrait {
  width: 124px; height: 124px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}

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

.badge-list { list-style: none; padding: 0; margin: 4px 0 0; }
.badge-list li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 0.98rem; color: var(--ink-soft); }
.badge-list li:first-child { border-top: none; }

.entry { padding: 22px 0; border-top: 1px solid var(--line); }
.entry:first-child { border-top: none; padding-top: 0; }
.entry h3 { color: var(--ink); }
.entry p { margin: 0; }

details.faq { border-top: 1px solid var(--line); padding: 18px 0; }
details.faq:last-child { border-bottom: 1px solid var(--line); }
details.faq summary {
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: baseline; gap: 12px; color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.2rem; color: var(--muted); flex-shrink: 0; }
details.faq[open] summary::after { content: "–"; }
details.faq .a { margin-top: 10px; color: var(--ink-soft); max-width: 62ch; }

.contact-row {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.contact-row:first-child { border-top: none; }
.contact-row img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.phone-big { font-size: 1.2rem; font-weight: 600; color: var(--ink); font-family: 'Fraunces', serif; }

.legal { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
.legal h3 { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 6px; font-family: 'Public Sans', sans-serif; font-weight: 600; }

footer.site { border-top: 1px solid var(--line); margin-top: 20px; padding: 28px 0 60px; color: var(--muted); font-size: 0.85rem; }

.cta-simple { margin-top: 6px; font-size: 1rem; }
.cta-simple a { font-weight: 600; }

@media (max-width: 640px) {
  h1 { font-size: 1.9rem; }
  .hero { padding-top: 44px; }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
