/* ==========================================================================
   Hydrosystem SA — Design system
   Palette extraite du logo officiel : rouge #C83629, noir chaud #1D1616
   ========================================================================== */

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

:root {
  --red: #C83629;
  --red-dark: #9C2A1F;
  --red-light: #F7E4E1;
  --ink: #1D1616;
  --ink-soft: #2A2222;
  --steel: #3D4750;
  --gray-900: #201C1C;
  --gray-700: #4B4342;
  --gray-500: #7A7170;
  --gray-300: #C9C2C1;
  --gray-200: #E7E1E0;
  --gray-100: #F4F1F0;
  --white: #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(29, 22, 22, 0.08);
  --shadow-lg: 0 20px 50px rgba(29, 22, 22, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--gray { background: var(--gray-100); }
.section--dark {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title--underline {
  padding-bottom: 16px;
  position: relative;
}
.section-title--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--red);
}

.section-lede {
  font-size: 18px;
  color: var(--gray-700);
  max-width: 680px;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); }
.btn--outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline-dark {
  border-color: var(--gray-300);
  color: var(--ink);
  background: transparent;
}
.btn--outline-dark:hover { border-color: var(--ink); background: var(--gray-100); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* Top utility bar ---------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: var(--gray-300);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__left a { color: var(--gray-300); display: inline-flex; align-items: center; gap: 6px; }
.topbar__left a:hover { color: var(--white); }
.topbar__right { display: flex; gap: 16px; align-items: center; }
.topbar__right a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gray-300);
}
.topbar__right a:hover { background: var(--red); color: var(--white); }
.topbar__right svg { width: 13px; height: 13px; }

/* Header ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo img { height: 52px; width: auto; }
.logo .logo-mobile { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav > li > a:hover, .nav > li.is-active > a { color: var(--red); }
.nav svg.chev { width: 10px; height: 10px; margin-top: 1px; transition: transform .15s; }
.nav > li:hover svg.chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.dropdown a:hover { background: var(--gray-100); color: var(--red); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: right;
}
.header__phone small { font-size: 11.5px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.header__phone strong { font-size: 16px; color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  width: auto; height: auto;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
}
.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-icon i {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transition: all .2s;
}
.nav-toggle-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* Hero ---------------------------------------------------------------------*/
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(200,54,41,0.35), transparent 45%),
    radial-gradient(circle at 60% 100%, rgba(61,71,80,0.5), transparent 55%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.75));
  mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.75));
}
.hero::after,
.pagehead::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('schema-hydraulique.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 165%;
  opacity: 0.17;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.28), rgba(0,0,0,0.5) 38%, rgba(0,0,0,1) 72%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.28), rgba(0,0,0,0.5) 38%, rgba(0,0,0,1) 72%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero::after, .pagehead::after {
    opacity: 0.13;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,1) 22%, rgba(0,0,0,1) 78%, rgba(0,0,0,0.35) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,1) 22%, rgba(0,0,0,1) 78%, rgba(0,0,0,0.35) 100%);
  }
  .hero::after {
    background-image: url('schema-hydraulique-vertical.png');
    background-size: 100% 100%;
  }
  .pagehead::after { background-size: 190% auto; }
}
.hero .container { position: relative; z-index: 2; }
.hero__content { max-width: 700px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF8A78;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--red); }
.hero p.lede {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
}
.hero__meta div strong { display: block; font-size: 24px; color: var(--white); }
.hero__meta div span { font-size: 13px; color: var(--gray-300); }

/* Page header (sub pages) --------------------------------------------------*/
.pagehead {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 56px;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(200,54,41,0.4), transparent 50%);
}
.pagehead .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--white); }
.pagehead h1 { font-size: clamp(28px, 4vw, 42px); max-width: 720px; }
.pagehead p { margin-top: 16px; font-size: 17px; color: var(--gray-300); max-width: 620px; }

/* Cards --------------------------------------------------------------------*/
.grid {
  display: grid;
  gap: 26px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light);
  border-radius: var(--radius);
  color: var(--red);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray-700); font-size: 15px; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.card__link svg { width: 14px; height: 14px; transition: transform .15s; }
.card:hover .card__link svg { transform: translateX(3px); }

/* Feature list ---------------------------------------------------------- */
.checklist { display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--gray-700);
}
.checklist li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.checklist strong { color: var(--ink); }

/* Stats bar ----------------------------------------------------------------*/
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats div strong {
  display: block;
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--red);
  font-weight: 800;
}
.stats div span { font-size: 14px; color: var(--gray-700); font-weight: 500; }

/* Two column layout --------------------------------------------------------*/
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split__media { order: 2; }

.media-panel {
  background: var(--ink);
  border-radius: 10px;
  aspect-ratio: 4/3.2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,54,41,0.45), transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 22px);
}
.media-panel svg { width: 34%; height: 34%; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.media-panel.has-photo::before { display: none; }
.media-panel.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

/* Photo gallery grid (atelier) ------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}
.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.photo-grid .tall { grid-row: span 2; aspect-ratio: 3/4; }
.photo-grid .wide { aspect-ratio: 4/3; }

/* Brand photo card (nettoyeurs) ------------------------------------------ */
.brand-photo-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}
.brand-photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brand-photo-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--gray-100);
  padding: 18px;
}
.brand-photo-card .brand-photo-label {
  padding: 14px 18px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-align: center;
}

/* Partners strip -------------------------------------------------------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.partner-badge {
  padding: 14px 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  color: var(--gray-700);
  background: var(--white);
}

/* Featured partners (Partenaires page) ----------------------------------- */
.partner-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.partner-featured {
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.partner-featured::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(200,54,41,0.4), transparent 55%);
}
.partner-featured > * { position: relative; z-index: 1; }
.partner-featured .eyebrow { color: #FF8A78; }
.partner-featured .eyebrow::before { background: #FF8A78; }
.partner-featured__badge { display: flex; align-items: center; justify-content: flex-start; margin-bottom: 20px; height: 116px; }
.partner-featured__badge img { display: block; width: auto; }
.partner-featured__badge img[src*="rexroth"] { height: 116px; }
.partner-featured__badge img[src*="smc"] { height: 62px; }

.official-badges-row { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; margin-top: 40px; }
.official-badges-row .badge-box { display: flex; align-items: center; justify-content: center; height: 130px; }
.official-badges-row img { display: block; width: auto; }
.official-badges-row img[src*="rexroth"] { height: 130px; }
.official-badges-row img[src*="smc"] { height: 70px; }

@media (max-width: 760px) {
  .partner-featured__badge { height: 92px; }
  .partner-featured__badge img[src*="rexroth"] { height: 92px; }
  .partner-featured__badge img[src*="smc"] { height: 50px; }
  .official-badges-row { gap: 32px; }
  .official-badges-row .badge-box { height: 100px; }
  .official-badges-row img[src*="rexroth"] { height: 100px; }
  .official-badges-row img[src*="smc"] { height: 54px; }
}
.partner-featured h3 { font-size: 24px; color: var(--white); margin-bottom: 10px; }
.partner-featured p { color: var(--gray-300); font-size: 15px; }

/* Org chart (Contact page) ------------------------------------------------ */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}
.org-node {
  position: relative;
  border-radius: 10px;
  padding: 16px 24px;
  text-align: center;
  min-width: 220px;
}
.org-node + .org-node,
.org-row { position: relative; margin-top: 28px; }
.org-node::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 2px;
  height: 28px;
  background: var(--gray-300);
  transform: translateX(-50%);
}
.org-node--lead {
  background: linear-gradient(135deg, var(--red), var(--ink));
  color: var(--white);
}
.org-node--lead .org-role { color: rgba(255,255,255,0.75); }
.org-node--secretariat {
  background: var(--ink);
  color: var(--white);
}
.org-node--secretariat .org-role { color: var(--gray-300); }
.org-role { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 4px; }
.org-name { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.org-contact { font-size: 13px; line-height: 1.6; opacity: 0.95; }
.org-contact a { color: inherit; }

.org-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 28px;
}
.org-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray-300);
}
.org-row .org-node { margin-top: 0; }
.org-row .org-node::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--gray-300);
  transform: translateX(-50%);
}
.org-row .org-node::after { display: none; }
.org-node--dept {
  background: var(--white);
  border: 1px solid var(--gray-200);
  min-width: 160px;
  flex: 1 1 160px;
  max-width: 200px;
}
.org-node--dept .org-role { color: var(--red); }
.org-node--dept .org-name { color: var(--ink); font-size: 15px; }
.org-node--dept .org-contact { color: var(--gray-700); }

/* CTA banner ---------------------------------------------------------------*/
.cta-banner {
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 46px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-size: 24px; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .btn--primary { background: var(--ink); }
.cta-banner .btn--primary:hover { background: #000; }

/* Domain tags ---------------------------------------------------------- */
.tag-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
  padding: 10px 18px;
  background: var(--gray-100);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--gray-200);
}

/* Contact page ------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.info-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 20px;
}
.info-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); margin-bottom: 14px; }
.info-row { display: flex; gap: 14px; margin-bottom: 16px; }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.info-row div { font-size: 15px; color: var(--gray-700); }
.info-row strong { color: var(--ink); display: block; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field input, .field textarea, .field select {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 120px; }

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 260px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.brand-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.brand-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gray-300); }
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .82;
  transition: filter .25s, opacity .25s;
}
.brand-logo:hover img { filter: grayscale(0); opacity: 1; }
.brand-logo--text span {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--gray-700);
  transition: color .2s;
}
.brand-logo--text:hover span { color: var(--ink); }
@media (max-width: 560px) {
  .brand-logos { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
  .brand-logo { height: 76px; padding: 12px 14px; }
}

.find-us {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}
.find-us__info { display: flex; flex-direction: column; justify-content: center; }
.find-us__info .btn { align-self: flex-start; }
.find-us .map-embed { height: 100%; min-height: 340px; }
@media (max-width: 860px) {
  .find-us { grid-template-columns: 1fr; gap: 28px; }
  .find-us .map-embed { min-height: 280px; }
}

/* Footer -------------------------------------------------------------------*/
.footer { background: var(--gray-900); color: var(--gray-300); }
.footer__top { padding: 64px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__brand img { height: 34px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; color: var(--gray-500); max-width: 300px; }
.footer h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul li a { font-size: 14.5px; color: var(--gray-300); }
.footer ul li a:hover { color: var(--white); }
.footer .info-row svg { color: var(--red); }
.footer .info-row div { color: var(--gray-300); font-size: 14.5px; }
.footer .info-row strong { color: var(--white); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.footer__social a:hover { background: var(--red); }
.footer__social svg { width: 15px; height: 15px; color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
}
.footer__bottom a { color: var(--gray-500); }
.footer__bottom a:hover { color: var(--white); }
.footer__bottom ul { display: flex; gap: 20px; }

/* Responsive ---------------------------------------------------------------*/
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .split__media { order: -1 !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar__left span.hide-sm { display: none; }
  .nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > li { width: 100%; }
  .nav > li > a { padding: 16px 4px; border-bottom: 1px solid var(--gray-200); justify-content: space-between; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none; border: none;
    padding: 0 0 8px 12px;
  }
  .nav > li.is-open .dropdown { display: block; }
  .nav > li:hover .dropdown { display: none; }
  .nav > li.is-open .dropdown { display: block; }
  .header__phone { display: none; }
  .header .container { flex-wrap: nowrap; height: 98px; }
  .header nav { order: 3; margin-left: 8px; }
  .logo .logo-desktop { display: none; }
  .logo .logo-mobile { display: block; height: 78px; width: auto; }
  .nav-toggle { display: flex; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .partner-featured-grid { grid-template-columns: 1fr; }
  .org-row::before { display: none; }
  .org-row .org-node::before { display: none; }
  .org-row { flex-direction: column; align-items: center; }
  .org-row .org-node { margin-top: 0; }
}
