:root {
  --blue: #06468f;
  --blue-dark: #033874;
  --blue-deep: #062f67;
  --blue-bright: #0a53aa;
  --yellow: #ffbd26;
  --yellow-dark: #f0aa00;
  --ink: #0c2d5b;
  --muted: #5d6f86;
  --page: #f8fbff;
  --card: #ffffff;
  --border: #dce6f1;
  --shadow: 0 8px 26px rgba(4, 54, 111, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input {
  font: inherit
}

button {
  cursor: pointer
}

a {
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto
}

/* Header */
.site-header {
  height: 75px;
  background: linear-gradient(90deg, #084e9e 0%, #043f88 62%, #063a79 100%);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 29, 73, .16);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  width: 238px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 232px;
  height: auto;
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 27px;
  margin-left: auto;
  height: 100%;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: .96;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  height: 3px;
  bottom: 16px;
  background: var(--yellow);
  border-radius: 3px;
  transition: .22s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0
}

.header-support {
  border: 0;
  border-radius: 10px;
  background: var(--yellow);
  color: #0a3468;
  height: 35px;
  padding: 0 17px;
  font-size: 10.5px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 22, 58, .22);
  display: flex;
  gap: 9px;
  align-items: center;
  white-space: nowrap;
}

.header-support svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 4px;
  margin: 5px 0;
}

/* Hero */
.hero {
  height: 450px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 37%;
  background-image: url('../assets/hero-photo.png');
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .97) 8%, rgba(255, 255, 255, .75) 23%, rgba(255, 255, 255, .15) 44%, rgba(255, 255, 255, 0) 58%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .32), transparent 42%);
  pointer-events: none;
}

.hero-inner {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}

.hero-copy {
  padding-top: 38px;
  width: 54%;
  position: relative;
  z-index: 3;
  min-width: 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  color: #eea500;
  letter-spacing: .1px;
  margin-bottom: 9px;
}

.hero h1 {
  margin: 0;
  color: #0a4a94;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -.6px;
  font-weight: 900;
}

.hero h1 span {
  color: #f2aa13
}

.hero h1::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 20px;
  border-radius: 4px;
  background: var(--yellow);
}

.hero-copy>p {
  font-size: 13.5px;
  line-height: 1.38;
  margin: 16px 0 16px;
  color: #173c6b;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.btn {
  border-radius: 20px;
  height: 35px;
  padding: 0 17px;
  border: 0;
  font-size: 10.5px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .2s;
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: #074a99;
  color: #fff;
  box-shadow: 0 6px 16px rgba(4, 66, 144, .18);
}

.btn-outline {
  background: rgba(255, 255, 255, .92);
  border: 1.5px solid #1a5ca5;
  color: #06478f;
}

.play {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #0a4a99;
  display: grid;
  place-items: center;
  font-size: 10px;
  margin-right: 8px;
  padding-left: 1px;
}

.pillars {
  display: flex;
  gap: 42px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #064b99;
}

.pillar-badge {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: none;
  flex: 0 0 auto;
}

.pillar svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.pillar-badge img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.pillar b {
  font-size: 12px;
  line-height: 1.15;
}

.hero-seal {
  position: absolute;
  top: 54px;
  right: 35px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px solid #0d4d97;
  color: #0b4389;
  background: rgba(255, 255, 255, .88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .8), inset 0 0 0 6px #0d4d97;
  transform: rotate(-1deg);
}

.hero-seal::before,
.hero-seal::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #0d4d97;
  border-radius: 47% 53% 48% 52%/52% 45% 55% 48%;
  transform: rotate(6deg);
}

.hero-seal::after {
  inset: -8px;
  transform: rotate(-4deg);
  opacity: .7
}

.hero-seal b {
  color: var(--yellow);
  font-size: 17px;
  line-height: 1
}

.hero-wave {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -27px;
  height: 70px;
  background: #f8fbff;
  border-radius: 50% 50% 0 0/54% 54% 0 0;
  transform: rotate(-.2deg);
}

/* General sections */
.section {
  padding: 12px 0 22px;
  background: var(--page);
}

.priorities {
  padding-top: 0
}

.section-title h2 {
  margin: 0;
  color: #0b3d80;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .1px;
}

.section-title h2 span {
  color: #0d55ad
}

.section-title.centered {
  text-align: center
}

.section-title.centered i,
.section-title.light i {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  margin: 4px auto 9px;
}

.section-title.light h2 {
  color: #fff
}

.section-title.light i {
  margin: 5px 0 12px
}

.section-title.compact h2 {
  font-size: 15px
}

/* Priorities */
.priority-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.priority-card {
  background: #fff;
  border: 1px solid #e3ebf4;
  border-radius: 10px;
  padding: 12px 12px 13px;
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .22s;
}

.priority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(4, 54, 111, .14);
}

.priority-icon {
  width: 54px;
  height: 54px;
  border-radius: 0;
  color: #064c9c;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.priority-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority-card h3 {
  color: #0750a3;
  font-size: 10.5px;
  line-height: 1.1;
  margin: 7px 0 7px;
  font-weight: 900;
}

.priority-card p {
  font-size: 10px;
  line-height: 1.3;
  color: #173966;
  margin: 0 0 8px;
}

.priority-card button {
  margin-top: auto;
  background: transparent;
  border: 0;
  color: #0a50a4;
  font-weight: 900;
  font-size: 10px;
}

.priority-card button span {
  font-size: 16px;
  margin-left: 4px;
}

/* About */
.about {
  padding-top: 0;
  padding-bottom: 14px
}

.about-panel {
  position: relative;
  height: 231px;
  min-height: 231px;
  background: linear-gradient(105deg, #084d9d 0%, #053e84 62%, #043879 100%);
  border-radius: 13px;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 39% 31% 30%;
  box-shadow: 0 8px 25px rgba(0, 43, 101, .14);
}

.about-copy {
  padding: 21px 0 18px 24px;
  position: relative;
  z-index: 3;
}

.about-copy p {
  font-size: 10.5px;
  line-height: 1.42;
  margin: 0 0 8px;
  max-width: 390px;
}

.btn-yellow {
  height: 31px;
  border-radius: 5px;
  background: var(--yellow);
  color: #0a3268;
  padding: 0 16px;
  margin-top: 2px;
}

.about-values {
  position: relative;
  z-index: 3;
  padding: 24px 5px 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  backdrop-filter: blur(2px);
}

.value-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value p {
  margin: 0;
  font-size: 9px;
  line-height: 1.25;
  color: #eaf3ff;
}

.value b {
  display: block;
  font-size: 10.5px;
  color: #fff;
  margin-bottom: 2px;
}

.value span {
  display: block
}

.about-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 36%;
  height: 100%;
  background: url('../assets/about-photo.jpg') center bottom/auto 111% no-repeat;
  z-index: 1;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #063e84 0%, rgba(6, 62, 132, .67) 12%, transparent 45%);
}

.about-lineart {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  height: 100%;
  opacity: .16;
  background-image: linear-gradient(90deg, transparent 0 100%), repeating-linear-gradient(75deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 26px);
  z-index: 2;
  pointer-events: none;
}

/* News + social */
.news-social {
  padding-top: 0;
  padding-bottom: 8px;
}

.news-social-grid {
  display: grid;
  grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
  gap: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 17px;
  align-items: stretch;
}

.news-card {
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(4, 54, 111, .08);
  display: flex;
  flex-direction: column;
}

.news-card>img {
  width: 100%;
  height: 68px;
  object-fit: cover;
}

.news-card:nth-child(1)>img {
  object-position: center 56%
}

.news-card:nth-child(2)>img {
  object-position: center 42%
}

.news-card:nth-child(3)>img {
  object-position: center 38%
}

.news-body {
  padding: 4px 9px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-head {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 8px;
  align-items: start;
}

.news-head time {
  background: #06499a;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 3px 2px;
  line-height: .9;
}

.news-head time b {
  font-size: 12px;
  display: block
}

.news-head time small {
  font-size: 7.5px
}

.news-head h3 {
  font-size: 9.7px;
  line-height: 1.18;
  margin: 2px 0 0;
  color: #102f59;
}

.news-card p {
  font-size: 9.5px;
  line-height: 1.3;
  margin: 3px 0;
  color: #355171;
  min-height: 22px;
}

.news-card button {
  border: 0;
  background: none;
  padding: 0;
  color: #0b50a4;
  font-weight: 900;
  font-size: 9.5px;
  align-self: flex-start;
  margin-top: auto;
}

.all-news-btn {
  display: block;
  margin: 11px auto 0;
  border: 1px solid #0d54a7;
  background: #fff;
  color: #0a4d9d;
  font-size: 9px;
  font-weight: 900;
  border-radius: 4px;
  padding: 4px 15px;
}

.social-column {
  border-left: 1px solid #c9d7e7;
  padding-left: 21px;
}

.social-column>p {
  display: block;
  margin: 8px 0 0;
  color: #355171;
  font-size: 11px;
  line-height: 1.3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 9px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  line-height: 0;
  border-radius: 5px;
  background: #e7eef7;
}

.gallery-grid img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 5px;
  transition: .2s;
}

.gallery-grid a:nth-child(1) img {
  object-position: center 43%
}

.gallery-grid a:nth-child(2) img {
  object-position: center 42%
}

.gallery-grid a:nth-child(3) img {
  object-position: center 38%
}

.gallery-grid a:nth-child(4) img {
  object-position: center 48%
}

.gallery-grid a:nth-child(5) img {
  object-position: center 42%
}

.gallery-grid a:nth-child(6) img {
  object-position: center 44%
}

.gallery-grid a:hover img {
  filter: brightness(.9)
}

.gallery-grid a:focus-visible,
.social-links a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.social-links a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
  transition: .2s;
}

.social-links a:hover {
  transform: translateY(-2px)
}

.social-links a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .ig {
  background: linear-gradient(135deg, #ff004d, #c914e5)
}

.social-links .fb {
  background: #174a8e
}

.social-links .wa {
  background: #00a859
}

.social-links .yt {
  background: #f00000
}

.social-links .fb svg,
.social-links .wa svg,
.social-links .yt svg {
  stroke: none;
  fill: currentColor
}

/* CTA */
.campaign-cta {
  background: linear-gradient(90deg, #064b99, #053a7e);
  color: #fff;
  padding: 11px 0;
}

.campaign-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.cta-message {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 430px;
}

.cta-heart {
  color: var(--yellow);
  font-size: 64px;
  line-height: .8;
  font-family: Arial;
}

.cta-message p {
  margin: 0 0 -2px;
  font-size: 17px
}

.cta-message h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 18px
}

.cta-message small {
  font-size: 11px;
  display: block;
  margin-top: 2px
}

.newsletter {
  width: 40%
}

.newsletter label {
  display: block;
  font-size: 10.5px;
  font-weight: 900;
  margin-bottom: 7px;
}

.newsletter>div {
  display: flex;
  gap: 10px;
}

.newsletter input {
  height: 37px;
  flex: 1;
  border: 0;
  border-radius: 5px;
  padding: 0 13px;
  outline: none;
  color: #183b66;
  min-width: 0;
}

.newsletter button {
  border: 0;
  border-radius: 5px;
  background: var(--yellow);
  color: #082e62;
  padding: 0 20px;
  font-weight: 900;
  font-size: 11px;
}

/* Footer */
.site-footer {
  background: #fff;
  padding: 18px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 24fr 20fr 23fr 18fr 15fr;
  gap: 22px;
  align-items: start;
}

.footer-brand .brand-logo {
  width: 220px;
  color: #0b438e;
}

.footer-col h4,
.footer-support-card h4 {
  margin: 0 0 7px;
  color: #0a458e;
  font-size: 12px;
  font-weight: 900;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 10.5px;
  line-height: 1.3;
  color: #173b69;
  text-decoration: none;
  margin: 2px 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  align-content: start;
}

.footer-nav h4 {
  grid-column: 1/-1;
}

.footer-col a:hover {
  text-decoration: underline
}

.footer-socials {
  justify-content: flex-start;
  gap: 11px;
  margin-top: 12px;
}

.footer-social-column {
  align-self: start
}

.footer-socials a {
  width: 31px;
  height: 31px;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.footer-socials a svg {
  display: block;
  width: 18px;
  height: 18px;
}

.footer-support-card {
  border: 1px solid #bcd0e8;
  border-radius: 8px;
  padding: 9px 10px;
  text-align: center;
}

.footer-support-card p {
  font-size: 8px;
  line-height: 1.3;
  margin: 4px 0 6px;
  color: #234a78;
}

.footer-support-card button {
  border: 0;
  border-radius: 5px;
  background: var(--yellow);
  color: #09336c;
  font-weight: 900;
  font-size: 10px;
  padding: 6px 14px;
}

.legal {
  text-align: center;
  color: #164982;
  font-size: 10px;
  font-weight: 800;
  margin-top: 17px;
  padding-bottom: 8px;
}

/* Modal / toast */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 24, 61, .76);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.modal-backdrop[hidden] {
  display: none
}

.modal {
  position: relative;
  background: #fff;
  width: min(600px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef4fb;
  color: #06458f;
  font-size: 27px;
  line-height: 1;
}

.modal-kicker {
  font-size: 11px;
  color: #efaa00;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-right: 42px;
}

.modal h2 {
  color: #073f87;
  margin: 5px 42px 14px 0;
  font-size: 26px;
  line-height: 1.1;
}

.modal p,
.modal li {
  font-size: 14px;
  line-height: 1.55;
  color: #2c496b;
}

.modal ul {
  padding-left: 20px
}

.modal .modal-action {
  display: inline-flex;
  margin-top: 10px;
  border: 0;
  background: var(--yellow);
  color: #082f65;
  text-decoration: none;
  border-radius: 7px;
  padding: 11px 16px;
  font-weight: 900;
  font-size: 12px;
}

.support-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 15px;
}

.support-form label {
  font-size: 11px;
  font-weight: 800;
  color: #174778;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid #ccdae9;
  border-radius: 7px;
  padding: 10px;
  margin-top: 5px;
  outline: none;
  background: #fff;
  color: #173c69;
}

.support-form textarea {
  min-height: 85px;
  resize: vertical;
}

.support-form .full {
  grid-column: 1/-1
}

.support-form button {
  grid-column: 1/-1;
  border: 0;
  background: var(--yellow);
  color: #082f65;
  border-radius: 7px;
  padding: 12px;
  font-weight: 900;
}

.video-frame {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #063a7b, #0b55a8);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.video-frame .big-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #064792;
  display: grid;
  place-items: center;
  font-size: 27px;
  margin: 0 auto 12px;
  padding-left: 4px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  z-index: 120;
  background: #063a7d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 9px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transition: .22s;
  font-size: 13px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Responsive */
@media(max-width:1080px) {
  .container {
    width: calc(100% - 130px)
  }

  .header-inner {
    width: calc(100% - 84px)
  }

  .campaign-cta-inner {
    width: calc(100% - 164px)
  }

  .newsletter {
    width: 36%;
    margin-right: 44px
  }

  .footer-grid,
  .legal {
    width: calc(100% - 96px)
  }

  .footer-brand {
    padding-left: 16px
  }

  .brand {
    width: 226px
  }

  .brand-logo {
    width: 220px
  }

  .main-nav {
    gap: 26px;
    margin-left: 40px;
    margin-right: auto
  }

  .main-nav a {
    font-size: 10.5px
  }

  .header-support {
    padding: 0 15px;
    font-size: 9.5px
  }

  .hero-copy {
    width: 58%
  }

  .hero h1 {
    font-size: 40px
  }
}

@media(max-width:880px) {
  html {
    scroll-padding-top: 70px
  }

  .site-header {
    height: 70px
  }

  .container,
  .header-inner {
    width: calc(100% - 36px)
  }

  .brand {
    width: 185px
  }

  .header-support {
    display: none
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 14px
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    height: auto;
    background: #043b7e;
    padding: 8px 18px 16px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 12px 18px rgba(0, 0, 0, .18);
  }

  .main-nav.open {
    display: flex
  }

  .main-nav a {
    padding: 11px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
  }

  .main-nav a::after {
    display: none
  }

  .hero {
    height: auto;
    min-height: 690px
  }

  .hero-photo {
    left: 0;
    top: 340px;
    height: 380px;
    background-position: center top;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, .45) 15%, rgba(255, 255, 255, 0) 35%);
  }

  .hero-copy {
    width: 100%;
    padding-top: 35px
  }

  .hero-seal {
    top: 365px;
    right: 28px;
    width: 104px;
    height: 104px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 39px
  }

  .hero h1::after {
    margin-top: 10px
  }

  .hero-copy>p {
    font-size: 15px
  }

  .pillars {
    margin-top: 27px;
    gap: 24px
  }

  .pillar {
    gap: 9px
  }

  .pillar-badge {
    width: 50px;
    height: 50px
  }

  .pillar svg {
    width: 44px;
    height: 44px
  }

  .pillar-badge img {
    width: 44px;
    height: 44px
  }

  .pillar b {
    font-size: 13px
  }

  .hero-wave {
    bottom: -29px
  }

  .priority-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .priority-card:last-child {
    grid-column: 1/-1;
    max-width: 50%;
    width: 100%;
    justify-self: center;
  }

  .about-panel {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .about-copy {
    padding-right: 28px
  }

  .about-values {
    padding: 10px 28px 265px
  }

  .about-photo {
    width: 100%;
    height: 250px;
    top: auto;
    bottom: 0;
    background-position: center 14%;
  }

  .about-photo::before {
    background: linear-gradient(180deg, #063e84 0%, rgba(6, 62, 132, .35) 24%, transparent 55%);
  }

  .about-lineart {
    width: 100%;
    height: 250px
  }

  .news-social-grid {
    grid-template-columns: 1fr
  }

  .social-column {
    border-left: 0;
    border-top: 1px solid #d0dbea;
    padding-left: 0;
    padding-top: 18px;
  }

  .gallery-grid img {
    height: 100px
  }

  .campaign-cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .newsletter {
    width: 100%;
    margin-right: 0
  }

  .cta-message {
    min-width: 0
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-brand img {
    width: 200px
  }
}

@media(max-width:580px) {
  .container {
    width: calc(100% - 26px)
  }

  .header-inner {
    width: calc(100% - 26px)
  }

  .brand-logo {
    width: 185px
  }

  .hero {
    min-height: 720px
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.07
  }

  .eyebrow {
    font-size: 12px
  }

  .desktop-break {
    display: none
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    width: 260px;
  }

  .btn {
    height: 42px
  }

  .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
    width: 100%;
  }

  .pillar {
    min-width: 0
  }

  .pillar-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .pillar svg {
    width: 26px;
    height: 26px;
  }

  .pillar-badge img {
    width: 36px;
    height: 36px
  }

  .pillar b {
    font-size: 11px
  }

  .hero-photo {
    top: 405px;
    height: 340px;
    background-position: 100% top;
  }

  .hero-seal {
    top: 425px;
    right: 18px;
    width: 88px;
    height: 88px;
    font-size: 8px;
    gap: 2px;
  }

  .section {
    padding-left: 0;
    padding-right: 0
  }

  .priority-grid {
    grid-template-columns: 1fr
  }

  .priority-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .about-panel {
    min-height: 550px
  }

  .about-copy {
    padding: 22px 20px
  }

  .about-values {
    padding: 8px 20px 265px
  }

  .news-grid {
    grid-template-columns: 1fr
  }

  .news-card>img {
    height: 130px
  }

  .gallery-grid img {
    height: 78px
  }

  .cta-heart {
    font-size: 46px
  }

  .cta-message h3 {
    font-size: 17px
  }

  .cta-message p {
    font-size: 14px
  }

  .newsletter>div {
    gap: 6px
  }

  .newsletter button {
    padding: 0 11px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-support-card {
    grid-column: 1/-1
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .support-form {
    grid-template-columns: 1fr
  }

  .support-form .full {
    grid-column: auto
  }
}

/* Larger desktop treatment for the news, gallery and footer social blocks. */
@media(min-width:1081px) {
  .hero {
    height: clamp(465px, 41vw, 558px);
  }

  .hero-photo {
    inset: 0 auto 0 50%;
    width: min(100%, 1360px);
    transform: translateX(-50%);
    background-size: 100% auto;
    background-position: center top;
  }

  .hero-photo::before {
    display: none;
  }

  .hero-photo::after {
    display: none;
  }

  .hero-copy {
    padding-top: 68px;
  }

  .pillars {
    margin-top: 32px;
  }

  .hero-seal {
    top: 70px;
    right: 14px;
    width: 110px;
    height: 110px;
    font-size: 11px;
  }

  .hero-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #06468f;
  }

  .hero-glow::after {
    display: none;
  }

  .hero-wave {
    display: none
  }

  .news-social {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .news-social>.container {
    width: min(1280px, calc(100% - 64px));
  }

  .news-social-grid {
    grid-template-columns: minmax(0, 62.7fr) minmax(0, 37.3fr);
    gap: 21px;
  }

  .section-title.compact h2 {
    font-size: 20px;
    line-height: 1.1;
  }

  .section-title.compact h2::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 6px;
    border-radius: 3px;
    background: var(--yellow);
  }

  .news-grid {
    gap: 26px;
    margin-top: 10px;
  }

  .news-card {
    min-height: 225px;
    border-radius: 8px;
  }

  .news-card>img {
    height: 92px
  }

  .news-body {
    padding: 10px 11px 11px
  }

  .news-head {
    grid-template-columns: 38px 1fr;
    gap: 9px;
  }

  .news-head time {
    padding: 4px 2px
  }

  .news-head time b {
    font-size: 14px
  }

  .news-head time small {
    font-size: 8px
  }

  .news-head h3 {
    font-size: 12.5px;
    line-height: 1.22;
  }

  .news-card p {
    min-height: 32px;
    margin: 8px 0 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .news-card button {
    font-size: 11.5px
  }

  .all-news-btn {
    margin-top: 12px;
    padding: 6px 15px;
    font-size: 10.5px;
  }

  .social-column {
    padding-left: 34px
  }

  .gallery-grid {
    gap: 6px;
    margin-top: 10px;
  }

  .gallery-grid img {
    height: 92px
  }

  .social-column>.social-links {
    gap: 24px;
    margin-top: 15px;
  }

  .social-column>.social-links a {
    width: 31px;
    height: 31px;
  }

  .social-column>.social-links a svg {
    width: 18px;
    height: 18px;
  }

  .contact-list,
  .footer-social-column {
    min-height: 112px;
    border-left: 1px solid #c9d7e7;
    padding-left: 28px;
  }

  .footer-socials {
    gap: 18px;
    margin-top: 14px;
  }

  .footer-socials a {
    width: 31px;
    height: 31px;
  }

  .footer-socials a svg {
    width: 18px;
    height: 18px;
  }
}

@media(min-width:1361px) {
  .hero-photo {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }
}

/* Interactive polish */
.news-card,
.news-card>img,
.news-card h3,
.news-card button,
.news-card button span,
.gallery-grid a,
.gallery-grid img,
.gallery-grid a::after,
.priority-icon,
.priority-card h3,
.social-links a,
.btn,
.all-news-btn,
.btn-yellow,
.header-support,
.newsletter button,
.footer-support-card button {
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, color .3s ease, background-color .3s ease, opacity .3s ease;
}

.news-card button span {
  display: inline-block
}

.gallery-grid a {
  position: relative
}

.gallery-grid a::after {
  content: "Ver foto ↗";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 6px 7px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(2, 42, 91, .88));
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  opacity: 0;
  transform: translateY(7px);
  pointer-events: none;
}

.news-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(4, 54, 111, .17);
}

.news-card:focus-within>img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.03);
}

.news-card:focus-within h3 {
  color: #0862bf
}

.news-card:focus-within button span {
  transform: translateX(4px)
}

.gallery-grid a:focus-visible img {
  transform: scale(1.08);
  filter: brightness(.72) saturate(1.1);
}

.gallery-grid a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

@media(hover:hover) {
  .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 17px 36px rgba(4, 54, 111, .18);
  }

  .news-card:hover>img {
    transform: scale(1.055);
    filter: saturate(1.1) contrast(1.03);
  }

  .news-card:hover h3 {
    color: #0862bf
  }

  .news-card:hover button span {
    transform: translateX(4px)
  }

  .gallery-grid a:hover img {
    transform: scale(1.08);
    filter: brightness(.72) saturate(1.1);
  }

  .gallery-grid a:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  .priority-card:hover .priority-icon {
    transform: translateY(-3px) scale(1.08)
  }

  .priority-card:hover h3 {
    color: #0870ce
  }

  .social-links a:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 7px 15px rgba(0, 35, 82, .2)
  }

  .btn:hover,
  .all-news-btn:hover,
  .btn-yellow:hover,
  .header-support:hover,
  .newsletter button:hover,
  .footer-support-card button:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 8px 18px rgba(4, 54, 111, .18);
  }
}

@media(hover:none) {
  .news-card:active {
    transform: scale(.99)
  }

  .gallery-grid a:active img {
    transform: scale(1.045);
    filter: brightness(.78) saturate(1.08)
  }

  .gallery-grid a:active::after {
    opacity: 1;
    transform: translateY(0)
  }

  .priority-card:active {
    transform: scale(.99)
  }

  .social-links a:active {
    transform: scale(.93)
  }
}

@media(max-width:880px) {
  .hero-seal {
    display: none
  }
}

@media(max-width:580px) {
  .about-photo {
    background-position: clamp(110px, 32vw, 150px) bottom;
    background-size: auto 100%;
  }

  .about-photo::before {
    background: linear-gradient(105deg, #084d9d 0%, #053e84 62%, #043879 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0 10%, rgba(0, 0, 0, .72) 17%, transparent 28%);
    mask-image: linear-gradient(180deg, #000 0 10%, rgba(0, 0, 0, .72) 17%, transparent 28%);
  }

  .about-values .value p {
    max-width: 132px;
  }

  .hero-copy>p {
    width: calc(100% - 12px);
    max-width: calc(100% - 12px);
    padding-right: 0;
    font-size: 14px;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: calc(100% - 12px)
  }

  .pillars {
    margin-top: 24px;
    gap: 13px 8px
  }

  .pillar {
    gap: 7px
  }

  .pillar:nth-child(3) {
    grid-column: 1;
    justify-self: start
  }

  .pillar b {
    font-size: 10.5px;
    line-height: 1.12
  }

  .priority-card {
    min-height: 168px;
    padding: 15px 14px;
  }

  .priority-card h3 {
    font-size: 12px
  }

  .priority-card p {
    font-size: 11px;
    max-width: 270px
  }

  .priority-card button {
    font-size: 11.5px;
    min-height: 32px
  }

  .section-title.compact h2 {
    font-size: 19px;
    line-height: 1.15
  }

  .news-grid {
    gap: 14px;
    margin-top: 12px
  }

  .news-card {
    min-height: 0;
    border-radius: 11px
  }

  .news-card>img {
    height: 150px
  }

  .news-body {
    padding: 11px 12px 13px
  }

  .news-head {
    grid-template-columns: 44px 1fr;
    gap: 10px
  }

  .news-head time {
    padding: 6px 3px
  }

  .news-head time b {
    font-size: 15px
  }

  .news-head time small {
    font-size: 8px
  }

  .news-head h3 {
    font-size: 13.5px;
    line-height: 1.25;
    margin-top: 2px
  }

  .news-card p {
    font-size: 12.5px;
    line-height: 1.4;
    margin: 9px 0;
    min-height: 0
  }

  .news-card button {
    font-size: 12px;
    min-height: 32px
  }

  .all-news-btn {
    min-height: 40px;
    font-size: 11px;
    padding: 0 16px
  }

  .social-column>p {
    font-size: 12px
  }

  .gallery-grid {
    gap: 5px
  }

  .gallery-grid a::after {
    font-size: 8px;
    padding-bottom: 5px
  }

  .social-links {
    gap: 16px
  }

  .social-links a {
    width: 34px;
    height: 34px
  }

  .social-links a svg {
    width: 19px;
    height: 19px
  }

  .campaign-cta {
    padding: 16px 0
  }

  .campaign-cta-inner {
    gap: 16px
  }

  .cta-message {
    gap: 12px
  }

  .newsletter>div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    height: 44px
  }

  .site-footer {
    padding: 22px 0 8px
  }

  .footer-grid {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    column-gap: 16px;
    row-gap: 19px;
    text-align: center
  }

  .footer-nav {
    display: block;
    grid-column: 1;
    text-align: left;
  }

  .contact-list {
    grid-column: 2;
    text-align: left;
  }

  .footer-brand,
  .footer-social-column,
  .footer-support-card {
    grid-column: 1/-1
  }

  .footer-brand {
    padding-left: 0
  }

  .footer-brand .brand-logo {
    margin: 0 auto
  }

  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 8px
  }

  .footer-col a,
  .footer-col p {
    font-size: 11px;
    line-height: 1.4;
    margin: 3px 0
  }

  .contact-list,
  .footer-social-column {
    min-height: 0;
    border-left: 0;
    padding-left: 0
  }

  .footer-socials {
    justify-content: center;
    margin-top: 12px
  }

  .footer-support-card {
    padding: 14px
  }

  .footer-support-card p {
    font-size: 10.5px
  }

  .footer-support-card button {
    min-height: 40px
  }

  .legal {
    font-size: 8px;
    line-height: 1.4;
    margin-top: 14px
  }
}

@media(max-width:350px) {
  .about-photo {
    background-position: 75px bottom;
  }

  .about-values .value p {
    max-width: 105px;
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
