:root {
  --blue: #0b4f8a;
  --blue-deep: #07375f;
  --blue-soft: #e7f1f8;
  --gold: #f0c331;
  --green: #2f8066;
  --ink: #17212b;
  --muted: #64717f;
  --line: #dfe7ed;
  --paper: #ffffff;
  --wash: #f5f7f9;
  --shadow: 0 18px 50px rgba(7, 55, 95, 0.12);
  --shadow-soft: 0 10px 30px rgba(7, 55, 95, 0.08);
  --radius: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(11, 79, 138, 0.34);
  outline-offset: 3px;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  flex: 0 0 auto;
}

.call-pill svg,
.stat-icon,
.home-service-icon,
.home-rse-icon,
.home-project-card p svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 231, 237, 0.75);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.compact {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.home-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(4, 19, 32, 0.74), rgba(4, 19, 32, 0));
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.home-page .site-header:not(.is-scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.home-page .site-header:not(.is-scrolled) .nav-links a:hover,
.home-page .site-header:not(.is-scrolled) .nav-links a[aria-current="page"] {
  color: #fff;
  background: transparent;
}

.home-page .site-header:not(.is-scrolled) .nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
}

.home-page .site-header:not(.is-scrolled) .call-pill {
  border-color: #d3a949;
  background: #d3a949;
  color: #fff;
  box-shadow: none;
}

.home-page .site-header:not(.is-scrolled) .brand img {
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 166px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #25313d;
  font-weight: 750;
  font-size: 0.92rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.call-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(11, 79, 138, 0.22);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
  background: #fff;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.call-pill:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.call-pill svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(720px, 90svh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px 0 54px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/hero-accueil-chantier.jpg") center / cover no-repeat;
  background-position: center 58%;
  transform: scale(1.025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 29, 49, 0.9) 0%, rgba(7, 55, 95, 0.78) 42%, rgba(23, 33, 43, 0.22) 100%),
    linear-gradient(0deg, rgba(23, 33, 43, 0.72) 0%, rgba(23, 33, 43, 0.2) 54%, rgba(23, 33, 43, 0.5) 100%);
}

.hero-content {
  display: grid;
  gap: 28px;
  color: #fff;
}

.hero-copy {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.25rem, 6vw, 5.4rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.28rem;
}

.home-hero h1 {
  font-size: clamp(4.4rem, 8.4vw, 7.4rem);
  letter-spacing: -0.055em;
}

.home-hero .hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.34rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 880px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  min-height: 104px;
  padding: 20px 22px;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.25;
}

.hero-actions,
.cta-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.primary {
  background: var(--gold);
  color: #17212b;
}

.button.secondary {
  background: #fff;
  color: var(--blue);
  border-color: rgba(11, 79, 138, 0.24);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.home-page .home-hero {
  min-height: clamp(680px, 82svh, 840px);
  padding: 132px 0 46px;
}

.home-page .home-hero .hero-bg {
  background-position: center 52%;
  filter: saturate(0.9) contrast(1.03);
}

.home-page .home-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 19, 33, 0.88) 0%, rgba(4, 32, 53, 0.73) 36%, rgba(4, 32, 53, 0.18) 72%, rgba(4, 32, 53, 0.04) 100%),
    linear-gradient(0deg, rgba(1, 19, 33, 0.74) 0%, rgba(1, 19, 33, 0.14) 52%, rgba(1, 19, 33, 0.42) 100%);
}

.home-page .home-hero .hero-content {
  gap: 32px;
}

.home-page .home-hero .hero-copy {
  max-width: 720px;
}

.home-page .home-hero h1 {
  max-width: 720px;
  font-size: clamp(3.15rem, 5.2vw, 4.9rem);
  letter-spacing: -0.045em;
}

.home-page h1 span,
.home-page h2 span {
  color: var(--gold);
}

.home-page .home-hero .hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  line-height: 1.7;
}

.home-page .home-hero .hero-actions {
  margin-top: 28px;
}

.home-page .home-hero .button {
  min-width: 190px;
}

.home-page .home-hero .button::after,
.home-rse-copy .button::after,
.text-link::after {
  content: "\2192";
  margin-left: 12px;
  transition: transform 180ms ease;
}

.home-page .home-hero .button:hover::after,
.home-rse-copy .button:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}

.home-page .hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(990px, 100%);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(4, 22, 36, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.home-page .hero-stats div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  align-content: center;
  min-height: 102px;
  padding: 22px 28px;
}

.home-page .stat-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  align-self: center;
  color: var(--gold);
}

.home-page .hero-stats strong {
  color: #fff;
  font-size: 2.05rem;
}

.home-page .hero-stats span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading-inline h2 {
  max-width: 560px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  font-weight: 850;
  white-space: nowrap;
}

.home-services-band,
.home-projects-band {
  background: #fff;
}

.home-services-band {
  padding-top: 68px;
  padding-bottom: 28px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.home-service-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  padding: 24px 14px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 33, 43, 0.1);
  cursor: pointer;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(1, 18, 31, 0.05), rgba(1, 18, 31, 0.88));
  transition: background 180ms ease;
}

.home-service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.home-service-card:hover img,
.home-service-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.home-service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.96);
}

.home-service-card h3 {
  color: #fff;
  font-size: 1.05rem;
  overflow-wrap: normal;
}

.home-projects-band {
  padding-top: 52px;
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.home-project-card:hover,
.home-project-card:focus-visible {
  border-color: rgba(11, 79, 138, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.home-project-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.home-project-card div {
  min-height: 126px;
  padding: 18px 18px 20px;
}

.home-project-card span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-project-card h3 {
  margin-top: 8px;
  color: var(--blue-deep);
  font-size: 1.28rem;
}

.home-project-card p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.home-project-card p svg {
  width: 14px;
  height: 14px;
  color: #c89a24;
}

.section.home-rse-band {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background:
    linear-gradient(90deg, rgba(1, 23, 39, 0.98) 0%, rgba(1, 23, 39, 0.94) 28%, rgba(5, 47, 63, 0.76) 58%, rgba(5, 47, 63, 0.46) 100%),
    url("../img/projects/parc-du-bicheret-mosaique-source.jpg") center 44% / cover no-repeat;
  color: #fff;
}

.home-rse-grid {
  display: grid;
  grid-template-columns: minmax(315px, 0.92fr) repeat(4, minmax(150px, 1fr));
  gap: 10px;
  align-items: center;
}

.home-rse-copy {
  align-self: center;
  padding-right: 18px;
}

.home-rse-copy h2 {
  max-width: 330px;
  color: #fff;
  font-size: clamp(1.7rem, 2.1vw, 2rem);
  line-height: 1.02;
}

.home-rse-copy p:not(.eyebrow) {
  max-width: 300px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
}

.home-rse-copy .button {
  min-height: 38px;
  margin-top: 16px;
  padding: 9px 15px;
  border-radius: 5px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.home-rse-card {
  height: 164px;
  min-height: 0;
  padding: 18px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(10, 34, 45, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.home-rse-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: var(--gold);
}

.home-rse-card span {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.15;
}

.home-rse-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section {
  padding: 96px 0;
}

.intro-band,
.rse-band,
.method-band,
.values-band {
  background: var(--wash);
}

.survey-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 14%, rgba(47, 128, 102, 0.12), transparent 23rem),
    radial-gradient(circle at 94% 84%, rgba(11, 79, 138, 0.11), transparent 28rem),
    #fff;
}

.survey-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 36px;
  align-items: stretch;
}

.survey-heading h2 {
  max-width: 690px;
  color: var(--blue-deep);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.survey-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: #3d4a57;
  font-size: 1.08rem;
}

.survey-heading .survey-highlight {
  color: var(--green);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.35;
}

.survey-pride {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 18px;
  align-content: center;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 102, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 128, 102, 0.15), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.survey-pride::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(47, 128, 102, 0.09);
  border-radius: 50%;
}

.survey-pride-icon {
  grid-row: span 2;
  width: 76px;
  height: 76px;
  padding: 14px;
  border: 11px solid var(--green);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  fill: currentColor;
}

.survey-pride strong,
.survey-pride span {
  position: relative;
  z-index: 1;
}

.survey-pride strong {
  align-self: end;
  color: var(--green);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 950;
  line-height: 1;
}

.survey-pride span {
  align-self: start;
  margin-top: 8px;
  color: #273f35;
  font-weight: 800;
  line-height: 1.35;
}

.survey-score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.survey-score-card-92 { --score: 92; }
.survey-score-card-94 { --score: 94; }
.survey-score-card-82 { --score: 82; }
.survey-score-card-89 { --score: 89; }

.survey-score-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 272px;
  padding: 24px;
  border: 1px solid rgba(11, 79, 138, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(7, 55, 95, 0.07);
}

.survey-score-icon {
  width: 42px;
  height: 42px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.survey-score {
  display: grid;
  grid-column: 1 / -1;
  width: 126px;
  height: 126px;
  margin: 16px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--green) calc(var(--score) * 1%), #e5ece8 0);
  place-items: center;
}

.survey-score::before {
  content: "";
  grid-area: 1 / 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
}

.survey-score strong {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.survey-score sup {
  font-size: 0.48em;
}

.survey-score-card h3 {
  grid-column: 1 / -1;
  min-height: 2.4em;
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.86rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.survey-score-card p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #3d4a57;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.42;
}

.survey-feedback {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(11, 79, 138, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.survey-feedback-heading {
  text-align: center;
}

.survey-feedback-heading h3 {
  max-width: 780px;
  margin: 4px auto 0;
  color: var(--blue-deep);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.survey-feedback-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.survey-feedback-grid article {
  min-width: 0;
  padding: 4px 22px 0;
}

.survey-feedback-grid article + article {
  border-left: 1px dashed rgba(23, 33, 43, 0.18);
}

.survey-feedback-grid h4 {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.survey-feedback-grid h4::before {
  content: "";
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #4c9b7e);
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.18);
}

.survey-feedback-grid article:nth-child(2) h4::before,
.survey-feedback-grid article:nth-child(5) h4::before {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.survey-feedback-grid article:nth-child(4) h4::before {
  background: linear-gradient(135deg, #48a4a2, var(--blue));
}

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

.survey-feedback-grid li {
  position: relative;
  padding-left: 17px;
  color: #344150;
  font-size: 0.79rem;
  font-weight: 720;
  line-height: 1.42;
}

.survey-feedback-grid li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.survey-feedback-grid article:nth-child(2) li::before,
.survey-feedback-grid article:nth-child(5) li::before {
  background: var(--blue);
}

.survey-feedback-grid article:nth-child(4) li::before {
  background: #2f9b9d;
}

.split,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: start;
}

.large-text,
.text-stack p {
  margin: 0;
  color: #3d4a57;
  font-size: 1.18rem;
}

.president-quote-band {
  background: #fff;
}

.president-quote {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.president-quote img {
  width: 132px;
  height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.14);
}

.president-quote blockquote {
  margin: 0;
}

.president-quote blockquote p {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.24;
}

.president-quote footer {
  margin-top: 18px;
}

.president-quote footer strong,
.president-quote footer span {
  display: block;
}

.president-quote footer strong {
  color: var(--blue);
}

.president-quote footer span {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.finance-band {
  background:
    linear-gradient(135deg, rgba(11, 79, 138, 0.08), rgba(47, 128, 102, 0.08)),
    #fff;
}

.finance-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 42px;
  align-items: end;
}

.finance-heading h2 {
  max-width: 760px;
}

.finance-heading > p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.finance-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
  gap: 18px;
  margin-top: 34px;
}

.finance-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(11, 79, 138, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 33, 43, 0.08);
}

.finance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--blue));
}

.finance-card-main {
  background:
    linear-gradient(135deg, rgba(7, 55, 95, 0.94), rgba(11, 79, 138, 0.9)),
    var(--blue-deep);
  color: #fff;
}

.finance-card span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.finance-card-main span {
  color: var(--gold);
}

.finance-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 0.95;
}

.finance-card-main strong {
  color: #fff;
}

.finance-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.finance-card-main p {
  color: rgba(255, 255, 255, 0.82);
}

.finance-chart-card {
  position: relative;
  overflow: hidden;
  min-height: 316px;
  margin: 0;
  padding: 28px 30px 24px;
  border: 1px solid rgba(11, 79, 138, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 33, 43, 0.08);
}

.finance-chart-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--blue));
}

.finance-chart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.finance-chart-header span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.finance-chart-header strong {
  color: var(--green);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
}

.finance-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: end;
  min-height: 190px;
  margin-top: 22px;
  padding: 18px 4px 0;
}

.finance-bars::before,
.finance-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(23, 33, 43, 0.14);
}

.finance-bars::before {
  top: 42px;
}

.finance-bars::after {
  top: 112px;
}

.finance-bar-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  align-items: end;
  min-height: 194px;
}

.finance-bar-value {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.finance-bar {
  display: block;
  width: min(74px, 72%);
  min-height: 18px;
  margin-inline: auto;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  box-shadow: 0 12px 24px rgba(11, 79, 138, 0.18);
}

.finance-bar-2023 {
  height: 86px;
  background: linear-gradient(180deg, #6faed9, var(--blue));
}

.finance-bar-2024 {
  height: 118px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.finance-bar-2025 {
  height: 128px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}

.finance-bar-2026 {
  height: 136px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.finance-bar-year {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.finance-chart-card figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.4;
}

.finance-details {
  margin-top: 24px;
}

.finance-note,
.finance-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.06);
}

.finance-note {
  padding: 26px;
}

.finance-note strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.finance-note p {
  margin: 12px 0 0;
  color: #3d4a57;
  line-height: 1.55;
}

.finance-table-wrap {
  overflow-x: auto;
}

.finance-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

.finance-table th,
.finance-table td {
  padding: 18px 20px;
  text-align: left;
  white-space: nowrap;
}

.finance-table th {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finance-table td {
  border-top: 1px solid var(--line);
  color: #3d4a57;
  font-weight: 780;
}

.finance-table tbody tr:first-child td {
  color: var(--ink);
  font-weight: 900;
}

.finance-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.partner-heading .eyebrow,
.cta-content .eyebrow,
.page-hero .eyebrow {
  color: var(--blue);
}

.page-hero .eyebrow {
  color: var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.partners-band {
  padding: 76px 0 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.partner-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.news-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.news-heading h2 {
  max-width: 760px;
}

.linkedin-feed-shell {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  overflow: hidden;
}

.linkedin-feed-status {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.linkedin-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.linkedin-post {
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.linkedin-post-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.linkedin-post-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.linkedin-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.linkedin-post-meta strong {
  color: var(--blue);
}

.linkedin-post p {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 0;
  overflow: hidden;
  color: #3d4a57;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.linkedin-post-link {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

@media (max-width: 760px) {
  .linkedin-posts {
    grid-template-columns: 1fr;
  }
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: min(12vw, 140px);
  height: 100%;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue-deep), rgba(7, 55, 95, 0));
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue-deep), rgba(7, 55, 95, 0));
}

.partner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 22px 18px;
  animation: partner-scroll 64s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  min-height: 112px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.partner-logo img {
  width: 100%;
  max-width: 186px;
  max-height: 82px;
  object-fit: contain;
}

.partner-logo-square img {
  max-width: 96px;
  max-height: 96px;
}

.partner-logo-dark {
  background: #2f3438;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-grid,
.value-grid,
.rse-grid,
.steps,
.proof-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rse-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.rse-card,
.value-card,
.step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card {
  display: block;
  cursor: pointer;
}

.service-card:hover,
.service-card:focus-visible,
.rse-card:hover,
.value-card:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 79, 138, 0.28);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--green);
  font-weight: 900;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 850;
}

.service-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.service-card:hover .service-link::after,
.service-card:focus-visible .service-link::after {
  transform: translateX(4px);
}

.service-card p,
.rse-card p,
.value-card p,
.step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.rse-card {
  min-height: 268px;
  padding: 28px;
}

.rse-tag {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rse-vertical {
  display: grid;
  gap: 24px;
}

.rse-feature {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
}

.rse-feature-index {
  color: var(--gold);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
}

.rse-feature .rse-tag {
  margin-bottom: 16px;
}

.rse-feature h3 {
  font-size: 1.75rem;
}

.rse-feature p {
  max-width: 920px;
  margin: 16px 0 0;
  color: #3d4a57;
  font-size: 1.08rem;
}

.qse-volets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 33, 43, 0.1);
}

.qse-volets div {
  position: relative;
  padding-left: 18px;
}

.qse-volets div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--green);
}

.qse-volets strong {
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.qse-volets p {
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.rse-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.rse-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.rse-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.amr-spotlight {
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 235, 56, 0.16), transparent 30%),
    #0d2837;
  color: #fff;
}

.amr-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.amr-brand {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.amr-brand img {
  width: 125px;
  height: auto;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.amr-brand .rse-tag {
  margin: 0 0 4px;
  color: #9beb38;
}

.amr-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.amr-intro h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.amr-intro > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.amr-intro .button {
  margin-top: 30px;
}

.amr-details {
  display: grid;
  gap: 22px;
}

.amr-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.amr-stats div,
.amr-process,
.amr-members-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.amr-stats div {
  display: grid;
  gap: 5px;
  min-height: 132px;
  align-content: center;
  padding: 22px;
}

.amr-stats strong {
  color: #9beb38;
  font-size: 1.65rem;
  line-height: 1.05;
}

.amr-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.amr-process {
  padding: 26px;
}

.amr-process h3 {
  color: #fff;
  font-size: 1.35rem;
}

.amr-process ol {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.amr-process li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
}

.amr-process li > span {
  color: var(--gold);
  font-weight: 900;
}

.amr-process strong {
  color: #fff;
}

.amr-process p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.amr-members-card {
  display: block;
  padding: 24px;
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.amr-members-card:hover {
  border-color: rgba(155, 235, 56, 0.65);
  transform: translateY(-3px);
}

.amr-members-card > span {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
}

.amr-members-card img {
  display: block;
  width: 100%;
  height: auto;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
}

.amr-source {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  text-align: right;
}

.rse-diagrams {
  background: #fff;
}

.rse-diagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.diagram-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  overflow: clip;
}

.diagram-card h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.stakeholder-map {
  position: relative;
  width: min(820px, 100%);
  margin-inline: auto;
  min-height: 700px;
}

.stakeholder-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 16px;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.12);
  transform: translate(-50%, -50%);
}

.stakeholder-core img {
  width: 56px;
  height: auto;
}

.stakeholder-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.stakeholder-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid currentColor;
  border-radius: 50%;
  opacity: 0.72;
}

.stakeholder-ring span {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 152px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.ring-one {
  width: 250px;
  height: 250px;
  color: #9beb38;
}

.ring-two {
  width: 430px;
  height: 430px;
  color: #d9d5c7;
}

.ring-three {
  width: 610px;
  height: 610px;
  color: #075c63;
}

.ring-one span:nth-child(1) {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.ring-one span:nth-child(2) {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

.ring-one span:nth-child(3) {
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.ring-one span:nth-child(4) {
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.ring-two span:nth-child(1) {
  right: 20px;
  top: 8%;
}

.ring-two span:nth-child(2) {
  right: 14px;
  bottom: 22%;
}

.ring-two span:nth-child(3) {
  left: 14px;
  bottom: 22%;
}

.ring-two span:nth-child(4) {
  left: 20px;
  top: 8%;
}

.ring-two span:nth-child(5) {
  right: -46px;
  top: 45%;
  transform: translateY(-50%);
}

.ring-two span:nth-child(6) {
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.ring-three span:nth-child(1) {
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
}

.ring-three span:nth-child(2) {
  right: -20px;
  top: 18%;
}

.ring-three span:nth-child(3) {
  right: -16px;
  bottom: 20%;
}

.ring-three span:nth-child(4) {
  left: -18px;
  top: 18%;
}

.ring-three span:nth-child(5) {
  left: -22px;
  bottom: 20%;
}

.ring-three span:nth-child(6) {
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
}

.rse-issues-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(960px, 100%);
  margin-inline: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 18% 22%, rgba(7, 92, 99, 0.12), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(155, 235, 56, 0.14), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(217, 213, 199, 0.42), transparent 40%);
}

.rse-issues-map::before {
  display: none;
}

.issue-core {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  gap: 8px;
  width: min(560px, 100%);
  padding: 16px 24px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 33, 43, 0.16);
  text-align: center;
}

.issue-core strong {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.issue-core span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.35;
}

.issue-pillar {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-top: 6px solid currentColor;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 36px rgba(23, 33, 43, 0.08);
}

.issue-pillar::before {
  display: none;
}

.issue-marker {
  position: absolute;
  right: 22px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef6f7;
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 900;
}

.issue-pillar h4 {
  margin: 0 58px 20px 0;
  color: currentColor;
  font-size: 1.45rem;
}

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

.issue-pillar li {
  position: relative;
  padding-left: 20px;
  color: #4c5965;
  font-weight: 750;
  line-height: 1.24;
}

.issue-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.issue-social {
  color: #075c63;
}

.issue-social .issue-marker {
  background: #dceff1;
}

.issue-social li::before {
  background: #075c63;
}

.issue-economy {
  color: #6fb321;
}

.issue-economy .issue-marker {
  background: #eaf7da;
}

.issue-economy li::before {
  background: #6fb321;
}

.issue-environment {
  color: #9c9278;
}

.issue-environment .issue-marker {
  background: #efede6;
}

.issue-environment li::before {
  background: #9c9278;
}

.proof {
  padding: 58px 0;
  background: var(--blue-deep);
  color: #fff;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  padding: 10px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-item strong {
  display: block;
  font-size: 3.3rem;
  line-height: 1;
  color: var(--gold);
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 55, 95, 0.97), rgba(11, 79, 138, 0.9)),
    url("../img/hero-accueil-chantier.jpg") center / cover no-repeat;
  color: #fff;
}

.cta-content {
  max-width: 820px;
}

.cta-content .eyebrow {
  color: var(--gold);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 162px 0 88px;
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.32)),
    url("../img/hero-chantier.jpg") center / cover no-repeat;
  border-bottom: 0;
  color: #fff;
}

.page-hero .container {
  max-width: 860px;
  margin-left: max(calc((100% - var(--container)) / 2), 20px);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.services-hero,
.about-hero,
.rse-hero,
.contact-hero,
.recruitment-hero,
.projects-hero,
.events-hero {
  position: relative;
  overflow: hidden;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/services-hero-niveleuse.png") center / cover no-repeat;
}

.rse-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/hero-accueil-chantier.jpg") center / cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/hero-a-propos-siege.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/hero-contact-accueil.jpg") center 58% / cover no-repeat;
}

.recruitment-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/hero-recrutement-20-ans.jpg") center 54% / cover no-repeat;
}

.projects-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/hero-projets-chantier.jpg") center / cover no-repeat;
}

.events-hero {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.9), rgba(11, 79, 138, 0.68) 48%, rgba(23, 33, 43, 0.3)),
    url("../img/evenements/engagement-2023-01.jpg") center / cover no-repeat;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.service-row span {
  color: var(--blue);
  font-weight: 900;
  font-size: 1.3rem;
}

.service-row p {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--muted);
}

.service-project-slider.project-slider {
  position: relative;
  height: clamp(160px, 16vw, 240px);
  min-height: 0;
  margin-top: 24px;
  width: 100%;
  left: auto;
  overflow: hidden;
  overflow-y: hidden;
  background: #fff;
}

.service-project-slider::before,
.service-project-slider::after {
  display: none;
}

.service-project-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: service-project-scroll var(--service-scroll-duration, 120s) linear infinite;
}

.service-project-slider:hover .service-project-track {
  animation-play-state: paused;
}

.service-project-slider .project-slide {
  position: relative;
  inset: auto;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  margin-right: 14px;
  overflow: hidden;
  border-radius: 14px;
  opacity: 1;
  pointer-events: auto;
}

.service-project-slider .project-slide img {
  width: auto;
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

@keyframes service-project-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Legacy controls are replaced by the continuous full-width image band. */
.service-project-slider .project-slider-button,
.service-project-slider .project-slider-dots {
  display: none;
}

/* Keep a static, horizontally scrollable gallery for people who reduce motion. */
@media (prefers-reduced-motion: reduce) {
  .service-project-slider {
    overflow-x: auto;
  }

  .service-project-track {
    animation: none;
  }

  .service-project-track .project-slide[aria-hidden="true"] {
    display: none;
  }
}

.service-project-slider::-webkit-scrollbar {
  display: none;
}

.service-project-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.service-project-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.service-project-link:hover,
.service-project-link:focus-visible {
  color: var(--green);
}

.service-project-link:hover::after,
.service-project-link:focus-visible::after {
  transform: translateX(4px);
}

.rental-band {
  background: #fff;
  border-top: 1px solid var(--line);
}

.materials-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 79, 138, 0.05), rgba(255, 255, 255, 0));
}

.section-heading > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #42505d;
  font-size: 1.08rem;
}

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

.rental-card {
  display: grid;
  grid-template-columns: minmax(128px, 0.9fr) minmax(0, 1fr);
  gap: 20px;
  align-content: start;
  align-items: start;
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rental-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #fff;
}

.rental-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 79, 138, 0.28);
  box-shadow: var(--shadow);
}

.rental-category {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-card h3 {
  font-size: 1.28rem;
}

.equipment-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.34;
}

.equipment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.innovative-materials-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 79, 138, 0.08), rgba(47, 128, 102, 0.1)),
    #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
}

.innovative-materials-project {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
}

.innovative-materials-gallery {
  min-height: 380px;
}

.innovative-materials-project h2 {
  color: var(--blue-deep);
}

.innovative-materials-project h3 {
  margin-top: 24px;
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.innovative-materials-project p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #42505d;
  font-size: 1.03rem;
}

.innovative-materials-card h2 {
  max-width: 720px;
}

.innovative-materials-card h3 {
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.innovative-materials-card p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #42505d;
  font-size: 1.03rem;
}

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

.innovative-materials-list li {
  position: relative;
  padding-left: 20px;
  color: #42505d;
  line-height: 1.42;
}

.innovative-materials-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.source-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}

.source-link:hover {
  text-decoration: underline;
}

.innovative-materials-video {
  margin: 24px 0 0;
}

.innovative-materials-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--blue-deep);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.12);
}

.innovative-materials-video figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step strong {
  color: var(--blue);
  font-size: 1.08rem;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.org-band {
  background: #fff;
}

.org-chart {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.org-level {
  display: grid;
  gap: 16px;
  justify-content: center;
}

.org-level-top {
  grid-template-columns: minmax(220px, 320px);
}

.org-level-management {
  grid-template-columns: repeat(2, minmax(220px, 320px));
}

.org-section {
  display: grid;
  gap: 16px;
}

.org-section-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.org-level-admin {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.org-level-admin > :nth-child(5) {
  grid-column: 2;
}

.org-level-works {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.org-card {
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.07);
}

.org-card-primary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: var(--blue-deep);
  color: #fff;
}

.org-card-with-portrait {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.org-portrait {
  width: 86px;
  height: 118px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
}

.org-portrait-member {
  width: 72px;
  height: 98px;
  border: 0;
  border-radius: 8px;
  object-position: center 46%;
}

.org-card span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.org-card-primary span {
  color: var(--gold);
}

.org-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.org-seniority {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.org-connector {
  width: 1px;
  height: 26px;
  margin-inline: auto;
  background: var(--line);
}

.recruitment-band {
  background: var(--wash);
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.recruitment-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.recruitment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 79, 138, 0.28);
  box-shadow: var(--shadow);
}

.recruitment-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--green);
  font-weight: 900;
}

.recruitment-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.recruitment-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.recruitment-cta p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.project-grid {
  display: grid;
  gap: 24px;
}

.project-grid #projet-mare-lolo {
  order: 99;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
}

.project-card > img,
.project-video,
.project-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius);
  object-fit: cover;
}

.project-video {
  display: block;
  background: var(--blue-deep);
}

.project-media {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.project-slider {
  min-height: 440px;
  background: var(--blue-deep);
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms ease;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.project-slide img {
  min-height: 0;
  object-position: center;
}

.project-slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(7, 55, 95, 0.72);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
}

.project-slider-button:hover,
.project-slider-button:focus-visible {
  background: var(--blue);
}

.project-slider-button.previous {
  left: 16px;
}

.project-slider-button.next {
  right: 16px;
}

.project-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 55, 95, 0.66);
  transform: translateX(-50%);
}

.project-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.project-slider-dots button.is-active {
  background: #fff;
  transform: scale(1.35);
}

.project-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h2 {
  font-size: 2rem;
}

.project-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.project-skills li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 79, 138, 0.16);
  border-radius: 999px;
  background: rgba(11, 79, 138, 0.07);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.project-card blockquote {
  margin: 24px 0 0;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--wash);
  color: #344150;
  font-weight: 800;
}

.project-card cite {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.employee-band {
  overflow: hidden;
  background: #fff;
}

.employee-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--blue-deep);
  color: #fff;
}

.employee-marquee::before,
.employee-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: min(12vw, 150px);
  height: 100%;
  pointer-events: none;
}

.employee-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue-deep), rgba(7, 55, 95, 0));
}

.employee-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue-deep), rgba(7, 55, 95, 0));
}

.employee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 24px 18px;
  animation: employee-scroll 42s linear infinite;
}

.employee-marquee:hover .employee-track {
  animation-play-state: paused;
}

.employee-quote {
  width: min(420px, calc(100vw - 56px));
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.employee-quote p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.employee-quote strong {
  display: block;
  color: var(--gold);
  line-height: 1.2;
}

.employee-quote span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

@keyframes employee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  color: var(--blue);
  font-weight: 900;
  font-size: 1.2rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--wash);
}

.contact-details,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.07);
}

.contact-details {
  padding: 30px;
}

.contact-details h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--ink);
}

.contact-line em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.form-status,
.contact-form button {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

label {
  font-weight: 800;
  color: #273544;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9e1;
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 79, 138, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-privacy {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--blue);
  font-weight: 700;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: min(58vh, 520px);
  min-height: 360px;
  border: 0;
}

.map-section iframe[hidden] {
  display: none;
}

.map-consent {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 36px 20px;
  background: var(--wash);
  text-align: center;
}

.map-consent p {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--muted);
}

.privacy-content {
  max-width: 900px;
}

.privacy-content h2 {
  margin-top: 42px;
}

.privacy-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.site-footer {
  padding: 56px 0 24px;
  background: #101820;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 36px;
}

.footer-logo {
  width: 174px;
  height: auto;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .partner-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .employee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .partner-logo[aria-hidden="true"] {
    display: none;
  }

  .employee-quote[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 78px 20px auto 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .call-pill {
    display: none;
  }

  .home-page .site-header:not(.is-scrolled) .nav-links {
    background: #fff;
  }

  .home-page .site-header:not(.is-scrolled) .nav-links a,
  .home-page .site-header:not(.is-scrolled) .nav-links a:hover,
  .home-page .site-header:not(.is-scrolled) .nav-links a[aria-current="page"] {
    color: #25313d;
  }

  .home-page .site-header:not(.is-scrolled) .nav-links a[aria-current="page"] {
    background: var(--blue-soft);
  }

  .home-page .site-header:not(.is-scrolled) .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .split,
  .about-grid,
  .finance-heading,
  .finance-details,
  .survey-heading,
  .contact-grid,
  .amr-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-grid,
  .steps,
  .value-grid,
  .finance-grid,
  .survey-score-grid,
  .rse-grid,
  .rental-grid,
  .recruitment-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .survey-feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 0;
  }

  .survey-feedback-grid article:nth-child(4) {
    border-left: 0;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card > img,
  .project-video {
    height: 320px;
    min-height: 0;
  }

  .project-slider {
    height: 360px;
    min-height: 0;
  }

  .project-slide img {
    min-height: 0;
  }

  .recruitment-cta {
    display: grid;
    align-items: start;
  }

  .rse-diagram-grid {
    grid-template-columns: 1fr;
  }

  .rse-issues-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rse-issues-map::before,
  .issue-pillar::before {
    display: none;
  }

  .issue-core {
    grid-column: 1 / -1;
  }

  .issue-environment {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(420px, 100%);
  }

  .home-hero h1 {
    font-size: 5.4rem;
  }

  .hero-stats {
    width: 100%;
  }

  .home-page .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-stats div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-page .hero-stats div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-heading-inline {
    align-items: start;
  }

  .home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .home-rse-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .org-level-management,
  .org-level-admin,
  .org-level-works {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-level-admin > :nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav {
    width: calc(100% - 28px);
    min-height: 72px;
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0;
    position: relative;
  }

  .brand img {
    width: 138px;
  }

  .nav-links {
    position: absolute;
    inset: calc(100% + 8px) 0 auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    max-width: none;
    padding: 10px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .nav-links a {
    padding: 11px 12px;
    text-align: left;
    white-space: normal;
    font-size: 0.92rem;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 2;
  }

  .hero {
    min-height: max(720px, 100svh);
    padding: 112px 0 36px;
  }

  .hero-content {
    width: calc(100vw - 40px);
    max-width: none;
    margin-inline: auto;
    gap: 20px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.4rem);
  }

  .home-page .home-hero {
    min-height: max(710px, 100svh);
    padding-bottom: 28px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead,
  .large-text,
  .text-stack p,
  .page-hero p:last-child {
    font-size: 1.04rem;
  }

  .hero-lead {
    max-width: 30ch;
  }

  .home-hero .hero-lead {
    max-width: 34ch;
    font-size: 1.08rem;
  }

  .president-quote {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }

  .president-quote img {
    width: 78px;
    height: 96px;
  }

  .president-quote blockquote p {
    font-size: 1.12rem;
  }

  .hero-highlights {
    gap: 7px;
  }

  .hero-highlights span {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.7rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .finance-grid {
    grid-template-columns: 1fr;
  }

  .finance-card {
    min-height: 0;
    padding: 24px;
  }

  .finance-chart-card {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .finance-bars {
    gap: 14px;
    min-height: 168px;
  }

  .finance-bar-2023 {
    height: 74px;
  }

  .finance-bar-2024 {
    height: 102px;
  }

  .finance-bar-2025 {
    height: 112px;
  }

  .finance-bar-2026 {
    height: 120px;
  }

  .finance-bar-value {
    font-size: 0.82rem;
  }

  .finance-table {
    min-width: 400px;
  }

  .finance-table th,
  .finance-table td {
    padding: 15px 16px;
  }

  .home-page .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 0;
    padding: 16px;
  }

  .hero-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .hero-stats strong {
    font-size: 1.7rem;
  }

  .section-heading-inline {
    display: grid;
    gap: 16px;
  }

  .text-link {
    white-space: normal;
  }

  .home-services-band,
  .home-projects-band {
    padding-top: 58px;
  }

  .home-service-grid,
  .home-project-grid,
  .home-rse-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 230px;
  }

  .home-project-card img {
    height: 168px;
  }

  .home-project-card div {
    min-height: auto;
  }

  .home-rse-card {
    height: auto;
    min-height: auto;
    padding: 22px;
  }

  .news-heading {
    display: grid;
    align-items: start;
  }

  .news-band .container {
    width: calc(100% - 16px);
  }

  .linkedin-feed-shell {
    padding: 10px;
  }

  .hero-actions,
  .cta-actions,
  .quick-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .steps,
  .value-grid,
  .rse-grid,
  .rental-grid,
  .innovative-materials-card,
  .innovative-materials-project,
  .recruitment-grid,
  .proof-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .survey-score-grid,
  .survey-feedback-grid {
    grid-template-columns: 1fr;
  }

  .survey-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .survey-pride {
    padding: 24px;
  }

  .survey-score-card {
    min-height: 0;
  }

  .survey-feedback {
    padding: 26px 20px;
  }

  .survey-feedback-grid {
    gap: 0;
    margin-top: 24px;
  }

  .survey-feedback-grid article,
  .survey-feedback-grid article:nth-child(4) {
    padding: 22px 0;
    border-top: 1px dashed rgba(23, 33, 43, 0.18);
    border-left: 0;
  }

  .survey-feedback-grid article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .survey-feedback-grid h4 {
    text-align: left;
  }

  .survey-feedback-grid h4::before {
    margin-inline: 0;
  }

  .service-card,
  .rse-card,
  .value-card,
  .rental-card,
  .recruitment-card,
  .step {
    min-height: auto;
  }

  .recruitment-cta {
    padding: 22px;
  }

  .innovative-materials-card {
    gap: 22px;
    padding: 22px;
  }

  .innovative-materials-project {
    gap: 22px;
    padding: 22px;
  }

  .innovative-materials-gallery {
    min-height: 280px;
  }

  .project-card {
    padding: 16px;
    gap: 20px;
  }

  .project-card > img,
  .project-video {
    height: 240px;
  }

  .project-slider {
    height: 280px;
  }

  .project-card h2 {
    font-size: 1.45rem;
  }

  .rental-card {
    grid-template-columns: 1fr;
  }

  .rental-card img {
    height: 220px;
    min-height: 0;
  }

  .employee-track {
    gap: 12px;
    padding: 18px 14px;
  }

  .employee-quote {
    min-height: 0;
    padding: 22px;
  }

  .rse-feature {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .rse-feature-index {
    font-size: 2.45rem;
  }

  .rse-feature h3 {
    font-size: 1.35rem;
  }

  .qse-volets {
    grid-template-columns: 1fr;
  }

  .rse-list {
    grid-template-columns: 1fr;
  }

  .amr-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .amr-stats {
    grid-template-columns: 1fr;
  }

  .amr-stats div {
    min-height: 0;
  }

  .amr-source {
    text-align: left;
  }

  .diagram-card {
    min-height: auto;
    padding: 22px;
  }

  .stakeholder-map {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .stakeholder-core,
  .stakeholder-ring {
    position: static;
    width: auto;
    height: auto;
    min-height: auto;
    transform: none;
  }

  .stakeholder-core {
    justify-self: center;
  }

  .stakeholder-ring {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border: 3px solid currentColor;
    border-radius: var(--radius);
  }

  .stakeholder-ring::before {
    display: none;
  }

  .stakeholder-ring span {
    position: static;
    max-width: none;
    transform: none !important;
    background: #fff;
  }

  .ring-one,
  .ring-two,
  .ring-three {
    width: auto;
    height: auto;
  }

  .rse-issues-map {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .rse-issues-map::before {
    display: none;
  }

  .issue-core,
  .issue-environment {
    grid-column: auto;
    width: auto;
  }

  .issue-core {
    padding: 16px;
  }

  .issue-pillar {
    min-height: auto;
    padding: 20px;
  }

  .issue-pillar::before {
    display: none;
  }

  .issue-marker {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .issue-pillar h4 {
    font-size: 1.25rem;
  }

  .partners-band {
    padding-top: 58px;
  }

  .partner-logo {
    width: 174px;
    min-height: 88px;
    padding: 14px 18px;
  }

  .partner-logo img {
    max-height: 62px;
  }

  .partner-logo-square img {
    max-width: 72px;
    max-height: 72px;
  }

  .page-hero {
    min-height: 440px;
    padding: 120px 0 62px;
  }

  .service-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Avoid empty service rows on phones when the reveal observer is delayed. */
  .service-list .service-row.reveal {
    opacity: 1;
    transform: none;
  }

  .org-chart {
    padding: 18px;
  }

  .org-level-top,
  .org-level-management,
  .org-level-admin,
  .org-level-works {
    grid-template-columns: 1fr;
  }

  .org-card-primary {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .org-portrait {
    width: 72px;
    height: 98px;
  }

  .contact-details,
  .contact-form {
    padding: 22px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }
}
