/* ==========================================================================
   CANDOR TRUCKING — Theme CSS
   "Let's move efficiently" | Flatbed, Hotshot, Step Deck Dispatch | Texas
   Single Consistent Font Family: Arial Everywhere · Zero External Web Fonts
   ========================================================================== */

:root {
  /* Palette */
  --color-charcoal-gunmetal: #212529;
  --color-dispatcher-gold: #FFC107;
  --color-gold-hover: #E0A800;
  --color-steel-blue: #0D47A1;
  --color-night-rider-gray: #343A40;
  --color-roadway-canvas: #F8F9FA;
  --color-surface-card: #FFFFFF;
  --color-border-mist: #E9ECEF;
  --color-text-muted: #6C757D;

  /* Semantic aliases */
  --color-brand-primary: var(--color-charcoal-gunmetal);
  --color-brand-accent: var(--color-dispatcher-gold);
  --color-brand-support: var(--color-steel-blue);

  /* Typography — Arial everywhere for 100% sitewide consistency & zero network font fetch */
  --font-base: Arial, Helvetica, sans-serif;
  --font-headings: Arial, Helvetica, sans-serif;
  --font-sans: Arial, Helvetica, sans-serif;

  /* Radii */
  --radius-nav: 7px;
  --radius-cards: 14px;
  --radius-buttons: 8px;
  --radius-badge: 4px;

  /* Spacing */
  --spacing-xs: 7px;
  --spacing-sm: 14px;
  --spacing-md: 28px;
  --spacing-lg: 42px;
  --spacing-xl: 64px;
  --spacing-2xl: 96px;

  /* Layout */
  --page-max-width: 1200px;
}

/* ==========================================================================
   BASE RESET & BODY
   ========================================================================== */

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-roadway-canvas);
  color: var(--color-charcoal-gunmetal);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TYPOGRAPHY & BEAUTIFICATION STANDARDS
   ========================================================================== */

/* Headings — Consistent Arial, Bold (700) with controlled letter-spacing */
h1, h2, h3, h4, .heading {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-charcoal-gunmetal);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(32px, 5.5vw, 54px); letter-spacing: -0.025em; line-height: 1.1; }
h2 { font-size: clamp(24px, 3.8vw, 40px); letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: clamp(18px, 2.5vw, 24px); letter-spacing: -0.015em; line-height: 1.25; }
h4 { font-size: clamp(16px, 2vw, 20px); letter-spacing: -0.01em; }

/* Bolding Consistency Standards */
strong, b {
  font-weight: 700;
  color: inherit;
}

/* Highlighting Consistency Standards */
.highlight, .text-gold {
  color: var(--color-dispatcher-gold);
  font-weight: 700;
}

.highlight--steel, .text-steel {
  color: var(--color-steel-blue);
  font-weight: 700;
}

.highlight-bg {
  background: rgba(255, 193, 7, 0.18);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* Eyebrow labels */
.eyebrow {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-steel-blue);
  display: block;
}

.eyebrow--gold { color: var(--color-dispatcher-gold); }

/* Body text */
p { margin: 0 0 1em; }
.text-muted { color: var(--color-text-muted); }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

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

@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* ==========================================================================
   BUTTONS (Consistent Arial, 44px+ touch-friendly)
   ========================================================================== */

/* Primary: Dispatcher Gold */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-dispatcher-gold);
  color: var(--color-charcoal-gunmetal);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  min-height: 44px;
  border-radius: var(--radius-buttons);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
}

/* Secondary: Gunmetal */
.btn-gunmetal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-charcoal-gunmetal);
  color: var(--color-roadway-canvas);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  min-height: 44px;
  border-radius: var(--radius-buttons);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.btn-gunmetal:hover { background-color: var(--color-night-rider-gray); }

/* Ghost / Outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--color-charcoal-gunmetal);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-buttons);
  border: 2px solid var(--color-border-mist);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  border-color: var(--color-charcoal-gunmetal);
}

/* ==========================================================================
   CARDS (14px Radius, Zero Box-Shadow)
   ========================================================================== */

.card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border-mist);
  border-radius: var(--radius-cards);
  padding: var(--spacing-md);
}

.card--dark {
  background-color: var(--color-night-rider-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-cards);
  padding: var(--spacing-md);
  color: var(--color-roadway-canvas);
}

.card--canvas {
  background-color: var(--color-roadway-canvas);
  border: 1px solid var(--color-border-mist);
  border-radius: var(--radius-cards);
  padding: var(--spacing-md);
}

/* ==========================================================================
   BADGES / STATUS PILLS
   ========================================================================== */

.badge {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-badge, 4px);
  white-space: nowrap;
}

.badge--gold {
  background-color: var(--color-dispatcher-gold);
  color: var(--color-charcoal-gunmetal);
}

.badge--steel {
  background-color: var(--color-steel-blue);
  color: #FFFFFF;
}

.badge--night {
  background-color: var(--color-night-rider-gray);
  color: var(--color-roadway-canvas);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--color-border-mist);
  color: var(--color-charcoal-gunmetal);
}

/* ==========================================================================
   CLS PREVENTION — Image Containers
   ========================================================================== */

.img-container {
  overflow: hidden;
  position: relative;
}

.hero-section { min-height: 520px; }

.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-4-3  { aspect-ratio: 4 / 3; }
.aspect-3-2  { aspect-ratio: 3 / 2; }
.aspect-1-1  { aspect-ratio: 1 / 1; }

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   FORM ELEMENTS (Arial, Touch-Friendly)
   ========================================================================== */

.form-field { margin-bottom: 16px; }

.form-label {
  display: block;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal-gunmetal);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  font-family: var(--font-base);
  font-size: 14px;
  padding: 11px 14px;
  min-height: 44px;
  border: 1px solid var(--color-border-mist);
  border-radius: var(--radius-buttons);
  background-color: var(--color-surface-card);
  color: var(--color-charcoal-gunmetal);
  outline: none;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--color-dispatcher-gold);
}

.form-input--dark,
.form-select--dark {
  background-color: var(--color-charcoal-gunmetal);
  border-color: #495057;
  color: #FFFFFF;
}

.form-input--dark:focus,
.form-select--dark:focus {
  border-color: var(--color-dispatcher-gold);
}

/* ==========================================================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   SHARED HEADER & NAVIGATION (MOBILE-FIRST & FLAWLESS DESKTOP 1024px+)
   ========================================================================== */

/* Top bar */
.top-bar {
  background: #181B1E;
  color: #ADB5BD;
  font-size: 11px;
  padding: 7px 0;
  border-bottom: 2px solid var(--color-dispatcher-gold);
  font-family: var(--font-base);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28A745;
  display: inline-block;
  flex-shrink: 0;
  animation: pdot 2s infinite ease-in-out;
}
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.top-bar-phone {
  color: var(--color-dispatcher-gold);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.top-bar-phone:hover {
  color: var(--color-gold-hover);
  text-decoration: underline;
}
.top-bar-label { display: none; }
.top-equip-tag { display: none; color: #6C757D; }
.top-bar-pipe { display: none; color: rgba(255,255,255,.15); }

@media (min-width: 640px) {
  .top-bar-label { display: inline; }
  .top-equip-tag { display: inline-block; }
  .top-bar-pipe { display: inline-block; }
}

/* Header Nav */
.header-nav {
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--color-border-mist);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 6px 0;
  position: relative;
  gap: 12px;
}
.brand-logo {
  order: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--color-dispatcher-gold);
  border-radius: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
}
.brand-logo-svg {
  display: block;
  height: 22px;
  width: auto;
  max-width: 150px;
  color: var(--color-charcoal-gunmetal);
}
.brand-sub {
  font-family: var(--font-base);
  font-size: 9px;
  font-weight: 700;
  color: var(--color-steel-blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-actions {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-quick-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  padding: 0 12px;
  background: var(--color-charcoal-gunmetal);
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--color-night-rider-gray);
  transition: background .15s, color .15s;
}
.mobile-quick-call:hover { background: var(--color-night-rider-gray); color: var(--color-dispatcher-gold); }

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 40px;
  background: var(--color-roadway-canvas);
  border: 1px solid var(--color-border-mist);
  border-radius: 6px;
  color: var(--color-charcoal-gunmetal);
  cursor: pointer;
  padding: 0;
  transition: background .15s, border-color .15s;
}
.mobile-menu-btn:hover { background: var(--color-border-mist); }
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn .icon-bars { display: block; }
.mobile-menu-btn[aria-expanded="true"] {
  background: var(--color-charcoal-gunmetal);
  color: var(--color-dispatcher-gold);
  border-color: var(--color-charcoal-gunmetal);
}
.mobile-menu-btn[aria-expanded="true"] .icon-bars { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-close { display: block; }

/* Mobile Drawer (up to 1023px) */
@media (max-width: 1023px) {
  .nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border-mist);
    border-bottom: 2px solid var(--color-dispatcher-gold);
    padding: 16px 20px 24px;
    margin: 0;
    list-style: none;
    gap: 6px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
  }
  .nav-links.nav-menu--open { display: flex; }
  .mobile-nav-header {
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--color-border-mist);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-charcoal-gunmetal);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 4px;
    border-bottom: 1px solid #F1F3F5;
    transition: color .15s;
  }
  .nav-link-item:hover, .nav-link-item.active { color: var(--color-steel-blue); }
  .nav-link-sub { display: block; font-size: 11px; font-weight: 400; color: var(--color-text-muted); margin-top: 2px; }

  .mobile-nav-call-card {
    background: var(--color-roadway-canvas);
    border: 1px solid var(--color-border-mist);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 12px 0 6px;
  }
  .mobile-nav-call-card-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-steel-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
    display: block;
  }
  .mobile-nav-call-card-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 0 0 10px;
    line-height: 1.4;
  }
  .mobile-drawer-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-charcoal-gunmetal);
    color: #FFFFFF;
    padding: 11px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
  }
  .mobile-drawer-call-btn:hover { background: var(--color-night-rider-gray); color: var(--color-dispatcher-gold); }
  .mobile-drawer-cta {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 14px;
    margin-top: 6px;
  }
  .header-nav .nav-cta-desktop, .header-nav .nav-tel-link { display: none !important; }
}

/* Desktop Header (1024px+) */
@media (min-width: 1024px) {
  .mobile-quick-call, .mobile-menu-btn { display: none !important; }
  .nav-inner {
    min-height: 72px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .brand-logo { order: 1; flex-shrink: 0; }
  .nav-links {
    order: 2;
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 1.8vw, 24px) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    max-height: none !important;
    overflow: visible !important;
    list-style: none !important;
  }
  .mobile-nav-header, .mobile-nav-call-card, .mobile-drawer-cta { display: none !important; }
  .nav-link-item {
    border-bottom: none;
    padding: 22px 2px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-charcoal-gunmetal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    transition: color 150ms ease;
  }
  .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-dispatcher-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
    border-radius: 2px 2px 0 0;
  }
  .nav-link-item:hover, .nav-link-item.active { color: var(--color-steel-blue); }
  .nav-link-item:hover::after, .nav-link-item.active::after { transform: scaleX(1); }
  .nav-link-sub { display: none !important; }
  .nav-link-item svg { display: none !important; }

  .nav-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .header-nav .nav-tel-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: var(--color-roadway-canvas);
    border: 1px solid var(--color-border-mist);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-charcoal-gunmetal);
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, border-color .15s, color .15s;
  }
  .header-nav .nav-tel-link:hover {
    background: var(--color-border-mist);
    border-color: #CED4DA;
    color: var(--color-steel-blue);
  }
  .header-nav .nav-cta-desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
    background: var(--color-dispatcher-gold);
    color: var(--color-charcoal-gunmetal);
    text-decoration: none;
    transition: background .15s ease;
  }
  .header-nav .nav-cta-desktop:hover { background: var(--color-gold-hover); }
}

@media (min-width: 1024px) and (max-width: 1140px) {
  .header-nav .nav-tel-link { display: none !important; }
}

/* ==========================================================================
   SHARED FOOTER (MOBILE-FIRST & ROBUST 4-COLUMN DESKTOP)
   ========================================================================== */
footer {
  background: #181B1E;
  color: #ADB5BD;
  padding: 54px 0 80px;
  border-top: 4px solid var(--color-dispatcher-gold);
  font-size: 13px;
  font-family: var(--font-base);
}
@media (min-width: 640px) {
  footer { padding: 54px 0 36px; }
}

.footer-quick-strip {
  background: #212529;
  border: 1px solid #343A40;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-quick-copy strong {
  color: #FFFFFF;
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.footer-quick-copy span {
  font-size: 13px;
  color: #ADB5BD;
}
.footer-quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-quick-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #343A40;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.footer-quick-call:hover { background: #495057; color: var(--color-dispatcher-gold); }

.footer-quick-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-dispatcher-gold);
  color: var(--color-charcoal-gunmetal);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.footer-quick-cta:hover { background: var(--color-gold-hover); }

@media (min-width: 768px) {
  .footer-quick-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .footer-quick-copy { flex: 1 1 auto; min-width: 0; }
  .footer-quick-actions { flex-shrink: 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand p {
  line-height: 1.65;
  max-width: 340px;
  margin: 12px 0 14px;
  font-size: 13px;
  color: #ADB5BD;
}
.footer-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-dispatcher-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #ADB5BD;
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: #FFFFFF; font-weight: 700; text-decoration: none; }
.footer-contact-item a:hover { color: var(--color-dispatcher-gold); text-decoration: underline; }

.footer-col-heading {
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: #ADB5BD;
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
  padding: 4px 0;
  min-height: 24px;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--color-dispatcher-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
  color: #6C757D;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a {
  color: #ADB5BD;
  text-decoration: none;
  font-size: 12px;
  padding: 6px 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--color-dispatcher-gold); }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

