:root {
  --royal-blue: #174ea6;
  --royal-blue-dark: #103a78;
  --royal-blue-soft: #eaf1ff;
  --gold: #d6a21c;
  --gold-soft: #fff6d8;
  --navy: #10233f;
  --charcoal: #28303d;
  --muted: #667085;
  --line: #dce3ef;
  --light: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--charcoal);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

svg,
video,
canvas,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--royal-blue);
}

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  max-width: var(--max-width);
  min-width: 0;
}

.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.top-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar__group,
.top-bar__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(16, 35, 63, 0.06);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  min-width: 0;
  max-width: 190px;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand__name {
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 80;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
}

.main-nav a {
  flex: 0 0 auto;
  border-radius: 6px;
  padding: 9px 8px;
  color: var(--navy);
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.is-active {
  background: var(--royal-blue-soft);
  color: var(--royal-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 0;
}

.header-cta {
  min-height: 40px;
  padding: 9px 13px;
  white-space: nowrap;
}

.search {
  position: relative;
  width: clamp(180px, 18vw, 230px);
  min-width: 0;
}

.search__form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.search__input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 10px 12px;
  color: var(--charcoal);
  outline: none;
}

.search__button {
  border: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.search__button:hover {
  background: #c29218;
}

.search__results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100dvw - 32px));
  max-width: calc(100dvw - 32px);
  max-height: 380px;
  overflow: auto;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search__results.is-visible {
  display: grid;
  gap: 6px;
}

.search-result {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--charcoal);
}

.search-result:hover,
.search-result:focus {
  background: var(--royal-blue-soft);
}

.search-result strong {
  display: block;
  color: var(--navy);
}

.search-result span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16, 35, 63, 0.95), rgba(23, 78, 166, 0.82)),
    var(--navy);
  color: var(--white);
}

.hero__inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 52px;
  padding: 74px 0 84px;
  min-width: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal-blue-dark);
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.18;
}

.hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 1.05;
}

.hero__lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__media {
  align-self: stretch;
  display: grid;
  align-items: end;
  min-height: 420px;
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(16, 35, 63, 0.55), transparent);
}

.hero__image-wrap img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero__stats {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(78%, 360px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  padding: 12px;
}

.stat-chip strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}

.stat-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

.section {
  padding: 76px 0;
}

.section--light {
  background: var(--light);
}

.section--blue {
  background: var(--royal-blue);
  color: var(--white);
}

.section--blue h2,
.section--blue h3,
.section--blue .section__lead {
  color: var(--white);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section__title {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section__title h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.section__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(16, 35, 63, 0.96), rgba(23, 78, 166, 0.86)),
    var(--navy);
  color: var(--white);
}

.page-hero__inner {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: 72px 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  display: grid;
  gap: 16px;
  height: 100%;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.07);
}

.card--with-media {
  overflow: hidden;
  padding: 0;
}

.card__image {
  min-height: 172px;
  background: var(--royal-blue-soft);
}

.card__image img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
}

.card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--royal-blue-soft);
  color: var(--royal-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.meta-pill--gold {
  background: var(--gold-soft);
  color: #6d4a00;
}

.card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.feature-card {
  border-left: 4px solid var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  background: var(--royal-blue);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: var(--royal-blue-dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(23, 78, 166, 0.22);
}

.button--gold {
  background: var(--gold);
  color: var(--navy);
}

.button--gold:hover,
.button--gold:focus {
  background: #c29218;
  color: var(--navy);
}

.button--outline {
  background: transparent;
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}

.button--outline:hover,
.button--outline:focus {
  background: var(--royal-blue);
  color: var(--white);
}

.hero .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero .button--outline:hover,
.hero .button--outline:focus {
  border-color: var(--white);
  background: var(--white);
  color: var(--royal-blue);
}

.button--ghost {
  background: var(--white);
  color: var(--royal-blue);
  border-color: var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 40px;
  align-items: start;
  min-width: 0;
}

.panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.07);
}

.panel h3 {
  margin-bottom: 12px;
}

.panel p,
.panel li {
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-box strong {
  display: block;
  color: var(--royal-blue);
  font-size: 2rem;
  line-height: 1;
}

.stat-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-width: 0;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(16, 35, 63, 0.96), rgba(23, 78, 166, 0.9)),
    var(--royal-blue);
  color: var(--white);
}

.cta-band__visual {
  width: min(260px, 100%);
  justify-self: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.cta-band__visual img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.cta-band__aside {
  display: grid;
  justify-items: end;
  gap: 16px;
  min-width: 0;
}

.cta-band h2,
.cta-band h3 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.section-media {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.07);
}

.section-media--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
}

.section-media__image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--royal-blue-soft);
}

.section-media__image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.section-media__content {
  display: grid;
  gap: 12px;
}

.section-media__content p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline__item {
  display: grid;
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline__date {
  color: var(--royal-blue);
  font-weight: 900;
}

.profile-card {
  overflow: hidden;
  padding: 0;
}

.profile-card__image {
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 78, 166, 0.94), rgba(16, 35, 63, 0.94)),
    var(--royal-blue);
  color: var(--white);
}

.profile-card__initials {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 900;
}

.profile-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.profile-card__role {
  color: var(--royal-blue);
  font-weight: 900;
  font-size: 0.9rem;
}

.price {
  color: var(--royal-blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.payment-box {
  border: 1px dashed #b98a13;
  border-radius: var(--radius);
  background: var(--gold-soft);
  padding: 16px;
  color: #624400;
}

.payment-box strong {
  display: block;
  color: var(--navy);
}

.form {
  display: grid;
  gap: 18px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(23, 78, 166, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--royal-blue-soft);
  color: var(--royal-blue-dark);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.event-card {
  grid-template-columns: minmax(0, 92px) minmax(0, 1fr);
  align-items: start;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: var(--radius);
  background: var(--royal-blue);
  color: var(--white);
  text-align: center;
}

.event-date strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-card__label {
  width: fit-content;
  border-radius: 4px;
  padding: 4px 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card {
  grid-template-columns: 54px minmax(0, 1fr);
}

.resource-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--royal-blue-soft);
  color: var(--royal-blue);
  font-weight: 900;
}

.news-card {
  padding: 0;
  overflow: hidden;
}

.news-card__media {
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(23, 78, 166, 0.95), rgba(16, 35, 63, 0.95)),
    var(--royal-blue);
}

.news-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(16, 35, 63, 0.88), transparent);
  color: var(--white);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
  color: var(--muted);
}

.contact-list strong {
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 56px 0;
  min-width: 0;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .top-bar__inner,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__inner {
    min-height: 74px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .brand {
    max-width: min(72vw, 240px);
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 70;
    width: min(86dvw, 370px);
    max-width: 100dvw;
    height: 100dvh;
    align-content: start;
    justify-content: start;
    display: none;
    gap: 4px;
    padding: 92px 22px 24px;
    background: var(--white);
    box-shadow: -24px 0 55px rgba(16, 35, 63, 0.2);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 14px;
    font-size: 1rem;
  }

  .header-actions {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    margin-left: 0;
  }

  .search {
    width: 100%;
  }

  .hero__inner,
  .split,
  .grid--2,
  .grid--3,
  .grid--4,
  .site-footer__main,
  .cta-band,
  .section-media,
  .section-media--reverse {
    grid-template-columns: 1fr;
  }

  .cta-band__visual {
    justify-self: start;
  }

  .cta-band__aside {
    justify-items: start;
  }

  .hero__inner {
    min-height: auto;
    padding: 58px 0 66px;
  }

  .hero__media {
    min-height: 320px;
  }

  .hero__image-wrap img {
    min-height: 320px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__head {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .section {
    padding: 54px 0;
  }

  .page-hero__inner {
    padding: 54px 0;
  }

  .hero__stats {
    position: static;
    width: 100%;
    padding: 12px;
    grid-template-columns: 1fr;
    background: rgba(16, 35, 63, 0.45);
  }

  .form__row,
  .timeline__item,
  .event-card,
  .resource-card,
  .stats-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-date,
  .resource-card__icon {
    width: 100%;
  }

  .gallery-item {
    min-height: 210px;
  }
}

@media (max-width: 460px) {
  .header-actions {
    grid-template-columns: 1fr;
  }

  .header-cta {
    width: 100%;
  }
}
