/* ==========================================================================
   Rohr- & Abflussreinigung Wolfgang — global.css
   Shared across every page: tokens, reset, typography, header, footer,
   buttons, floating action buttons, utility classes.
   ========================================================================== */

/* ---------- Local fonts (self-hosted, no external requests) ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


/* ---------- Design tokens ---------- */
:root {
  /* Brand colors (from logo) */
  --color-red: #ef000b;
  --color-red-dark: #b8000a;
  --color-navy: #022754;
  --color-navy-light: #04366f;
  --color-endeavour: #005399;

  /* Neutrals */
  --color-white: #ffffff;
  --color-ice: #f4f8fb;
  --color-mist: #e8eef4;
  --color-line: #d8e2ec;
  --color-text: #223247;
  --color-text-soft: #55677e;
  --color-text-invert: #eef4fa;

  /* Elevation / effects */
  --shadow-sm: 0 2px 8px rgba(2, 39, 84, 0.08);
  --shadow-md: 0 8px 24px rgba(2, 39, 84, 0.12);
  --shadow-lg: 0 20px 48px rgba(2, 39, 84, 0.18);
  --shadow-red: 0 10px 24px rgba(239, 0, 11, 0.28);

  /* Type */
  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Roboto", "Segoe UI", sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1200px;
  --header-h: 88px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin: 0 0 0.5em;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
}

h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.5rem);
}

h3 {
  font-weight: 700;
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
}

h4 {
  font-weight: 600;
  font-size: 1.05rem;
}

p {
  margin: 0 0 1em;
  color: var(--color-text-soft);
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-endeavour);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--color-red-dark);
  box-shadow: 0 14px 30px rgba(239, 0, 11, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-line);
}
.btn-outline-navy:hover {
  border-color: var(--color-navy);
  background: var(--color-ice);
}

.btn-whatsapp {
  background: #22b357;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1c9548;
}

.btn-block {
  width: 100%;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--color-navy);
  color: var(--color-text-invert);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-invert);
  opacity: 0.92;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.topbar a:hover {
  opacity: 1;
  color: #fff;
}
.topbar svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--color-red);
}
.topbar .badge-24 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: #fff;
}
.topbar .badge-24 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d16a;
  box-shadow: 0 0 0 3px rgba(53, 209, 106, 0.25);
  animation: pulseDot 1.8s infinite;
}
@media (max-width: 720px) {
  .topbar-right {
    display: none;
  }
}
@media (max-width: 560px) {
  .topbar-mail {
    display: none;
  }
  .topbar .container {
    gap: 10px;
    min-height: 38px;
  }
  .topbar-left,
  .topbar-right {
    gap: 12px;
  }
  .topbar {
    font-size: 0.74rem;
  }
  .badge-full {
    display: none;
  }
}
@media (max-width: 400px) {
  .topbar-phone-text {
    display: none;
  }
  .topbar svg {
    width: 16px;
    height: 16px;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(53, 209, 106, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(53, 209, 106, 0.12);
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand img {
  height: 70px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text .brand-line1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}
.brand-text .brand-line2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--color-red);
  letter-spacing: 0.01em;
}
.brand-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.main-nav a {
  display: inline-block;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover {
  color: var(--color-red);
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.main-nav a.is-active {
  color: var(--color-red);
}
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 11px 20px;
  font-size: 0.85rem;
  margin-left: 6px;
}

/* ---------- Nav dropdown ---------- */
.nav-item {
  position: relative;
}
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-caret {
  width: 13px;
  height: 13px;
  flex: none;
  transition: transform 0.2s var(--ease);
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 224px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease),
    visibility 0.18s var(--ease);
  z-index: 50;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  white-space: nowrap;
}
.nav-dropdown a::after {
  display: none;
}
.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--color-ice);
  color: var(--color-red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}
.header-phone .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}
.header-phone .number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
}
.header-phone .number:hover {
  color: var(--color-red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 490;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px 32px;
    padding-top: calc(var(--header-total-h, 132px) + 18px);
    gap: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav a {
    padding: 14px 6px;
    font-size: 1.05rem;
    white-space: normal;
    border-bottom: 1px solid var(--color-mist);
  }
  .main-nav a::after {
    display: none;
  }
  .main-nav .nav-cta {
    margin-top: 16px;
    padding: 15px 28px;
    font-size: 0.95rem;
  }
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-item::after {
    display: none;
  }
  .nav-item > .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .nav-caret {
    transition: transform 0.25s var(--ease);
  }
  .nav-item.is-open .nav-caret {
    transform: rotate(180deg);
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    margin-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .nav-item.is-open .nav-dropdown {
    max-height: 600px;
    padding-bottom: 6px;
  }
  .nav-dropdown a {
    padding: 12px 6px;
    font-size: 0.98rem;
    color: var(--color-text-soft);
    border-bottom: 1px dashed var(--color-mist);
  }

  .nav-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-mist);
  }
  .nav-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-ice);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }
  .nav-socials svg {
    width: 18px;
    height: 18px;
  }
  .nav-socials a:hover {
    background: var(--color-red);
    color: #fff;
  }
}

.nav-socials {
  display: none;
}

@media (max-width: 560px) {
  .brand img {
    height: 42px;
  }
  .brand-text .brand-line1,
  .brand-text .brand-line2 {
    font-size: 0.82rem;
  }
  .brand-text .brand-sub {
    display: none;
  }
}

/* ---------- Floating action buttons ---------- */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px 0 0;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.fab:hover {
  transform: translateY(-3px) scale(1.02);
}
.fab-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fab-icon svg {
  width: 26px;
  height: 26px;
}
.fab-call {
  background: var(--color-red);
}
.fab-call .fab-icon {
  background: rgba(255, 255, 255, 0.18);
  animation: fabRing 2.2s infinite;
}
.fab-whatsapp {
  background: #22b357;
}
.fab-whatsapp .fab-icon {
  background: rgba(255, 255, 255, 0.18);
}
.fab-label {
  white-space: nowrap;
}

@keyframes fabRing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 640px) {
  .fab-stack {
    right: 14px;
    bottom: 14px;
  }
  .fab {
    height: 52px;
    padding: 0;
    width: 52px;
    justify-content: center;
  }
  .fab-icon {
    width: 52px;
    height: 52px;
  }
  .fab-label {
    display: none;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(238, 244, 250, 0.82);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      620px 320px at 12% 0%,
      rgba(0, 83, 153, 0.5),
      transparent 60%
    ),
    radial-gradient(
      520px 300px at 92% 100%,
      rgba(239, 0, 11, 0.16),
      transparent 60%
    );
  pointer-events: none;
}
.footer-top {
  position: relative;
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand .brand-line1,
.footer-brand .brand-line2 {
  color: #fff;
}
.footer-brand .brand-sub {
  color: rgba(238, 244, 250, 0.6);
}
.footer-desc {
  max-width: 34ch;
  color: rgba(238, 244, 250, 0.72);
  font-size: 0.92rem;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.footer-socials a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(238, 244, 250, 0.78);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(238, 244, 250, 0.82);
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 3px;
  color: var(--color-red);
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(238, 244, 250, 0.6);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 56px 0 32px;
    gap: 32px;
  }
}

/* ---------- Shared section utilities ---------- */
.section {
  padding: 96px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  font-size: 1.05rem;
}
.bg-ice {
  background: var(--color-ice);
}
.bg-navy {
  background: var(--color-navy);
  color: rgba(238, 244, 250, 0.85);
}
.bg-navy h2,
.bg-navy h3 {
  color: #fff;
}
.bg-navy p {
  color: rgba(238, 244, 250, 0.75);
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .section-tight {
    padding: 48px 0;
  }
}
