:root {
  /* ═══ FONDS (Blanc / Off-White) ═══ */
  --bg: #f9fbf7;               /* Blanc très légèrement teinté de vert pour adoucir la lecture */
  --surface: #ffffff;          /* Blanc pur pour les cartes et sections de premier plan */
  --surface2: #eff4ed;         /* Vert très clair pour les éléments secondaires ou survolés */
  --border: #d4dfd3;           /* Gris-vert très doux pour les bordures */

  /* ═══ TEXTES (Noir / Anthracite) ═══ */
  --text: #141a13;             /* Noir très profond avec une pointe de vert (haute lisibilité) */
  --muted: #4e5a4d;            /* Gris-vert moyen pour les textes secondaires */

  /* ═══ VERT CLAIR (Le vert phare de votre logo) ═══ */
  --yellow: #7ab800;           /* Le vert clair vif du logo (remplace l'ancien jaune) */
  --yellow-bright: #8ad100;    /* Version plus lumineuse pour le survol (hover) */
  --yellow-pale: rgba(122,184,0,.08); /* Fond vert clair translucide pour les badges */

  /* ═══ VERT SOMBRE (Pour le contraste et le sérieux) ═══ */
  --green: #1b4332;            /* Vert forêt très sérieux pour les titres ou accents sombres */
  --green-bright: #2d6a4f;     /* Vert moyen pour le contraste */
  --green-pale: rgba(27,67,50,.07);

  /* ═══ AUTRES ═══ */
  --black: #141a13;
  --white: #ffffff;
  --red: #d93829;              /* Rouge vif épuré pour les alertes/urgences */
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; line-height: 1.6; overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: .12;
}

/* ═══ NAV ═══ */
/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(249,251,247,.9); box-shadow: 0 1px 0 rgba(0,0,0,.05);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; z-index: 210; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; }
.nav-brand-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.03em; color: var(--green); }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-decoration: none; padding: 7px 14px; border-radius: 6px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-cta { background: var(--yellow) !important; color: #000 !important; font-weight: 700 !important; border-radius: 6px; }
.nav-cta:hover { background: var(--yellow-bright) !important; color: #000 !important; }
/* Hamburger */
.nav-toggle { display: none; }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; z-index: 210;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:checked ~ .nav-links {
  display: flex;
}

/* ═══ HERO BANDEROLE ═══ */
.hero {
  padding-top: 64px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 380px;
  max-height: 560px;
  overflow: hidden;
}
.hero-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,14,0,.28) 0%, rgba(13,14,0,.72) 100%),
    linear-gradient(to right, rgba(13,14,0,.45) 0%, transparent 60%);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-banner-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 64px 28px;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.hero-photo-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.hero-photo-sub { font-size: 13px; color: rgba(245,240,208,.65); }
.hero-left {
  padding: 56px 64px 72px;
  display: flex; flex-direction: column;
  background: var(--bg);
  position: relative;
  width: 100%;
}
.hero-left-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 25% 50%, rgba(122,184,0,.05) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 80% 80%, rgba(27,67,50,.04) 0%, transparent 55%);
  pointer-events: none;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow-pale); border: 1px solid rgba(122,184,0,.25); border-radius: 20px; padding: 7px 18px; font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 24px; width: fit-content; }
.hero-badge.hero-badge-overlay { border-color: rgba(255,255,255,.3); background: rgba(0,0,0,.4); color: #fff; margin-bottom: 0; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.3; transform:scale(1.6); } }
.hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(40px, 5vw, 72px); font-weight: 800; line-height: .92; letter-spacing: -.04em; margin-bottom: 24px; color: var(--text); }
.hero h1 .y { color: var(--green); }
.hero h1 .g { color: var(--green-bright); }
.hero-sub { font-size: 17px; font-weight: 400; color: var(--muted); max-width: 100%; margin-bottom: 40px; line-height: 1.75; }
.hero-sub strong { color: var(--text); font-weight: 800; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-yellow { display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: #000; font-size: 16px; font-weight: 700; padding: 15px 32px; border-radius: 7px; text-decoration: none; transition: background .2s, transform .2s; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -.01em; }
.btn-yellow:hover { background: var(--yellow-bright); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--muted); color: var(--muted); font-size: 14px; font-weight: 600; padding: 15px 28px; border-radius: 7px; text-decoration: none; transition: border-color .2s, color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--green-bright); color: var(--green-bright); background: var(--green-pale); }
/* unused in banderole layout */
.hero-right { display: none; }
.hero-photo-gradient { display: none; }
.hero-photo-caption { display: none; }

/* ═══ URGENCE STRIP ═══ */
.urgence-strip { background: var(--yellow); padding: 14px 48px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.urgence-text { font-size: 14px; font-weight: 600; color: #000; }
.urgence-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: #000; letter-spacing: .04em; text-decoration: none; }
.urgence-pill { background: rgba(0,0,0,.12); color: #000; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; }

/* ═══ SECTIONS ═══ */
section { padding: 100px 64px; }
.inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(30px, 3.5vw, 50px); font-weight: 800; line-height: 1.1; letter-spacing: -.04em; margin-bottom: 14px; color: var(--text); display: flex; align-items: center; gap: 20px; }
.section-title::before { content: ''; display: inline-block; width: 40px; height: 3px; background: var(--yellow); border-radius: 2px; flex-shrink: 0; }
.section-sub { font-size: 16px; color: var(--muted); font-weight: 300; max-width: 100%; margin-bottom: 56px; line-height: 1.75; }

/* ═══ PRÉSENTATION ═══ */
#about { background: var(--bg); }
.about-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.about-body { flex: 1; }
.about-desc { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.about-desc strong { color: var(--text); font-weight: 700; }
.about-right { display: flex; flex-direction: column; gap: 12px; }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photo { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--border); object-fit: cover; aspect-ratio: 16 / 9; transition: transform .3s, box-shadow .3s; }
.about-photo:hover { transform: scale(1.03); box-shadow: 0 10px 30px -10px rgba(0,0,0,.2); }
.about-photo.full-width { grid-column: 1 / -1; }

@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══ SERVICES ═══ */
#services { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2px; }
.service-card { background: var(--bg); padding: 40px 36px; position: relative; overflow: hidden; transition: background .3s; }
.service-card:hover { background: var(--surface2); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--yellow), var(--green-bright)); transition: width .4s ease; }
.service-card:hover::after { width: 100%; }
.service-img { height: 48px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 20px; display: block; mix-blend-mode: multiply; }
.service-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 21px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.15; color: var(--text); }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ═══ CERTIFICATIONS ═══ */
#certifications { background: var(--bg); }
.cert-hero { display: flex; align-items: center; gap: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 40px 48px; }
.cert-hero:hover { border-color: var(--yellow); }
.cert-logo-wrap { flex-shrink: 0; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; background: var(--bg); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; padding: 16px; }
.cert-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.cert-body { flex: 1; }
.cert-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 24px; margin-bottom: 10px; letter-spacing: -.02em; color: var(--text); }
.cert-desc { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 520px; }
.cert-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; background: var(--yellow-pale); border: 1px solid rgba(122,184,0,.25); border-radius: 20px; padding: 6px 16px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
@media (max-width: 680px) {
  .cert-hero { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
  .cert-logo-wrap { width: 110px; height: 110px; }
  .cert-name { font-size: 20px; }
}

/* ═══ PRESSE ═══ */
#press { background: var(--bg); }
.press-intro { text-align: left; margin-bottom: 48px; }
.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.press-row { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 32px; transition: border-color .2s, transform .2s; }
.press-row:hover { border-color: var(--yellow); transform: translateY(-4px); }
.press-quote { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; border-left: 3px solid var(--yellow); padding-left: 16px; margin-bottom: 24px; flex-grow: 1; }
.press-link { font-size: 14px; font-weight: 600; text-decoration: none; color: var(--green); transition: color .2s; }
.press-link:hover { color: var(--green-bright); }
.press-row-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.press-logos-inline { display: flex; align-items: center; gap: 12px; }
.press-logo-inline-img { height: 18px; width: auto; max-width: 110px; object-fit: contain; opacity: 0.8; transition: opacity .2s; }
.press-logo-inline-img:hover { opacity: 1; }

/* ═══ INTERVENTION ═══ */
#intervention { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 56px; }
.process-grid::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); }
.step { padding: 0 20px; text-align: center; }
.step-num { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; color: var(--green); margin: 0 auto 24px; position: relative; z-index: 1; transition: border-color .3s, background .3s; }
.step:hover .step-num { border-color: var(--yellow); background: var(--yellow-pale); }
.step-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══ ZONE D'INTERVENTION ═══ */
#zone { background: var(--bg); }
.zone-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 56px; }
.zone-text p { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 12px; }
.zone-text p strong { color: var(--text); font-weight: 700; }
.zone-note { margin-top: 16px; padding: 14px 18px; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--yellow); border-radius: 0 8px 8px 0; font-size: 13px; color: var(--muted); }
.zone-stats { display: flex; flex-direction: column; gap: 16px; }
.zone-stat { display: flex; align-items: center; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; transition: border-color .2s; }
.zone-stat:hover { border-color: var(--yellow); }
.zone-stat-icon { font-size: 26px; flex-shrink: 0; }
.zone-stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 800; color: var(--green); line-height: 1; letter-spacing: -.03em; }
.zone-stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* communes */
.communes-block { margin-top: 0; }
.communes-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: -.01em; }
.communes-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.commune-pill { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--muted); transition: border-color .2s, color .2s; cursor: default; }
.commune-pill:hover { border-color: var(--green-bright); color: var(--green-bright); }

/* ═══ CONTACT + CARTE + FORMULAIRE ═══ */
#contact { background: var(--surface); }
.contact-top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; margin-bottom: 80px; }
.contact-info-list { display: flex; flex-direction: column; gap: 0; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.contact-icon-wrap { width: 46px; height: 46px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.contact-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.contact-value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.contact-value a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-value a[href^="mailto:"] { font-size: 15px; }
.contact-value a:hover { color: var(--yellow); }
.contact-value-sub { font-size: 13px; color: var(--muted); margin-top: 2px; font-weight: 300; }

/* MAP */
.map-block { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.map-header { padding: 20px 24px 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.map-header-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); }
.map-header-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.map-pill { background: var(--yellow-pale); border: 1px solid rgba(122,184,0,.3); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; }
#leaflet-map { height: 400px; width: 100%; background: var(--bg); }
.leaflet-container { background: #eff4ed !important; font-family: 'DM Sans', sans-serif !important; }
.map-footer { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.map-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }

/* ═══ FORMULAIRE ═══ */
.form-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px); font-weight: 800;
  letter-spacing: -.03em; color: var(--text); margin-bottom: 8px;
}
.form-section-sub { font-size: 15px; color: var(--muted); font-weight: 300; margin-bottom: 40px; line-height: 1.65; }

.contact-form {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 48px;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
}
.form-label span { color: var(--red); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 16px;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 300;
  transition: border-color .2s, background .2s;
  outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--yellow); background: var(--surface2);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: .7; }
.form-select option { background: var(--surface); }
.form-textarea { min-height: 110px; resize: vertical; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border); border-radius: 10px;
  padding: 32px 24px; text-align: center;
  cursor: pointer; transition: border-color .2s, background .2s;
  position: relative;
}
.upload-zone:hover { border-color: var(--yellow); background: var(--yellow-pale); }
.upload-zone input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%;
}
.upload-icon { font-size: 28px; margin-bottom: 8px; }
.upload-text { font-size: 14px; color: var(--muted); font-weight: 300; }
.upload-text strong { color: var(--text); font-weight: 600; }
.upload-hint { font-size: 12px; color: var(--muted); margin-top: 6px; opacity: .7; }

/* Consentement RGPD */
.rgpd-block {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 18px;
}
.rgpd-block input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--yellow); cursor: pointer;
}
.rgpd-text { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 300; }
.rgpd-text strong { color: var(--text); font-weight: 500; }

.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: #000;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 800;
  padding: 18px 40px; border-radius: 8px;
  border: none; cursor: pointer; letter-spacing: -.01em;
  transition: background .2s, transform .2s; width: 100%;
  justify-content: center;
  margin-top: 28px;
}
.btn-submit:hover { background: var(--yellow-bright); transform: translateY(-2px); }

.form-notice {
  font-size: 12px; color: var(--muted); text-align: center;
  margin-top: 12px; font-weight: 300;
}

/* ═══ FOOTER ═══ */
footer { background: var(--black); border-top: 3px solid var(--yellow); padding: 28px 64px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 34px; width: auto; object-fit: contain; }
.footer-brand-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 18px; color: var(--yellow); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.social-icon { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.social-icon:hover { color: var(--white); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(249,251,247,.99);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 4px;
  }
  .nav-links a { font-size: 14px; padding: 12px 16px; }
  .hero-banner { height: 50vw; min-height: 260px; max-height: 440px; }
  .hero-banner-caption { padding: 0 24px 20px; }
  .hero-left { padding: 40px 24px 56px; }
  .hero-left-inner { max-width: 100%; }
  section { padding: 60px 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .zone-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-top { grid-template-columns: 1fr; gap: 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .press-grid { grid-template-columns: 1fr; gap: 24px; }
  .press-container { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 24px 20px; flex-direction: column; text-align: center; }
}

/* From form-success.html */
body {
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.nav-home {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; padding: 7px 14px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-home:hover { color: var(--text); background: var(--surface2); }

main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 80px;
}

.success-card {
  max-width: 680px; width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.success-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(122,184,0,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(27,67,50,.06) 0%, transparent 60%);
  pointer-events: none;
}
.success-card > * { position: relative; z-index: 1; }

.success-icon {
  width: 88px; height: 88px;
  margin: 0 auto 32px;
  position: relative;
}
.success-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--yellow-pale);
  border: 2px solid rgba(122,184,0,.25);
  display: flex; align-items: center; justify-content: center;
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.checkmark {
  width: 38px; height: 38px;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.checkmark-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck .4s ease .4s forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.success-label {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.success-label::before, .success-label::after {
  content: ''; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px; opacity: .5;
}

.success-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.success-title .accent { color: var(--yellow); }

.success-desc {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 40px;
}
.success-desc strong { color: var(--text); font-weight: 600; }

.next-steps {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 40px;
}
.next-steps-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.next-steps ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.next-steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.55;
}
.next-steps li::before {
  content: '→';
  color: var(--yellow); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.next-steps li strong { color: var(--text); font-weight: 600; }

.success-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

.btn-yellow {
  color: #fff;
}

@media (max-width: 640px) {
  .nav-brand-name { font-size: 17px; }
  .success-card { padding: 40px 24px; border-radius: 14px; }
  .success-actions { flex-direction: column; align-items: stretch; }
  .success-actions a { justify-content: center; }
}
