:root {
  --ink: #08243d;
  --ink-soft: #173955;
  --green: #3f7115;
  --green-soft: #6f9634;
  --teal: #16717c;
  --orange: #ef9d10;
  --paper: #fffdf8;
  --sand: #f4f1e9;
  --mist: #edf3f6;
  --line: rgba(8, 36, 61, 0.16);
  --shadow: 0 18px 40px rgba(8, 36, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 318px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 124px;
  padding: 12px clamp(18px, 3vw, 58px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(8, 36, 61, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 300px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.7vw, 30px);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #071a2f;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  white-space: nowrap;
}

.main-nav a::after,
.nav-drop-toggle::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  content: "";
  background: transparent;
  border-radius: 2px;
}

.main-nav a.active,
.nav-dropdown.active .nav-drop-toggle {
  color: var(--green);
}

.main-nav a.active::after,
.main-nav a:hover::after,
.nav-dropdown.active .nav-drop-toggle::after,
.nav-dropdown:hover .nav-drop-toggle::after,
.nav-dropdown:focus-within .nav-drop-toggle::after {
  background: var(--green);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-toggle {
  position: relative;
}

.nav-drop-toggle::before {
  position: absolute;
  right: -14px;
  top: 50%;
  content: "⌄";
  transform: translateY(-52%);
  color: var(--green);
  font-size: 13px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 9px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 300px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(8, 36, 61, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(8, 36, 61, 0.16);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  line-height: 1.15;
  text-transform: none;
  white-space: normal;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--green);
  background: rgba(63, 113, 21, 0.08);
}

.donate-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.donate-button {
  gap: 12px;
  padding: 0 16px 0 24px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(63, 113, 21, 0.22);
}

.donate-button span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 30%, rgba(255, 253, 248, 0.2) 60%),
    #e8f0ec;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 94px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.94) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 44px 0 118px clamp(24px, 3.2vw, 64px);
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 3.15vw, 45px);
  line-height: 1.06;
  text-transform: uppercase;
  font-weight: 900;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 17px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.button {
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 13px;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.button.accent {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: 1;
  overflow: hidden;
}

.hero-photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 28px 0 40px 22px;
  transform: skewX(-4deg);
  transform-origin: center;
}

.hero-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: 0 22px 40px rgba(8, 36, 61, 0.18);
}

.hero-photo-grid img:first-child {
  grid-row: span 2;
  border-radius: 0 0 0 8px;
}

.hero-photo-grid img:nth-child(2) {
  border-radius: 8px 0 0 0;
}

.hero-photo-grid img:nth-child(4) {
  border-radius: 0 0 0 8px;
}

.poles-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(92vw, 1780px);
  margin: -92px auto 10px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pole-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 14px;
  align-content: start;
  min-height: 140px;
  padding: 6px 14px;
  border-right: 1px solid rgba(8, 36, 61, 0.1);
}

.pole-photo {
  grid-row: span 3;
  width: 92px;
  height: 104px;
  object-fit: cover;
  border-radius: 6px;
}

.pole-card:last-child {
  border-right: 0;
}

.pole-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.pole-icon {
  grid-row: span 3;
  width: 56px;
  height: 56px;
  font-size: 28px;
}

.pole-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.12;
  text-transform: uppercase;
}

.pole-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.habitat .pole-icon,
.mini-icon.habitat {
  background: var(--green);
}

.materiaux .pole-icon,
.mini-icon.materiaux {
  background: #075f8b;
}

.commerce .pole-icon,
.mini-icon.commerce {
  background: var(--orange);
}

.friches .pole-icon,
.mini-icon.friches {
  background: var(--green);
}

.solidarite .pole-icon,
.mini-icon.solidarite {
  background: var(--teal);
}

.pole-card.habitat h3,
.pole-card.friches h3 {
  color: var(--green);
}

.pole-card.materiaux h3,
.pole-card.solidarite h3 {
  color: #075078;
}

.pole-card.commerce h3 {
  color: var(--orange);
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr 1.16fr;
  gap: 14px;
  width: min(92vw, 1780px);
  margin: 0 auto 14px;
}

.panel {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
}

.panel-photo,
.priority-photo,
.ambition-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.panel-photo {
  height: 118px;
  margin: 0 0 18px;
  opacity: 0.92;
}

.panel h2,
.act-band h2,
.placeholder-section h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.objectives {
  color: #fff;
  background: linear-gradient(135deg, #06243b, #00334c 58%, #064557);
}

.objectives h2 {
  color: #fff;
}

.objectives ul,
.priorities ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.objectives ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.objectives li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.mini-icon {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.mini-icon.network,
.mini-icon.person {
  background: var(--teal);
}

.priorities {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 18px;
  background: var(--sand);
}

.priority-photo {
  align-self: stretch;
  height: 100%;
  min-height: 210px;
}

.priorities h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 17px;
  text-transform: uppercase;
}

.priorities li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 700;
}

.priorities li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
}

.ambition {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 250px;
  gap: 18px;
  background: #eaf1f8;
}

.ambition p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 650;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.identity-grid div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px 12px;
}

.identity-grid strong {
  text-transform: uppercase;
  font-size: 13px;
}

.identity-grid address,
.identity-grid p {
  grid-column: 2;
  margin: 0;
  font-style: normal;
  font-size: 13px;
}

.ambition-photo {
  align-self: center;
  height: 260px;
}

.act-band {
  width: min(92vw, 1780px);
  margin: 0 auto 0;
  padding: 18px 26px;
  background: #f7f5ef;
  border-radius: 8px 8px 0 0;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.act-grid a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 8px 18px;
  border-right: 1px solid rgba(63, 113, 21, 0.22);
}

.act-grid a:last-child {
  border-right: 0;
}

.act-grid span {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.act-grid strong {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.placeholder-section {
  width: min(92vw, 1780px);
  margin: 18px auto 0;
  padding: 24px 0 36px;
}

.placeholder-section p {
  max-width: 760px;
  margin: 0;
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 4vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.88) 42%, rgba(234, 241, 248, 0.74)),
    var(--mist);
}

.page-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 900;
}

.page-hero h1 span {
  color: var(--green);
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.page-hero-photo {
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-wrap {
  width: min(92vw, 1500px);
  margin: 0 auto;
  padding: 34px 0 56px;
}

.section-heading {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.lead-block {
  max-width: 980px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.content-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(8, 36, 61, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(8, 36, 61, 0.08);
}

.content-panel.tint {
  background: var(--sand);
}

.content-panel.blue {
  color: #fff;
  background: linear-gradient(135deg, #06243b, #063c55);
}

.content-panel.blue .section-heading,
.content-panel.blue h2,
.content-panel.blue h3 {
  color: #fff;
}

.content-panel h2,
.content-panel h3 {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
}

.content-panel p {
  margin: 0 0 14px;
  font-weight: 650;
}

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

.content-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.content-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
}

.photo-panel {
  overflow: hidden;
  background: var(--mist);
  border-radius: 8px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 34px;
}

.info-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 36, 61, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 36, 61, 0.08);
}

.info-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.info-card div {
  padding: 20px;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.12;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-weight: 650;
}

.info-card .button {
  margin-top: 18px;
}

.pole-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 34px;
}

.pole-hub-card {
  display: grid;
  grid-template-rows: 170px auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 36, 61, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 36, 61, 0.08);
}

.pole-hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pole-hub-card div {
  display: grid;
  align-content: start;
  padding: 20px;
}

.pole-hub-card h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 19px;
  line-height: 1.08;
  text-transform: uppercase;
}

.pole-hub-card p {
  margin: 0;
  font-weight: 650;
}

.pole-hub-card .button {
  align-self: end;
  margin-top: 18px;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 34px;
}

.submenu-card {
  min-height: 145px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(63, 113, 21, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 36, 61, 0.07);
}

.submenu-card h2,
.submenu-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 19px;
  line-height: 1.12;
  text-transform: uppercase;
}

.submenu-card p {
  margin: 0;
  font-weight: 650;
}

.materials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.material-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--green);
  background: rgba(63, 113, 21, 0.09);
  border: 1px solid rgba(63, 113, 21, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.poles-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.poles-links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(8, 36, 61, 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.poles-links a:hover,
.poles-links a:focus {
  color: var(--green);
  border-color: rgba(63, 113, 21, 0.36);
}

.working-together {
  margin: 34px 0;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 36, 59, 0.94), rgba(6, 60, 85, 0.9)),
    url("assets/photos/neighborhood-renovation.jpg") center / cover;
  border-radius: 8px;
}

.working-together h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  text-transform: uppercase;
}

.working-together p {
  max-width: 1080px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 34px;
}

.step-card {
  min-height: 170px;
  padding: 22px;
  color: #fff;
  background: #063c55;
  border-radius: 8px;
}

.step-card strong {
  display: block;
  margin-bottom: 12px;
  color: #b8d890;
  font-size: 15px;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  font-weight: 700;
}

.document-block {
  display: grid;
  gap: 18px;
  max-width: 1050px;
}

.statut-article {
  padding: 24px;
  background: #fff;
  border-left: 5px solid var(--green);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 24px rgba(8, 36, 61, 0.07);
}

.statut-article h2 {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
}

.statut-article p {
  margin: 0;
  font-weight: 650;
}

.donation-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  margin: 26px 0;
}

.donation-panel {
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0b5a51);
  border-radius: 8px;
}

.donation-panel h2,
.donation-panel h3 {
  margin: 0 0 12px;
  color: #fff;
  text-transform: uppercase;
}

.donation-panel p {
  margin: 0 0 14px;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-action {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(63, 113, 21, 0.18);
  border-radius: 8px;
}

.contact-action h2,
.contact-action h3 {
  margin: 0 0 8px;
  color: var(--green);
  text-transform: uppercase;
}

.contact-action p {
  margin: 0;
  font-weight: 650;
}

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

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(8, 36, 61, 0.18);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 260px minmax(260px, 1fr) minmax(420px, auto);
  gap: 28px;
  align-items: center;
  padding: 26px clamp(24px, 3vw, 60px) 18px;
  color: #fff;
  background: #062e49;
}

.footer-brand img {
  width: 235px;
  height: 108px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.footer-motto {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  font-weight: 700;
}

.footer-motto::before,
.footer-motto::after {
  position: absolute;
  color: var(--green-soft);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.footer-motto::before {
  top: -10px;
  left: 0;
  content: "“";
}

.footer-motto::after {
  right: 0;
  bottom: -28px;
  content: "”";
}

.footer-motto p {
  margin: 0 0 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 14px 24px;
  justify-content: end;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  position: relative;
}

.footer-links a + a::before {
  position: absolute;
  left: -15px;
  color: var(--green-soft);
  content: "•";
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: 270px 1fr;
  }

  .brand img {
    width: 260px;
  }

  .main-nav {
    justify-content: end;
    gap: 18px;
    font-size: 12px;
  }

  .donate-button {
    grid-column: 2;
    justify-self: end;
    margin-top: -26px;
  }

  .poles-strip,
  .dashboard,
  .pole-hub-grid,
  .cards-grid,
  .steps-grid,
  .submenu-grid,
  .poles-links,
  .act-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero,
  .two-column,
  .donation-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-photo {
    height: 320px;
  }

  .pole-card:nth-child(2n) {
    border-right: 0;
  }

  .ambition {
    grid-column: 1 / -1;
  }

  .act-grid a:nth-child(2n) {
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 240px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 14px 18px;
  }

  .brand img {
    width: 215px;
    margin: 0 auto;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    overflow: visible;
    padding-bottom: 4px;
    font-size: 11px;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .main-nav a::after {
    bottom: 3px;
  }

  .nav-drop-toggle::before {
    right: -11px;
  }

  .nav-dropdown-menu {
    top: calc(100% + 2px);
    left: 50%;
    min-width: min(330px, 88vw);
  }

  .donate-button {
    grid-column: auto;
    justify-self: stretch;
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.82)),
      linear-gradient(180deg, #dceaf1 0%, #f5f1de 100%);
  }

  .hero-content {
    max-width: none;
    padding: 34px 22px 205px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-visual {
    inset: auto 0 0;
    height: 220px;
    opacity: 0.9;
  }

  .hero-photo-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 6px;
    padding: 0;
    transform: none;
  }

  .hero-photo-grid img:first-child {
    grid-row: auto;
  }

  .poles-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 16px;
  }

  .pole-card {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 36, 61, 0.1);
  }

  .pole-card:last-child {
    border-bottom: 0;
  }

  .dashboard,
  .pole-hub-grid,
  .cards-grid,
  .steps-grid,
  .submenu-grid,
  .poles-links,
  .field-row,
  .act-grid,
  .site-footer,
  .objectives ul,
  .priorities,
  .ambition,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .page-hero-photo {
    height: 240px;
  }

  .content-panel,
  .statut-article,
  .donation-panel {
    padding: 22px;
  }

  .panel {
    min-height: auto;
  }

  .priority-photo,
  .ambition-photo {
    height: 220px;
    min-height: 0;
  }

  .act-grid a {
    border-right: 0;
    border-bottom: 1px solid rgba(63, 113, 21, 0.22);
  }

  .act-grid a:last-child {
    border-bottom: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links a + a::before {
    content: "";
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 31px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .poles-strip,
  .dashboard,
  .page-wrap,
  .act-band,
  .placeholder-section {
    width: calc(100vw - 28px);
  }

  .pole-card {
    grid-template-columns: 82px 1fr;
  }

  .pole-photo {
    width: 82px;
    height: 86px;
  }
}
