/* ============================================================
   ONEPCT — Shared Styles
   Single source of truth for all shared components:
   tokens, layout, nav, footer, buttons, motion-btn.
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --green-900: #08130D; --green-800: #11261A; --green-700: #193A27;
  --green-600: #224D34; --green-500: #3A7A50; --green-400: #558067;
  --green-300: #7FA08D; --green-200: #AABFB3; --green-100: #D4DFD9; --green-50: #EEF4F1;
  --green-light: #5EC26A;
  --blue-500: #1573B6;
  --yellow-500: #F3A712; --yellow-400: #F5B941;
  --red-900: #7F1D1D; --red-800: #991B1B; --red-600: #BB4344; --red-500: #EA5455;
  --off-white: #F5F5F5; --warm-white: #FAFAF8;
  --charcoal: #242424; --heading-text: #111111; --muted: #6B7280;
  --color-brand: var(--green-500);
  --color-cta-primary: var(--red-500);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: var(--charcoal); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TYPE ───────────────────────────────────────────────── */
    h1, h2, h3, h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--heading-text);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

/* ── LAYOUT ─────────────────────────────────────────────── */
    .section { padding: 5.5rem 0; }
    .section--alt { background: var(--warm-white); }
    .section--dark { background: var(--green-800); }
    .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

    .eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-light);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 0.75rem;
    }

    .eyebrow::before {
      content: '—';
      flex-shrink: 0;
      transform: rotate(var(--rt)) translateY(var(--ry));
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .section-h {
      font-size: clamp(2rem, 4vw, 3rem);
      max-width: 70vw;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 52ch;
      margin-top: 0.75rem;
    }

/* ── REVEAL ANIMATION ───────────────────────────────────── */
    .reveal, .reveal-left, .reveal-right {
      opacity: 0;
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .reveal       { transform: translateY(24px); }
    .reveal-left  { transform: translateX(-32px); }
    .reveal-right { transform: translateX(32px); }
    .reveal.on, .reveal-left.on, .reveal-right.on { opacity: 1; transform: translate(0); }

/* ── BUTTONS ────────────────────────────────────────────── */
    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--color-cta-primary); color: var(--off-white);
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
      padding: 0.8rem 1.75rem; border-radius: 100px; border: none; cursor: pointer;
      min-height: 50px; box-shadow: 0 2px 12px rgba(234,84,85,0.25);
      transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
      text-decoration: none;
    }
    .btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,84,85,0.3); }
    .btn-primary:active { transform: translateY(0); }
    .btn-primary:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }

    .btn-primary-dark {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--color-cta-primary); color: var(--off-white);
      font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
      padding: 0 2rem; border-radius: 100px; border: none; cursor: pointer;
      height: 48px; box-shadow: 0 2px 12px rgba(234,84,85,0.3);
      transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
      text-decoration: none;
    }
    .btn-primary-dark:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(234,84,85,0.35); }
    .btn-primary-dark:active { transform: translateY(0); }
    .btn-primary-dark:focus-visible { outline: 2.5px solid var(--off-white); outline-offset: 3px; }

    .btn-outline-light {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: rgba(255,255,255,0.65); color: var(--charcoal);
      font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
      padding: 0 2rem; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.28);
      cursor: pointer; height: 48px;
      backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
      text-decoration: none;
    }
    .btn-outline-light:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
    .btn-outline-light:active { transform: translateY(0); }
    .btn-outline-light:focus-visible { outline: 2.5px solid var(--heading-text); outline-offset: 3px; }

/* ── MOTION BUTTON (tertiary) ────────────────────────────── */
    .motion-btn {
      position: relative; display: inline-flex; align-items: center;
      border-radius: 100px; padding: 4px; cursor: pointer;
      background: transparent; border: none; text-decoration: none;
      min-height: 44px; overflow: hidden;
    }
    .motion-btn-dot {
      position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
      height: 36px; width: 36px; border-radius: 100px;
      background: var(--color-brand); z-index: 0;
      transition: width 0.5s ease; pointer-events: none;
    }
    .motion-btn:hover .motion-btn-dot { width: calc(100% - 8px); }
    .motion-btn-icon {
      position: relative; z-index: 1; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; color: var(--off-white); transition: transform 0.5s ease;
    }
    .motion-btn:hover .motion-btn-icon { transform: translateX(0.35rem); }
    .motion-btn-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
    .motion-btn-label {
      position: relative; z-index: 1; padding: 0 14px 0 6px;
      font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
      white-space: nowrap; color: var(--heading-text); transition: color 0.5s ease;
    }
    .motion-btn:hover .motion-btn-label { color: var(--off-white); }
    .motion-btn:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; border-radius: 100px; }

/* ── NAV ────────────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.96);
      border-bottom: 1px solid transparent;
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.3s ease;
    }
    .nav--scrolled {
      border-bottom-color: rgba(0, 0, 0, 0.07);
    }
    .scroll-progress-bar { position: fixed; top: 0; left: 0; z-index: 9999; height: 2px; width: 0%; background: linear-gradient(90deg, var(--green-500), var(--green-300)); pointer-events: none; transition: width 0.1s linear; }
    @media (prefers-reduced-motion: reduce) { .scroll-progress-bar { display: none; } }
    .nav-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; height: 64px;
      display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: relative;
    }
    .nav-logo { display: inline-flex; align-items: center; width: fit-content; }
    .nav-logo:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 4px; border-radius: 4px; }
    .nav-center { height: 100%; display: flex; align-items: center; justify-content: center; gap: 0; list-style: none; position: relative; }
    .nav-center li { position: relative; }
    .nav-center a {
      display: block; font-size: 0.875rem; font-weight: 500; color: var(--charcoal);
      letter-spacing: 0.01em; padding: 0.5rem 1.25rem;
      transition: color 0.2s ease; position: relative; z-index: 1;
    }
    .nav-center a:hover { color: var(--color-brand); }
    .nav-center a:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 4px; border-radius: 4px; }
    .nav-center a.nav-link-active { color: var(--color-brand); }
    .nav-hover-bg {
      position: absolute; top: 50%; transform: translateY(-50%);
      height: 34px; border-radius: 6px; background: rgba(58,122,80,0.09);
      pointer-events: none; opacity: 0;
      transition: left 0.22s ease, width 0.22s ease, opacity 0.15s ease;
    }
    .nav-ind { position: absolute; bottom: -1.5px; height: 2px; border-radius: 1px; pointer-events: none; }
    .nav-ind-active { background: var(--color-brand); transition: left 0.35s cubic-bezier(0.34,1.56,0.64,1), width 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease; opacity: 0; }
    .nav-ind-hover { background: var(--color-brand); opacity: 0; transition: left 0.22s ease, width 0.22s ease, opacity 0.15s ease; }
    .nav-right { display: flex; justify-content: flex-end; }
    .nav-cta {
      background: var(--color-cta-primary); color: var(--off-white);
      font-family: 'DM Sans', sans-serif; font-size: 0.84rem; font-weight: 600;
      padding: 0.55rem 1.35rem; border-radius: 100px; min-height: 42px;
      display: inline-flex; align-items: center;
      box-shadow: 0 2px 10px rgba(234,84,85,0.22);
      transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
    }
    .nav-cta:hover { background: var(--red-600); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(234,84,85,0.28); }
    .nav-cta:active { transform: translateY(0); }
    .nav-cta:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; grid-column: 3; justify-self: end; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--heading-text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span { background: var(--heading-text); }
    .nav-logo img, .nav-logo svg { height: 42px; width: 131px; object-fit: contain; }
    .nav-logo .logo-text path { fill: #242424; transition: fill 0.4s ease; }
    .nav-logo .logo-mark path { transition: fill 0.4s ease; }
    .nav--at-top { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent !important; }
    .nav--at-top .nav-center a { color: rgba(255,255,255,0.8); }
    .nav--at-top .nav-center a:hover,
    .nav--at-top .nav-center a.nav-link-active { color: var(--off-white); }
    .nav--at-top .nav-toggle span { background: #fff; }
    .nav--at-top .nav-hover-bg { background: rgba(255,255,255,0.12); }
    .nav--at-top .nav-logo .logo-text path { fill: var(--off-white) !important; }
    .nav--at-top .nav-logo .logo-mark path { fill: var(--green-light) !important; }

/* ── MOBILE NAV OVERLAY ─────────────────────────────────── */
    .mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 99;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center !important;
      justify-content: center;
      padding: 5rem 1.5rem 3rem;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                  opacity 0.3s ease,
                  visibility 0s 0.45s;
    }

    .mobile-nav.open {
      visibility: visible;
      opacity: 1;
      pointer-events: all;
      transform: translateX(0);
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                  opacity 0.3s ease,
                  visibility 0s 0s;
    }

    @media (min-width: 769px) {
      .mobile-nav { display: none !important; }
    }

    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center !important;
      gap: 0.5rem;
      flex: 1;
      justify-content: center;
      width: 100%;
    }

    .mobile-nav-links li {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-nav.open .mobile-nav-links li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
    .mobile-nav.open .mobile-nav-links li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
    .mobile-nav.open .mobile-nav-links li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }

    .mobile-nav-links a {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.4rem, 12vw, 3.2rem);
      font-weight: 800;
      color: var(--heading-text);
      text-decoration: none;
      letter-spacing: -0.03em;
      line-height: 1.1;
      padding: 0.4rem 0;
      margin-left: auto;
      margin-right: auto;
      text-align: center !important;
      transition: color 0.2s ease;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a:focus-visible {
      color: var(--color-brand);
    }

    .mobile-nav-links a:active {
      color: var(--color-brand);
    }

    .mobile-nav-cta {
      width: 100%;
      display: flex;
      justify-content: center;
      padding-bottom: env(safe-area-inset-bottom, 0px);
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.4s ease 0.36s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.36s;
    }

    .mobile-nav.open .mobile-nav-cta {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-lang-toggle {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.3s ease 0.08s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
    }

    .mobile-nav.open .mobile-lang-toggle {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-lang-toggle .lang-toggle {
      display: inline-flex;
      transform: scale(1.25);
      transform-origin: right center;
      margin: 0;
    }

    @media (min-width: 769px) {
      .mobile-lang-toggle { display: none !important; }
    }

/* ── STICKY FOOTER REVEAL ──────────────────────────────── */
    .footer-reveal { position: relative; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .footer-reveal-inner { position: relative; }
    .footer-reveal-inner > .footer { position: sticky; bottom: 0; }

/* ── FOOTER ─────────────────────────────────────────────── */
    .footer { background: var(--green-800); border-top: 1px solid rgba(58,122,80,0.2); padding: 4rem 0 2rem; }
    .footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
    .footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
    .footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-brand img { width: 180px; height: auto; filter: brightness(0) invert(1); opacity: 0.85; }
    .footer-slogan { font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-size: 0.9rem; color: var(--green-light); }
    .footer-socials { display: flex; list-style: none; gap: 0.5rem; align-items: center; }
    .social-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(58,122,80,0.25); border: 1px solid rgba(85,128,103,0.3); display: flex; align-items: center; justify-content: center; color: var(--green-300); transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1); }
    .social-btn:hover { background: rgba(58,122,80,0.5); border-color: rgba(85,128,103,0.6); color: var(--off-white); transform: translateY(-2px); }
    .social-btn:active { transform: translateY(0); }
    .social-btn:focus-visible { outline: 2px solid var(--green-400); outline-offset: 3px; }
    .social-btn svg { width: 22px; height: 22px; }
    .footer-divider { border: none; border-top: 1px solid rgba(58,122,80,0.18); margin: 0; }
    .footer-grid-bottom { padding-top: 1.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
    .footer-copy { font-size: 0.8rem; color: var(--green-400); line-height: 1.6; }
    .footer-nav-links ul, .footer-legal-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin: -0.2rem -0.5rem; }
    .footer-nav-links a { display: block; padding: 0.2rem 0.5rem; font-size: 0.875rem; color: var(--green-300); transition: color 0.2s ease; }
    .footer-nav-links a:hover { color: var(--off-white); }
    .footer-legal-links { margin-top: 0.25rem; }
    .footer-legal-links a { display: block; padding: 0.2rem 0.5rem; font-size: 0.8rem; color: var(--green-400); transition: color 0.2s ease; }
    .footer-legal-links a:hover { color: var(--off-white); }
    a:focus-visible { outline: 2px solid var(--green-400); outline-offset: 3px; border-radius: 3px; }

/* ── SLIDE BUTTON ──────────────────────────────────────── */
    .btn-slide {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 48px;
      padding: 0.25rem 3.5rem 0.25rem 1.5rem;
      border-radius: 100px;
      background: var(--red-500);
      color: var(--off-white);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      overflow: hidden;
      transition: padding 0.5s ease;
    }
    .btn-slide:hover { padding: 0.25rem 1.5rem 0.25rem 3.5rem; }
    .btn-slide-label { position: relative; z-index: 1; transition: transform 0.5s ease; white-space: nowrap; }
    .btn-slide-icon {
      position: absolute;
      right: 4px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      color: var(--red-500);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: right 0.5s ease, transform 0.5s ease;
      box-shadow: 0 4px 16px rgba(0,0,0,0.24), 0 2px 6px rgba(0,0,0,0.18);
    }
    .btn-slide:hover .btn-slide-icon { right: calc(100% - 44px); transform: rotate(45deg); }
    .btn-slide:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }
    .btn-slide:active { opacity: 0.9; }

/* ── LANG TOGGLE ───────────────────────────────────────── */
    .nav-right { align-items: center; }
    .lang-toggle { position: relative; display: inline-flex; height: 32px; width: 56px; min-width: 56px; border-radius: 9999px; padding: 4px; border: none; cursor: pointer; background: rgba(107,114,128,0.2); margin-right: 1rem; align-self: center; }
    .lang-toggle:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; }
    .lang-toggle-thumb { position: relative; height: 24px; width: 24px; border-radius: 9999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; z-index: 1; }
    .lang-toggle.animated .lang-toggle-thumb { transition: transform 0.5s cubic-bezier(0.68,-0.55,0.265,1.55); }
    .lang-toggle[aria-checked="true"] .lang-toggle-thumb { transform: translateX(24px); }
    .lang-toggle.animated .lang-toggle-thumb.pressed { transform: scale(0.9); transition-duration: 0.15s; }
    .lang-toggle.animated[aria-checked="true"] .lang-toggle-thumb.pressed { transform: translateX(24px) scale(0.9); }
    .lang-toggle-label { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.04em; color: var(--charcoal); line-height: 1; user-select: none; }
    .lang-toggle-inactive { position: absolute; top: 50%; transform: translateY(-50%); font-size: 0.5rem; font-weight: 600; letter-spacing: 0.04em; line-height: 1; user-select: none; pointer-events: none; }
    .lang-toggle-inactive-right { right: 8px; color: rgba(107,114,128,0.4); }
    .lang-toggle-inactive-left { left: 9px; color: rgba(107,114,128,0.4); }
    .lang-toggle[aria-checked="false"] .lang-toggle-inactive-right { opacity: 1; }
    .lang-toggle[aria-checked="false"] .lang-toggle-inactive-left { opacity: 0; }
    .lang-toggle[aria-checked="true"] .lang-toggle-inactive-right { opacity: 0; }
    .lang-toggle[aria-checked="true"] .lang-toggle-inactive-left { opacity: 1; }
    .lang-toggle.animated .lang-toggle-inactive { transition: opacity 0.4s ease; }
    @media (max-width: 1023px) { .lang-toggle { display: none; } }

    /* ── RESPONSIVE — nav + footer ──────────────────────────── */
    @media (max-width: 768px) {
      .section { padding: 4rem 0; width: 100%; }
      .container { padding: 0 1.5rem; }
      h1, h2, h3, h4, .section-h { max-width: 100% !important; width: 100%; }
      .nav-center, .nav-right { display: none; }
      .nav-toggle { display: flex; }
      .nav-inner { grid-template-columns: 1fr auto; padding: 0 1.5rem; }

      .footer-grid-bottom { grid-template-columns: 1fr; }
      .footer-nav-links { order: 1; }
      .footer-legal-links { order: 2; }
      .footer-copy { order: 3; }
      .footer-top { flex-direction: column; align-items: center; text-align: center; }
      .footer-brand { align-items: center; }
      .footer-grid-bottom { text-align: center; }
      .footer-nav-links ul, .footer-legal-links ul { justify-content: center; }
      .footer-copy { text-align: center; }
    }

    @media (min-width: 1024px) {
      .footer { padding: 4rem 0 2rem; }
      .footer-grid-bottom { grid-template-columns: repeat(10, 1fr); grid-template-rows: auto auto; padding-top: 2rem; gap: 0; }
      .footer-copy { grid-column: 1 / 4; grid-row: 1 / 3; align-self: center; }
      .footer-nav-links { grid-column: 4 / 11; grid-row: 1; }
      .footer-legal-links { grid-column: 4 / 11; grid-row: 2; }
      .footer-nav-links ul, .footer-legal-links ul { justify-content: flex-end; }
    }
