/* One-page site – Light, professional nonprofit theme */

:root{
  --bg: #ffffff;
  --panel: #f7f9fc;
  --panel2: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15,23,42,0.12);
  --accent: #0f172a;
  --shadow: 0 10px 24px rgba(15,23,42,0.10);
  --radius: 18px;
  --max: 1080px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover{ opacity:.9; }

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

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#000;
  color:#fff;
  border-radius:10px;
  z-index:9999;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-mark{
  height: 72px; /* BIGGER LOGO */
  width: auto;
  display:block;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(15,23,42,0.06);
  color: var(--text);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight: 600;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.btn:hover{ background: #f1f5f9; }

.btn-ghost{
  background: transparent;
  box-shadow: none;
}

.btn-small{
  padding: 9px 12px;
  font-weight: 600;
}

/* Hero */
.hero{
  padding: 56px 0 36px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 32px;
  align-items:start;
}

.eyebrow{
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

h1{
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.lede{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 60ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 10px 0;
}

.micro{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Cards */
.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card-title{
  margin: 0 0 10px;
  font-size: 18px;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 10px 0; }

.card-note{
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
.section{
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.section-alt{
  background: #f8fafc;
}

h2{
  margin: 0 0 12px;
  font-size: 26px;
}

.section p{
  color: var(--muted);
  max-width: 80ch;
}

/* Grid / tiles */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.tile{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
}
.tile h3{ margin: 0 0 8px; }
.tile p{ margin: 0; color: var(--muted); }

/* Support */
.support-box{
  margin-top: 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.support-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.fineprint{
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.contact-tile{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  font-size: 13px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .support-box{
    flex-direction: column;
    align-items:flex-start;
  }
  .brand-mark{
    height: 56px; /* larger mobile logo */
  }
}
