:root {
  --red: #e32931;
  --red-dark: #bd1b27;
  --blue: #102a64;
  --ink: #14254c;
  --muted: #68738a;
  --cream: #fffdf9;
  --paper: #ffffff;
  --soft: #f1f3f8;
  --line: #dfe3ec;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 50%, #153d89 50%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6.5vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.home-banner {
  padding: 20px 6.5vw 0;
  background: var(--paper);
}
.home-banner img {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: 160px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 0.8;
}
.brand b,
h1 em,
h2 em {
  color: var(--red);
}
.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.18em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font: 400 30px Arial;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
nav a:hover,
nav a.active {
  color: var(--red);
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.theme-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
}
.nav-toggle {
  display: none;
  border: 0;
  font-size: 22px;
}
.section {
  padding: 105px 6.5vw;
}
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 72px;
  background: var(--paper);
  overflow: hidden;
}
.hero-visual {
  width: 100%;
  max-width: 760px;
  min-height: 420px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f7f9fc;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }
  .hero-visual {
    margin: 0;
    max-width: 600px;
    min-height: auto;
  }
}
.eyebrow,
.section-kicker {
  color: var(--red);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}
.eyebrow span {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  background: var(--red);
  vertical-align: middle;
}
h1,
h2 {
  margin: 18px 0 22px;
  font-size: clamp(47px, 5.25vw, 79px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.065em;
}
h1 em,
h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.runner {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-top: 35px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.runner span {
  color: var(--red);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 14px 18px;
  border: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s;
}
.btn span {
  font-size: 18px;
  line-height: 0.8;
}
.primary {
  background: var(--red);
  color: #fff;
}
.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.text-btn {
  padding-left: 0;
}
.outline-light {
  border: 1px solid #8292b7;
  color: #fff;
}
.outline-light:hover {
  background: #fff;
  color: var(--blue);
}
.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-stats div {
  width: 180px;
  display: flex;
  flex-direction: column;
  margin-right: 25px;
  padding-right: 25px;
  border-right: 1px solid var(--line);
}
.hero-stats b {
  font-size: 23px;
}
.hero-stats span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.split-heading,
.news-grid,
.schedule-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.split-heading p,
.lead-top p,
.doc-top p,
.join-intro > p {
  max-width: 350px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.about-grid,
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}
.about-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 29px;
}
.about-card span,
.about-card a {
  font: 10px "DM Mono";
}
.about-card h3 {
  margin: 40px 0 8px;
  font-size: 22px;
  letter-spacing: -0.05em;
}
.about-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
}
.about-card a {
  margin-top: auto;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.about-card.red {
  background: var(--red);
  color: #fff;
}
.about-card.blue {
  background: var(--blue);
  color: #fff;
}
.about-card.white {
  border: 1px solid var(--line);
  background: var(--paper);
}
.leadership,
.documentary,
.schedule {
  background: var(--blue);
  color: #fff;
}
.light {
  color: #9ba9c9;
}
.lead-top,
.doc-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.lead-top h2,
.doc-top h2,
.schedule h2 {
  color: #fff;
}
.lead-top p,
.doc-top p {
  color: #c3cce0;
}
.lead-top h2 em,
.doc-top h2 em,
.schedule em {
  color: #ee5461;
}
.org-chart {
  max-width: 1100px;
  margin: 48px auto 32px;
  text-align: center;
  padding: 0 18px;
}
.org-main {
  display: inline-flex;
  flex-direction: column;
  padding: 14px 28px;
  border: 1px solid #8091b9;
  background: #152f68;
  border-radius: 8px;
}
.org-main span,
.org-row small {
  margin-bottom: 6px;
  color: #b9c5e0;
  font: 9px "DM Mono";
}
.org-main b {
  font-size: 13px;
}
.org-chart > i {
  display: block;
  width: 1px;
  height: 29px;
  margin: auto;
  border-left: 1px solid #8091b9;
}
.chief {
  border-color: #f2767d;
  background: var(--red);
}
.org-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid #8091b9;
  align-items: start;
}
.org-row div {
  padding: 12px 10px;
  border-right: 0;
  background: transparent;
  text-align: left;
  min-width: 0;
}
.org-row div > small {
  display: block;
}
.org-row small {
  display: block;
}
.org-row b {
  font-size: 12px;
}
.title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.view-all {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.news-grid {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 40px;
}
.feature-news {
  border: 1px solid var(--line);
}
.news-art {
  position: relative;
  height: 235px;
  overflow: hidden;
}
.news-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.evacuation {
  background: linear-gradient(
    135deg,
    #e7524d 0 35%,
    #f2ca65 35% 68%,
    #173976 68%
  );
}
.news-art span {
  position: absolute;
  top: 17px;
  left: 18px;
  z-index: 1;
  padding: 7px 10px;
  background: #fff;
  color: var(--red);
  font: 700 10px "DM Mono";
}
.news-body {
  padding: 24px;
}
.news-body label,
.news-list label,
.edu-grid label,
.agenda label {
  color: var(--red);
  font: 9px "DM Mono";
  letter-spacing: 0.09em;
}
.news-body h3 {
  margin: 10px 0;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.news-body p,
.edu-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.news-body a,
.edu-grid a {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.news-list article {
  display: grid;
  grid-template-columns: 65px 1fr 20px;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.date {
  color: var(--muted);
  font: 10px "DM Mono";
  line-height: 1.5;
}
.date b {
  color: var(--red);
}
.news-list h3 {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.news-list a {
  color: var(--red);
  font-size: 18px;
  text-decoration: none;
}
.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 170px 170px;
  gap: 12px;
  margin: 45px 0 35px;
}
.photo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  overflow: hidden;
}
.photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, #071a42aa, transparent 65%);
}
.photo span,
.photo div {
  z-index: 1;
}
.photo span {
  width: max-content;
  padding: 5px 7px;
  background: #fff;
  color: var(--blue);
  font: 10px "DM Mono";
}
.photo b {
  display: block;
  font-size: 15px;
}
.photo small {
  color: #d2d9e9;
  font-size: 10px;
}
.one {
  grid-row: span 2;
  background: linear-gradient(140deg, #274c83, #90c6d1 55%, #ee5461);
}
.two {
  background: linear-gradient(130deg, #e8c665, #d65b4f 45%, #183a79);
}
.three {
  background: linear-gradient(130deg, #365b87, #d9e2c4);
}
.four {
  background: linear-gradient(130deg, #e84c48, #f6d47c 52%, #15508a);
}
.timeline {
  max-width: 760px;
  margin: 0 0 40px 15%;
  padding-left: 38px;
  border-left: 1px solid #8091b9;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 23px;
  padding-bottom: 27px;
}
.timeline-item::before {
  position: absolute;
  top: 3px;
  left: -44px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}
.timeline-item.current::before {
  border-color: #f6777d;
  background: var(--red);
  box-shadow: 0 0 0 6px #e3293133;
}
.timeline time {
  color: #b9c5e0;
  font: 11px "DM Mono";
}
.timeline h3 {
  margin: 0 0 7px;
  font-size: 16px;
}
.timeline p {
  max-width: 450px;
  margin: 0;
  color: #c3cce0;
  font-size: 11px;
  line-height: 1.7;
}
.join {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  background: var(--soft);
}
.join h2 {
  font-size: 54px;
}
.join-note {
  display: flex;
  gap: 12px;
  max-width: 390px;
  margin-top: 34px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}
.join-note span {
  color: var(--red);
}
.join-note p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}
.join-form {
  padding: 31px 34px;
  background: var(--paper);
  box-shadow: 0 12px 35px #102a6412;
}
.form-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--red);
  font: 10px "DM Mono";
}
.form-head b {
  color: var(--muted);
}
.join-form label {
  display: block;
  margin: 18px 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  padding: 10px 0 9px;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 12px Manrope;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}
.submit-btn {
  margin-top: 12px;
  cursor: pointer;
}
#calendar-button {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  font-family: inherit;
  cursor: pointer;
}
#calendar-button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}
.form-message {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--red);
  font-size: 11px;
}
.education,
.faq {
  background: var(--paper);
}
.edu-grid {
  gap: 0;
  border: 1px solid var(--line);
}
.edu-grid article {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.edu-grid article:last-child {
  border: 0;
}
.edu-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue);
  color: var(--red);
  font-size: 34px;
  box-shadow: 0 16px 30px rgba(16, 42, 100, 0.14);
}
.edu-icon.flame {
  color: #f2912d;
}
.edu-icon.dot {
  background: var(--blue);
  color: var(--red);
  border: none;
  box-shadow: 0 16px 30px rgba(16, 42, 100, 0.14);
}
.edu-grid h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  letter-spacing: -0.045em;
}
.emergency {
  display: flex;
  gap: 45px;
  align-items: center;
  margin-top: 18px;
  padding: 19px 25px;
  background: var(--red);
  color: #fff;
}
.emergency > div:first-child {
  margin-right: auto;
}
.emergency span {
  float: left;
  margin-right: 12px;
  font-size: 25px;
}
.emergency b,
.emergency small {
  display: block;
}
.emergency b {
  font-size: 13px;
}
.emergency small {
  margin-top: 3px;
  font: 9px "DM Mono";
  opacity: 0.85;
}
.emergency-num {
  padding-left: 25px;
  border-left: 1px solid #f68d92;
}
.emergency-num b {
  font-size: 24px;
}
.schedule-grid {
  grid-template-columns: 0.8fr 1.2fr;
}
.schedule p {
  max-width: 300px;
  margin-bottom: 30px;
  color: #bec9df;
  font-size: 12px;
  line-height: 1.8;
}
.agenda article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #536a9c;
}
.agenda > article:first-child {
  padding-top: 0;
}
.agenda article > span {
  color: #c9d2e7;
  font: 10px "DM Mono";
}
.agenda article > span b {
  display: block;
  color: #fff;
  font: 700 30px Manrope;
  letter-spacing: -0.08em;
}
.agenda label {
  color: #e85460;
}
.agenda h3 {
  margin: 7px 0;
  font-size: 17px;
}
.agenda p {
  margin: 0;
  color: #9fadcb;
  font-size: 10px;
}
.pmi {
  display: grid;
  grid-template-columns: 0.38fr 1fr 0.75fr;
  gap: 40px;
  align-items: center;
  background: var(--soft);
}
.pmi-symbol {
  color: var(--red);
  font: 700 260px Arial;
  line-height: 0.7;
}
.pmi h2 {
  font-size: 52px;
}
.pmi p {
  max-width: 470px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.principles {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}
.principles small {
  color: var(--red);
  font: 10px "DM Mono";
}
.principles ol {
  margin: 13px 0;
  padding-left: 20px;
}
.principles li {
  padding-left: 5px;
  font-size: 12px;
  line-height: 1.9;
}
.faq-grid {
  grid-template-columns: 0.75fr 1.25fr;
}
.faq h2 {
  font-size: 50px;
}
.questions details {
  padding: 21px 0;
  border-top: 1px solid var(--line);
}
.questions details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--red);
  font-size: 18px;
}
.questions p {
  max-width: 560px;
  margin: 13px 30px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
footer {
  display: grid;
  grid-template-columns: 1.1fr 0.5fr 0.8fr 0.3fr;
  gap: 35px;
  padding: 58px 6.5vw 22px;
  background: #0a1c45;
  color: #fff;
}
.footer-brand p {
  max-width: 520px;
  color: #b9c5dd;
  font-size: 11px;
  line-height: 1.8;
}

footer p {
  color: #b9c5dd;
  font-size: 11px;
  line-height: 1.8;
}
footer .brand {
  color: #fff;
}
footer .brand small {
  color: #a7b5d4;
}
footer small {
  display: block;
  margin-bottom: 12px;
  color: #8497bd;
  font: 9px "DM Mono";
}
footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
}
.footer-cross {
  align-self: center;
  color: var(--red);
  font: 700 88px Arial;
}
.copyright {
  max-width: none;
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid #29416d;
  color: #8294b7;
  font: 9px "DM Mono";
}

.copyright p {
  max-width: 100%;
  width: 100%;
  margin: 0;
  color: inherit;
  line-height: 1.7;
}
.footer-PMI .brand-logo {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  display: block !important;
}
.footer-PMI {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-PMI .copyright,
.footer-pmi .copyright {
  border-top: 0;
  padding-top: 0;
}
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  gap: 13px;
  background: #102a64;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.loading-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.loading-overlay p {
  margin: 0;
  font: 11px "DM Mono";
  letter-spacing: 0.09em;
}
.loader-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: auto;
  border: 2px solid #ffffff55;
  border-top-color: var(--red);
  border-radius: 50%;
  font-size: 29px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
header .brand .brand-logo,
footer .brand .brand-logo {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

/* Support footer PMI logo sizing in both class variants */
.footer-PMI .brand-logo,
.footer-pmi .brand-logo {
  width: 55px !important;
  height: 55px !important;
  min-width: 55px !important;
  max-width: 55px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  display: block !important;
  flex-shrink: 0;
}

.portal {
  background: var(--soft);
}
.portal .split-heading {
  max-width: 760px;
}
.portal .split-heading p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
  max-width: 1000%;
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.portal-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 32px;
  border-radius: 22px;
  background: #14264a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(16, 37, 92, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portal-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 18px;
}
.portal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(16, 37, 92, 0.24);
}
.portal-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.1;
  color: #ffffff;
}
.portal-card p {
  margin: 0;
  color: #c8d8ff;
  font-size: 12px;
  line-height: 1.85;
  flex: 1;
}
.portal-card .btn {
  margin-top: 24px;
  width: fit-content;
}
@media (max-width: 900px) {
  .portal-grid {
    grid-template-columns: 1fr;
  }
}

body.dark {
  --ink: #edf2ff;
  --muted: #aebbd4;
  --cream: #101a31;
  --paper: #111d35;
  --soft: #15213b;
  --line: #2c3a58;
}
body.dark .site-header,
body.dark .hero,
body.dark .education,
body.dark .faq,
body.dark .about-card.white,
body.dark .join-form {
  background: var(--paper);
}
body.dark nav {
  background: var(--paper);
}
body.dark .news-art span,
body.dark .visual-note {
  background: #eef3ff;
}
body.dark .theme-toggle {
  border-color: #536485;
  color: #fff;
}
body.dark select option {
  background: #111d35;
}

@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 6vw;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero,
  .split-heading,
  .news-grid,
  .schedule-grid,
  .faq-grid,
  .join {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-visual {
    display: none;
  }
  .split-heading p {
    margin: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .lead-top,
  .doc-top {
    display: block;
  }
  .pmi {
    grid-template-columns: 1fr;
  }
  .pmi-symbol {
    font-size: 150px;
  }
  .principles {
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .org-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .org-row div:nth-child(2) {
    border: 0;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .one {
    grid-row: span 1;
  }
  .timeline {
    margin-left: 6%;
  }
  .join h2 {
    font-size: 48px;
  }
  .emergency {
    gap: 20px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 5vw;
  }
  .brand {
    font-size: 17px;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
    font-size: 26px;
  }
  nav {
    top: 68px;
  }
  .section {
    padding: 60px 5vw;
  }
  .hero {
    min-height: auto;
    padding-top: 58px;
  }
  .hero h1,
  h2 {
    font-size: 47px;
  }
  .hero-visual {
    min-height: auto;
    max-height: none;
  }
  .people {
    height: 250px;
  }
  .sun {
    width: 290px;
    height: 290px;
  }
  .hero-stats {
    justify-content: space-between;
  }
  .hero-stats div {
    width: auto;
    margin-right: 0;
    padding: 0;
    border: 0;
  }
  .hero-stats b {
    font-size: 19px;
  }
  .hero-stats span {
    font-size: 8px;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 190px;
  }
  .edu-grid {
    grid-template-columns: 1fr;
  }
  .edu-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .emergency {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .emergency > div:first-child {
    grid-column: 1 / -1;
  }
  .emergency-num {
    padding-left: 12px;
  }
  .agenda h3 {
    font-size: 14px;
  }
  .pmi h2,
  .faq h2,
  .join h2 {
    font-size: 43px;
  }
  .pmi-symbol {
    display: none;
  }
  .timeline {
    margin-left: 5px;
    padding-left: 26px;
  }
  .timeline-item {
    grid-template-columns: 63px 1fr;
    gap: 10px;
  }
  .timeline-item::before {
    left: -32px;
  }
  .timeline h3 {
    font-size: 14px;
  }
  .join-form {
    padding: 25px 20px;
  }
  footer {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .footer-cross {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-banner img {
    height: 130px;
  }
}

@media (max-width: 560px) {
  .home-banner {
    padding: 14px 5vw 0;
  }
  .home-banner img {
    height: 92px;
  }
}
