/* ---------- Design tokens (unified with other pages) ---------- */
:root{
  --gap: 18px;
  --radius: 18px;
  --shadow: 0 8px 18px rgba(0,0,0,.10);
  --shadow-soft: 0 6px 16px rgba(0,0,0,.08);
 --bg: linear-gradient(180deg, #eaf6ff, #dff5f5 50%, #f6f9fb 100%);
  --card: #ffffff;
  --ink: #2c2c34;
  --muted: #7d7f8c;
  --accent: #00a2d4;
  --accent-hover: #0082b1;
  --container: 1200px;
}

/* ---------- Base (no header rules here!) ---------- */
*{ box-sizing: border-box; }
html, body{ margin: 0; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter','Poppins','Helvetica Neue',Arial,sans-serif;
  line-height: 1.6;
}
.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }

/* ---------- Hero ---------- */
.hero{ padding: 22px 0 10px; }
.hero blockquote{
  margin: 16px 0 10px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 4.8vw, 40px);
  color: #1a3a5e;
}
.cta{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:8px; }
.btn{
  border:1px solid var(--accent);
  background: var(--accent);
  color:#fff; text-decoration:none; font-weight:700;
  padding:10px 14px; border-radius:12px;
}
.btn:hover{ background: var(--accent-hover); border-color: var(--accent-hover); }
.btn.ghost{ background:#fff; color:#0d2b3a; border:1px solid rgba(0,0,0,.08); }
.btn.ghost:hover{ background:#f3faff; }

/* ---------- Card / Layout ---------- */
.card{
  background: var(--card);
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0;
}
.pad{ padding: 18px; }

.row{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 900px){
  .row{ grid-template-columns: 1fr; }
}

/* Headings + meta */
.hgroup h2{
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4.6vw, 40px);
  color:#0d2b3a;
}
.meta{ color: var(--muted); font-size: 14px; }
.chip{
  display:inline-block; padding:8px 12px; border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#f3faff; color:#0d2b3a; font-weight:700; margin-right: 8px;
}

/* Bullets */
.bullets{ list-style: none; padding: 0; margin: 10px 0 0; }
.bullets li{
  position: relative; padding-left: 28px; margin: 8px 0;
}
.bullets li::before{
  content: "✦"; position: absolute; left: 0; top: 2px; font-size: 16px; color: #ffca3a;
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tile{ border:1px solid rgba(0,0,0,.08); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); }
.tile img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 4/5; display:block; transition: transform .35s ease; }
.tile:hover img{ transform: scale(1.03); }

/* Resources list */
.resources{ display:grid; gap:14px; margin-top:8px; }
.res{
  display:flex; justify-content:space-between; align-items:center;
  gap: 14px; padding: 14px; border:1px solid rgba(0,0,0,.06);
  border-radius: 14px; background:#fff; box-shadow: var(--shadow-soft);
}
.res h3{ margin:0 0 4px; font-family: 'Playfair Display', serif; color:#0d2b3a; }
.res p{ margin:0; color:var(--muted); }

/* Footer */
.foot{ text-align:center; color:var(--muted); padding: 30px 0 40px; }

/* ---------- SAFETY: kill legacy rainbow/topbar if left in HTML ---------- */
.rainbow, .topbar{ display:none !important; }
