:root {
  --ink: #111311;
  --muted: #5f675f;
  --line: #dfe5dd;
  --paper: #fbfcf8;
  --white: #ffffff;
  --yellow: #f0d000;
  --yellow-deep: #c8a900;
  --green: #3d9a4d;
  --green-dark: #1f6d35;
  --charcoal: #1d211d;
  --shadow: 0 24px 70px rgba(17, 19, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(17, 19, 17, 0.85);
  overflow: hidden;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 19, 17, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.brand img {
  width: 76px;
  height: 48px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  max-width: 260px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 76px) 82px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 12, 11, 0.78), rgba(11, 12, 11, 0.44) 52%, rgba(11, 12, 11, 0.18)),
    linear-gradient(0deg, rgba(11, 12, 11, 0.78), rgba(11, 12, 11, 0.04) 45%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  font-size: clamp(3rem, 14vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-subtitle {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
}

.definition {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.38rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
}

.story-lead,
.ceo-content {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.story-lead p,
.ceo-content p {
  margin-bottom: 0;
}

.story-card {
  min-height: 320px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(240, 208, 0, 0.16), rgba(61, 154, 77, 0.09)),
    var(--paper);
  box-shadow: 0 16px 54px rgba(17, 19, 17, 0.08);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 74px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-card p {
  color: var(--muted);
}

.family {
  background:
    linear-gradient(90deg, rgba(61, 154, 77, 0.1), transparent 42%),
    var(--paper);
}

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

.family-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(17, 19, 17, 0.06);
}

.family-grid h3 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 1.5rem;
}

.family-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.symbol {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 76px);
  background: var(--charcoal);
  color: var(--white);
}

.symbol-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.symbol-mark img {
  width: min(78%, 420px);
  object-fit: contain;
}

.symbol-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
  color: var(--white);
}

.stats-band div {
  min-height: 170px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.stats-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.stats-band span {
  display: block;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
}

.family-grid p,
.commitment-list p,
.showroom-copy p,
.story-card p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.showroom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  min-height: 620px;
  background: var(--white);
}

.promise {
  background: var(--charcoal);
  color: var(--white);
}

.promise-content {
  max-width: 1020px;
}

.promise-content h2 {
  max-width: 980px;
}

.promise-content p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 26px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.showroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 90px);
}

.showroom-copy p {
  margin-top: 24px;
  font-size: 1.05rem;
}

.text-link {
  width: fit-content;
  margin-top: 16px;
  border-bottom: 2px solid var(--yellow-deep);
  color: var(--green-dark);
  font-weight: 800;
}

.news {
  background: var(--paper);
}

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

.news-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(17, 19, 17, 0.06);
}

.news-media,
.news-video {
  height: 250px;
  background: var(--charcoal);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-media {
  position: relative;
}

.news-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.badge-arrivage {
  background: var(--green);
}

.badge-conseil {
  background: var(--yellow);
  color: var(--ink);
}

.badge-event {
  background: var(--ink);
}

.cat-arrivage {
  color: var(--green);
}

.cat-conseil {
  color: var(--yellow-deep);
}

.cat-event {
  color: var(--ink);
}

.news-video {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(240, 208, 0, 0.18), rgba(61, 154, 77, 0.22)),
    var(--charcoal);
}

.news-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-video span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  transition: transform 0.2s;
}

.news-video:hover span {
  transform: scale(1.1);
}

.news-video svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.news-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-meta span:not([class*="cat-"]) {
  color: var(--green-dark);
}

.news-card h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.news-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.commitments {
  background: #f2f5ef;
}

.ceo {
  background:
    linear-gradient(90deg, rgba(240, 208, 0, 0.12), transparent 38%),
    var(--white);
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.commitment-list div {
  padding-top: 24px;
  border-top: 4px solid var(--green);
}

.contact {
  padding: clamp(68px, 10vw, 128px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(100deg, rgba(31, 109, 53, 0.94), rgba(29, 33, 29, 0.92)),
    url("595209027_840418525586737_3507657575842439124_n.jpg") center/cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.contact-panel h2 {
  margin-bottom: 24px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.locations {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.locations article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.locations h3 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1rem;
}

.locations p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.social-block {
  margin-top: 28px;
}

.social-block h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.social-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-link.is-disabled {
  opacity: 0.68;
}

.social-note {
  margin: 12px 0 0;
  font-size: 0.86rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8faf6;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(61, 154, 77, 0.16);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: var(--white);
}

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

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a,
.footer-social span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(17, 19, 17, 0.08);
    backdrop-filter: blur(12px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .section-heading,
  .story-grid,
  .symbol,
  .showroom,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .family-grid,
  .news-grid,
  .commitment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showroom {
    min-height: 0;
  }

  .showroom-image {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 58px;
    height: 38px;
  }

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

  .brand small {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 88vh;
    padding: 126px 20px 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 12, 11, 0.86), rgba(11, 12, 11, 0.34)),
      linear-gradient(90deg, rgba(11, 12, 11, 0.72), rgba(11, 12, 11, 0.24));
  }

  h1 {
    font-size: clamp(3rem, 19vw, 5rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .section {
    padding: 64px 18px;
  }

  .symbol {
    padding: 64px 18px;
  }

  .symbol-mark {
    min-height: 260px;
  }

  .symbol-mark img {
    width: min(88%, 340px);
  }

  .button {
    width: 100%;
  }

  .stats-band,
  .family-grid,
  .news-grid,
  .commitment-list {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: auto;
  }

  .news-media,
  .news-video {
    height: 220px;
  }

  .stats-band div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .family-grid article {
    min-height: auto;
    padding: 22px;
  }

  .story-card {
    min-height: auto;
  }

  .card-kicker {
    margin-bottom: 40px;
  }

  .showroom-image {
    min-height: 300px;
  }

  .site-footer {
    display: grid;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 10px 12px;
  }

  h1 {
    font-size: clamp(2.4rem, 16vw, 3.5rem);
  }

  .hero {
    padding: 118px 16px 48px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .locations article,
  .contact-form {
    padding: 18px;
  }

  .social-links {
    display: flex;
    justify-content: center;
  }
}

/* ===== BARRE SUPÉRIEURE ===== */
.top-bar {
  position: fixed;
  z-index: 21;
  top: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 64px);
  overflow: hidden;
  white-space: nowrap;
}

.top-item a {
  color: var(--yellow);
  font-weight: 700;
}

.top-slogan {
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ===== HEADER AJUSTÉ (décalé pour la top-bar) ===== */
.site-header {
  top: 36px;
}

/* ===== NAV CTA ===== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  background: var(--yellow);
  color: var(--ink) !important;
  border-radius: 4px;
  font-weight: 800;
}

.nav-cta::after {
  display: none !important;
}

@media (max-width: 980px) {
  .site-nav.is-open .nav-cta {
    display: flex;
    justify-content: center;
    min-height: 44px;
    margin-top: 4px;
    font-size: 1rem;
  }
}

/* ===== LIENS TÉLÉPHONE ===== */
.locations a[href^="tel:"] {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}

.locations a[href^="tel:"]:hover {
  color: var(--yellow);
}

/* ===== BLOC EMAIL CONTACT ===== */
.contact-email {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.contact-email h3 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1rem;
}

.contact-email a {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}

.contact-email a:hover {
  color: var(--yellow);
}

/* ===== RESPONSIVE TOP-BAR ===== */
@media (max-width: 680px) {
  .top-bar-inner {
    gap: 12px;
    padding: 6px 16px;
  }
  .top-slogan {
    display: none;
  }
  .site-header {
    top: 32px;
  }
  .site-nav {
    top: 70px;
  }
}

@media (max-width: 420px) {
  .top-bar .top-item:last-of-type {
    display: none;
  }
}

/* ===== MENTION LÉGALE FOOTER ===== */
.legal-info {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.legal-info p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

.legal-info strong {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}

/* ===== LIGNE RCCM STORY CARD ===== */
.rccm-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===== BLOC RCCM CONTACT ===== */
.contact-rccm {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.contact-rccm h3 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1rem;
}

.contact-rccm p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}

/* ===== SECTION HEAD (catalogue) ===== */
.section-head {
  max-width: 720px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

/* ===== CATALOGUE GRID ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f4f4f4;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Info section */
.product-info {
  padding: 24px;
}

.product-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  background: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.product-info h3 {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}

.product-info h3 small {
  font-weight: 500;
  color: var(--muted);
}

.product-info > p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Specs list */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-specs li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--ink);
}

.product-specs li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== RESPONSIVE CATALOGUE ===== */
@media (max-width: 680px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-info {
    padding: 20px;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }
}
