
:root{
  --beige:#F6F1EB;
  --navy:#1F2A44;
  --rose:#C65A6A;
  --ink:#222222;
  --muted:#7A7A7A;
  --white:#FFFFFF;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--beige);
  color:var(--ink);
  line-height:1.65;
}
.container{width:min(840px,92%);margin:0 auto}
.hero{width:100%;height:56vh;min-height:420px;background:url('assets/hero.jpg') center/cover no-repeat}
section{padding:56px 0}
h1,h2,h3{font-family:"Playfair Display", Georgia, serif;color:var(--navy);margin:0 0 .6rem}
h1{font-size:clamp(1.8rem,4.5vw,3rem)}
h2{font-size:clamp(1.4rem,3vw,2rem)}
p{margin:.5rem 0}
.lede{font-size:1.1rem}
hr{border:0;height:1px;background:rgba(0,0,0,.08);margin:24px 0}
.center{text-align:center}
.section-title{border-bottom:3px solid rgba(198,90,106,.2);padding-bottom:.2rem}
.btn{
  display:inline-block;background:var(--rose);color:var(--white);
  text-decoration:none;padding:14px 22px;border-radius:999px;font-weight:600;
  box-shadow:0 10px 22px rgba(198,90,106,.25);transition:transform .05s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(198,90,106,.32)}
.headshot{width:200px;height:200px;border-radius:12px;object-fit:cover;display:block;margin:0 auto 16px auto;box-shadow:0 10px 24px rgba(0,0,0,.07)}
.small{color:var(--muted)}
.footer{font-size:.92rem;color:var(--muted);text-align:center;padding:28px 0;border-top:1px solid rgba(0,0,0,.08)}
.sep{height:8px}
