/* styles.css — modern, clean, distinct palette (teal + warm grey) */
/* Keeps layout simple and responsive; change variables to adjust theme. */

:root{
  --bg: #f7faf9;
  --card: #ffffff;
  --accent: #006a6f;      /* teal accent */
  --accent-2: #0f4c5c;    /* darker teal for headings */
  --muted: #6b6f73;
  --max-width: 1100px;
  --wrap-pad: 20px;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(12,20,24,0.06);
  --sans: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html,body { height:100%; }
body{
  margin:0;
  font-family: var(--sans);
  color: #212529;
  background: linear-gradient(180deg, var(--bg) 0%, #eef6f7 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.55;
}

/* Page wrapper */
.wrap{
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--wrap-pad);
}

/* Header */
.site-header{
  background: linear-gradient(90deg, #e9f6f6 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(15,76,92,0.06);
  padding: 26px 0;
}
.brand h1{
  margin:0 0 6px 0;
  color: var(--accent-2);
  font-size: 1.6rem;
  letter-spacing: -0.2px;
}
.tagline{
  margin:0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Main two-column grid */
.main-grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  margin-top: 28px;
}

/* Profile column */
.profile{
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,20,24,0.03);
}
.headshot{
  width:100%;
  height:auto;
  border-radius: 8px;
  display:block;
  margin-bottom: 12px;
  object-fit:cover;
}
.quick-facts h3, .contact-card h3{
  margin: 10px 0;
  color: var(--accent-2);
  font-size:1.05rem;
}
.quick-facts ul{
  padding-left: 16px;
  margin: 8px 0 14px 0;
  color: var(--muted);
  font-size:0.95rem;
}
.quick-facts li{
  margin-bottom:10px;
}

/* Bio column */
.bio{
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,20,24,0.03);
}
.bio h2{
  margin-top:0;
  color: var(--accent);
  font-size:1.35rem;
}
.bio h3{
  color: var(--accent-2);
  margin-bottom:8px;
  margin-top:18px;
}
.bio p{ color: #333; margin-bottom:12px; }
.bio blockquote{
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  margin: 18px 0;
  color: var(--accent-2);
  font-style: italic;
}

/* Footer */
.site-footer{
  margin-top: 30px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
.site-footer .sources { margin-top:6px; font-size:0.85rem; color:#6f767b; }

/* Links */
a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 880px){
  .main-grid{ grid-template-columns: 1fr; }
  .profile{ order: -1; margin-bottom: 16px; }
}
