:root {
  /* Palette drawn from the grape-hyacinth reference image. */
  --navy: #172a5c;
  --slate: #617896;
  --periwinkle: #9fb2d2;
  --chartreuse: #b4c700;
  --olive: #456200;
  --ink: var(--navy);
  --muted: #5d6f87;
  --paper: #f5f7f2;
  --panel: #ffffff;
  --line: #d8dfe9;
  --gold: var(--chartreuse);
  --green: var(--olive);
  --red: #963f50;
  --blue: #405d8e;
  --teal: var(--slate);
  --rose: var(--periwinkle);
  --cream: #f0f3d9;
  --focus: #243f78;
  --shadow: 0 20px 48px rgba(23, 42, 92, .13);
  --user-font-scale: 0rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180, 199, 0, .15), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(159, 178, 210, .2), transparent 28rem),
    var(--paper);
  font: calc(18px + var(--user-font-scale))/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.contrast-mode body { color: #000; background: #fff; }
.contrast-mode .site-header, .contrast-mode .card, .contrast-mode .quicklinks a, .contrast-mode .notice, .contrast-mode input, .contrast-mode select, .contrast-mode textarea { background: #fff; color: #000; border-color: #000; }
.contrast-mode .topbar, .contrast-mode .footer, .contrast-mode .section.band, .contrast-mode .admin-nav { background: #000; color: #fff; }
.contrast-mode a { color: #0046b8; }
.contrast-mode .btn, .contrast-mode .btn.green, .contrast-mode .btn.secondary { background: #000; color: #fff; border-color: #000; box-shadow: none; }
a { color: var(--blue); }
a:focus, button:focus, input:focus, select:focus, textarea:focus { outline: 4px solid rgba(64, 93, 142, .32); outline-offset: 3px; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 10px; z-index: 99; }
.skip:focus { left: 8px; }
.topbar { background: linear-gradient(90deg, #10214f, var(--navy) 55%, #304a75); color: #fff; font-size: 15px; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.topbar a { color: #fff; }
.top-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.top-tool { min-height: 34px; border: 1px solid rgba(255,255,255,.42); border-radius: 8px; padding: 4px 10px; background: rgba(255,255,255,.12); color: #fff; font: inherit; font-size: 14px; font-weight: 850; cursor: pointer; }
.lang-switch, .login-switch { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); border-radius: 8px; padding: 4px 10px; text-decoration: none; font-weight: 850; }
.login-switch { background: var(--chartreuse); border-color: var(--chartreuse); color: var(--navy); }
.site-header { background: rgba(248, 250, 247, .94); position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 14px 0; }
.brand { color: var(--ink); text-decoration: none; font-weight: 900; font-size: 28px; letter-spacing: 0; display: flex; align-items: center; gap: 10px; }
.brand-logo { display: block; width: auto; max-height: 48px; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(145deg, var(--navy), var(--slate) 58%, var(--periwinkle)); display: grid; place-items: center; color: #fff; font-weight: 900; box-shadow: 0 8px 20px rgba(23,42,92,.24); }
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 750; padding: 10px 12px; border-radius: 8px; text-transform: uppercase; letter-spacing: .035em; }
.nav a:hover, .nav a.active { background: #eef1f7; box-shadow: 0 0 0 1px #d5ddea; }
.nav .nav-cta { background: var(--olive); color: #fff; box-shadow: 0 10px 22px rgba(69,98,0,.22); }
.nav .nav-cta:hover { background: #354d00; color: #fff; }
.nav .nav-sponsor { background: var(--red); box-shadow: 0 10px 22px rgba(150,63,80,.22); }
.nav .nav-sponsor:hover { background: #783240; color: #fff; }
.menu { display: none; border: 0; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; }
.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px;
  padding: 10px 16px; border-radius: 10px; border: 2px solid transparent;
  background: linear-gradient(135deg, var(--chartreuse), #d2dc55); color: var(--navy); font-weight: 900; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 18px rgba(136,153,0,.22);
  font-size: .95rem;
}
.btn.secondary { background: #eff4dc; color: var(--ink); border-color: var(--olive); box-shadow: 0 8px 18px rgba(69,98,0,.12); }
.btn.green { background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(69,98,0,.25); }
.btn.red { background: var(--red); color: #fff; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero { min-height: 690px; display: grid; align-items: center; position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,33,79,.96), rgba(23,42,92,.76) 44%, rgba(97,120,150,.18)); z-index: -1; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-copy { animation: fadeUp .7s ease-out both; }
.hero-kicker { display: inline-flex; background: rgba(180,199,0,.96); color: var(--navy); padding: 6px 12px; border-radius: 8px; font-size: 16px !important; font-weight: 900; margin-bottom: 14px !important; }
.hero h1 { font-size: clamp(42px, 7vw, 82px); line-height: 1.02; margin: 0 0 20px; max-width: 860px; letter-spacing: 0; }
.hero p { font-size: clamp(20px, 2.5vw, 28px); max-width: 740px; margin: 0 0 28px; }
.hero-actions, .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.section { padding: 70px 0; }
.section.alt { background: #fff; }
.section.colorwash { background: linear-gradient(135deg, #fff, #f1f4dc 48%, #e7ecf5); }
.section.band { background: linear-gradient(135deg, #10214f, var(--navy) 58%, #354e76); color: #fff; }
.section-ctas { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; width: fit-content; max-width: 100%; margin: 24px auto 0; padding-top: 16px; border-top: 1px solid rgba(23,42,92,.16); }
.band .section-ctas { border-top-color: rgba(255,255,255,.24); }
.section-ctas .btn { flex: 0 1 auto; min-width: 0; min-height: 36px; padding: 7px 12px; border-radius: 8px; font-size: .82rem; box-shadow: 0 5px 12px rgba(23,42,92,.14); }
.eyebrow { color: var(--green); font-weight: 900; text-transform: uppercase; font-size: 14px; letter-spacing: .08em; }
.band .eyebrow { color: var(--gold); }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.12; margin: 0 0 16px; letter-spacing: 0; }
h3 { font-size: 25px; line-height: 1.2; margin: 0 0 10px; }
.lead { font-size: 22px; color: var(--muted); max-width: 850px; }
.band .lead { color: #dce4f0; }
.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 28px rgba(23,42,92,.08); overflow: hidden; }
.card.lift { transition: transform .18s ease, box-shadow .18s ease; }
.card.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-body { padding: 22px; }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.metric { border-left: 6px solid var(--chartreuse); padding: 18px; background: #fff; border-radius: 8px; }
.feature-img { width: 100%; border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 16 / 11; object-fit: cover; }
.quicklinks { margin-top: -34px; position: relative; z-index: 2; }
.quicklinks-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.quicklinks a { min-height: 72px; display: grid; place-items: center; text-align: center; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); color: var(--ink); text-decoration: none; font-weight: 900; }
.quicklinks a:nth-child(1) { border-top: 6px solid var(--gold); }
.quicklinks a:nth-child(2) { border-top: 6px solid var(--green); }
.quicklinks a:nth-child(3) { border-top: 6px solid var(--blue); }
.quicklinks a:nth-child(4) { border-top: 6px solid var(--rose); }
.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.stat-grid div { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.stat-grid strong { display: block; color: var(--green); font-size: 36px; line-height: 1; }
.stat-grid span { color: var(--muted); font-weight: 750; }
.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testimonials blockquote { margin: 0; background: #fff; border-left: 6px solid var(--slate); border-radius: 10px; padding: 22px; box-shadow: 0 8px 25px rgba(23,42,92,.08); font-size: 21px; }
.testimonials cite { display: block; color: var(--muted); margin-top: 14px; font-size: 16px; font-style: normal; font-weight: 900; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 22px 0 28px; align-items: stretch; }
.resource-grid a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 14px; border-radius: 10px; font-weight: 900; text-decoration: none; color: var(--navy); box-shadow: 0 8px 20px rgba(23,42,92,.08); background: linear-gradient(135deg, rgba(180,199,0,.15), rgba(69,98,0,.1)); border: 1px solid rgba(69,98,0,.12); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.resource-grid a:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(23,42,92,.12); background: linear-gradient(135deg, rgba(180,199,0,.22), rgba(69,98,0,.16)); }
.searchbar { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 820px; margin: 18px 0 0; }
.image-band { position: relative; isolation: isolate; overflow: hidden; }
.image-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: .36; }
.image-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,33,79,.98), rgba(47,70,112,.8)); z-index: -1; }
.notice { background: #f4f6df; border: 1px solid #cbd579; padding: 18px; border-radius: 8px; margin: 18px 0; }
.progress { height: 14px; border-radius: 999px; background: #e4e9f0; overflow: hidden; margin: 16px 0; border: 1px solid var(--line); }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--olive), var(--chartreuse)); }
.progress.large { height: 20px; }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
label { font-weight: 850; }
input, select, textarea {
  width: 100%; min-height: 50px; border: 2px solid #ccd5e2; border-radius: 8px;
  padding: 11px 12px; font: inherit; background: #fff; color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; }
.check input { width: 24px; min-height: 24px; margin-top: 4px; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 14px 16px; border-radius: 8px; margin: 14px 0; font-weight: 750; }
.alert.ok { background: #eff4dc; border: 1px solid #becb68; }
.alert.err { background: #fdecec; border: 1px solid #ee9c9c; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #edf1f6; }
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-nav { background: var(--ink); color: #fff; padding: 22px; }
.admin-nav a { display: block; color: #fff; text-decoration: none; padding: 10px; border-radius: 8px; margin-bottom: 4px; }
.admin-nav a.active, .admin-nav a:hover { background: rgba(255,255,255,.12); }
.admin-identity { display: grid; gap: 4px; padding: 12px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; }
.admin-identity span { color: var(--gold); font-size: 12px; letter-spacing: .08em; font-weight: 900; }
.admin-main { padding: 26px; background: #f3f5f8; }
.toolbar { display: flex; gap: 10px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 18px; }
.footer { background: #0f1d43; color: #fff; padding: 46px 0; }
.footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #cdd6e5; font-size: 15px; }
.small { color: var(--muted); font-size: 15px; }
.band .small, .footer .small { color: #cdd6e5; }
dialog { border: 0; border-radius: 8px; padding: 0; max-width: min(920px, 92vw); background: transparent; }
dialog::backdrop { background: rgba(0,0,0,.75); }
dialog img { max-height: 82vh; border-radius: 8px; }
.close { margin-top: 10px; width: 100%; }
.role-badge { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: 12px; letter-spacing: .05em; font-weight: 900; background: #e5e9ed; }
.role-superadmin { color: #fff; background: #7b2cbf; }
.role-admin { color: #fff; background: var(--green); }
.role-user { color: var(--ink); background: #e5e9ed; }
.gallery-set { padding: 34px 0 48px; border-top: 1px solid var(--line); }
.gallery-set:first-of-type { border-top: 0; }
.gallery-set-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 22px; }
.gallery-set-head h2 { margin-bottom: 8px; }
.gallery-set-head .lead { margin: 0; font-size: 19px; }
.gallery-set-head time { white-space: nowrap; color: var(--muted); font-weight: 800; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.gallery-item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 25px rgba(23,42,92,.08); }
.gallery-item button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .2s ease; }
.gallery-item button:hover img { transform: scale(1.025); }
.gallery-item figcaption { padding: 13px 15px; color: var(--muted); }
dialog [data-lightbox-caption] { background: #fff; margin: 0; padding: 12px 16px; text-align: center; font-weight: 750; }
.gallery-admin-upload { border-top: 1px solid var(--line); padding-top: 18px; }
.gallery-upload-grid, .gallery-admin-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.gallery-upload-card, .gallery-admin-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px; display: grid; gap: 10px; }
.gallery-upload-card img, .gallery-admin-card > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }
.gallery-upload-card label { display: grid; gap: 5px; font-size: 14px; }
.social-floats { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: grid; gap: 10px; }
.facebook-float, .whatsapp-float, .action-float { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; text-decoration: none; box-shadow: 0 8px 22px rgba(15,45,93,.28); transition: transform .18s ease, box-shadow .18s ease; }
.facebook-float { background: #1877f2; }
.whatsapp-float { background: #25d366; }
.action-float { width: auto; min-width: 48px; padding: 0 13px; border-radius: 24px; font-size: 12px; font-weight: 900; white-space: nowrap; }
.join-float { background: var(--olive); }
.sponsor-float { background: var(--red); }
.facebook-float span { transform: translateY(3px); font: 900 34px/1 Arial, sans-serif; }
.whatsapp-float span { font: 900 13px/1 Arial, sans-serif; letter-spacing: .02em; }
.facebook-float:hover, .whatsapp-float:hover, .action-float:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,45,93,.34); }
.facebook-float:focus, .whatsapp-float:focus, .action-float:focus { outline-color: #fff; }

@media (max-width: 900px) {
  body { font-size: 17px; }
  .menu { display: inline-flex; }
  .nav { display: none; position: absolute; left: 16px; right: 16px; top: 74px; background: #fff; padding: 10px; box-shadow: var(--shadow); border-radius: 8px; }
  .nav.is-open { display: grid; }
  .grid.three, .grid.two, .footer-grid, .admin-shell, .quicklinks-grid, .split, .stat-grid, .testimonials, .resource-grid, .searchbar, .gallery-grid, .gallery-upload-grid, .gallery-admin-grid { grid-template-columns: 1fr; }
  .gallery-set-head { display: block; }
  .hero { min-height: 600px; }
  .admin-nav { position: static; }
}

@media (max-width: 520px) {
  .social-floats { right: 14px; bottom: 14px; }
  .facebook-float, .whatsapp-float { width: 44px; height: 44px; }
  .action-float { min-width: 44px; padding: 0 10px; font-size: 11px; }
  .facebook-float span { font-size: 31px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Homepage redesign primitives */
:root {
  --brand-navy-900: #172a5c;
  --brand-navy-700: #405d8e;
  --brand-lime-500: #b4c700;
  --brand-lime-700: #456200;
  --brand-burgundy-600: #963f50;
  --surface-soft: #f5f7f2;
  --surface-lime: #eff4dc;
  --border-soft: #dce4df;
}
body { font-family: "Nunito Sans", "Trebuchet MS", sans-serif; background: var(--surface-soft); }
h1, h2, h3, .brand { font-family: "Nunito Sans", "Trebuchet MS", sans-serif; }
.topbar { background: var(--brand-navy-900); }
.topbar .wrap { min-height: 38px; }
.site-header { background: rgba(255,255,255,.97); box-shadow: 0 5px 18px rgba(23,42,92,.07); }
.header-inner { min-height: 80px; padding: 10px 0; }
.nav { gap: 2px; }
.nav a { text-transform: none; letter-spacing: 0; font-weight: 800; border-radius: 999px; padding: 10px 13px; }
.nav .nav-cta { margin-left: 7px; padding-inline: 18px; border-radius: 999px; }
.nav .nav-sponsor { background: transparent; color: var(--brand-burgundy-600); border: 1px solid rgba(150,63,80,.35); box-shadow: none; }
.nav .nav-sponsor:hover { background: #fff0f2; color: var(--brand-burgundy-600); }
.login-switch { background: transparent; border: 0; padding: 4px 0; color: #fff; text-decoration: underline; }
.hero-home { min-height: 760px; }
.hero-home::before { background: linear-gradient(90deg, rgba(16,33,79,.95), rgba(23,42,92,.72) 50%, rgba(23,42,92,.15)); }
.hero-home h1 { max-width: 680px; font-size: clamp(3.2rem, 6.2vw, 5.7rem); letter-spacing: -.02em; }
.hero-home h1 em { color: var(--brand-lime-500); font-style: normal; }
.hero-home p:not(.hero-kicker) { max-width: 650px; font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.55; }
.hero-kicker { border-radius: 999px; padding: 8px 16px; letter-spacing: .08em; }
.hero-link, .text-link { color: inherit; font-weight: 900; text-decoration: none; }
.hero-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 4px; }
.hero-link:hover, .text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.hero-trust { position: absolute; right: 0; bottom: 0; left: 0; background: rgba(15,29,67,.78); }
.hero-trust .wrap { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; color: #fff; font-weight: 800; }
.hero-trust span { display: flex; align-items: center; gap: 9px; }
.hero-trust span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-lime-500); }
.impact-strip { background: #fff; border-bottom: 1px solid var(--border-soft); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-grid div { padding: 28px 22px; border-right: 1px solid var(--border-soft); }
.impact-grid div:last-child { border-right: 0; }
.impact-grid strong { display: block; color: var(--brand-navy-900); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.impact-grid span { color: var(--muted); font-weight: 800; }
.section { padding: 96px 0; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading .lead { margin: 0; }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-grid { margin-bottom: 30px; }
.benefit-card { border-radius: 18px; box-shadow: 0 8px 22px rgba(23,42,92,.06); }
.benefit-card img { aspect-ratio: 4 / 3; }
.benefit-card .card-body { padding: 20px; }
.benefit-card h3 { font-size: 22px; }
.benefit-card p { margin-bottom: 0; color: var(--muted); }
.story-image, .campaign-image, .testimonial-image { position: relative; }
.story-image img, .campaign-image img, .testimonial-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
.image-note { position: absolute; right: 18px; bottom: 18px; max-width: 220px; padding: 10px 14px; border-radius: 10px; background: #fff; color: var(--brand-navy-900); font-weight: 900; box-shadow: 0 8px 20px rgba(23,42,92,.15); }
.campaign-feature { background: var(--surface-lime); }
.campaign-feature .split { gap: 64px; }
.campaign-feature h2 { max-width: 560px; }
.event-grid { align-items: stretch; }
.event-card { display: grid; grid-template-columns: 92px 1fr; border-radius: 16px; }
.event-date { display: grid; align-content: center; justify-items: center; padding: 16px 10px; background: var(--brand-navy-900); color: #fff; text-align: center; }
.event-date strong { color: var(--brand-lime-500); font-size: 2.5rem; line-height: 1; }
.event-date span { font-weight: 900; text-transform: uppercase; }
.event-card .card-body { padding: 22px 20px; }
.event-card h3 { font-size: 21px; }
.event-card .text-link, .editorial .text-link { color: var(--brand-navy-900); }
.editorial { background: #eaf0f6; }
.editorial-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
.publication-panel { padding: 28px; border-radius: 18px; background: #fff; border: 1px solid var(--border-soft); }
.publication-card { display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: center; margin-top: 18px; }
.publication-card img { width: 130px; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 10px; }
.publication-card h3 { margin-bottom: 6px; }
.publication-card p { margin-top: 0; }
.editorial-posts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 22px; }
.editorial-posts .card { height: 100%; }
.editorial-posts .card-body { padding: 18px; }
.editorial-posts .card img { aspect-ratio: 4 / 3; }
.testimonial-feature { background: #fff; }
.testimonial-feature blockquote { margin: 0; padding: 16px 0 16px 40px; border-left: 6px solid var(--brand-lime-500); font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.3; }
.testimonial-feature blockquote p { margin: 18px 0; }
.testimonial-feature cite { color: var(--muted); font-size: 1rem; font-style: normal; font-weight: 900; }
.conversion { padding: 82px 0; }
.conversion h2 { max-width: 700px; }
.conversion .actions { align-items: center; }
.conversion .hero-link { color: #fff; }
.section.band .btn.secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.notice { border-radius: 14px; }
.btn { min-height: 48px; padding: 12px 20px; border-radius: 999px; }
.btn:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media (max-width: 1020px) {
  .nav a { padding-inline: 9px; font-size: .94rem; }
  .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hero-home { min-height: 680px; }
  .hero-trust .wrap { flex-wrap: wrap; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid div:nth-child(2) { border-right: 0; }
  .editorial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero-home { min-height: 660px; }
  .hero-home h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-trust .wrap { display: grid; gap: 8px; padding: 14px 0; }
  .impact-grid div { padding: 22px 14px; }
  .section { padding: 60px 0; }
  .grid.four, .editorial-posts { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 76px 1fr; }
  .publication-card { grid-template-columns: 100px 1fr; gap: 16px; }
  .publication-card img { width: 100px; }
  .testimonial-feature blockquote { padding-left: 22px; }
}
