/* --- GLOBAL & BACKGROUND --- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; width: 100%; overflow-x: hidden; }

body {
  font-family: "Aleo", serif;
  color: #2b1248;
  background:
    radial-gradient(1200px 800px at 20% 18%, rgba(0, 255, 221, .22), transparent 40%),
    radial-gradient(1000px 700px at 78% 26%, rgba(0, 200, 255, .24), transparent 50%),
    radial-gradient(900px 700px at 50% 82%, rgba(150, 0, 255, .22), transparent 52%),
    linear-gradient(180deg,#eadcf7 0,#e6d6f3 55%,#eadcf7 100%);
  background-attachment: fixed, fixed, fixed, scroll;
  background-size: cover;
  line-height: 1.6;
  font-size: 16px; /* Standard readable size */
}

/* --- NAVIGATION --- */
.topbar .navwrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1.5rem; background: rgba(255,255,255,.45); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.brand { text-decoration: none; font-weight: 800; color: #2b1248; font-size: 1.2rem; }
.topbar nav a { margin: 0 .7rem; text-decoration: none; color: #2b1248; font-weight: 700; }
.topbar nav .cta { padding: .5rem 1rem; border-radius: 20px; background: #007a96; color: #fff; }

/* --- HERO --- */
.hero { display: grid; place-items: center; text-align: center; padding: 40px 20px; }
.hero-logo { width: min(740px, 85vw); filter: drop-shadow(0 20px 40px rgba(0,0,0,.12)); }
.btnrow { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.btn { padding: 0.7rem 1.2rem; border-radius: 12px; border: 2px solid #4b1471; color: #4b1471; text-decoration: none; font-weight: 800; }
.btn.primary { background: #007a96; color: #fff; border: none; }

/* --- CARDS --- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 20px; }
.card { background: rgba(255,255,255,0.65); border-radius: 20px; padding: 30px; margin: 25px 0; border: 1px solid rgba(0,0,0,0.05); }
h2 { font-size: 2.2rem; margin-bottom: 20px; color: #2b1248; }

/* --- GRIDS --- */
.about-flex, .contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; }
.headshot img { width: 100%; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- ACCORDIONS --- */
.chips-accordion .chip { border: 1px solid rgba(0,0,0,.08); border-radius: 14px; background: #fff; margin: 10px 0; overflow: hidden; }
.chips-accordion summary { 
  list-style: none; padding: 1.1rem; cursor: pointer; font-weight: 800; color: #2b1248; 
  background: linear-gradient(135deg, rgba(0,169,198,.12), rgba(75,20,113,.12)); 
}
.chips-accordion summary::-webkit-details-marker { display: none; }
.chip-body { padding: 1.2rem; color: #2e2152; }

/* --- MOBILE RULES (Standard Sizing) --- */
@media (max-width: 768px) {
  /* Removed the giant 20px font scale */
  
  .about-flex, .contact-grid { display: flex; flex-direction: column; }
  .headshot { order: -1; margin: 0 auto 20px; max-width: 280px; }
  
  .navwrap { flex-direction: column; padding: 15px; }
  nav { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
  
  .btnrow { flex-direction: column; width: 100%; padding: 0 10px; }
  .btn { width: 100%; text-align: center; padding: 12px; }
  
  .card { padding: 20px; margin: 15px 10px; }
  h2 { font-size: 1.7rem; text-align: center; }
  
  .map iframe { height: 280px; }
}