:root {
  --bg: #ffffff;
  --white: #ffffff;
  --paper: #f6fbfb;
  --paper-2: #edf5f5;
  --ink: #171513;
  --muted: #667275;
  --line: rgba(23, 21, 19, 0.1);
  --line-strong: rgba(23, 21, 19, 0.18);
  --accent: #5B868C;
  --accent-deep: #466f74;
  --dark: #10181a;
  --shadow: 0 18px 50px rgba(20, 17, 13, 0.08);
  --shadow-soft: 0 30px 80px rgba(20, 17, 13, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1220px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.muted { color: var(--muted); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled,
.site-header.menu-open,
.site-header.solid {
  background: #ffffff;
  backdrop-filter: blur(18px);
  border-color: rgba(23,21,19,.08);
  box-shadow: 0 12px 30px rgba(20,17,13,.05);
}

.header-bar {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.brand-logo {
  display: block;
  width: auto;
  height: 56px;
}
.site-footer .brand-logo {
  height: 62px;
  width: auto;
  display: block;
}
.brand-mark,
.brand-text { display: none !important; }

.brand-header {
  position: relative;
}
.brand-header .brand-logo {
  transition: opacity .2s ease, visibility .2s ease;
}
.brand-header .brand-logo-light {
  position: absolute;
  inset: 0 auto 0 0;
  opacity: 1;
  visibility: visible;
}
.brand-header .brand-logo-dark {
  opacity: 0;
  visibility: hidden;
}
.site-header.scrolled .brand-header .brand-logo-light,
.site-header.menu-open .brand-header .brand-logo-light,
.site-header.solid .brand-header .brand-logo-light {
  opacity: 0;
  visibility: hidden;
}
.site-header.scrolled .brand-header .brand-logo-dark,
.site-header.menu-open .brand-header .brand-logo-dark,
.site-header.solid .brand-header .brand-logo-dark {
  opacity: 1;
  visibility: visible;
}


.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}
.site-nav a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s ease;
}
.site-header:not(.scrolled):not(.menu-open):not(.solid) .site-nav a {
  color: var(--white);
}
.site-header.scrolled .site-nav a,
.site-header.menu-open .site-nav a,
.site-header.solid .site-nav a {
  color: var(--ink);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active,
.site-header.menu-open .site-nav a:hover,
.site-header.menu-open .site-nav a.active,
.site-header.solid .site-nav a:hover,
.site-header.solid .site-nav a.active { color: var(--accent-deep); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.header-call:hover {
  transform: translateY(-1px);
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .8rem;
  line-height: 1;
}

.site-header:not(.scrolled):not(.menu-open):not(.solid) .header-call {
  color: var(--white);
}

.site-header.scrolled .header-call,
.site-header.menu-open .header-call,
.site-header.solid .header-call {
  color: var(--ink);
}

.header-phone {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.header-phone:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.46);
}
.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: inherit;
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.header-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.header-social:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
}
.site-header:not(.scrolled):not(.menu-open):not(.solid) .header-social {
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}
.site-header.scrolled .header-social,
.site-header.menu-open .header-social,
.site-header.solid .header-social {
  color: var(--ink);
  border-color: rgba(16,29,38,.16);
  background: rgba(16,29,38,.04);
}
.site-header.scrolled .header-social:hover,
.site-header.menu-open .header-social:hover,
.site-header.solid .header-social:hover {
  color: var(--accent-deep);
  border-color: rgba(91,134,140,.26);
  background: rgba(91,134,140,.08);
}
.site-header.scrolled .header-phone,
.site-header.menu-open .header-phone,
.site-header.solid .header-phone {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(91,134,140,.18);
}
.site-header.scrolled .header-phone:hover,
.site-header.menu-open .header-phone:hover,
.site-header.solid .header-phone:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
}
.site-header.scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span,
.site-header.solid .nav-toggle span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.hero-home .hero-media {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2200&q=85");
  background-position: center center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14,12,10,.70) 0%, rgba(14,12,10,.50) 38%, rgba(14,12,10,.24) 68%, rgba(14,12,10,.10) 100%),
    linear-gradient(to top, rgba(14,12,10,.30), rgba(14,12,10,.05));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 430px;
  gap: 48px;
  align-items: end;
  padding: 150px 0 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow.light { color: rgba(255,255,255,.82); }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
}

h1, h2 {
  font-family: "Inter", sans-serif;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(2.55rem, 4.6vw, 4.7rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--accent);
}

h3 {
  font-size: 1.3rem;
  line-height: 1.25;
}

p { margin: 0; }

.hero-copy {
  color: var(--white);
  max-width: 760px;
}
.hero-copy p,
.hero-card p,
.hero-stat-card p { color: rgba(255,255,255,.84); }
.hero-lead { font-size: 1.03rem; max-width: 640px; }

.hero-copy h1,
.hero-copy h2,
.page-hero-copy h1,
.page-hero-copy h2,
.hero-card h2,
.hero-stat-card h2,
.contact-summary h2,
.contact-summary h3 {
  color: var(--white);
}


.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 12px 30px rgba(91,134,140,.22); }
.btn-secondary { background: var(--white); border-color: rgba(91,134,140,.28); color: var(--accent-deep); }
.btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: var(--white); }

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-card,
.hero-stat-card,
.card,
.soft-panel,
.contact-summary,
.project-story,
.quote-card,
.info-card,
.metric-card,
.gallery-photo,
.form-card,
.contact-card,
.page-hero-card,
.notice-box,
.cta-band,
.split-visual-card,
.step-card,
.media-card,
.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card,
.hero-stat-card {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.18);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.hero-card { padding: 30px; }
.hero-card h2 { font-size: clamp(1.85rem, 2vw, 2.4rem); margin: 14px 0 12px; }
.panel-label {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.hero-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.hero-mini-gallery figure,
.project-inline-gallery figure,
.gallery-photo,
.tile-image,
.story-side-media figure,
.page-hero-photo,
.showcase-photo,
.contact-visual img,
.map-card img,
.card-top-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}
.hero-mini-gallery img,
.project-inline-gallery img,
.gallery-photo img,
.tile-image img,
.story-side-media img,
.page-hero-photo img,
.showcase-photo img,
.contact-visual img,
.map-card img,
.card-top-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-card {
  padding: 24px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
  color: var(--white);
}
.hero-stat-card span {
  font-size: .84rem;
  color: rgba(255,255,255,.74);
}

.section { padding: 108px 0; }
.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f8 100%);
}
.section-bordered {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { max-width: 470px; color: var(--muted); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 22px;
}
.showcase-photo { height: 320px; box-shadow: var(--shadow); }
.showcase-grid .showcase-photo:first-child { height: 420px; }

.editorial-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
}
.soft-panel {
  padding: 34px;
  background: linear-gradient(160deg, #ffffff 0%, #f5faf9 100%);
}
.soft-panel p { color: var(--muted); }
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
  align-items: stretch;
}
.metric-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  min-height: 220px;
}
.metric-card strong {
  display: block;
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.3;
  max-width: 100%;
}
.metric-card > span:not(.metric-icon) {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  grid-template-rows: 310px 220px;
  gap: 18px;
}
.image-mosaic .gallery-photo:first-child {
  grid-row: 1 / span 2;
  min-height: 548px;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.feature-list article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.feature-list p { color: var(--muted); }

.cards-grid {
  display: grid;
  gap: 22px;
}
.cards-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }

.visual-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.card-top-media { height: 250px; }
.card-body { padding: 28px; }
.card-body p,
.info-card p,
.project-story p,
.quote-card p,
.form-intro p,
.contact-card p,
.notice-box p,
.step-card p,
.soft-panel p,
.page-hero-copy p { color: var(--muted); }

.card-list,
.footer-links,
.contact-list,
.hours-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.card-list li,
.footer-links li,
.clean-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--muted);
}
.card-list li::before,
.footer-links li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.step-card { padding: 30px; min-height: 232px; }
.step-card .step-index,
.project-meta,
.aid-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .8rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  align-items: stretch;
}
.project-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.project-card-media {
  height: 280px;
  margin: 0;
  overflow: hidden;
}
.project-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.project-card-body p { color: var(--muted); }
.project-card-body h3 {
  font-size: 1.22rem;
  line-height: 1.25;
}
.project-inline-gallery { display: none; }
.project-inline-gallery figure { height: 0; }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent-deep);
}


.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.quote-card { padding: 28px; }
.quote-card p { margin-bottom: 22px; }
.quote-card strong,
.quote-card span { display: block; }
.quote-card span { color: var(--muted); font-size: .94rem; }

.cta-band {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(140deg, #ffffff 0%, #f5faf9 100%);
}

.page-hero,
.contact-hero {
  position: relative;
  overflow: clip;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 0;
  background: none;
}
.page-hero .hero-media,
.contact-hero .hero-media {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(1.02);
}
.page-hero .hero-overlay,
.contact-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(14,12,10,.72) 0%, rgba(14,12,10,.50) 42%, rgba(14,12,10,.24) 74%, rgba(14,12,10,.12) 100%),
    linear-gradient(to top, rgba(14,12,10,.34), rgba(14,12,10,.08));
}
.page-hero-grid,
.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  align-items: end;
  min-height: 72svh;
  padding: 156px 0 72px;
}
.page-hero-grid {
  grid-template-columns: 1fr .92fr;
}
.contact-hero-grid {
  grid-template-columns: 1fr 430px;
}
.page-hero-copy {
  max-width: 720px;
  color: var(--white);
}
.page-hero-copy p,
.page-hero-copy .eyebrow,
.contact-hero .page-hero-copy p,
.contact-hero .page-hero-copy .eyebrow {
  color: rgba(255,255,255,.84);
}
.page-hero-visual {
  display: grid;
  gap: 16px;
}
.page-hero-photo { height: 430px; box-shadow: var(--shadow); }
.page-hero-card { padding: 28px; }
.hero-slim .page-hero-grid {
  grid-template-columns: 1fr;
}
.hero-slim .page-hero-copy {
  max-width: 760px;
}
.hero-slim .page-hero-visual {
  display: none;
}
.realisations-hero .hero-media {
  background-image: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=2200&q=85");
}
.aid-hero-clean .hero-media {
  background-image: url("assets/plans.jpg");
  background-position: center 38%;
}
.contact-hero .hero-media {
  background-image: url("assets/hero-metier.jpg");
  background-position: center center;
}

.story-grid {
  display: grid;
  gap: 26px;
}
.project-story {
  padding: 18px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 24px;
  align-items: stretch;
}
.story-side-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.story-side-media .story-main {
  grid-column: 1 / span 2;
  height: 320px;
}
.story-side-media .story-small { height: 180px; }
.story-copy {
  padding: 18px 18px 18px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.story-copy h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 4px; }

.aid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.aid-visual-stack {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 16px;
}
.aid-visual-stack .gallery-photo:first-child { height: 460px; }
.aid-visual-stack .stack-col { display: grid; gap: 16px; }
.aid-visual-stack .stack-col .gallery-photo { height: 222px; }

.info-card { padding: 30px; }

.contact-summary {
  background: rgba(16,24,26,.52);
  border-color: rgba(255,255,255,.14);
  color: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.contact-summary span {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
}
.contact-summary div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.contact-summary p,
.contact-summary a { color: rgba(255,255,255,.88); }

.contact-visual-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.contact-visual-grid .contact-visual:first-child { height: 460px; }
.contact-visual-grid .contact-visual:last-child { height: 460px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.contact-grid.single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
.contact-card,
.form-card,
.map-card,
.form-intro { padding: 30px; }
.contact-list li,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 0 0 16px;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
}
.contact-list li::before,
.hours-list li::before { display: none; }
.contact-list strong,
.hours-list strong { color: var(--ink); }

.form-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
}
.contact-form { display: grid; gap: 18px; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form span { font-size: .93rem; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23,21,19,.11);
  border-radius: 16px;
  padding: 16px 18px;
  background: #f7fbfb;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(139,107,64,.42);
  background: var(--white);
}

.map-card {
  padding: 18px;
}
.map-card img,
.map-card iframe { height: 290px; border-radius: 22px; }
.map-card iframe { width: 100%; height: 290px; border: 0; border-radius: 22px; display: block; }
.map-card .map-copy { padding: 20px 8px 8px; }

.site-footer {
  padding: 42px 0 20px;
  background: #071219;
  border-top: 0;
  color: #ffffff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr;
  gap: 24px;
}
.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: rgba(255,255,255,.98);
}
.footer-grid p { color: rgba(241,247,247,.84); }
.site-footer a { color: rgba(255,255,255,.98); }
.site-footer a:hover { color: #d7ecef; }
.site-footer .footer-links li,
.site-footer .footer-links li a,
.site-footer .footer-bottom,
.site-footer .footer-bottom p { color: rgba(241,247,247,.84); }
.site-footer .footer-links li::before { background: rgba(171,220,224,.95); }
.footer-kicker {
  margin: 16px 0 10px;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92) !important;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(241,247,247,.78);
  font-size: .92rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom .footer-siret { text-align: left; }
.footer-bottom .footer-copyright { text-align: right; margin-left: auto; }


.hero-side-simple {
  align-self: end;
}

.hero-side-simple .hero-card {
  max-width: 430px;
}

.section-tight-top {
  padding-top: 44px;
}

.update-banner,
.source-note-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff 0%, #f5faf9 100%);
  box-shadow: var(--shadow);
}

.update-banner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
}

.source-note-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.source-note-card p,
.update-banner p {
  color: var(--muted);
}

.info-grid-2026 .info-card {
  min-height: 220px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .update-banner {
    grid-template-columns: 1fr;
  }
  .aid-support-banner {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .split-layout,
  .editorial-band,
  .page-hero-grid,
  .contact-hero-grid,
  .aid-layout,
  .form-layout,
  .project-story,
  .cta-band,
  .footer-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .cards-grid.three,
  .project-preview-grid,
  .quote-grid,
  .process-grid,
  .contact-grid,
  .cards-grid.two {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .showcase-grid,
  .contact-visual-grid,
  .story-side-media,
  .aid-visual-stack,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .showcase-grid .showcase-photo:first-child,
  .contact-visual-grid .contact-visual:first-child,
  .contact-visual-grid .contact-visual:last-child,
  .story-side-media .story-main,
  .aid-visual-stack .gallery-photo:first-child {
    height: 320px;
  }

  .image-mosaic {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: auto;
  }
  .image-mosaic .gallery-photo:first-child {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 1220px); }

  .header-bar { grid-template-columns: auto auto; gap: 16px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(23,21,19,.08);
    box-shadow: 0 18px 45px rgba(20,17,13,.08);
  }
  .site-header.menu-open .site-nav { display: flex; }
  .header-actions { display: none; }

  .hero { min-height: auto; }
  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid { padding-top: 130px; }
  .hero-grid { padding-bottom: 52px; }

  h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .cards-grid.three,
  .project-preview-grid,
  .quote-grid,
  .process-grid,
  .contact-grid,
  .cards-grid.two,
  .field-row,
  .metric-row,
  .showcase-grid,
  .contact-visual-grid,
  .aid-visual-stack,
  .story-side-media,
  .project-inline-gallery {
    grid-template-columns: 1fr;
  }

  .hero-stat-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section { padding: 82px 0; }
  .showcase-photo,
  .showcase-grid .showcase-photo:first-child,
  .page-hero-photo,
  .contact-visual-grid .contact-visual:first-child,
  .contact-visual-grid .contact-visual:last-child,
  .story-side-media .story-main,
  .story-side-media .story-small,
  .card-top-media,
  .project-card-media,
  .aid-visual-stack .gallery-photo:first-child,
  .aid-visual-stack .stack-col .gallery-photo,
  .map-card img {
    height: 280px;
  }

  .hero-card,
  .hero-stat-card,
  .update-banner,
  .source-note-card,
  .soft-panel,
  .metric-card,
  .step-card,
  .quote-card,
  .cta-band,
  .page-hero-card,
  .contact-card,
  .form-card,
  .form-intro,
  .info-card,
  .notice-box,
  .story-copy,
  .card-body,
  .project-card-body {
    padding: 24px;
  }

  .footer-bottom {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}


.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 118px;
}
.hero-home .hero-copy {
  max-width: 780px;
}
.hero-home .hero-side-simple {
  display: none;
}

.aid-poster img,
.aid-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.aid-poster {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.aid-poster.large { height: 460px; }
.aid-poster.small { height: 222px; }
.aid-card-media {
  height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .hero-home .hero-grid {
    padding-top: 118px;
    padding-bottom: 72px;
  }
  .aid-poster.large,
  .aid-poster.small,
  .aid-card-media {
    height: auto;
  }
}


.aid-hero-clean {
  padding-bottom: 58px;
}
.aid-hero-grid {
  align-items: center;
}
.aid-photo-clean {
  height: 400px;
}
.aid-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.aid-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(91,134,140,.20);
  background: rgba(91,134,140,.08);
  color: var(--accent-deep);
  font-size: .9rem;
  font-weight: 600;
}
.aid-main-grid {
  align-items: stretch;
}
.aid-path-grid {
  align-items: stretch;
}
.aid-path-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.aid-path-figure,
.aid-support-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #f7fbfb;
}
.aid-path-figure img,
.aid-support-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.aid-path-body {
  padding: 4px 12px 12px;
}
.aid-path-body h2 {
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  margin: 10px 0 12px;
}
.aid-path-body p {
  color: var(--muted);
}
.aid-support-banner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff 0%, #f6fbfb 100%);
  box-shadow: var(--shadow);
}
.aid-support-copy {
  padding: 10px 10px 10px 8px;
}
.aid-support-copy h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.quick-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.quick-facts li {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.quick-facts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.quick-facts strong {
  font-size: .96rem;
  color: var(--accent-deep);
}
.quick-facts span {
  color: var(--muted);
}
.aid-support-figure {
  min-height: 320px;
}
.aid-simple-card,
.rule-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.aid-simple-card {
  padding: 34px;
}
.aid-simple-card h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  margin-bottom: 12px;
}
.aid-simple-card p,
.rule-card p {
  color: var(--muted);
}
.aid-simple-list {
  margin-top: 24px;
}
.aid-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.rule-card {
  padding: 30px;
}
.rule-card strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(91,134,140,.10);
  color: var(--accent-deep);
  font-size: 1rem;
}
.rule-card h3 {
  margin-bottom: 10px;
}
.section-soft .info-card,
.section-soft .visual-card,
.section-soft .soft-panel,
.section-soft .metric-card,
.section-soft .cta-band,
.update-banner,
.source-note-card {
  background: linear-gradient(160deg, #ffffff 0%, #f6fbfb 100%);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(91,134,140,.42);
}
@media (max-width: 860px) {
  .brand-logo { height: 44px; }
  .site-footer .brand-logo { height: 52px; }
  .aid-rules-grid { grid-template-columns: 1fr; }
  .aid-simple-card,
  .rule-card,
  .aid-path-card { padding: 24px; }
  .aid-path-body { padding: 0; }
  .aid-photo-clean { height: 300px; }
  .aid-support-banner { padding: 18px; }
  .aid-support-copy h3 { font-size: 1.35rem; }
}


/* V4.8 — page aides simplifiée */
.aid-page-hero .hero-media {
  background-image: url("assets/ambares-exterieur-1.jpg");
  background-position: center center;
}
.aid-page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(14,12,10,.72) 0%, rgba(14,12,10,.50) 42%, rgba(14,12,10,.24) 74%, rgba(14,12,10,.12) 100%),
    linear-gradient(to top, rgba(14,12,10,.34), rgba(14,12,10,.08));
}
.aid-page-hero-grid {
  min-height: 66svh;
  padding-top: 154px;
  padding-bottom: 64px;
}
.aid-intro-split,
.aid-simple-band,
.aid-bottom-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}
.aid-intro-split {
  margin-bottom: 32px;
}
.aid-intro-copy {
  max-width: 520px;
}
.aid-intro-copy p,
.aid-band-copy p,
.aid-bottom-copy p,
.aid-mini-card p,
.aid-clean-card p {
  color: var(--muted);
}
.aid-intro-photo,
.aid-band-photo,
.aid-bottom-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.aid-intro-photo { height: 380px; }
.aid-band-photo { height: 440px; }
.aid-bottom-photo { height: 390px; }
.aid-intro-photo img,
.aid-band-photo img,
.aid-bottom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aid-clean-grid {
  align-items: stretch;
}
.aid-clean-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  align-content: start;
  gap: 14px;
}
.aid-clean-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}
.aid-clean-icon {
  width: 76px;
  height: 76px;
  margin: 0 0 4px;
  padding: 16px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(91,134,140,.08);
  border: 1px solid rgba(91,134,140,.16);
}
.aid-clean-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aid-simple-band {
  gap: 34px;
}
.aid-band-copy {
  max-width: 600px;
}
.aid-mini-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.aid-mini-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.aid-mini-card h3 {
  margin-bottom: 10px;
}
.aid-mini-icon {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: 18px;
}
.aid-bottom-copy {
  max-width: 560px;
}
.aid-bottom-copy .aid-simple-list {
  margin-bottom: 28px;
}
@media (max-width: 1100px) {
  .aid-mini-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .aid-page-hero-grid {
    min-height: 62svh;
    padding-top: 132px;
    padding-bottom: 54px;
  }
  .aid-intro-split,
  .aid-simple-band,
  .aid-bottom-split {
    grid-template-columns: 1fr;
  }
  .aid-intro-photo,
  .aid-band-photo,
  .aid-bottom-photo {
    height: 300px;
  }
  .aid-clean-card {
    padding: 26px;
  }
}



.mpr-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 11px 15px;
  border-radius: 20px;
  border: 1px solid rgba(91,134,140,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(234,243,244,.92));
  box-shadow: 0 10px 24px rgba(91,134,140,.10);
}
.mpr-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(223,238,239,.95));
  border: 1px solid rgba(91,134,140,.14);
  color: var(--accent-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 18px rgba(91,134,140,.10);
  flex: 0 0 auto;
}
.mpr-logo-mark svg {
  width: 29px;
  height: 29px;
  display: block;
}
.mpr-logo-text {
  display: grid;
  line-height: 1.05;
  gap: 5px;
}
.mpr-logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--accent-deep);
}
.mpr-logo-text small {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.aid-mini-card {
  display: grid;
  align-content: start;
}
.aid-mini-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 14px rgba(91,134,140,.08));
}
@media (max-width: 900px) {
  .mpr-logo {
    width: 100%;
    justify-content: flex-start;
  }
}


.fr-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 11px 15px;
  border-radius: 20px;
  border: 1px solid rgba(91,134,140,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(234,243,244,.92));
  box-shadow: 0 10px 24px rgba(91,134,140,.10);
}
.fr-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(223,238,239,.95));
  border: 1px solid rgba(91,134,140,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 18px rgba(91,134,140,.10);
  flex: 0 0 auto;
}
.fr-logo-mark svg {
  width: 29px;
  height: 29px;
  display: block;
}
.fr-logo-text {
  display: grid;
  line-height: 1.05;
  gap: 5px;
}
.fr-logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--accent-deep);
}
.fr-logo-text small {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
@media (max-width: 900px) {
  .fr-logo {
    width: 100%;
    justify-content: flex-start;
  }
}


.cards-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.hero-local {
  margin-top: 14px;
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}
.metric-card {
  display: grid;
  align-content: start;
  gap: 8px;
}
.metric-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 18px;
  background: rgba(91,134,140,.10);
  border: 1px solid rgba(91,134,140,.18);
  color: var(--accent-deep);
}
.metric-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
@media (max-width: 1100px) {
  .cards-grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .cards-grid.four { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-footer { padding-top: 36px; }
  .footer-kicker { letter-spacing: .12em; }
}


.method-section {
  position: relative;
  overflow: hidden;
  background: #08131B;
}
.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/pont-chaban-nuit.jpg") center center / cover no-repeat;
  opacity: 1;
}
.method-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,12,18,.35) 0%, rgba(5,12,18,.55) 100%);
}
.method-section .container {
  position: relative;
  z-index: 1;
}
.method-section .section-head h2,
.method-section .section-head .eyebrow {
  color: #ffffff;
}
.method-section .section-head p,
.method-section .section-head a {
  color: rgba(245,249,249,.88);
}
.method-section .step-card {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(6px);
}
.method-section .step-card h3,
.method-section .step-card p,
.method-section .step-card .step-index {
  position: relative;
  z-index: 1;
}

.visual-card .card-body,
.project-card-body,
.aid-clean-card,
.aid-mini-card,
.metric-card {
  padding-left: 24px;
  padding-right: 24px;
}


@media (max-width: 1180px) {
  .header-actions {
    gap: 10px;
  }
  .header-socials {
    width: 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 860px) {
  .metric-row {
    grid-template-columns: 1fr;
  }
  .metric-card {
    min-height: 0;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .header-socials {
    width: auto;
  }
}
