/* ==========================================================================
   Voter Axis — Design tokens
   Palette: civic navy / ballot blue / campaign green / ballot-stamp gold,
   set on a warm "paper" background — deliberately not the cream+terracotta
   AI-default combo. Signature motif: the ballot slip — perforated edges,
   dashed tally rules, a hand-drawn check stamp.
   Display type: Fraunces (editorial serif, civic gravitas)
   Body type:    Inter (clean, legible at small sizes)
   Utility type: IBM Plex Mono (ballot numbers / stats / tags)
   ========================================================================== */

:root {
  --navy: #0B1E3D;
  --navy-2: #132A54;
  --blue: #1B5FD1;
  --blue-light: #4C86E8;
  --green: #2E9E4F;
  --green-dark: #1F7538;
  --gold: #E7A93C;
  --gold-dark: #C98A1F;
  --paper: #F8F6EF;
  --paper-2: #F0ECE0;
  --ink: #1C2331;
  --ink-soft: #566073;
  --line: rgba(11, 30, 61, 0.14);
  --line-soft: rgba(11, 30, 61, 0.08);
  --white: #ffffff;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 12px 32px -16px rgba(11, 30, 61, 0.28);
  --shadow-lift: 0 24px 48px -20px rgba(11, 30, 61, 0.35);
  --wrap: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; margin: 0; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ballot { background: var(--gold); color: var(--navy); }
.btn-ballot:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; }
.brand-mark { height: 75px; width: auto; }

.nav-primary { display: flex; align-items: center; gap: 28px; }
.nav-primary ul { display: flex; gap: 26px; }
.nav-primary a { font-weight: 600; font-size: 0.94rem; color: var(--navy); position: relative; padding: 6px 0; }
.nav-primary ul a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--green);
  transition: right .22s ease;
}
.nav-primary ul a:hover::after, .nav-primary ul a.active::after { right: 0; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--navy); padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-primary {
    position: fixed; inset: 78px 0 0 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; padding: 32px 24px;
    transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
  }
  .nav-primary.open { transform: translateX(0); }
  .nav-primary ul { flex-direction: column; gap: 4px; width: 100%; }
  .nav-primary ul li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-primary ul a { display: block; padding: 14px 4px; }
  .nav-cta { margin-top: 20px; width: 100%; justify-content: center; }
}

/* ---------- Section rhythm ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 600; }
.section-lede { margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; }

.bg-navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-paper-2 { background: var(--paper-2); }

/* ==========================================================================
   HERO — the ballot slip
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: 70px 0 100px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(27,95,209,0.10), transparent 60%),
    radial-gradient(900px 500px at 5% 110%, rgba(46,158,79,0.10), transparent 60%),
    var(--paper);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy .eyebrow { color: var(--blue); }
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 600; letter-spacing: -0.01em;
}
.hero h1 em { font-style: normal; color: var(--green-dark); position: relative; }
.hero-sub { margin-top: 22px; font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-ballot {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: 34px 32px 28px;
  border: 1px solid var(--line-soft);
}
.hero-ballot::before, .hero-ballot::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 18px;
  background-image: radial-gradient(circle at center, var(--paper) 5.5px, transparent 5.6px);
  background-size: 18px 22px; background-repeat: repeat-y;
}
.hero-ballot::before { left: -9px; }
.hero-ballot::after { right: -9px; }
.ballot-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1.5px dashed var(--line); }
.ballot-head span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.ballot-stamp {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--green); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ballot-stamp svg { width: 24px; height: 24px; }
.ballot-check-path { stroke-dasharray: 26; stroke-dashoffset: 26; animation: draw-check 900ms 400ms ease forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }

.ballot-rows { margin-top: 18px; display: flex; flex-direction: column; gap: 0; }
.ballot-row {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.ballot-row:last-child { border-bottom: none; }
.ballot-row .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; width: 26px; }
.ballot-row .icon-tile { width: 38px; height: 38px; border-radius: 10px; background: var(--paper-2); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ballot-row .icon-tile svg { width: 19px; height: 19px; }
.ballot-row .txt strong { display: block; font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.ballot-row .txt span { font-size: 0.8rem; color: var(--ink-soft); }
.ballot-row .tick { margin-left: auto; color: var(--green); }
.ballot-row .tick svg { width: 18px; height: 18px; }

.hero-tag {
  margin-top: 20px; padding-top: 16px; border-top: 1.5px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-soft);
}
.hero-tag b { color: var(--navy); }

/* ---------- Stat strip (tally counter) ---------- */
.stat-strip { background: var(--navy); color: var(--white); }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px 24px; }
.stat-item { text-align: center; border-left: 1px solid rgba(255,255,255,0.14); padding-left: 24px; }
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-value { font-family: var(--font-mono); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--gold); }
.stat-label { margin-top: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: .02em; }
@media (max-width: 760px) {
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; }
  .stat-item:nth-child(-n+2) { border-top: none; padding-top: 0; }
}

/* ==========================================================================
   Cards / grids shared across pages
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }

.service-card { position: relative; }
.service-card .num-tag { position: absolute; top: 22px; right: 24px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--line); font-weight: 600; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--paper-2); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; }

.value-card { text-align: left; }
.value-card .service-icon { background: var(--navy); color: var(--gold); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, #0E2545 100%);
  color: var(--white); border-radius: var(--radius-lg); padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,169,60,0.25), transparent 70%);
}
.cta-banner h3 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2rem); max-width: 34ch; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-top: 10px; }

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero { padding-top: 64px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-quote {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.5; color: var(--navy);
  border-left: 3px solid var(--gold); padding-left: 24px; margin: 28px 0;
}
.about-quote svg { width: 26px; height: 26px; color: var(--gold); margin-bottom: 10px; }

.mission-panel {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft);
}
.mission-panel .eyebrow { color: var(--blue); }

.timeline-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--paper-2); color: var(--navy);
  font-family: var(--font-mono); font-size: 0.75rem; padding: 6px 12px; border-radius: 999px; font-weight: 600;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line-soft);
}
.gallery-item.span-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0; padding: 18px 18px 14px;
  background: linear-gradient(0deg, rgba(11,30,61,0.85), transparent 85%);
  color: var(--white); opacity: 0; transform: translateY(8px); transition: all .28s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption strong { display: block; font-size: 0.95rem; }
.gallery-caption span { font-size: 0.76rem; opacity: 0.8; font-family: var(--font-mono); }
.gallery-zoom { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--navy); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s ease; }
.gallery-zoom svg { width: 16px; height: 16px; }
.gallery-item:hover .gallery-zoom { opacity: 1; }

@media (max-width: 980px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.span-wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item.span-wide { grid-column: span 1; }
}

.lightbox {
  position: fixed; inset: 0; background: rgba(11,30,61,0.92); z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(900px, 90vw); max-height: 82vh; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.lightbox-caption { position: absolute; bottom: 36px; left: 0; right: 0; text-align: center; color: var(--white); font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white); display: flex; align-items: center; justify-content: center; border: none;
}
.lightbox-close svg { width: 20px; height: 20px; }

/* ==========================================================================
   Team page
   ========================================================================== */
.team-hero-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft); }
.team-hero-photo img { width: 100%; }
.leader-card { display: flex; gap: 20px; align-items: center; }
.leader-avatar { width: 66px; height: 66px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; flex-shrink: 0; }
.leader-card h4 { font-size: 1rem; }
.leader-card span { font-size: 0.85rem; color: var(--ink-soft); font-family: var(--font-mono); }

.team-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-photo-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-soft); background: var(--white); }
.team-photo-card img { height: 240px; width: 100%; object-fit: cover; }
.team-photo-meta { padding: 16px 18px; }
.team-photo-meta strong { display: block; font-size: 0.95rem; color: var(--navy); }
.team-photo-meta span { font-size: 0.78rem; color: var(--ink-soft); font-family: var(--font-mono); }
@media (max-width: 980px) { .team-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-photo-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: var(--navy); color: rgba(255,255,255,0.85); border-radius: var(--radius-lg);
  padding: 36px 32px; position: sticky; top: 100px;
}
.contact-info-card h3 { color: var(--white); font-size: 1.4rem; }
.contact-info-card p { margin-top: 12px; color: rgba(255,255,255,0.65); }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.contact-detail .icon-tile { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.08); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail .icon-tile svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-size: 0.95rem; }
.contact-detail span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.contact-form-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 0.96rem; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); outline: none; }
.field-validation-error { color: #C23B3B; font-size: 0.8rem; }
.validation-summary-errors { background: #FDEEEE; border: 1px solid #F0C7C7; color: #A82D2D; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }
.validation-summary-errors ul { padding-left: 18px; list-style: disc; }
textarea { resize: vertical; min-height: 120px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .contact-info-card { position: static; } }

.alert-success {
  background: #E9F7EE; border: 1px solid #BEE6CB; color: var(--green-dark);
  padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.alert-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.icon { width: 20px; height: 20px; }
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.68);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-mark {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 32ch;
}
.footer-tagline {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li {
  font-size: 0.92rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.footer-contact .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}
.footer-contact a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-signoff {
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
