:root {
  --navy-900: #002040;
  --navy-800: #062744;
  --navy-700: #0a3158;
  --navy-600: #173f67;
  --navy-500: #173858;
  --ivory-100: #fbf6f0;
  --ivory-200: #f5eee4;
  --ivory-300: #efe4d4;
  --gold-500: #dfaf63;
  --gold-400: #e8bf78;
  --gold-300: #f5d08b;
  --gold-line: #e1b46a;
  --red-600: #b51f32;
  --blue-600: #124a82;
  --orange-500: #e07b24;
  --white: #ffffff;
  --text-primary: #062c55;
  --text-nav: #0a3158;
  --text-muted: #5c7388;
  --footer-secondary: #d9e2ea;
  --footer-muted: #b8c6d1;
  --radius: 7px;
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.08);
  --header-max: 1400px;
  --font-display: "Noto Serif Armenian", "Noto Naskh Arabic", Georgia, serif;
  --font-ui: "Noto Sans Armenian", "Vazirmatn", "Noto Sans", sans-serif;
  --header-pad: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html[lang="fa"] {
  --font-display: "Noto Naskh Arabic", "Vazirmatn", serif;
  --font-ui: "Vazirmatn", "Noto Sans Armenian", sans-serif;
}

body {
  font-family: var(--font-ui);
  background: var(--ivory-100);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--navy-800);
  color: var(--white);
  padding: 8px 14px;
  z-index: 1000;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--ivory-100);
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(10, 49, 88, 0.08);
}

.header-container {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 10px var(--header-pad);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px 28px;
  align-items: center;
  min-height: 108px;
}

.brand {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.header-stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-row--top {
  min-height: 46px;
  padding: 2px 0 8px;
  border-bottom: 1px solid rgba(223, 175, 99, 0.42);
}

.header-row--nav {
  min-height: 46px;
  padding-top: 6px;
}

.brand-text {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.brand-kicker {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.brand-motto {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-500);
  font-size: 12px;
  font-weight: 600;
}

.lang-switch button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.55;
}

.lang-switch button.is-active {
  opacity: 1;
  color: var(--text-primary);
}

.lang-switch .sep {
  width: 1px;
  height: 11px;
  background: rgba(23, 56, 88, 0.35);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-700);
  color: var(--ivory-100);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-login svg {
  width: 15px;
  height: 15px;
}

.btn-login:hover {
  background: var(--navy-800);
  color: var(--gold-300);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-nav);
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gold-line);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active::after {
  width: 52px;
  left: 50%;
  right: auto;
  margin-left: -26px;
}

.nav-caret {
  width: 9px;
  height: 9px;
  opacity: 0.7;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 280px;
  background: var(--ivory-100);
  border: 1px solid rgba(10, 49, 88, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 20;
}

html[dir="rtl"] .dropdown {
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-nav);
}

.dropdown a small {
  font-weight: 400;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.dropdown a:hover {
  background: var(--ivory-200);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--navy-700);
  cursor: pointer;
  border-radius: var(--radius);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(10, 49, 88, 0.18);
  background: var(--ivory-100);
  z-index: 2;
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none !important;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(0, 32, 64, 0.28) 0%, rgba(0, 32, 64, 0.55) 48%, rgba(0, 32, 64, 0.88) 100%),
    radial-gradient(ellipse at 50% 18%, rgba(223, 175, 99, 0.18), transparent 42%),
    linear-gradient(180deg, #173f67 0%, #062744 46%, #00182e 100%);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 78px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.hero-lead {
  max-width: 560px;
  margin-top: 16px;
  font-size: 17px;
  color: #e8eef4;
  font-weight: 400;
}

.hero-ornament {
  margin: 22px 0 26px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-gold:hover {
  background: var(--gold-400);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.btn-outline:hover {
  background: rgba(223, 175, 99, 0.1);
}

[id] {
  scroll-margin-top: 128px;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  transform: translateY(-50%);
  background: var(--ivory-100);
  border: 1px solid rgba(223, 175, 99, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.stat {
  padding: 22px 18px 20px;
  text-align: center;
}

.stat + .stat {
  border-inline-start: 1px solid rgba(10, 49, 88, 0.1);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy-700);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ========== SECTIONS ========== */
.section {
  padding: 96px 0 80px;
}

.section--tight {
  padding-top: 64px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

.section-head p,
.lede {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 15px;
}

.link-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 2px;
  white-space: nowrap;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.unit-card {
  background: var(--white);
  border: 1px solid rgba(10, 49, 88, 0.06);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-card);
  min-height: 176px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.unit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 175, 99, 0.55);
}

.unit-card .mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--navy-700);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
}

.unit-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}

.unit-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.news-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.news-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 49, 88, 0.05);
}

.news-thumb {
  height: 180px;
  background:
    linear-gradient(180deg, rgba(0, 32, 64, 0.05), rgba(0, 32, 64, 0.45)),
    repeating-linear-gradient(45deg, #14365c 0 12px, #0e2c4c 12px 24px);
  position: relative;
}

.news-card:first-child .news-thumb {
  height: 240px;
}

.news-card .date {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(251, 246, 240, 0.92);
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

html[dir="rtl"] .news-card .date {
  left: auto;
  right: 14px;
}

.news-card .body {
  padding: 18px 18px 20px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.news-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.history {
  background: var(--ivory-200);
}

.history-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.history-copy h2 {
  margin-bottom: 16px;
}

.history-copy p + p {
  margin-top: 14px;
}

.history-visual {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(6, 39, 68, 0.15), rgba(6, 39, 68, 0.55)),
    #0a3158;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.history-visual .caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: var(--ivory-100);
}

.history-visual .caption b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 180px 180px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #123152;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  z-index: 1;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern.svg");
  background-size: 90px;
  opacity: 0.12;
}

.gallery-item:hover {
  filter: brightness(1.08);
}

@media (max-width: 1200px) {
  .brand-kicker {
    white-space: normal;
  }
}
.g1 { background: linear-gradient(160deg, #1d4a76, #071e36); }
.g2 { background: linear-gradient(160deg, #8a2a32, #3a1018); }
.g3 { background: linear-gradient(160deg, #8a5a22, #2c1c0c); }
.g4 { background: linear-gradient(160deg, #165a7a, #082030); }
.g5 { background: linear-gradient(160deg, #2d5a3a, #0c2014); }

/* ========== CTA / FOOTER ========== */
.prefooter-cta {
  position: relative;
  background:
    linear-gradient(90deg, rgba(6, 39, 68, 0.94), rgba(6, 39, 68, 0.88)),
    url("../img/pattern.svg");
  background-color: var(--navy-800);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(223, 175, 99, 0.28);
}

.prefooter-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern.svg");
  background-size: 140px;
  opacity: 0.07;
  color: #dfaf63;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0;
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  width: 54px;
  height: 62px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--gold-500);
  clip-path: polygon(50% 0, 100% 18%, 100% 72%, 50% 100%, 0 72%, 0 18%);
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 6px;
}

.cta-copy p {
  color: var(--footer-secondary);
  font-size: 14.5px;
  max-width: 560px;
}

.site-footer {
  background-color: var(--navy-900);
  color: var(--white);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 160px;
  background-image: url("../img/pattern.svg");
  background-size: 120px;
  opacity: 0.06;
  pointer-events: none;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 0;
  padding: 54px 0 36px;
}

.footer-col {
  padding: 0 28px;
}

.footer-col:first-child {
  padding-inline-start: 0;
}

.footer-col:last-child {
  padding-inline-end: 0;
}

.footer-col + .footer-col {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col p {
  color: var(--footer-secondary);
  font-size: 14px;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col li a {
  color: var(--footer-secondary);
  font-size: 14px;
}

.footer-col li a:hover {
  color: var(--gold-300);
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.socials a {
  color: var(--white);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.socials svg {
  width: 20px;
  height: 20px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: var(--footer-secondary);
  font-size: 13.5px;
  margin-bottom: 18px;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0 28px;
  text-align: center;
}

.copyright {
  color: var(--footer-muted);
  font-size: 13px;
}

.flag {
  margin: 16px auto 0;
  width: 42px;
  height: 28px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.flag span {
  display: block;
  height: 33.34%;
}

.flag .r { background: #d90012; }
.flag .b { background: #0033a0; }
.flag .o { background: #f2a800; }

/* Inner pages */
.page-hero {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: 54px 0 46px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
}

.page-hero p {
  margin-top: 10px;
  color: var(--footer-secondary);
  max-width: 640px;
}

.page-body {
  padding: 48px 0 80px;
}

.prose {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 8px 0 12px;
}

.prose p + p {
  margin-top: 12px;
}

.login-wrap {
  width: min(460px, 100%);
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  border: 1px solid rgba(223, 175, 99, 0.28);
}

.login-wrap h1 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}

.login-wrap .hint {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
}

.field input {
  height: 44px;
  border: 1px solid rgba(10, 49, 88, 0.16);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--ivory-100);
  color: var(--text-primary);
}

.field input:focus {
  outline: 2px solid rgba(223, 175, 99, 0.55);
  border-color: var(--gold-500);
}

.login-wrap .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.search-panel {
  display: none;
  position: absolute;
  right: var(--header-pad);
  top: calc(100% - 8px);
  width: 280px;
  background: var(--ivory-100);
  border: 1px solid rgba(10, 49, 88, 0.08);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 10px;
  z-index: 30;
}

html[dir="rtl"] .search-panel {
  right: auto;
  left: var(--header-pad);
}

.search-panel.is-open {
  display: block;
}

.search-panel input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(10, 49, 88, 0.14);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--white);
}

.mobile-drawer {
  display: none;
}

.unit-list {
  display: grid;
  gap: 14px;
}

.unit-list a {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
}

.unit-list h3 {
  font-family: var(--font-display);
  font-size: 20px;
}

.unit-list p {
  color: var(--text-muted);
  font-size: 14px;
}

.org-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(10, 49, 88, 0.05);
}

.org-block h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 8px;
}

.org-block .sub {
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .units-grid,
  .news-grid,
  .footer-main,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
    min-height: 220px;
  }

  .brand-kicker {
    font-size: 15px;
  }
}

@media (max-width: 860px) {
  :root { --header-pad: 18px; }

  .header-container {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 76px;
    padding: 8px 16px;
    gap: 12px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-motto {
    display: none;
  }

  .brand-kicker {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-row--nav,
  .lang-switch,
  .header-tools,
  .btn-login {
    display: none;
  }

  .header-stack {
    justify-content: center;
  }

  .header-row--top {
    border: 0;
    padding: 0;
    min-height: 0;
    gap: 10px;
  }

  .header-actions {
    display: flex;
  }

  .hero {
    min-height: 520px;
  }

  .hero-meta,
  .history-grid,
  .cta-inner,
  .section-head,
  .units-grid,
  .news-grid,
  .footer-main,
  .gallery-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-meta {
    transform: none;
    margin: 0 24px 24px;
  }

  .stat + .stat {
    border: 0;
    border-top: 1px solid rgba(10, 49, 88, 0.1);
  }

  .cta-inner,
  .cta-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col,
  .footer-col:first-child,
  .footer-col:last-child {
    padding: 18px 0;
  }

  .footer-col + .footer-col {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-drawer.is-open {
    display: block;
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--ivory-100);
    z-index: 70;
    padding: 18px;
    overflow: auto;
  }

  .mobile-drawer a,
  .mobile-drawer button.nav-acc {
    display: block;
    width: 100%;
    text-align: start;
    padding: 12px 8px;
    font-weight: 600;
    background: none;
    border: 0;
    color: var(--text-nav);
    font-size: 15px;
  }

  .mobile-sub {
    padding-inline-start: 14px;
    display: none;
  }

  .mobile-sub.is-open {
    display: block;
  }
}
