:root{
  --purple:#702277;
  --purple-ink:#3b0f40;
  --gold:#C9A646;
  --bg:#ffffff;
  --ink:#111111;
  --muted:#444;
  --soft:#f6f3f8;
  --border:rgba(17,17,17,.12);
  --shadow:0 10px 30px rgba(0,0,0,.10);
  --radius:16px;
  --max:1100px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block;}

a{color:var(--purple); text-decoration:none;}
a:hover{text-decoration:underline;}

.container{width:min(100% - 32px, var(--max)); margin:0 auto;}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Small spacing helpers */
.mt-0{margin-top:0!important;}
.mt-8{margin-top:8px!important;}
.mt-12{margin-top:12px!important;}
.mt-14{margin-top:14px!important;}
.mt-18{margin-top:18px!important;}
.mb-0{margin-bottom:0!important;}
.mb-8{margin-bottom:8px!important;}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(8px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{width:42px;}
.brand-text strong{display:block; font-size:1rem; color:var(--ink);}
.brand-sub{display:block; font-size:.85rem; color:var(--muted);}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--ink);
}
.nav a:hover{background:rgba(112,34,119,.08); text-decoration:none;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  padding:10px 14px;
  border:1px solid transparent;
  font-weight:600;
  text-decoration:none!important;
}
.btn-small{padding:8px 12px; font-size:.92rem;}
.btn-primary{
  background:var(--purple);
  color:#fff !important;
  border-color:var(--purple);
}
.btn-primary:hover{filter:brightness(0.95);}

.btn-outline{
  background:transparent;
  border-color:var(--purple);
  color:var(--purple) !important;
}
.btn-outline:hover{background:rgba(112,34,119,.08);}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px;
}
.burger{
  display:block;
  width:22px;height:2px;
  background:var(--ink);
  position:relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;height:2px;
  background:var(--ink);
}
.burger::before{top:-7px;}
.burger::after{top:7px;}

/* Hero */
.hero{padding:34px 0 10px;}
.hero-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.hero-main{flex:0 1 62%; min-width:280px;}
.hero-card{flex:0 1 36%; min-width:260px;}

.kicker{
  display:inline-block;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--purple);
  background:rgba(112,34,119,.08);
  padding:6px 10px;
  border-radius:999px;
  margin:0 0 10px 0;
}
.hero h1{margin:0 0 10px 0; font-size:2rem; line-height:1.2;}
.lead{margin:0; font-size:1.05rem; color:var(--muted); max-width:65ch;}

.section{padding:18px 0 42px;}

/* Cards */
.card{
  background:linear-gradient(180deg, rgba(201,166,70,0.08), rgba(112,34,119,0.05));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card h2, .card h3, .card h4{margin-top:0;}

/* Feature image */
.feature-image-wrap{
  margin-top: 10px;
  text-align:center;
}
.feature-image{
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

/* Bio block */
.bio-wrap{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.bio-photo{
  width:92px;
  flex:0 0 92px;
}
.bio-photo img{
  width:92px;height:92px;
  border-radius:999px;
  border:3px solid var(--gold);
  object-fit:cover;
  background:#fff;
}
.card-title{margin:0 0 10px 0;}

/* Lists */
.quick-links, .footer-links{
  list-style:none;
  padding-left:0;
  margin:0;
}
.quick-links li, .footer-links li{margin:6px 0;}

/* Quick Links inside hero sidebar */
.hero-card .quick-links a{
  color:var(--purple);
  font-weight:600;
}
.hero-card .quick-links a:hover{text-decoration:underline;}

/* Two-column sections */
.two-cols{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
}
.two-cols .col{
  flex: 0 1 48%;
  min-width:280px;
}

/* Note box */
.note{
  background:rgba(46,125,50,.06);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
}

/* Footer */
footer{
  margin-top:34px;
  padding:26px 0 0;
  background:var(--purple);
  color:#fff;
}
.footer-inner{
  width:min(100% - 32px, var(--max));
  margin:0 auto;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  padding-bottom:16px;
}
.footer-inner > div{flex:0 1 30%; min-width:240px;}
footer h4{margin:0 0 10px 0;}
footer p{margin:0; color:rgba(255,255,255,.88);}

footer a{color:#F0E9FF;}
footer a:hover{text-decoration:underline;}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.22);
  padding:14px 0;
  text-align:center;
  font-size:.9rem;
  color:rgba(255,255,255,.88);
}

/* Mobile */
@media (max-width:900px){
  .nav-toggle{display:inline-flex;}
  .nav{
    position:absolute;
    right:16px;
    top:68px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:10px;
    display:none;
    flex-direction:column;
    min-width:240px;
  }
  .nav.open{display:flex;}
  .nav a{color:var(--ink);}
  .hero-main, .hero-card{flex:1 1 100%;}
}

/* Prevent long headings from overlapping adjacent columns */
.two-cols .card h2 {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}



