/* ============================================================
   SysTech Design — GLOBAL styles (header, footer, shared)
   Loads site-wide from the Divi child theme.
   Used by: parts/header.html, parts/footer.html (Divi code
   modules) and front-page.php.
   All selectors are prefixed .st- so they never collide with
   Divi's own styles.
   ============================================================ */

:root {
  --st-green: #78A32E;
  --st-green-dark: #5d8022;
  --st-green-light: #C9D895;
  --st-blue: #4E8BBF;
  --st-blue-dark: #3a6f9e;
  --st-black: #111111;
  --st-gray-dark: #2a2a2a;
  --st-gray: #5a5a5a;
  --st-gray-mid: #888;
  --st-gray-light: #f4f5f2;
  --st-border: rgba(0, 0, 0, 0.08);
  --st-font-head: 'Montserrat', sans-serif;
  --st-font-body: 'Open Sans', sans-serif;
  --st-nav-h: 80px;
}

.st-header, .st-header *, .st-header *::before, .st-header *::after,
.st-footer, .st-footer *, .st-footer *::before, .st-footer *::after,
.st-contact-section, .st-contact-section *, .st-contact-section *::before, .st-contact-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.st-header { font-family: var(--st-font-body); }
.st-header img, .st-footer img, .st-contact-section img { max-width: 100%; height: auto; }

/* ── TOP BAR ── */
.st-topbar {
  background: var(--st-green-dark);
  color: #fff;
  font-family: var(--st-font-head);
  font-size: 12px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: flex-end;
  flex-wrap: wrap;
  padding: 6px clamp(16px, 4vw, 48px);
  min-height: 34px;
  gap: clamp(12px, 2.5vw, 28px);
  letter-spacing: 0.04em;
}
.st-topbar a { color: #fff; text-decoration: none; opacity: 0.9; transition: opacity .2s; }
.st-topbar a:hover { opacity: 1; color: #fff; }
.st-topbar-sep { opacity: 0.4; }

/* ── NAV BAR ── */
.st-nav {
  position: sticky; top: 0; z-index: 99999;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  min-height: var(--st-nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(16px, 3vw, 48px);
}
body.admin-bar .st-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .st-nav { top: 46px; } }

.st-nav-logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; margin-right: clamp(12px, 2.5vw, 40px); }
.st-nav-logo img { height: 44px; width: auto; max-width: 240px; }

.st-nav-menu { display: flex; align-items: stretch; height: 100%; list-style: none; flex: 1; padding: 0px 0px !important;}
.st-nav-item { position: relative; display: flex; align-items: center; }
.st-nav-link {
  font-family: var(--st-font-head); font-size: 13px; font-weight: 700;
  color: var(--st-gray-dark); text-decoration: none;
  padding: 0 clamp(10px, 1.2vw, 18px); height: 100%; display: flex; align-items: center;
  letter-spacing: 0.03em; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.st-chevron { font-size: 9px; margin-left: 5px; opacity: 0.5; }

/* Search */
.st-nav-search {
  margin-left: auto; display: flex; align-items: center;
  border: 1.5px solid #dde3d5; background: #f8f9f6;
  overflow: hidden; flex-shrink: 0;
}
.st-nav-search input[type="search"] {
  border: none; background: transparent; outline: none; box-shadow: none;
  font-family: var(--st-font-body); font-size: 13px; color: var(--st-gray-dark);
  padding: 7px 14px; width: clamp(120px, 12vw, 200px); min-height: 0;
}
.st-nav-search input::placeholder { color: var(--st-gray-mid); }
.st-nav-search button {
  background: var(--st-green); border: none; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex-shrink: 0; line-height: 1;
  transition: background .2s; border-radius: 0;
}
.st-nav-search button:hover { background: var(--st-green-dark); }

/* CTA */
.st-nav-cta {
  margin-left: 14px; flex-shrink: 0;
  background: var(--st-green); color: #fff !important;
  font-family: var(--st-font-head); font-size: 13px; font-weight: 700;
  padding: 10px 22px; text-decoration: none; letter-spacing: 0.05em;
  transition: background .2s; white-space: nowrap;
}
.st-nav-cta:hover { background: var(--st-green-dark); }

/* Hamburger (hidden on desktop) */
.st-nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  background: transparent; border: 1.5px solid #dde3d5; border-radius: 0;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.st-nav-toggle-bar {
  display: block; width: 20px; height: 2px;
  background: var(--st-gray-dark);
  transition: transform .25s, opacity .25s;
}
.st-nav.st-open .st-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-nav.st-open .st-nav-toggle-bar:nth-child(2) { opacity: 0; }
.st-nav.st-open .st-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sub-menu toggle buttons (mobile only) */
.st-sub-toggle { display: none; }

/* ============================================================
   DESKTOP NAV (dropdowns, mega menu, flyouts) — hover driven
   ============================================================ */
@media (min-width: 1101px) {
  /* Fixed height so nav items stretch to the bar's bottom edge — the
     hover area of a top-level item must touch its dropdown/mega panel
     (top: 100%) with NO gap, or the menu closes while moving into it. */
  .st-nav { height: var(--st-nav-h); }

  /* Drawer is a pass-through wrapper on desktop */
  .st-nav-drawer { display: contents; }

  .st-nav-link:hover, .st-nav-item:hover > .st-nav-link { color: var(--st-green); border-bottom-color: var(--st-green); }

  /* Invisible hover bridge above every panel: keeps the menu open even
     if the layout context (e.g. Divi wrappers) introduces a small gap
     between the nav bar and the panel. */
  .st-dropdown::before, .st-mega::before {
    content: ''; position: absolute;
    top: -14px; left: 0; right: 0; height: 14px;
  }

  /* Simple dropdown */
  .st-dropdown {
    position: absolute; top: 100%; left: 0;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 3px solid var(--st-green);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    min-width: 280px;
    opacity: 0; pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s;
    z-index: 300;
    list-style: none;
    padding: 6px 0;
  }
  .st-nav-item:hover > .st-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
  .st-dropdown li { list-style: none; }
  .st-dropdown a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 20px;
    font-family: var(--st-font-body); font-size: 13.5px; font-weight: 400;
    color: var(--st-gray-dark); text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background .15s, color .15s;
    line-height: 1.35;
  }
  .st-dropdown li:last-child > a { border-bottom: none; }
  .st-dropdown a:hover { background: var(--st-gray-light); color: var(--st-green); }

  /* Mega menu — full width */
  .st-nav-item.st-has-mega { position: static; }
  .st-mega {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 3px solid var(--st-green);
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    opacity: 0; pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s;
    z-index: 300;
    padding: 32px 48px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
  .st-nav-item:hover > .st-mega { opacity: 1; pointer-events: all; transform: translateY(0); }
  .st-mega-inner { max-width: 1600px; margin: 0 auto; column-count: 4; column-gap: 32px; }
  .st-mega-col { break-inside: avoid; margin-bottom: 28px; transition: opacity .2s ease; }
  .st-mega-l1 {
    display: block;
    font-family: var(--st-font-head); font-size: 12px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--st-green); text-decoration: none;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(120,163,46,0.25);
    margin-bottom: 6px;
    transition: color .15s;
  }
  .st-mega-l1:hover { color: var(--st-green-dark); }
  .st-mega-l2 { list-style: none; }
  .st-mega-l2 > li { position: relative; list-style: none; transition: opacity .15s ease; }
  .st-mega-l2 > li > a {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 6px 4px;
    font-family: var(--st-font-body); font-size: 13px; font-weight: 500;
    color: var(--st-gray-dark); text-decoration: none;
    line-height: 1.35;
    transition: color .15s, background .15s, padding-left .15s;
  }
  .st-mega-l2 > li > a:hover { color: var(--st-green); background: var(--st-gray-light); padding-left: 10px; }
  .st-mega-l2 > li.st-has-flyout > a::after {
    content: '\203A'; color: var(--st-green); font-size: 16px; font-weight: 700;
    opacity: 0.55; margin-left: 6px;
  }
  .st-mega-l2 > li.st-has-flyout:hover > a::after { opacity: 1; }

  /* Flyout panel (3rd level) */
  .st-flyout {
    position: absolute; top: -8px; left: calc(100% + 6px);
    list-style: none; padding: 8px 0;
    background: #fff;
    border: 1px solid #e5e8e0;
    border-left: 3px solid var(--st-green);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    min-width: 240px;
    opacity: 0; pointer-events: none;
    transform: translateX(6px);
    transition: opacity .15s, transform .15s;
    z-index: 5;
  }
  .st-mega-l2 > li.st-has-flyout:hover > .st-flyout { opacity: 1; pointer-events: all; transform: translateX(0); }
  .st-flyout::before { content: ''; position: absolute; top: 0; left: -10px; width: 12px; height: 100%; }
  .st-flyout > li { list-style: none; }
  .st-flyout > li > a {
    display: block; padding: 8px 16px;
    font-family: var(--st-font-body); font-size: 12.5px; font-weight: 500;
    color: var(--st-gray-dark); text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background .15s, color .15s;
  }
  .st-flyout > li:last-child > a { border-bottom: none; }
  .st-flyout > li > a:hover { background: var(--st-gray-light); color: var(--st-green); }

  /* Dim sibling columns while a flyout is open */
  .st-mega:has(.st-mega-l2 > li.st-has-flyout:hover) .st-mega-col { opacity: 0.35; }
  .st-mega:has(.st-mega-l2 > li.st-has-flyout:hover) .st-mega-col:has(li.st-has-flyout:hover) { opacity: 1; }
  .st-mega-col:has(li.st-has-flyout:hover) .st-mega-l2 > li { opacity: 0.4; }
  .st-mega-col:has(li.st-has-flyout:hover) .st-mega-l2 > li.st-has-flyout:hover { opacity: 1; }
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .st-mega-inner { column-count: 3; }
}

/* ============================================================
   MOBILE / TABLET NAV — hamburger drawer with accordions
   ============================================================ */
@media (max-width: 1100px) {
  .st-nav { min-height: 64px; padding-top: 8px; padding-bottom: 8px; }
  .st-nav-logo img { height: 38px; }
  .st-nav-toggle { display: flex; }

  .st-nav-drawer {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--st-border);
    box-shadow: 0 24px 48px rgba(0,0,0,0.18);
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s, visibility .25s;
    padding: 8px 0 24px;
  }
  .st-nav.st-open .st-nav-drawer { opacity: 1; visibility: visible; transform: translateY(0); }

  .st-nav-menu { display: block; height: auto; }
  .st-nav-item { display: block; border-bottom: 1px solid rgba(0,0,0,0.06); position: relative; }
  .st-nav-link {
    height: auto; padding: 14px 64px 14px 20px;
    font-size: 14px; white-space: normal;
    border-bottom: none; display: flex;
  }
  .st-chevron { display: none; }

  /* Sub-menu toggles */
  .st-sub-toggle {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 5px; right: 12px;
    width: 38px; height: 38px;
    background: var(--st-gray-light); border: none; border-radius: 0;
    color: var(--st-gray-dark); font-size: 12px; line-height: 1;
    cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .st-sub-toggle::before { content: '\25BE'; }
  .st-nav-item.st-sub-open > .st-sub-toggle,
  .st-mega-l2 > li.st-sub-open > .st-sub-toggle { background: var(--st-green); color: #fff; transform: rotate(180deg); }

  /* Dropdowns & mega become accordions */
  .st-dropdown, .st-mega { display: none; }
  .st-nav-item.st-sub-open > .st-dropdown,
  .st-nav-item.st-sub-open > .st-mega { display: block; }

  .st-dropdown { list-style: none; background: #f8f9f6; padding: 6px 0; }
  .st-dropdown li { list-style: none; }
  .st-dropdown a {
    display: block; padding: 11px 20px 11px 32px;
    font-size: 13.5px; color: var(--st-gray-dark); text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .st-mega { background: #f8f9f6; padding: 8px 0 12px; }
  .st-mega-inner { column-count: auto; }
  .st-mega-col { margin: 0; }
  .st-mega-l1 {
    display: block;
    font-family: var(--st-font-head); font-size: 12px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--st-green); text-decoration: none;
    padding: 12px 20px 6px 24px;
  }
  .st-mega-l2 { list-style: none; }
  .st-mega-l2 > li { position: relative; list-style: none; }
  .st-mega-l2 > li > a {
    display: block; padding: 9px 64px 9px 36px;
    font-size: 13px; color: var(--st-gray-dark); text-decoration: none;
    line-height: 1.4;
  }
  .st-mega-l2 > li > .st-sub-toggle { top: 0; width: 34px; height: 34px; }

  /* 3rd-level flyouts collapse to indented accordions */
  .st-flyout { display: none; list-style: none; }
  .st-mega-l2 > li.st-sub-open > .st-flyout { display: block; }
  .st-flyout > li { list-style: none; }
  .st-flyout > li > a {
    display: block; padding: 8px 20px 8px 52px;
    font-size: 12.5px; color: var(--st-gray); text-decoration: none;
    border-left: 3px solid var(--st-green-light); margin-left: 36px;
  }

  /* Search + CTA inside the drawer */
  .st-nav-search { margin: 16px 20px 0; }
  .st-nav-search input[type="search"] { width: 100%; flex: 1; }
  .st-nav-cta { display: block; margin: 14px 20px 0; text-align: center; }
}

/* Lock page scroll while the mobile drawer is open */
html.st-nav-locked, html.st-nav-locked body { overflow: hidden; }

/* ============================================================
   GET IN TOUCH — blue band above the footer (part of the footer
   Divi code module / parts/footer.html; renders site-wide).
   WCAG 2.1 AA: background is the darker brand blue #3a6f9e
   (white text = 5.3:1; the lighter #4E8BBF only reaches 3.6:1
   and FAILS AA — don't switch the background back). Secondary
   text #eaf1f8 = 4.7:1, eyebrow #edf3dc = 4.7:1. Form fields use
   a darkened fill (rgba(0,0,0,0.18) → white text 7.1:1) and the
   CF7 submit uses green-dark #5d8022 (white text 4.7:1).
   ============================================================ */
.st-contact-section {
  background: var(--st-blue-dark);
  padding: clamp(48px, 7vw, 72px) clamp(20px, 5vw, 80px);
  font-family: var(--st-font-body);
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
.st-contact-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.st-contact-eyebrow {
  font-family: var(--st-font-head); font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #edf3dc; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.st-contact-eyebrow::before { content: ''; width: 24px; height: 2px; background: #edf3dc; flex-shrink: 0; }
.st-contact-h2 {
  font-family: var(--st-font-head); font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.st-contact-intro { font-size: 16px; color: #eaf1f8; line-height: 1.7; margin: 16px 0 36px; max-width: 420px; }
.st-contact-detail-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.st-contact-icon {
  width: 42px; height: 42px; background: rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: #fff;
}
.st-contact-label {
  font-family: var(--st-font-head); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.15em; color: #eaf1f8; margin-bottom: 2px;
}
.st-contact-val { font-size: 17px; font-weight: 600; color: #fff; overflow-wrap: anywhere; }
.st-contact-val a { color: #fff; text-decoration: none; }
.st-contact-val a:hover { text-decoration: underline; }
.st-contact-sub { font-size: 12px; color: #eaf1f8; margin-top: 2px; }

/* Contact Form 7 inside the Get In Touch section */
.st-contact-form-wrap p { margin: 0 0 14px; }
.st-contact-form-wrap label {
  display: block;
  font-family: var(--st-font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: #eaf1f8;
  margin-bottom: 5px;
}
.st-contact-form-wrap input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.st-contact-form-wrap textarea,
.st-contact-form-wrap select {
  width: 100%;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: var(--st-font-body); font-size: 14px;
  padding: 12px 14px; outline: none; border-radius: 0;
  transition: border-color .2s;
}
.st-contact-form-wrap input::placeholder, .st-contact-form-wrap textarea::placeholder { color: #cfe0ee; }
.st-contact-form-wrap input:focus, .st-contact-form-wrap textarea:focus, .st-contact-form-wrap select:focus { border-color: var(--st-green-light); }
.st-contact-form-wrap select option { background: var(--st-blue-dark); }
.st-contact-form-wrap textarea { resize: vertical; min-height: 90px; max-height: 200px; }
.st-contact-form-wrap input[type="submit"], .st-contact-form-wrap button[type="submit"] {
  background: var(--st-green-dark); color: #fff;
  font-family: var(--st-font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 14px 30px; border: none; border-radius: 0; cursor: pointer;
  transition: background .2s;
}
.st-contact-form-wrap input[type="submit"]:hover, .st-contact-form-wrap button[type="submit"]:hover { background: #4a681c; }
.st-contact-form-wrap .wpcf7-not-valid-tip { color: #ffd7d2; font-size: 12px; margin-top: 4px; }
.st-contact-form-wrap .wpcf7-response-output { border-color: var(--st-green-light); color: #fff; font-size: 13px; margin: 12px 0 0; padding: 8px 12px; }
.st-contact-form-wrap .wpcf7-spinner { filter: invert(1); }

@media (max-width: 1000px) {
  .st-contact-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   All text colors are WCAG 2.1 AA compliant against the #0e1209
   background (≥ 4.5:1): #7a8870 = 5.0:1, #93a284 = 7.0:1,
   #9aab8a = 7.7:1, #cddc99 = 12.9:1, #84877a = 5.2:1,
   #C9D895 = 12.4:1. Don't introduce darker text colors here.
   ============================================================ */
.st-footer {
  background: #0e1209;
  padding: 64px clamp(20px, 5vw, 80px) 36px;
  font-family: var(--st-font-body);
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
.st-footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1400px; margin: 0 auto 48px;
}
.st-footer-logo img { height: 56px; width: auto; max-width: 280px; margin-bottom: 16px; }
.st-footer-desc { font-size: 13px; color: #93a284; line-height: 1.7; }
.st-footer-phone { margin-top: 16px; font-family: var(--st-font-head); font-size: 19px; font-weight: 700; color: var(--st-green-light); }
.st-footer-phone a { color: var(--st-green-light); text-decoration: none; }
.st-footer-addr { font-size: 13px; color: #93a284; margin-top: 8px; line-height: 1.6; }
.st-footer-col h4 {
  font-family: var(--st-font-head); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; color: #93a284; margin-bottom: 16px;
}
.st-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.st-footer-col li { list-style: none; }
.st-footer-col a { font-size: 13px; color: #9aab8a; text-decoration: none; transition: color .2s; }
.st-footer-col a:hover { color: var(--st-green-light); }

.st-footer-bottom {
  border-top: 1px solid #1e2a14; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
.st-footer-bottom p { font-size: 12px; color: #93a284; }

/* Sitemap / locations links + designer credit */
.st-footer-links { text-align: center; }
.st-footer-links p { margin: 0; }
.st-footer-links-row { font-size: 12px; }
.st-footer-links-row a { color: #cddc99; text-decoration: none; transition: color .2s; }
.st-footer-links-row a:hover { color: #fff; }
.st-footer-links-sep { color: #93a284; margin: 0 6px; }
.st-footer-credit { margin-top: 4px !important; font-size: 12px; }
.st-footer-credit a { color: #84877a; text-decoration: none; transition: color .2s; }
.st-footer-credit a:hover { color: #cddc99; }

@media (max-width: 1000px) {
  .st-footer-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .st-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .st-footer { padding-top: 48px; }
  .st-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .st-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .st-header *, .st-footer * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}