:root { color-scheme: light; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  color: #111;
  background: #f4f3f0;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 16px 10px;
}
.brand {
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 20px;
  line-height: 1.2;
}

@media (min-width: 720px){
  .brand{ font-size: 24px; }
}
.tagline{ display:none; }

@media (min-width: 720px){
  .tagline{ display:none; }
}
.nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.nav a {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
}
.nav a.active {
  border-color: #111;
  background: #fff;
}
main {
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 16px 56px;
}
h1 { font-size: 32px; margin: 0 0 14px; }
h2 { font-size: 21px; margin: 22px 0 10px; }
h3 { font-size: 17px; margin: 18px 0 8px; }
p, li { font-size: 16px; }
ul { padding-left: 20px; }
hr { border: 0; border-top: 1px solid #e5e5e5; margin: 18px 0; }
.site-footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 16px 26px;
  border-top: 1px solid #e5e5e5;
  color: #444;
  font-size: 13px;
}

/* Layout helpers */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.callout {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-left: 6px solid #111;
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.callout .small {
  color: #444;
  font-size: 14px;
}

.actions { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 14px;
}
.btn.secondary {
  background: #fff;
  color: #111;
}
.kicker {
  font-size: 16px;
  color: #111;
  margin-top: 8px;
  font-weight: 400;
}
.note { font-size: 1rem; line-height: 1.5; color: #444; }
.footer-links a { text-decoration: underline; }


/* Location line added for footer/header */
.site-location{font-size:0.9em; opacity:0.85; margin-top:0.5rem;}


/* Attorney role line under name */
.role{
  margin-top:10px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.25px;
  text-transform: none;
  color:#333;
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
  text-wrap: balance;
}

@media (max-width: 420px){
  .role{ font-size:11px; }
}

@media (min-width: 720px){
  .role{ font-size:13px; white-space: nowrap; }
}


/* MBA / positioning line under role */
.subrole{
  margin-top:4px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
  color:#333;
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
  text-wrap: balance;
}

@media (max-width: 420px){
  .subrole{ font-size:11px; }
}

@media (min-width: 720px){
  .subrole{ font-size:13px; white-space: nowrap; }
}

/* Homepage/About hero lines */
.hero-line{
  font-size:16px;
  margin-top: 6px;
  margin-bottom: 6px;
  max-width: 70ch;
}

.impact-line{
  font-size:16px;
  color:#444;
  margin-top: 10px;
  max-width: 70ch;
}

/* Match headline width to body text */
main h1{
  max-width: 70ch;
}

/* Contact page disclaimer – readable size */
.contact-legal,
.contact-disclaimer,
.legal-notice {
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
}
