/* =====================================================
   LVD Environnement Mayotte
   Base CSS — clair, écologique, moderne
===================================================== */

/* ---------- Variables ---------- */
:root{
  --bg: #f4faf6;
  --surface: rgba(255,255,255,.85);
  --border: rgba(16,63,39,.14);

  --text: rgba(9,28,18,.92);
  --muted: rgba(9,28,18,.70);

  --leaf: #1f7a3a;
  --brand: #19bfa7;
  --brand-2: #2aa7ff;

  --ink: #081a12;          /* fond sombre vert profond */
  --brand: #19bfa7;        /* turquoise accent */
  --accent: #7be2a8;       /* vert clair pour hover */
  --footer-text: #F9FAFB;  /* texte principal */
  --footer-muted: rgba(249, 250, 251, 0.78);

  --shadow: 0 16px 48px rgba(9,28,18,.12);
  --radius: 18px;

  --max: 1120px;
  --pad: 20px;
}

/* ---------- Reset ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 720px at 10% 0%, rgba(31,122,58,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(25,191,167,.14), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

/* ---------- Helpers ---------- */
.container{
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.section{ padding: 64px 0; }
.section--tight{ padding: 40px 0; }

.badge{
  display: inline-flex;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: .9rem;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--primary{
  background: linear-gradient(135deg, var(--leaf), var(--brand));
  color: white;
  border: none;
}
.btn--ghost{
  background: transparent;
}

/* ---------- Cards ---------- */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-body{ padding: 18px; }
.card-title{
  margin: 10px 0 6px;
  font-weight: 800;
}
.card-text{ margin: 0; color: var(--muted); }

/* =====================================================
   HEADER
===================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(244,250,246,.75);
  border-bottom: 1px solid rgba(16,63,39,.10);
}
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text small{
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.brand-logo{
  height: 42px;
  width: auto;
}

@media (max-width: 820px){
  .brand-logo{
    height: 34px;
  }
  .brand-text{
    font-size: .95rem;
  }
}


.nav-links{
  margin-left: auto; /* clé de l’alignement à droite */
  display: flex;
  gap: 16px;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-links a:hover{
  background: rgba(25,191,167,.12);
}

.nav-links a.is-active{
  background: rgba(25,191,167,.18);
  color: var(--leaf);
  border-radius: 999px;
}

/* Mobile menu */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
}
.burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
}

.mobile-panel{
  display: none;
  padding: 12px 0;
}
.mobile-panel a{
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

/* =====================================================
   HERO (plein écran + image via HTML)
===================================================== */
.hero{
  position: relative;
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(9,28,18,.70) 0%, rgba(9,28,18,.35) 55%, rgba(9,28,18,.10) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero-inner{
  padding: 56px 0;
}
.hero-card{
  max-width: 640px;
  padding: 26px;
  background: rgba(255,255,255,.42); /* très forte transparence */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow:
    0 18px 48px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.45);
}


.hero h1{
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 12px 0;
}
.hero .lead{
  font-size: 1.05rem;
  color: var(--muted);
}
.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* =====================================================
   GRID
===================================================== */
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/*=====================================================
   NOS ENGAGEMENTS
=======================================================*/
.engagement-card{
  overflow: hidden;
}

.engagement-media{
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.engagement-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

/* Effet léger au survol */
.engagement-card:hover .engagement-media img{
  transform: scale(1.05);
}


/* =====================================================
   CHIFFRES CLÉS
===================================================== */

.section--stats{
  position: relative;
  background:
    radial-gradient(800px 420px at 15% 30%, rgba(31,122,58,.10), transparent 60%),
    radial-gradient(700px 380px at 85% 20%, rgba(25,191,167,.16), transparent 55%),
    rgba(25, 191, 167, 0.04);
  overflow: hidden;
}

.section--stats::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    linear-gradient(90deg, rgba(31,122,58,.10), rgba(25,191,167,.10));
  opacity:.25;
  pointer-events:none;
}

.section--stats .container{
  position: relative;
  z-index: 1;
}

.section-intro{
  max-width: 680px;
  margin: 10px 0 34px;
  color: var(--muted);
}

/* grille */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* carte */
.stat-card{
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  padding: 26px 22px 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,63,39,.14);
  box-shadow: 0 18px 44px rgba(9,28,18,.12);
  overflow: hidden;
}

.stat-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(31,122,58,.20), rgba(25,191,167,.22)) border-box,
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)) padding-box;
  opacity: .7;
  z-index: 0;
}

/* liseré “premium” */
.stat-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  opacity:.9;

  /* Liseré dégradé standard */
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(31,122,58,.35), rgba(25,191,167,.40)) border-box,
    linear-gradient(#fff, #fff) padding-box;
}

.stat-card:hover{
  transform: translateY(-3px);
  border-color: rgba(25,191,167,.32);
  box-shadow:
    0 24px 60px rgba(9,28,18,.14),
    0 0 0 6px rgba(25,191,167,.12);
}


/* mini-badge (en haut à gauche) */
.stat-badge{
  position:absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(25,191,167,.10);
  border: 1px solid rgba(25,191,167,.18);
  color: rgba(9,28,18,.84);
  font-weight: 750;
  font-size: .85rem;
}

/* nombre */
.stat-number{
  display: block;
  margin-top: 26px; /* laisse place au badge */
  font-size: clamp(2.4rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--leaf), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* unité */
.stat-unit{
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  color: rgba(9,28,18,.86);
}

.stat-card > *{
  position: relative;
  z-index: 1;
}

/* texte */
.stat-text{
  margin-top: 12px;
  font-size: .95rem;
  color: rgba(9,28,18,.78);
}
/* hover */
.stat-card:hover{
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(9,28,18,.14),
    0 0 0 6px rgba(25,191,167,.10);
  border-color: rgba(25,191,167,.22);
}

/* accessibilité : réduire les animations */
@media (prefers-reduced-motion: reduce){
  .stat-card{ transition: none; }
  .stat-card:hover{ transform: none; }
}

/* responsive */
@media (max-width: 900px){
  .stats-grid{ grid-template-columns: 1fr; }
}


/* =====================================================
   CARTES – NOS MISSIONS (bordures stylées)
===================================================== */

.mission-card{
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  border: 1px solid rgba(16,63,39,.14);
  border-left: 4px solid rgba(25,191,167,.55);
  box-shadow: 0 10px 28px rgba(9,28,18,.10);
}


.mission-card .btn--ghost{
  color: var(--leaf);
  border: 1px solid rgba(25,191,167,.45);
  background: linear-gradient(
    135deg,
    rgba(25,191,167,.10),
    rgba(31,122,58,.08)
  );
  font-weight: 700;
}

.mission-card .btn--ghost:hover{
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(25,191,167,.85),
    rgba(31,122,58,.85)
  );
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(25,191,167,.35);
}


/* Sécurité accessibilité */
@media (prefers-reduced-motion: reduce){
  .mission-card{ transition: none; }
  .mission-card:hover{ transform: none; }
}


/* =====================================================
   TITRES DE SECTION
===================================================== */

.section-title{
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); /* plus grand */
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  position: relative;
  color: var(--text);
}

/* Trait sous le titre */
.section-title::after{
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    var(--leaf),
    var(--brand)
  );
  border-radius: 999px;
}

/* =====================================================
   BANDEAU DE PAGE (pages internes)
===================================================== */

.page-banner{
  height: clamp(120px, 18vh, 180px);
  background:
    linear-gradient(
      90deg,
      rgba(9,28,18,.55),
      rgba(9,28,18,.30)
    ),
    var(--banner-image);
  background-size: cover;
  background-position: center;
}

/* =====================================================
   À PROPOS — Carte + image en 2 colonnes
===================================================== */

.about-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.about-media{
  overflow: hidden;
  padding: 0;
}

.about-media img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* Responsive */
@media (max-width: 960px){
  .about-hero-grid{
    grid-template-columns: 1fr;
  }
  .about-media img{
    min-height: 200px;
  }
}

/* =====================================================
   À PROPOS — Carte de présentation
===================================================== */

.about-card{
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.98),
    rgba(245,250,248,.98)
  );
  border-radius: var(--radius);
  border: 1px solid rgba(16,63,39,.14);
  border-left: 5px solid rgba(25,191,167,.55);
  box-shadow: 0 14px 36px rgba(9,28,18,.12);
}

/* Accent décoratif discret */
.about-card::before{
  content:"";
  position:absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(25,191,167,.25),
    transparent 70%
  );
  pointer-events:none;
}

/* Texte */
.about-card p{
  line-height: 1.7;
  color: rgba(9,28,18,.82);
}

.about-card p + p{
  margin-top: 12px;
}

/* =====================================================
   À PROPOS — Hover cartes (zoom image + bordure)
===================================================== */

/* Carte */
.about-card{
  position: relative;
  overflow: hidden;
  border-left: 5px solid rgba(25,191,167,.55);
  transition: border-left-color .25s ease, box-shadow .25s ease;
}

/* Media */
.about-card-media{
  overflow: hidden; /* indispensable pour le zoom */
}

/* Image */
.about-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
}

/* Hover : zoom image + changement couleur */
.about-card:hover .about-card-media img{
  transform: scale(1.08);
}

.about-card:hover{
  border-left-color: rgba(31,122,58,.9); /* vert plus profond */
  box-shadow: 0 20px 48px rgba(9,28,18,.16);
}

/* Accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce){
  .about-card,
  .about-card-media img{
    transition: none;
  }
  .about-card:hover .about-card-media img{
    transform: none;
  }
}


/* =====================================================
   À PROPOS — Images dans les cartes (arrondi)
===================================================== */

.about-card{
  overflow: hidden; /* CLÉ : coupe l’image aux arrondis */
}

.about-card-media{
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

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

/* =====================================================
   MISSIONS — Animation des cartes
===================================================== */

.mission-card{
  position: relative;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-left-color .22s ease;
}

/* Hover */
.mission-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(9,28,18,.16);
  border-left-color: rgba(31,122,58,.9); /* vert plus profond */
}

/* Accent subtil sur le titre */
.mission-card .card-title{
  transition: color .22s ease;
}

.mission-card:hover .card-title{
  color: rgba(31,122,58,.95);
}

/* Accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce){
  .mission-card{
    transition: none;
  }
  .mission-card:hover{
    transform: none;
    box-shadow: none;
  }
}


/* =====================================================
   FORMS
===================================================== */
.form{
  display: grid;
  gap: 14px;
}
label{ font-weight: 700; }
input, textarea{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-family: inherit;
}
textarea{ min-height: 140px; }

/* =====================================================
   ACTIONS – Boutons de filtres
===================================================== */

.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filters .chip{
  appearance: none;
  border: 1px solid rgba(16,63,39,.18);
  background: rgba(255,255,255,.92);
  color: rgba(9,28,18,.78);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .15s ease;
}

/* Hover */
.filters .chip:hover{
  background: rgba(25,191,167,.12);
  border-color: rgba(25,191,167,.45);
  color: rgba(9,28,18,.92);
  transform: translateY(-1px);
}

/* État actif */
.filters .chip[aria-pressed="true"]{
  background: linear-gradient(
    135deg,
    rgba(25,191,167,.95),
    rgba(31,122,58,.95)
  );
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(25,191,167,.35);
}

/* Focus clavier (accessibilité) */
.filters .chip:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(25,191,167,.35),
    0 0 0 6px rgba(25,191,167,.18);
}

/* Mobile */
@media (max-width: 640px){
  .filters{
    justify-content: flex-start;
  }
}


/* =====================================================
   ACTIONS – Cartes avec bord supérieur coloré
===================================================== */

.action-card{
  position: relative;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  border: 1px solid rgba(16,63,39,.14);
  border-top: 5px solid rgba(25,191,167,.65); /* couleur principale */
  box-shadow: 0 12px 32px rgba(9,28,18,.12);
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-top-color .18s ease;
}

/* Hover */
.action-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(9,28,18,.18);
  border-top-color: rgba(31,122,58,.85); /* accent plus foncé */
}

/* Media (image) */
.action-card .action-media{
  border-bottom: 1px solid rgba(16,63,39,.12);
}

/* Contenu */
.action-card .card-body{
  padding-top: 16px;
}

.section--compact {
  padding-bottom: 0px;
}


/* =====================================================
   CONTACT — Layout général
===================================================== */

.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr; /* formulaire | carte */
  gap: 22px;
  align-items: stretch;
}

/* Mobile */
@media (max-width: 960px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CONTACT — Cartes
===================================================== */

.contact-card{
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  border: 1px solid rgba(16,63,39,.14);
  box-shadow: 0 12px 32px rgba(9,28,18,.12);
  overflow: hidden;
}

/* =====================================================
   CONTACT — Formulaire
===================================================== */

.contact-form .card-body{
  padding: 22px;
}

.form{
  display: grid;
  gap: 14px;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label{
  font-size: .85rem;
  font-weight: 700;
  color: rgba(9,28,18,.85);
}

.field input,
.field textarea{
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(16,63,39,.22);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea{
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: rgba(25,191,167,.75);
  box-shadow: 0 0 0 3px rgba(25,191,167,.18);
}

/* =====================================================
   CONTACT — Carte Google Maps (2 lignes)
===================================================== */

.contact-map{
  display: flex;
  flex-direction: column;
}

/* Ligne 1 : Google Maps */
.map-frame{
  flex: 1;
  min-height: 320px;
  border-bottom: 1px solid rgba(16,63,39,.14);
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ligne 2 : Coordonnées */
.contact-infos{
  padding: 18px 20px;
  background: rgba(245,250,248,.96);
}

.contact-infos .card-title{
  margin-bottom: 12px;
}

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-list li{
  font-size: .95rem;
  color: rgba(9,28,18,.85);
}

.contact-list a{
  color: var(--leaf);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover{
  color: var(--brand);
}

/* =====================================================
   CONTACT — Bouton
===================================================== */

.contact-form .btn--primary{
  margin-top: 8px;
}

/* =====================================================
   ACCESSIBILITÉ
===================================================== */

@media (prefers-reduced-motion: reduce){
  .field input,
  .field textarea{
    transition: none;
  }
}


/* =====================================================
   FOOTER
===================================================== */
/* =====================================================
   FOOTER — Harmonisé Groupe (version LVD)
===================================================== */

.site-footer {
  background: var(--ink);
  color: var(--footer-text);
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo */
.footer-logo { width: 120px; margin-bottom: 10px; }

/* Texte descriptif */
.footer-brand p {
  color: var(--footer-muted);
  line-height: 1.6;
}

/* Titres colonnes */
.footer-nav h3,
.footer-contact h3 {
  color: var(--brand);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* Listes */
.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li,
.footer-contact ul li { margin: 8px 0; }

/* Liens */
.footer-nav a,
.footer-contact a {
  color: rgba(249, 250, 251, 0.92);
  text-decoration: none;
}

/* Hover : vert clair (éco) */
.footer-nav a:hover,
.footer-contact a:hover { color: var(--accent); }

/* Réseaux */
.site-footer .social-links li a { color: rgba(249, 250, 251, 0.92); }
.site-footer .social-links li a:hover { color: var(--accent); }

/* Alignement icône + texte réseaux */
.social-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Réseaux en ligne */
.social-inline {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

/* Taille icônes sociales */
.social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

/* Ligne du bas */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(249, 250, 251, 0.72);
  text-align: center;
  font-size: 0.9rem;
  padding-top: 16px;
}

/* Liens bas */
.footer-bottom a { color: var(--brand); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* Effet liens : gras + animation (comme tes autres sites) */
.site-footer a{
  font-weight: 600;
  transition: color .25s ease, transform .25s ease;
}

.site-footer a:hover{
  transform: translateX(4px);
}

/* Responsive (mobile) */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .social-inline{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 960px){
  .grid-2,
  .grid-3,
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px){
  .nav-links{ display: none; }
  .nav-toggle{ display: inline-block; }
  .mobile-panel.is-open{ display: block; }
}
