:root {
  --cyan: #06aee6;
  --blue: #0078c9;
  --blue-strong: #0068b4;
  --navy: #063b67;
  --ink: #10263b;
  --muted: #5c7183;
  --sky: #eaf8fd;
  --surface: #ffffff;
  --line: #d9e8f1;
  --shadow: 0 20px 60px rgba(3, 69, 112, .14);
  --shadow-soft: 0 12px 32px rgba(3, 69, 112, .10);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .about-copy h2, .join-card h2, .video-copy h2 {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading > p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 1.06rem; }
.visual-disclaimer { max-width: 760px; margin: 12px auto 0 !important; padding: 10px 14px; border-radius: 12px; color: #4f6c7d !important; background: #edf8fd; font-size: .88rem !important; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(6, 119, 193, .12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 30px rgba(6, 71, 113, .05);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-width: max-content; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: Montserrat, sans-serif; font-size: 1rem; font-weight: 900; color: var(--blue); }
.brand small { margin-top: 5px; color: var(--muted); font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { position: relative; text-decoration: none; font-weight: 700; font-size: .93rem; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px;
  border-radius: 99px; background: var(--cyan); transition: right .2s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after, .main-nav > a.active::after { right: 0; }
.nav-cta { padding: 10px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; box-shadow: 0 8px 24px rgba(0,120,201,.23); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--sky); border-radius: 13px; padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 99px; background: var(--navy); transition: .2s ease; }

.hero { background: #f7fcff; }
.hero-media { position: relative; width: 100%; overflow: hidden; background: #e8f4f8; }
.hero-media picture, .hero-media img { width: 100%; }
.hero-media img { aspect-ratio: 2048 / 779; object-fit: cover; }
.hero-actions-desktop { position: absolute; left: 50%; bottom: 26px; display: flex; gap: 12px; transform: translateX(-50%); }
.hero-mobile { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, video:focus-visible { outline: 3px solid rgba(3,174,230,.38); outline-offset: 3px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 13px 30px rgba(0,120,201,.25); }
.btn-glass { color: var(--navy); background: rgba(255,255,255,.86); border-color: rgba(255,255,255,.8); box-shadow: 0 12px 30px rgba(3,59,103,.15); backdrop-filter: blur(12px); }
.btn-outline { color: var(--blue); background: #fff; border-color: var(--blue); }
.btn-white { color: var(--blue); background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.10); }
.btn-ghost-light { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.45); }
.priority-strip { background: linear-gradient(90deg, var(--blue), var(--cyan)); color: #fff; }
.priority-grid { display: grid; grid-template-columns: repeat(5, 1fr); min-height: 66px; align-items: center; }
.priority-grid span { position: relative; text-align: center; font-family: Montserrat, sans-serif; font-weight: 800; letter-spacing: .01em; }
.priority-grid span:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: 0; width: 1px; height: 24px; background: rgba(255,255,255,.35); transform: translateY(-50%); }

.proposals { background: radial-gradient(circle at 15% 5%, rgba(3,174,230,.09), transparent 32%), #fff; }
.proposal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.proposal-card {
  min-height: 280px; padding: 28px 22px; border: 1px solid var(--line); border-radius: 22px;
  background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.proposal-card:hover { transform: translateY(-8px); border-color: rgba(3,174,230,.45); box-shadow: var(--shadow); }
.icon-box { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 24px; border-radius: 18px; background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 12px 24px rgba(0,120,201,.22); }
.icon-box svg { width: 31px; height: 31px; fill: #fff; }
.proposal-card h3 { margin: 0; font-family: Montserrat, sans-serif; font-size: 1.25rem; color: var(--navy); }
.proposal-card p { margin: 13px 0 0; color: var(--muted); font-size: .95rem; }

.about { background: linear-gradient(180deg, #f5fbfe 0%, #fff 100%); }
.about-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 72px; align-items: center; }
.about-image { position: relative; max-width: 510px; margin-inline: auto; }
.about-image > img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: center 20%; border-radius: 34px; box-shadow: var(--shadow); }
.about-image::before { content: ""; position: absolute; z-index: -1; inset: 28px -24px -24px 30px; border-radius: 34px; background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.about-stamp { position: absolute; right: -34px; bottom: 34px; width: 170px; padding: 20px; border-radius: 22px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.about-stamp strong { display: block; font-family: Montserrat, sans-serif; font-size: 2.1rem; line-height: 1; }
.about-stamp span { display: block; margin-top: 7px; font-size: .78rem; line-height: 1.35; }
.about-copy .lead { margin: 24px 0 14px; color: var(--navy); font-size: 1.18rem; font-weight: 700; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.quote-card { display: grid; grid-template-columns: auto 1fr; gap: 13px; margin: 30px 0; padding: 22px; border-left: 5px solid var(--cyan); border-radius: 0 18px 18px 0; background: var(--sky); }
.quote-card > span { color: var(--cyan); font-family: Georgia, serif; font-size: 3rem; line-height: .7; }
.quote-card p { margin: 0; color: var(--navy); font-weight: 700; }
.text-link { display: inline-flex; gap: 10px; color: var(--blue); font-weight: 800; text-decoration: none; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.workplan { background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%); }
.plan-list { display: grid; gap: 26px; }
.plan-card {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch;
  overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-soft);
}
.plan-card.reverse .plan-media { order: 2; }
.plan-card.reverse .plan-body { order: 1; }
.plan-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.plan-body { padding: 34px 34px 30px; }
.plan-kicker {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px; margin-bottom: 12px;
  border-radius: 999px; color: var(--blue); font-weight: 800; background: var(--sky);
}
.plan-body h3 { margin: 0 0 10px; font-family: Montserrat, sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.12; color: var(--navy); }
.plan-body > p { margin: 0 0 18px; color: var(--muted); }
.plan-body ul { margin: 0; padding-left: 1.15rem; color: var(--ink); }
.plan-body li { margin-bottom: 10px; }
.plan-body li::marker { color: var(--blue); }

.video-section { position: relative; background: linear-gradient(145deg, #062f55 0%, #064c7c 45%, #007dbd 100%); color: #fff; overflow: hidden; }
.video-section::before { content: ""; position: absolute; width: 500px; height: 500px; left: -180px; bottom: -240px; border: 80px solid rgba(255,255,255,.05); border-radius: 50%; }
.video-grid { position: relative; display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: 30px; align-items: center; }
.video-copy p:not(.eyebrow) { color: #dceff9; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list div { padding: 16px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.feature-list strong { display: block; margin-bottom: 4px; color: #fff; font-size: 1rem; }
.feature-list span { color: #c7e3f3; font-size: .95rem; }
.video-card {
  padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.08);
  box-shadow: 0 24px 65px rgba(0,0,0,.19); backdrop-filter: blur(14px);
}
.video-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.video-card-head h3 { margin: 0; font-family: Montserrat, sans-serif; font-size: 1.2rem; }
.orientation-badge { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800; color: #fff; background: rgba(255,255,255,.14); }
.video-frame {
  display: grid; place-items: center; min-height: 560px; padding: 16px; border-radius: 24px;
  background: radial-gradient(circle at top, rgba(255,255,255,.14), rgba(255,255,255,.04));
  transition: min-height .25s ease, padding .25s ease;
}
.video-frame video {
  display: block; max-width: 100%; max-height: min(82vh, 780px); width: auto; height: auto;
  border-radius: 24px; background: #010b11; object-fit: contain;
  box-shadow: 0 18px 42px rgba(0,0,0,.33);
}
.video-frame.is-loading video { width: min(100%, 420px); aspect-ratio: 9 / 16; }
.video-frame.is-portrait { min-height: min(78vh, 760px); }
.video-frame.is-portrait video { width: auto; height: min(78vh, 760px); aspect-ratio: auto; object-fit: contain; }
.video-frame.is-landscape { min-height: 0; }
.video-frame.is-landscape video { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.video-frame.is-square { min-height: 0; }
.video-frame.is-square video { width: min(100%, 680px); height: auto; aspect-ratio: 1 / 1; object-fit: contain; }

.social-section { position: relative; color: #fff; background: linear-gradient(145deg, #062f55 0%, #064c7c 45%, #007dbd 100%); overflow: hidden; }
.social-section::before { content: ""; position: absolute; width: 520px; height: 520px; top: -250px; right: -180px; border: 80px solid rgba(255,255,255,.05); border-radius: 50%; }
.section-heading.light .eyebrow { color: #70dcff; }
.section-heading.light > p:last-child { color: #c6e4f3; }
.social-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 24px; align-items: start; }
.media-card { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: 0 24px 65px rgba(0,0,0,.19); backdrop-filter: blur(14px); }
.media-card-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; }
.media-card-header .eyebrow { margin-bottom: 4px; color: #75dcff; }
.media-card-header h3 { margin: 0; font-family: Montserrat, sans-serif; font-size: 1.15rem; }
.live-dot, .post-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; font-size: .75rem; font-weight: 800; background: rgba(255,255,255,.12); }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #ff5c68; box-shadow: 0 0 0 5px rgba(255,92,104,.16); }
.embed-shell { position: relative; display: grid; place-items: center; overflow: hidden; background: #edf5f8; }
.embed-shell iframe { position: relative; z-index: 2; display: block; max-width: 100%; width: 100%; border: 0; background: #fff; }
.post-shell { min-height: 610px; }
.post-shell iframe { height: 610px; }
.page-shell { min-height: 640px; }
.page-shell iframe { height: 640px; }
.embed-loader {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 16px; padding: 20px;
  color: var(--navy); text-align: center; background: linear-gradient(180deg, #eff9fd, #e0f1f8); transition: opacity .25s ease;
}
.embed-loader span {
  width: 46px; height: 46px; border: 4px solid rgba(6,174,230,.16); border-top-color: var(--blue);
  border-radius: 50%; animation: spin 1s linear infinite;
}
.embed-loader p { margin: 0; font-weight: 700; }
.embed-shell.loaded .embed-loader { opacity: 0; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.summary-card-body { padding: 0 24px 24px; }
.summary-card-body p { margin: 0 0 20px; color: #d8edf7; }
.facebook-wall {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 26px; align-items: center;
  margin-top: 26px; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: rgba(255,255,255,.08); box-shadow: 0 24px 65px rgba(0,0,0,.17);
}
.wall-copy h3 { margin: 0; font-family: Montserrat, sans-serif; font-size: clamp(1.55rem, 2.8vw, 2.4rem); }
.wall-copy p:last-of-type { color: #d7edf9; }
.noscript-note { margin-top: 16px; color: #d8edf7; }
.noscript-note a { color: #fff; font-weight: 800; }

.join { background: #f4fbff; }
.join-card {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center;
  padding: 34px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: var(--shadow);
}
.join-card p:last-child { max-width: 700px; margin: 16px 0 0; color: #e2f5ff; }
.join-actions { display: grid; gap: 12px; min-width: 220px; }

.site-footer { padding: 56px 0 24px; color: #d7e9f4; background: #062d50; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 36px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 62px; height: 62px; border-radius: 15px; }
.footer-brand strong { color: #fff; font-family: Montserrat, sans-serif; font-size: 1.1rem; }
.footer-brand p, .footer-note p { margin: 3px 0 0; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: #76dcff; }
.footer-note { text-align: right; }
.footer-note small { display: block; max-width: 360px; margin: 8px 0 0 auto; color: #9fc0d3; line-height: 1.45; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9fc0d3; font-size: .84rem; }
.to-top { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.07); color: #fff; cursor: pointer; }
.toast { position: fixed; z-index: 2000; left: 50%; bottom: 24px; padding: 12px 18px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 700; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .main-nav { gap: 17px; }
  .proposal-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .video-grid { gap: 48px; }
}

@media (max-width: 950px) {
  .plan-card, .plan-card.reverse { grid-template-columns: 1fr; }
  .plan-card.reverse .plan-media, .plan-card.reverse .plan-body { order: initial; }
  .video-grid, .social-grid, .facebook-wall { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 78px 0 auto; display: grid; gap: 0; padding: 16px 20px 26px;
    background: rgba(255,255,255,.98); box-shadow: 0 24px 48px rgba(4,57,94,.16);
    transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 12px; border-bottom: 0; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 650px; margin-inline: auto; }
  .join-card { grid-template-columns: 1fr; }
  .join-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; text-align: left; }
  .footer-note small { margin-left: 0; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .site-header .nav-wrap { min-height: 70px; }
  .brand img { width: 43px; height: 43px; }
  .brand strong { font-size: .91rem; }
  .brand small { font-size: .72rem; }
  .main-nav { inset: 70px 0 auto; }
  .hero-desktop { display: none; }
  .hero-mobile { display: grid; grid-template-columns: 1fr; padding-top: 14px; padding-bottom: 28px; }
  .mobile-portrait { position: relative; overflow: hidden; border-radius: 26px 26px 0 0; background: #e8f6fb; }
  .mobile-portrait img { width: 100%; height: 480px; object-fit: cover; object-position: center 16%; }
  .candidate-badge { position: absolute; top: 16px; left: 16px; padding: 8px 13px; border-radius: 999px; color: #fff; background: rgba(6,59,103,.82); font-size: .76rem; font-weight: 800; backdrop-filter: blur(8px); }
  .mobile-hero-copy { margin-top: -1px; padding: 26px 22px 24px; border-radius: 0 0 26px 26px; background: #fff; box-shadow: var(--shadow-soft); }
  .mobile-hero-copy h1 { margin: 0; color: var(--blue); font-family: Montserrat, sans-serif; font-size: clamp(2.4rem, 13vw, 3.7rem); line-height: .96; letter-spacing: -.07em; text-transform: uppercase; }
  .hero-subtitle { margin: 11px 0 4px; color: var(--ink); font-family: Montserrat, sans-serif; font-size: 1rem; font-weight: 800; }
  .hero-hashtag { margin: 0 0 22px; color: var(--blue); font-weight: 800; }
  .hero-actions { display: grid; gap: 10px; }
  .priority-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 1px 0; background: rgba(255,255,255,.32); }
  .priority-grid span { min-height: 48px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--cyan)); font-size: .84rem; }
  .priority-grid span:last-child { grid-column: 1 / -1; }
  .priority-grid span::after { display: none; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .about-copy h2, .join-card h2, .video-copy h2 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .proposal-grid { grid-template-columns: 1fr; }
  .proposal-card { min-height: auto; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; padding: 22px; }
  .icon-box { grid-row: span 2; margin: 0; width: 52px; height: 52px; }
  .proposal-card p { margin-top: 6px; }
  .about-image { max-width: 390px; padding-right: 10px; }
  .about-image::before { inset: 18px -4px -16px 18px; }
  .about-stamp { right: -2px; bottom: 22px; width: 150px; }
  .plan-body { padding: 24px 20px 22px; }
  .plan-media img { min-height: 240px; }
  .video-card { padding: 16px; }
  .video-card-head { align-items: flex-start; flex-direction: column; }
  .video-frame { min-height: 0; padding: 12px; }
  .video-frame.is-loading { min-height: 420px; }
  .video-frame.is-portrait { min-height: min(72svh, 680px); }
  .video-frame.is-portrait video { width: auto; height: min(72svh, 680px); max-width: 100%; }
  .video-frame.is-landscape video, .video-frame.is-square video { width: 100%; height: auto; }
  .post-shell { min-height: 560px; }
  .post-shell iframe { height: 560px; }
  .page-shell { min-height: 620px; }
  .page-shell iframe { height: 620px; }
  .facebook-wall { padding: 20px; }
  .join-card { padding: 26px 22px; }
  .join-actions { grid-template-columns: 1fr; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}
