/* ==========================================================================
   France Méthanisation — feuille de style principale
   ========================================================================== */

:root {
  --forest: #1f4b3c;
  --forest-dark: #12271e;
  --forest-mid: #2f6a54;
  --paper: #f6f8f4;
  --paper-deep: #eef2ea;
  --ink: #182420;
  --ink-soft: #4c5850;
  --amber: #c68a2e;
  --amber-dark: #9c6c1f;
  --line: #dfe6de;
  --white: #ffffff;
  --shadow: 0 20px 45px -25px rgba(18, 39, 30, 0.35);
  --radius: 14px;
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--forest-dark);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 0.9em;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

section {
  padding: 76px 0;
}

section.tight { padding: 48px 0; }

.section-head {
  max-width: 720px;
  margin: 0 0 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  font-family: inherit;
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ---------------- Header / nav ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(18,39,30,0.5) 0%, rgba(18,39,30,0) 100%);
  border-bottom: none;
  backdrop-filter: none;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}
.site-header--overlay.is-scrolled {
  background: rgba(15,31,24,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.6);
}
.site-header--overlay .brand-name,
.site-header--overlay .nav-links a { color: var(--white); }
.site-header--overlay .nav-links a:hover,
.site-header--overlay .nav-links a.active { color: var(--amber); }
.site-header--overlay .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.site-header--overlay .btn-ghost:hover { background: rgba(255,255,255,0.15); }
.site-header--overlay .nav-toggle span { background: var(--white); }
@media (max-width: 860px) {
  .site-header--overlay .nav-links { background: var(--forest-dark); }
  .site-header--overlay .nav-links a { color: rgba(255,255,255,0.85); }
  .site-header--overlay .nav-links { border-bottom-color: rgba(255,255,255,0.1); }
  .site-header--overlay .nav-links li { border-bottom-color: rgba(255,255,255,0.1); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.18s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}

/* ---------------- Hero ---------------- */

.hero {
  --hero-split: 80%;
  position: relative;
  height: 100vh;
  height: 100svh;
  color: var(--ink);
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-split);
  z-index: 0;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Voile léger : la photo reste bien visible, juste assez pour la nav en haut */
  background: linear-gradient(180deg,
    rgba(18,39,30,0.32) 0%,
    rgba(18,39,30,0.05) 18%,
    rgba(18,39,30,0) 70%,
    rgba(18,39,30,0.25) 100%);
}
.hero-media img {
  position: absolute;
  top: -160px;
  left: 0;
  width: 100%;
  height: calc(100% + 320px);
  object-fit: cover;
  will-change: transform;
}

.hero-inner {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 980px;
}

.hero-content {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(18px, 4vh, 34px) clamp(20px, 5vw, 52px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
  text-align: center;
}

.hero h1 {
  color: var(--forest-dark);
  font-size: clamp(1.5rem, 2.2vw + 1vh, 2.5rem);
  margin-bottom: 0.4em;
}

.hero .lede {
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 62ch;
  font-size: clamp(0.9rem, 1vh + 0.6vw, 1.15rem);
}

.hero .eyebrow { display: block; margin-bottom: 0.6em; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(12px, 2.2vh, 22px);
}

.hero .btn-outline {
  border-color: var(--forest);
  color: var(--forest-dark);
}
.hero .btn-outline:hover { background: var(--paper-deep); }

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: clamp(12px, 2.4vh, 24px);
  padding-top: clamp(10px, 2.2vh, 22px);
  border-top: 1px solid var(--line);
  flex-wrap: nowrap;
  justify-content: center;
}
.hero-stats div { flex: 1 1 0; min-width: 0; }
.hero-stats strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: var(--forest);
  white-space: nowrap;
}
.hero-stats span {
  font-size: 0.76rem;
  color: var(--ink-soft);
  display: block;
}

.page-hero {
  background: linear-gradient(120deg, var(--forest-dark), var(--forest));
  color: var(--white);
  padding: 68px 0 56px;
}
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: rgba(255,255,255,0.85); }

/* ---------------- Cards / grids ---------------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-content { padding: 24px 22px; }
  .hero-stats { gap: 10px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { --hero-split: 58%; }
  .hero h1 { font-size: 1.5rem; }
  .hero .lede { font-size: 0.85rem; }
  .hero-stats strong { font-size: 1rem; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper-deep);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; }

.card.reassure { border-top: 3px solid var(--amber); }

/* stat tiles */
.stat-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-tile strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--forest);
}
.stat-tile span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------------- Sections with backgrounds ---------------- */

.section-alt { background: var(--paper-deep); }
.section-dark {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.92);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lede, .section-dark p { color: rgba(255,255,255,0.75); }

.section-dark--photo {
  background-image: linear-gradient(rgba(15,31,24,0.86), rgba(15,31,24,0.9)), url('../img/unite-rendu-3d.png');
  background-size: cover;
  background-position: center;
}

/* Les cartes claires (formulaires) restent lisibles même dans une section sombre */
.section-dark .form-card,
.section-dark .form-success { color: var(--ink); }
.section-dark .form-card h3,
.section-dark .form-success h3 { color: var(--forest-dark); }
.section-dark .form-card p,
.section-dark .form-success p { color: var(--ink-soft); }

/* ---------------- Comparison table ---------------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}
.compare-col.highlight {
  border-color: var(--forest);
  background: var(--paper-deep);
  position: relative;
}
.compare-col h4 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--forest-dark);
}
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.94rem;
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li span:first-child { color: var(--ink-soft); }
.compare-col li span:last-child { font-weight: 600; text-align: right; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--forest-dark);
  margin-bottom: 14px;
}

/* ---------------- Process steps ---------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 26px 20px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------------- Timeline ---------------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .timeline { grid-template-columns: 1fr; } }

.timeline-item {
  border-left: 3px solid var(--amber);
  padding-left: 20px;
}
.timeline-year {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
}
.timeline-item p { color: var(--ink-soft); font-size: 0.95rem; }
.timeline-ca {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--forest-dark);
  background: var(--paper-deep);
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* ---------------- Team ---------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.team-photo {
  background: var(--paper-deep);
  padding-top: 24px;
}
.team-photo img { width: 148px; height: 148px; object-fit: cover; object-position: top center; margin: 0 auto; border-radius: 999px; background: var(--white); }
.team-body { padding: 20px 22px 26px; }
.team-body h3 { margin-bottom: 2px; }
.team-role { color: var(--amber-dark); font-weight: 600; font-size: 0.88rem; margin-bottom: 12px; }
.team-body ul { text-align: left; margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.88rem; }
.team-body li { margin-bottom: 4px; }

/* ---------------- FAQ ---------------- */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--forest-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--amber-dark);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--ink-soft); }

/* ---------------- Forms ---------------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--forest-dark);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field-hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 6px; }

.field-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
}
.field-checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.field-checkbox a { color: var(--forest); font-weight: 600; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .check {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ---------------- Map embed ---------------- */

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------------- CTA banner ---------------- */

.cta-banner {
  background: var(--forest-dark);
  color: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  margin: 0 auto;
  max-width: calc(var(--maxw) - 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 620px) { .cta-banner { max-width: none; } }
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; max-width: 46ch; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.8rem;
}

/* ---------------- Misc ---------------- */

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--forest-dark);
  border: 1px solid var(--line);
}

.source-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.figure-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.list-check li .ico {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  margin-top: 2px;
}

.pill-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.pill-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--forest-dark);
  background: var(--white);
}
.pill-nav a:hover { border-color: var(--forest); }

/* ---------------- Bannière cookies ---------------- */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner.is-hidden { opacity: 0; transform: translateY(12px); }
.cookie-banner-text {
  flex: 1 1 320px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0;
}
.cookie-banner-text a { color: var(--forest); font-weight: 600; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner .btn { padding: 10px 18px; font-size: 0.88rem; white-space: nowrap; }
@media (max-width: 560px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; }
}
