/* AIESH — Design system inspiré affiche Réunion citoyenne */

:root {
  --blue-primary: #0078c8;
  --blue-dark: #0d2b4e;
  --blue-light: #4db8e8;
  --blue-accent: #00a0e3;
  --gray-dark: #2d3436;
  --gray-text: #333333;
  --gray-muted: #6b7280;
  --gray-100: #f4f7fa;
  --gray-200: #e8edf2;
  --white: #ffffff;
  --urgent: #c0392b;
  --shadow: 0 4px 24px rgba(13, 43, 78, 0.12);
  --shadow-sm: 0 2px 12px rgba(13, 43, 78, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
  --header-height: 72px;
  --emergency-height: 0px;
  --site-top: var(--header-height);
  --max-width: 1200px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-text);
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--blue-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--blue-dark);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 1rem;
}

.script {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--blue-primary);
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section--gray {
  background: var(--gray-100);
}

.section--dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--gray-muted);
  max-width: 65ch;
  margin-bottom: 2rem;
}

/* Emergency bar (legacy — intégré dans hero via .hero__emergency) */
.emergency-bar {
  display: none;
}

.emergency-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.55rem 1rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.emergency-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem 0.75rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.emergency-bar__cta:hover {
  color: var(--blue-light);
}

.emergency-bar__cta-label {
  opacity: 0.9;
  font-weight: 500;
}

.emergency-bar__cta-tel {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.emergency-bar__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.emergency-bar__links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.emergency-bar__links a:hover {
  color: var(--blue-light);
}

.emergency-bar__sep {
  opacity: 0.35;
  user-select: none;
}

@media (min-width: 769px) {
  .emergency-bar__inner {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  .emergency-bar__cta-label {
    font-weight: 500;
  }

  .emergency-bar__cta-tel::before {
    content: '— ';
    opacity: 0.6;
    font-weight: 400;
  }

  .emergency-bar__links a {
    font-size: 0.8125rem;
  }

  .emergency-bar__links a[href*="eclairage"]::after {
    content: ' public';
    font-weight: 500;
  }
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 52px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  padding: 0.5rem 0.25rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue-primary);
  border-bottom-color: var(--blue-primary);
}

.nav-social {
  margin-left: 0.5rem;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border-bottom: none !important;
  padding: 0;
}

.nav-social a:hover {
  background: var(--blue-primary);
  color: var(--white) !important;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--minimal,
.hero--territory {
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-primary) 55%,
    var(--blue-light) 100%
  );
}

.hero--territory .hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--territory .hero__eyebrow {
  text-align: center;
}

.hero--territory .hero__icons {
  margin: 0.5rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero--territory .hero__icons svg {
  width: clamp(32px, 8vw, 48px);
  height: clamp(32px, 8vw, 48px);
}

.hero__slogan {
  margin: 0 0 0.75rem;
  max-width: 22ch;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  color: var(--white);
  line-height: 1.15;
}

.hero__slogan em {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  font-family: var(--font-heading);
  font-size: 0.55em;
  letter-spacing: 0.08em;
  margin-bottom: 0.15em;
  color: var(--blue-light);
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
  max-width: 28ch;
}

.hero--territory .hero__desc {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero--territory .hero__actions {
  align-items: center;
  justify-content: center;
}

/* Urgence intégrée au hero */
.hero__emergency {
  width: 100%;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero--territory .hero__emergency {
  align-self: stretch;
  max-width: 100%;
}

.hero__emergency-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-weight: 600;
}

.hero__emergency-cta:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.hero__emergency-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.hero__emergency-tel {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.hero__emergency-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.hero__emergency-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  min-height: 40px;
}

.hero__emergency-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.page-hero .hero__emergency {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

@media (min-width: 560px) {
  .hero__emergency {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.65rem;
  }

  .hero__emergency-cta {
    flex: 1 1 14rem;
    max-width: 20rem;
  }

  .hero__emergency-links {
    flex: 1 1 14rem;
    display: flex;
    max-width: 20rem;
  }

  .hero__emergency-links a {
    flex: 1;
  }
}

.hero--minimal::after,
.hero--territory::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--gray-dark);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.12;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 8vw, 4.5rem) 0;
  width: 100%;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}

.hero__content h1:not(.hero__slogan) {
  color: var(--white);
  max-width: 18ch;
  font-size: clamp(1.65rem, 5vw, 2.75rem);
}

.hero__content h1:not(.hero__slogan) .highlight {
  color: var(--blue-light);
  display: block;
}

.hero__content .script {
  color: rgba(255, 255, 255, 0.95);
  margin: 1rem 0 1.25rem;
  max-width: 32ch;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero--minimal .btn--outline,
.hero--territory .btn--outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.hero--minimal .btn--outline:hover,
.hero--territory .btn--outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--gray-dark);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.3;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 55ch;
}

/* Info band */
.info-band {
  background: var(--blue-primary);
  color: var(--white);
  padding: 1.25rem 1rem;
}

.info-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem 2rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.info-band__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-band__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.info-band__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.info-band strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 0.15rem;
}

.info-band span,
.info-band a {
  color: var(--white);
  font-weight: 600;
}

/* Service cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13, 43, 78, 0.18);
  color: inherit;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 1.5rem auto 0;
  background: var(--blue-primary);
  border-radius: 50%;
  color: var(--white);
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.service-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  flex: 1;
}

.service-card h3 {
  color: var(--blue-primary);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-muted);
  margin: 0;
}

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.news-card {
  background: var(--white);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.news-card--alert {
  border-left-color: var(--urgent);
}

.news-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.news-card .link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
}

.link-arrow::after {
  content: ' →';
}

/* Programme (réunion) */
.programme {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.programme-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.programme-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  border-radius: 50%;
  color: var(--white);
}

.programme-item__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.programme-item h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 0.35rem;
}

.programme-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--gray-muted);
}

/* CTA circle */
.reunion-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.cta-circle {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.cta-circle svg {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  fill: var(--white);
}

/* Territory icons (hero) */
.territory-icons {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  flex-wrap: wrap;
}

.territory-icons svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Link lists (hub pages) */
.link-section {
  margin-bottom: 2.5rem;
}

.link-section h2 {
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--blue-primary);
  display: inline-block;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.link-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
}

.link-list li a:hover {
  background: var(--gray-100);
  border-color: var(--blue-light);
}

.link-list li a::before {
  content: '›';
  color: var(--blue-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Communes grid */
.communes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.commune-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--blue-primary);
}

.commune-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-card--urgent {
  border: 2px solid var(--urgent);
}

.contact-card h3 {
  color: var(--blue-primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.contact-card a[href^="tel"] {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--gray-muted);
  margin-top: 0.35rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn--primary {
  background: var(--blue-primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  font-size: 0.9375rem;
}

.site-footer a {
  color: var(--blue-light);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.footer-communes span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--site-top);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-social {
    margin: 1rem 0 0;
  }
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --site-top: var(--header-height);
  }

  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .hero__emergency {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .hero__emergency-cta {
    width: 100%;
  }

  .logo-link img {
    height: 44px;
  }

  .site-header__inner {
    padding: 0.5rem 0.75rem;
  }

  .hero__slogan {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .hero__slogan em {
    font-size: 0.5em;
  }

  .hero__eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }

  .hero__content .script {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .info-band__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-band__item {
    align-items: center;
  }

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

  .news-card {
    padding: 1rem 1.15rem;
  }

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

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

  .reunion-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-circle {
    width: 140px;
    height: 140px;
    font-size: 0.65rem;
  }

  .page-hero {
    padding: 2rem 0.75rem;
  }

  .page-hero::before {
    width: 30%;
    opacity: 0.2;
  }

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

  .link-list li a {
    padding: 0.85rem 1rem;
    min-height: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .communes-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero--territory .hero__icons {
    gap: 0.65rem;
  }

  .hero__tagline {
    font-size: 1.15rem;
  }
}
