/* ==========================================================================
   SDI — Sunrise Development International Initiative
   Design tokens: deep dawn navy + sunrise gold/coral, drawn from the SDI mark.
   Display: Sora (confident, civic sans) / Body: Source Serif 4 (warm, institutional)
   Signature: the horizon + rising-sun motif, used as a structural device throughout.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Color */
  --navy-deep: #0B2338;
  --navy: #123A57;
  --navy-mid: #1B4E71;
  --gold: #E8A33D;
  --gold-light: #F4C875;
  --coral: #DE6B36;
  --slate: #4A5058;
  --paper: #FAF7F1;
  --paper-dim: #F1ECE1;
  --ink: #1B1E22;
  --ink-soft: #4C5259;
  --line: #E3DCCC;
  --line-dark: rgba(255,255,255,0.14);
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --max-w: 1180px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;
  --shadow-card: 0 12px 30px -14px rgba(11,35,56,0.28);
  --shadow-soft: 0 6px 20px -12px rgba(11,35,56,0.2);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy-deep); }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--navy-deep); color: rgba(255,255,255,0.92); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--paper-dim { background: var(--paper-dim); }

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--coral);
}
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark .eyebrow::before { background: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px -10px rgba(232,163,61,0.55); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: var(--line-dark); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--navy-deep); color: var(--white); }
.btn-dark:hover { background: var(--navy); }
.btn-ghost { color: var(--navy-deep); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-dim); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; object-fit: contain; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 15.5px; color: var(--navy-deep); font-weight: 700; }
.brand-text span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-top: 3px; }

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--navy-deep); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-deep); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; height: calc(100vh - 84px); align-self: flex-start; background: var(--paper); padding: 20px 28px 40px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; overflow-y: auto; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav a { display: block; padding: 14px 4px; width: 100%; border-bottom: 1px solid var(--line); font-size: 17px; }
  .header-actions .btn-dark { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Sunrise motif (signature element) ---------- */
.sunrise-motif { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.sunrise-motif svg { position: absolute; }

.horizon-divider {
  position: relative;
  height: 56px;
  overflow: hidden;
}
.horizon-divider svg { position: absolute; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; }

.sun-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gold-light), var(--coral));
  color: var(--navy-deep);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 62%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 84px 0 0;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; padding-bottom: 70px; }
.hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); color: var(--white); font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-lede { font-family: var(--font-body); font-size: 18px; color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }

.hero-figure { position: relative; }
.hero-figure .frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.14);
  aspect-ratio: 4/5;
}
.hero-figure .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .float-card {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--white);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-figure .float-card strong { font-family: var(--font-display); font-size: 22px; display: block; color: var(--navy-deep); }
.hero-figure .float-card span { font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-figure { max-width: 340px; margin: 0 auto; }
  .hero-figure .float-card { position: static; margin-top: 20px; max-width: none; }
  .hero-sunburst { opacity: 0.16; width: 420px; height: 420px; right: -20%; top: -6%; }
}

.hero-sunburst {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 620px;
  height: 620px;
  opacity: 0.35;
  z-index: 1;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
  background: rgba(11,35,56,0.55);
}
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 30px 20px; border-right: 1px solid var(--line-dark); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--font-mono); font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--gold-light); font-weight: 500; }
.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
@media (max-width: 760px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--line-dark); }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px;
  position: relative;
}
.mv-card .sun-badge { margin-bottom: 22px; }
.mv-card h3 { font-size: 22px; }
.mv-card p { color: var(--ink-soft); font-size: 16px; margin-bottom: 0; }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }

/* ---------- Values list ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.value-item { background: var(--white); padding: 30px 26px; }
.value-item .rays { width: 26px; height: 26px; margin-bottom: 16px; color: var(--coral); }
.value-item h4 { font-family: var(--font-display); font-size: 15.5px; color: var(--navy-deep); margin-bottom: 8px; }
.value-item p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Services / focus areas ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.service-card .num { font-family: var(--font-mono); color: var(--coral); font-size: 13px; letter-spacing: .08em; }
.service-card h3 { font-size: 21px; margin: 10px 0 10px; }
.service-card .goal { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; }
.service-card ul { display: flex; flex-direction: column; gap: 9px; }
.service-card li { font-size: 14.5px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.service-card li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.founder-photo { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-card); }
.founder-photo img { width: 100%; }
.founder-copy .role { font-family: var(--font-mono); font-size: 13px; color: var(--coral); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.founder-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.founder-copy p { color: var(--ink-soft); font-size: 16px; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; } .founder-photo { max-width: 320px; margin: 0 auto; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gallery-grid a { display: block; border-radius: var(--radius-m); overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .g-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(11,35,56,0.85), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-grid a:hover .g-caption { opacity: 1; transform: translateY(0); }
.gallery-grid .span-2 { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid .span-2 { grid-column: span 1; } }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-l);
  padding: 32px;
}
.testi-card .quote-mark { font-family: var(--font-display); font-size: 42px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.testi-card p.quote { font-size: 15.5px; color: rgba(255,255,255,0.88); margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-deep);
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 14px; color: var(--white); font-family: var(--font-display); }
.testi-person span { font-size: 12.5px; color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .testi-track { grid-template-columns: 1fr; } }

/* ---------- News / Blog ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease; }
.news-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.news-card .thumb { aspect-ratio: 16/10.5; overflow: hidden; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card .meta { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); display: flex; gap: 10px; align-items: center; }
.news-card h3 { font-size: 18.5px; line-height: 1.3; }
.news-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 0; flex: 1; }
.news-card .read-link { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--navy-deep); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

.post-hero { background: var(--navy-deep); color: white; padding: 60px 0 50px; }
.post-hero .meta { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 16px; }
.post-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.7rem); max-width: 22ch; }
.post-body { max-width: 720px; margin: -30px auto 0; background: var(--white); border-radius: var(--radius-l); box-shadow: var(--shadow-card); padding: 50px; position: relative; z-index: 3; }
.post-body img { border-radius: var(--radius-m); margin-bottom: 24px; }
.post-body p { font-size: 17.5px; color: var(--ink); }
.post-body h2, .post-body h3 { margin-top: 1.4em; }

/* ---------- Partners ---------- */
.partners-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.partner-chip { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); font-size: 14.5px; padding: 10px 4px; }
.partner-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid)); color: white; border-radius: var(--radius-l); padding: 60px; overflow: hidden; }
.cta-band h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.15rem); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 50ch; }
.cta-band .actions { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.contact-info-card { background: var(--navy-deep); color: white; border-radius: var(--radius-l); padding: 40px; }
.contact-info-card h3 { color: white; }
.contact-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.contact-row:last-child { border-bottom: none; }
.contact-row strong { display: block; font-family: var(--font-display); font-size: 14px; margin-bottom: 3px; }
.contact-row span { font-size: 14px; color: rgba(255,255,255,0.75); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--navy-deep); }
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(232,163,61,0.18); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 70px 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; width: 40px; border-radius: 8px; }
.footer-brand strong { color: white; font-family: var(--font-display); font-size: 15px; }
.site-footer p { font-size: 14px; max-width: 34ch; }
.footer-col h5 { font-family: var(--font-display); color: white; font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: linear-gradient(180deg, var(--navy-deep), var(--navy-mid)); color: white; padding: 70px 0 50px; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 2.9rem); max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 56ch; font-size: 17px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }

/* ---------- Misc ---------- */
.tag-pill { display: inline-block; font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; background: var(--paper-dim); color: var(--navy-deep); padding: 5px 12px; border-radius: 999px; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--ink-soft); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 46px; }
.pagination a, .pagination span { font-family: var(--font-mono); font-size: 13.5px; padding: 9px 15px; border-radius: 8px; border: 1px solid var(--line); color: var(--ink-soft); }
.pagination a:hover { border-color: var(--gold); color: var(--navy-deep); }
.pagination .current { background: var(--navy-deep); color: white; border-color: var(--navy-deep); }

.alert { padding: 16px 20px; border-radius: var(--radius-s); font-size: 14.5px; margin-bottom: 20px; font-family: var(--font-display); }
.alert-success { background: #E8F5E9; color: #256029; border: 1px solid #BEE3BE; }
.alert-error { background: #FDEDEC; color: #A5342A; border: 1px solid #F3C3BE; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
