/* ===== VARIABLES ===== */
:root {
  --green-900: #1f3d12;
  --green-800: #2d5016;
  --green-600: #5f9f47;
  --gold: #fdb913;
  --orange: #e67e22;
  --ink: #273024;
  --muted: #687264;
  --line: #dfe6dc;
  --soft: #f5f8f1;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(31, 61, 18, 0.12);
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small,
.brand-tagline {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--green-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.brand-tagline {
  max-width: 220px;
  margin-top: 4px;
  color: var(--green-800);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.menu-toggle {
  display: block;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.main-nav {
  display: none;
}

.header-cta {
  display: none;
}

.main-nav.is-open {
  display: grid;
  grid-column: 1 / -1;
  gap: 2px;
  justify-content: stretch;
  padding-top: 8px;
}

.main-nav.is-open a {
  min-height: 44px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 0;
}

.main-nav a:hover {
  background: var(--soft);
  color: var(--green-800);
}

/* ===== BUTTONS ===== */
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header .header-cta {
  display: none;
}

.header-cta,
.button.primary {
  background: var(--green-600);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--green-800);
  box-shadow: inset 0 0 0 1px var(--green-600);
}

.button.whatsapp {
  background: var(--whatsapp);
  color: #063b1d;
}

.button:hover,
.header-cta:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.full {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  align-items: end;
  padding: 56px 16px 40px;
  background:
    linear-gradient(90deg, rgba(31, 61, 18, 0.9), rgba(31, 61, 18, 0.54), rgba(31, 61, 18, 0.1)),
    url("https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?auto=format&fit=crop&w=1800&q=80") 58% center / cover;
  color: var(--white);
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  max-width: 820px;
}

.hero p {
  max-width: 620px;
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin: 28px 0 0;
}

.trust-strip div {
  border-left: 4px solid var(--gold);
  padding-left: 8px;
  min-width: 0;
}

.trust-strip dt {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 5vw, 1.6rem);
  font-weight: 800;
}

.trust-strip dd {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ===== SECTIONS ===== */
.section {
  padding: 40px 16px;
}

.intro-band,
.presentation-section,
#poussins,
#materiels,
#kits,
#formations,
#devis,
#blog {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.muted,
.intro-band {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 7vw, 2rem);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.section-heading.split p:last-child {
  margin: 0;
  color: var(--muted);
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-tile {
  display: block;
  min-height: 100px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
  padding: 14px;
  overflow-wrap: break-word;
}

.category-tile span,
.article-grid span,
.product-meta {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-tile strong {
  display: block;
  margin-top: 10px;
  color: var(--green-900);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 4vw, 1.18rem);
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* ===== PRESENTATION ===== */
.presentation-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.presentation-section > * {
  max-width: none;
}

.video-panel,
.company-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
}

.video-panel {
  display: grid;
  min-height: 280px;
  overflow: hidden;
}

.video-embed {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--green-900);
}

.local-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 0;
  border-radius: 6px;
  background: #071306;
  object-fit: cover;
}

.video-controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.video-controls strong {
  display: block;
  font-size: 0.98rem;
}

.video-controls p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.35;
}

.video-nav {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.video-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.company-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 24px;
}

.company-panel h2 {
  font-size: clamp(1.8rem, 7vw, 2.6rem);
}

.company-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.company-panel .button {
  width: 100%;
  margin-top: 8px;
}

/* ===== TOOLBAR ===== */
.toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-600);
  outline: 3px solid rgba(111, 170, 84, 0.2);
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 120ms ease;
}

.product-card img:hover {
  opacity: 0.88;
}

.product-card img.img-missing {
  padding: 24px;
  opacity: 0.35;
  cursor: default;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.product-facts span {
  border-radius: 999px;
  background: var(--soft);
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  padding: 5px 9px;
}

.price-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  color: var(--green-900);
  font-weight: 900;
}

.product-body .button {
  width: 100%;
  min-height: 48px;
  white-space: normal;
  text-align: center;
}


/* ===== QUOTES ===== */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.quote-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
  padding: 18px;
  text-align: center;
}

.quote-card h3 {
  font-size: 1.35rem;
}

.quote-card p:not(.product-meta) {
  color: var(--muted);
}

.quote-card .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  white-space: normal;
  text-align: center;
}

/* ===== TRAINING ===== */
.training-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.training-item {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
  padding: 18px;
  text-align: center;
}

.training-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.training-item .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  white-space: normal;
  text-align: center;
}

/* ===== BLOG ===== */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.article-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
  color: inherit;
  cursor: pointer;
  display: block;
  padding: 18px;
  text-align: left;
}

.article-card.is-active {
  border-color: var(--green-600);
}

.article-card:focus-visible {
  outline: 3px solid rgba(111, 170, 84, 0.32);
  outline-offset: 3px;
}

.article-grid h3 {
  margin-top: 12px;
  font-size: 1.28rem;
  overflow-wrap: anywhere;
}

.article-grid p {
  color: var(--muted);
}

.article-reader {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 24px;
}

.article-reader h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.article-reader p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ===== ABOUT ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--green-900);
  color: var(--white);
}

.about-section > * {
  max-width: none;
}

.about-section h2 {
  color: var(--white);
}

.about-section p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

/* ===== REVIEWS ===== */
.review-form {
  max-width: 640px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rating-field {
  margin: 0;
  border: 0;
  padding: 0;
}

.rating-field legend {
  margin-bottom: 6px;
  color: var(--green-900);
  font-weight: 800;
}

.star-rating {
  display: flex;
  gap: 6px;
}

.star-rating button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: #c8c8c8;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.star-rating button.is-selected {
  border-color: var(--gold);
  background: #fff8df;
  color: var(--gold);
}

/* ===== CONTACT ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-section > * {
  max-width: none;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.review-form h3,
.contact-form h3,
.whatsapp-group h3 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 61, 18, 0.07);
  padding: 18px;
}

.contact-form .button {
  width: 100%;
  min-height: 48px;
  white-space: normal;
  text-align: center;
}

.whatsapp-group {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  text-align: center;
}

.whatsapp-group p {
  margin: 0;
  color: var(--muted);
}

.whatsapp-group .eyebrow {
  color: var(--orange);
}

.whatsapp-group .button {
  width: 100%;
  min-height: 48px;
  white-space: normal;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  padding: 36px 20px;
  background: #17270f;
  color: var(--white);
}

.site-footer p {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand strong {
  line-height: 1.2;
}

.footer-nav-group,
.site-footer nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-nav-group > span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer nav {
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  column-gap: 20px;
  row-gap: 8px;
}

.site-footer a {
  display: flex;
  align-items: center;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.78);
}

.social-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.social-links span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a {
  color: rgba(255, 255, 255, 0.84);
}

.social-links a:hover {
  color: var(--white);
}

.social-links .is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 64px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--green);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1;
}

.legal-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-block p {
  margin: 0 0 12px;
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 0;
  padding-left: 20px;
}

.legal-block a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

/* ===== WHATSAPP LEAD MODAL ===== */
.whatsapp-lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(16, 33, 11, 0.62);
}

.whatsapp-lead-modal.is-open {
  display: flex;
}

.whatsapp-lead-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(460px, 100%);
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.whatsapp-lead-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.55rem;
}

.whatsapp-lead-summary {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.whatsapp-lead-card label {
  display: grid;
  gap: 6px;
}

.whatsapp-lead-card label span {
  color: var(--green-900);
  font-weight: 800;
}

.whatsapp-lead-error {
  min-height: 1.4em;
  margin: 0;
  color: #b42318;
  font-size: 0.92rem;
}

.whatsapp-lead-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green-900);
  cursor: pointer;
  font-weight: 900;
}

/* ===== PRODUCT MODAL (image click) ===== */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.72);
  align-items: flex-end;
  justify-content: center;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-inner {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  overflow-y: auto;
  animation: modal-slide-up 0.26s ease;
}

@keyframes modal-slide-up {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.product-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  z-index: 1;
}

.product-modal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  padding: 12px;
  display: block;
}

.product-modal-body {
  padding: 20px;
}

.product-modal-name {
  margin: 0 0 8px;
}

.product-modal-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== BREAKPOINT : TABLETTE (641px+) ===== */
@media (min-width: 641px) {
  .site-header {
    padding: 12px 24px;
  }

  .hero {
    min-height: 720px;
    padding: 72px 28px 56px;
    background-position: center;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 7vw, 4rem);
  }

  .hero p {
    font-size: 1.12rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
  }

  .section {
    padding: 52px 28px;
  }

  .intro-band,
  .presentation-section,
  #poussins,
  #materiels,
  #kits,
  #formations,
  #devis,
  #blog {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .section-heading.split {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 340px);
    gap: 28px;
    align-items: end;
  }

  .category-grid,
  .product-grid,
  .training-list,
  .quote-grid,
  .article-grid,
  .contact-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolbar {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .product-modal {
    align-items: center;
    padding: 24px;
  }

  .product-modal-inner {
    border-radius: 12px;
  }
}

/* ===== BREAKPOINT : BUREAU (981px+) ===== */
@media (min-width: 981px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
  }

  .brand {
    min-width: 410px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .brand-tagline {
    max-width: none;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .main-nav a {
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
    padding: 10px 12px;
  }

  .site-header .header-cta {
    display: inline-flex;
  }

  .hero {
    min-height: calc(100vh - 74px);
    padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
    background-position: center;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  }

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

  .section {
    padding: clamp(54px, 6vw, 80px) clamp(18px, 4vw, 56px);
  }

  .intro-band,
  .presentation-section,
  #poussins,
  #materiels,
  #kits,
  #formations,
  #devis,
  #blog {
    padding-top: clamp(44px, 4.5vw, 58px);
    padding-bottom: clamp(44px, 4.5vw, 58px);
  }

  .section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }

  .section-heading.split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  }

  .presentation-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .company-panel .button {
    width: fit-content;
  }

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

  .quote-grid,
  .training-list,
  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

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

  .site-footer {
    grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 0.9fr) minmax(150px, 0.55fr);
    gap: clamp(36px, 5vw, 88px);
    padding: 40px clamp(18px, 4vw, 56px);
  }

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}
