/* =============================================================
   RESET AND NORMALIZE
============================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #20253A;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  background: #20253A;
  color: #F0F4F8;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s;
}
a:focus {
  outline: 2px solid #BE4400;
  outline-offset: 2px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}

/* ========================
   BRAND COLOR SCHEME   
======================== */
:root {
  --primary: #242940;
  --secondary: #F0F4F8;
  --accent: #BE4400;
  --accent-neon: #EB5500;
  --card-bg: #23263A;
  --card-bg-alt: #1B1F2F;
  --text-dark: #222430;
  --text-light: #F0F4F8;
  --error: #DD3E3E;
}

/* ============
  TYPOGRAPHY
============= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;600;700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--secondary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.12;
  text-shadow: 0 4px 16px #EB550055;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, li, span, label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
p {
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
  color: var(--accent-neon);
}
small {
  font-size: 0.9rem;
  color: #A0A6BF;
}

/* Visual hierarchy */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ============
  HEADER / NAV
=============== */
header {
  width: 100%;
  background: #1D1F33cc;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 8px 32px #0E103066;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.main-nav > a img {
  height: 44px;
  filter: drop-shadow(0 0 4px #EB5500cc);
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #2C314B;
  color: var(--accent-neon);
  text-shadow: 0 0 8px var(--accent-neon);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  background: var(--accent-neon);
  color: #fff;
  border-radius: 24px;
  padding: 12px 34px;
  border: none;
  box-shadow: 0 0 12px 2px #EB5500aa, 0 2px 10px #12152A44;
  transition: background 0.23s, transform 0.18s, box-shadow 0.2s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--accent-neon);
  box-shadow: 0 0 24px 4px #EB550088, 0 2px 16px #24294033;
  transform: translateY(-2px) scale(1.025);
}

/* ============
  MOBILE MENU
============== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent-neon);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  z-index: 52;
  border: none;
  outline: none;
  box-shadow: 0 0 10px #EB550088;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #fff;
  color: var(--accent-neon);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #15182Bf7;
  z-index: 50;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.8, .2, .18, 1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  padding: 24px 22px 10px 18px;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent-neon);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 28px;
  margin-top: 20px;
}
.mobile-nav a {
  width: 100%;
  font-size: 1.32rem;
  color: #fff;
  border-radius: 10px;
  padding: 12px 8px;
  margin: 0 0 2px 0;
  transition: background 0.22s, color 0.22s;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1B1F2F;
  color: var(--accent-neon);
  font-weight: 700;
  text-shadow: 0 0 6px var(--accent-neon);
}

/* Show burger menu & hide main nav on mobile */
@media (max-width: 1080px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1080px) {
  .mobile-menu,
  .mobile-menu.open,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============
  SECTIONS LAYOUTS (per spec)
============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px #0e122466, 0 1px 4px #eb550030;
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px #EB550044, 0 2px 10px #BE440033;
  transform: translateY(-2px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 12px #EB550022, 0 0 1px #23263A22;
  margin-bottom: 20px;
  border-left: 6px solid var(--accent-neon);
  position: relative;
}
.testimonial-card p {
  color: #222437;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: var(--accent-neon);
  font-size: 1rem;
  margin-left: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px #EB550022;
}

/* Features List Styles */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 8px;
}
.features ul li {
  min-width: 240px;
  max-width: 480px;
  flex: 1 1 220px;
  background: var(--card-bg);
  border-radius: 10px;
  color: var(--secondary);
  padding: 18px 18px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #23263A44;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}
.features ul li img {
  width: 34px;
  height: 34px;
}

/* ============
  HERO SECTIONS
============== */
.hero {
  min-height: 380px;
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(115deg, var(--primary) 40%, #223366 100%);
  box-shadow: 0 10px 36px #2b2e4c23;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 20%, #EB55004c 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, #BE440033 0%, transparent 70%);
}
.hero .container,
.hero .content-wrapper {
  z-index: 2;
  position: relative;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}
.filter-options button {
  padding: 7px 18px;
  background: transparent;
  border: 1.5px solid var(--accent-neon);
  color: var(--accent-neon);
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  margin-left: 4px;
}
.filter-options button:hover, .filter-options button:focus {
  background: var(--accent-neon);
  color: #fff;
  box-shadow: 0 2px 14px #EB550099;
}

/* ===================
   SERVICES / ABOUT
===================== */
.services ul,
.about ul,
.legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.services ul li,
.about ul li,
.legal ul li {
  min-width: 220px;
  background: var(--card-bg);
  border-radius: 10px;
  color: var(--secondary);
  padding: 17px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px #0e122433;
  font-size: 1.05rem;
}
.services ul li h3 {
  color: var(--accent-neon);
  font-size: 1.13rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.services ul li span {
  display: block;
  margin-top: 12px;
  color: #F0EDED;
  font-weight: bold;
}

/* user stories (personnalisation.html) */
.user-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.user-stories .text-section {
  background: var(--card-bg-alt);
  border-radius: 9px;
  padding: 18px 16px;
  flex: 0 1 340px;
  color: var(--secondary);
  box-shadow: 0 1px 6px #23263A29;
}

.milestones, .brand-highlights {
  padding: 16px 0 0 0;
  color: #B1C6FA;
  font-size: 1rem;
}
.brand-highlights {
  padding-bottom: 16px;
  color: var(--accent-neon);
  font-weight: 500;
}
.schedule-teaser {
  width: 100%;
  padding: 14px 12px;
  background: #23263A;
  color: #f3e7de;
  border-left: 4px solid var(--accent-neon);
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 1px 8px #EB550022;
}

/* ===============
  CONTACT/INFO
================ */
.contact {
  background: linear-gradient(90deg, #181A29 70%, #23263A 100%);
  border-radius: 22px;
  box-shadow: 0 1px 8px #EB55001a;
  margin-bottom: 60px;
}
.map {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  color: #F0EDED;
  margin: 18px 0 20px 0;
  font-size: 1.04rem;
}

.footer-contact {
  background: none;
  color: var(--secondary);
  font-size: 1.03rem;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin: 12px 0 4px 0;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 3px #EB550044);
  transition: filter 0.2s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: drop-shadow(0 0 5px #EB5500A0) brightness(1.1);
}

/* ============
   FOOTER
============== */
footer {
  background: #181A29;
  padding: 46px 0 16px 0;
  width: 100%;
  box-shadow: 0 -2px 12px #24294022;
  color: var(--secondary);
}
footer .container {
  padding: 0 22px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
  margin-right: 40px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.96;
  padding: 5px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #23263A;
  color: var(--accent-neon);
  opacity: 1;
}

/* ========================
   LEGAL (for .legal section)
======================== */
.legal ul {
  margin-top: 8px;
}
.legal ul li {
  background: var(--card-bg);
  color: var(--secondary);
  border-radius: 8px;
  padding: 11px 16px;
  margin-bottom: 16px;
}

.legal h1, .legal h2 {
  color: var(--accent-neon);
}

/* ================
   RESPONSIVENESS
================== */
@media (max-width: 992px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav {
    gap: 14px;
  }
  section {
    padding: 32px 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .hero .content-wrapper {
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  section {
    padding: 26px 2px;
    margin-bottom: 44px;
  }
  .features ul, .services ul, .about ul, .legal ul {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid, .user-stories {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }
}

@media (max-width: 446px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.16rem;
  }
}

/* ===============
   MICRO-INTERACTIONS
================== */
input, textarea, select {
  border-radius: 8px;
  padding: 8px 14px;
  background: #23263A;
  border: 1px solid #23263A;
  color: #fff;
  margin-bottom: 16px;
  width: 100%;
  box-shadow: 0 1px 4px #21253A23 inset;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent-neon);
  box-shadow: 0 0 10px #EB550066;
}

::-webkit-input-placeholder { color: #A0A6BF; opacity: 0.82; }
::-moz-placeholder { color: #A0A6BF; opacity: 0.82; }
:-ms-input-placeholder { color: #A0A6BF; opacity: 0.82; }
::placeholder { color: #A0A6BF; opacity: 0.82; }

/* ===============
   COOKIE BANNER
================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #11142D;
  color: var(--secondary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 14px 18px 20px;
  z-index: 9999;
  box-shadow: 0 -3px 16px #EB550055;
  font-size: 1rem;
  animation: bannerSlideIn 0.7s cubic-bezier(.8,.09,.4,1) 1;
}
@keyframes bannerSlideIn {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 1 1 200px;
  margin-right: 18px;
}
.cookie-banner .cookie-btn {
  background: var(--accent-neon);
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 26px;
  margin-right: 10px;
  margin-bottom: 3px;
  border: none;
  box-shadow: 0 0 10px #EB550088;
  transition: background 0.14s, transform 0.14s, color 0.15s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #fff;
  color: var(--accent-neon);
  transform: scale(1.07);
}
.cookie-banner .cookie-btn.secondary {
  background: #23263A;
  color: var(--secondary);
  border: 1px solid #EB550033;
  margin-left: 0;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: var(--accent-neon);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 1.5px solid #BE4400;
  color: var(--accent-neon);
  margin-left: 6px;
  border-radius: 18px;
  padding: 8px 19px;
  transition: background 0.13s, color 0.15s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #1B1F2F;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    font-size: 0.98rem;
    padding: 13px 4px 14px 8px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btn,
  .cookie-banner .cookie-btn.secondary,
  .cookie-banner .cookie-settings {
    margin-right: 0;
    margin-bottom: 7px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 7px;
  }
}

/* ======================
   COOKIE SETTINGS MODAL
======================== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #11142DD6;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.38s cubic-bezier(.51,.01,.31,.98) 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #181A29;
  color: #F0F4F8;
  border-radius: 17px;
  max-width: 380px;
  width: 96vw;
  box-shadow: 0 4px 32px #24294066;
  padding: 42px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: scaleIn 0.34s cubic-bezier(.6,.35,0,1.15) 1;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  color: var(--accent-neon);
  font-size: 1.24rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal .category-label {
  font-size: 1.04rem;
  color: var(--secondary);
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23263A;
  border-radius: 22px;
  transition: .3s;
  box-shadow: 0 1px 4px #EB550020 inset;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 0 2px #EB550066;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-neon);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
  background: #fff;
}
.toggle-switch input[disabled] + .toggle-slider {
  background: #A0A6BF;
  opacity: 0.68;
}

.cookie-modal .cookie-modal-close {
  background: transparent;
  color: #fff;
  position: absolute;
  right: 16px; top: 16px;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 6;
  opacity: 0.87;
  transition: opacity 0.13s, color 0.13s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--accent-neon);
  opacity: 1;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 8px 20px;
  background: var(--accent-neon);
  color: #fff;
  border-radius: 19px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-actions .cookie-btn.secondary {
  background: #23263A;
  color: var(--secondary);
  border: 1px solid #EB550033;
}
.cookie-modal-actions .cookie-btn:hover, .cookie-modal-actions .cookie-btn:focus {
  background: #fff;
  color: var(--accent-neon);
}
.cookie-modal-actions .cookie-btn.secondary:hover, .cookie-modal-actions .cookie-btn.secondary:focus {
  background: var(--accent-neon);
  color: #fff;
}

/* ========================
   UTILITY CLASSES
======================== */
div.hidden, .hide { display: none !important; }
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-full { width: 100%; }
.max-w-screen-lg {
  max-width: 1200px !important;
}

/* ========================
   FOCUS / ACCESSIBILITY
======================== */
:focus-visible {
  outline: 2.5px solid var(--accent-neon);
  outline-offset: 1.5px;
}

/* Ensure main nav and footer have enough contrast for accessibility */
@media (max-width: 680px) {
  footer {
    padding-top: 24px;
    padding-bottom: 14px;
  }
  .footer-nav {
    font-size: 0.95rem;
    gap: 7px;
    margin-bottom: 0;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}

/* ================
   END OF CSS
================ */
