:root{
  --bg: linear-gradient(
    180deg,
    #fdf2f8 0%,   /* very light pink */
    #f0fdf4 100%  /* very light green */
    );
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --accent:#111827;
  --max: 860px;
  --radius: 12px;
}


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

a{ color:inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover{ opacity:.85; }

.skip-link{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:#fff; padding:10px 12px; border:1px solid var(--line); border-radius:10px;
  z-index:9999;
}

.header{
  border-bottom:1px solid var(--line);
  position:sticky; top:0; background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  z-index:50;
}
.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
}
.brand .title{
  font-weight:700;
  letter-spacing:.2px;
}
.brand .tagline{
  font-size:.92rem;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
}
.nav a[aria-current="page"]{
  background:#f3f4f6;
}

.menu-btn{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  padding:9px 10px;
  border-radius:10px;
  cursor:pointer;
}
.menu-btn:focus{ outline:2px solid #9ca3af; outline-offset:2px; }

@media (max-width: 720px){
  .menu-btn{ display:inline-flex; align-items:center; gap:8px; }
  .nav{
    position:absolute;
    left:16px; right:16px; top:64px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
  }
  .nav.open{ display:flex; }
  .nav a{ padding:12px 12px; }
}

main{
  max-width:var(--max);
  margin:0 auto;
  padding:26px 16px 56px;
}
h1{
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin: 8px 0 12px;
}
h2{
  margin-top: 26px;
  font-size: 1.2rem;
  letter-spacing:.2px;
}
p{ margin: 10px 0; color: #111827; }
.muted{ color:var(--muted); }

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  background:#fff;
}
.hr{
  height:1px; background:var(--line);
  margin:26px 0;
}

.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.figure{
  margin: 10px 0 0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.figure img{
  width:100%;
  height:auto;
  display:block;
}
.figure figcaption{
  padding:10px 12px;
  font-size:.92rem;
  color:var(--muted);
  border-top:1px solid var(--line);
  background:#fafafa;
}

.quote{
  margin: 10px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--line);
  background:#fafafa;
  border-radius: 10px;
  color:#111827;
}
.quote .by{ color:var(--muted); margin-top:6px; font-size:.95rem; }

.footer{
  border-top:1px solid var(--line);
  padding:18px 16px;
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-size:.95rem;
}
.footer a{ color:var(--muted); }
.small{ font-size:.9rem; }
