/* ================================================================
   Les Compagnons Couvreurs — Feuille de style principale
   HTML/CSS classique, organisé par sections.
   ================================================================ */

/* ============== 1. RESET & VARIABLES ============== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette — Warm Artisanal */
  --c-bg:           #1C1C1B;  /* fond principal (presque noir chaud) */
  --c-surface:      #2A2A28;  /* fond cartes / sections alternées */
  --c-surface-warm: #242422;  /* fond sections alternées (warm dark) */
  --c-surface-2:    #3D3D3A;  /* hover surface */
  --c-text:         #F5F5F0;  /* texte principal (blanc cassé) */
  --c-text-muted:   #D0D0C8;  /* texte secondaire */
  --c-text-dim:     #8A8A85;  /* texte très atténué */
  --c-accent:       #A84C3A;  /* rouge brique (terracotta) */
  --c-accent-hover: #8B3A2E;  /* hover rouge */
  --c-accent-soft:  rgba(168, 76, 58, 0.10);
  --c-border:       rgba(245, 245, 240, 0.10);
  --c-border-strong:rgba(245, 245, 240, 0.20);

  /* Typographie */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  /* Spacing & radii */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.2);
  --shadow-hard: 0 10px 30px -5px rgba(0, 0, 0, 0.5);

  --container-max: 1536px;
  --header-height: 88px;

  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--c-accent); }

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }

p { margin: 0; }

/* Selection */
::selection {
  background: var(--c-accent);
  color: var(--c-text);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

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

/* ============== 2. LAYOUT HELPERS ============== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.section {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

.section--surface { background: var(--c-surface); }
.section--dark    { background: var(--c-bg); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header__eyebrow {
  display: inline-block;
  color: var(--c-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header__title {
  margin-bottom: 1rem;
}
.section-header__lead {
  color: var(--c-text-muted);
  max-width: 42rem;
  margin-inline: auto;
  font-size: 1.125rem;
}

/* Skip link (accessibilité) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--c-accent);
  color: var(--c-text);
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 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;
}

/* ============== 3. BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding-inline: 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-text);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: var(--c-accent-hover);
  color: var(--c-text);
  box-shadow: var(--shadow-hard);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(245, 245, 240, 0.1);
  color: var(--c-text);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-text);
}
.btn--outline:hover {
  background: var(--c-text);
  color: var(--c-bg);
}

.btn--lg {
  height: 3.5rem;
  padding-inline: 2rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

.btn--block { width: 100%; }

.btn .icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

/* ============== 4. HEADER ============== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  transition: padding var(--t-base);
}
@media (min-width: 640px) {
  .site-header { padding: 1rem 1.5rem; }
}

.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
  background: rgba(28, 28, 27, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: box-shadow var(--t-base), background-color var(--t-base);
}
.site-header.is-scrolled .site-header__inner {
  box-shadow: var(--shadow-hard);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.0625rem;
}
.site-logo__mark {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--c-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: opacity var(--t-fast);
}
.site-logo:hover .site-logo__mark { opacity: 0.9; }
.site-logo:hover { color: var(--c-accent); }
.site-logo__text-main { display: block; line-height: 1.1; }
.site-logo__text-sub  { display: block; font-size: 0.75rem; color: var(--c-text-muted); font-weight: 500; }

/* Desktop navigation */
.site-nav { display: none; }
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.site-nav__item { position: relative; }

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius-full);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.site-nav__link:hover {
  color: var(--c-text);
  background: rgba(245, 245, 240, 0.05);
}
.site-nav__link.is-active {
  color: var(--c-text);
  background: rgba(245, 245, 240, 0.10);
}

.site-nav__chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform var(--t-fast);
}
.site-nav__item[open] > summary .site-nav__chevron { transform: rotate(180deg); }

/* Submenu */
.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 18rem;
  padding: 0.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  list-style: none;
  z-index: 10;
}
.site-nav__submenu li > a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.site-nav__submenu li > a:hover {
  color: var(--c-text);
  background: rgba(245, 245, 240, 0.08);
}
.site-nav__submenu li > a.is-active {
  color: var(--c-accent);
  background: rgba(245, 245, 240, 0.05);
}
.site-nav__submenu-head {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
}
.site-nav__submenu-head:hover {
  background: rgba(245, 245, 240, 0.10);
  color: var(--c-text);
}

.site-header__cta { display: none; }
@media (min-width: 1024px) {
  .site-header__cta { display: inline-flex; }
}

/* Mobile menu button */
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(245, 245, 240, 0.10);
  border-radius: var(--radius);
  color: var(--c-text);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.mobile-toggle:hover { color: var(--c-accent); }
.mobile-toggle .icon { width: 1.5rem; height: 1.5rem; }
.mobile-toggle .icon--close { display: none; }
.mobile-toggle[aria-expanded="true"] .icon--open { display: none; }
.mobile-toggle[aria-expanded="true"] .icon--close { display: block; }

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 1rem 1rem 8rem;
  background: var(--c-bg);
  overflow-y: auto;
  border-top: 1px solid var(--c-border);
  display: none;
}
.mobile-menu.is-open { display: block; }

.mobile-menu__group {
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__group:last-child { border-bottom: 0; }

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-muted);
  border-radius: var(--radius);
}
.mobile-menu__link.is-active { color: var(--c-accent); }
.mobile-menu__link[data-open="true"] .mobile-menu__chevron { transform: rotate(180deg); }
.mobile-menu__chevron { width: 1.25rem; height: 1.25rem; transition: transform var(--t-base); }

.mobile-menu__sublist {
  display: none;
  padding: 0.5rem;
  margin: 0 0 0.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.mobile-menu__sublist.is-open { display: block; }
.mobile-menu__sublist a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.mobile-menu__sublist a:hover { color: var(--c-text); background: rgba(245, 245, 240, 0.05); }
.mobile-menu__sublist a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 9999px;
}

.mobile-menu__footer {
  padding-top: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}
.mobile-menu__footer .btn { width: 100%; margin-bottom: 1rem; }
.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--c-text);
}
.mobile-menu__phone:hover { color: var(--c-accent); }

/* Lock body scroll when mobile open */
body.is-menu-open { overflow: hidden; }

/* ============== 5. MAIN / GENERIC PAGE OFFSET ============== */
.site-main {
  flex: 1;
  padding-top: var(--header-height);
}

/* ============== 6. BREADCRUMBS ============== */
.breadcrumbs {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__list a:hover { color: var(--c-text); }
.breadcrumbs__sep { color: var(--c-text-dim); }
.breadcrumbs__list li:last-child { color: var(--c-text); font-weight: 500; }

/* ============== 7. HERO (homepage) ============== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}
@media (min-width: 768px) {
  .hero { min-height: 85vh; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
@media (min-width: 768px) {
  .hero__bg img { object-position: center; }
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8rem;
  background: linear-gradient(to top, var(--c-bg), transparent);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  padding: 3rem 1rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-accent);
  color: var(--c-text);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .hero__badge { font-size: 0.9375rem; padding: 0.5rem 1.25rem; }
}

.hero__title {
  /* Mêmes proportions que l'original React : text-3xl md:text-5xl lg:text-7xl */
  font-size: 1.875rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--c-text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero__title { font-size: 3rem; margin-bottom: 1.5rem; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 4.5rem; }
}

.hero__subtitle {
  /* Sous-titre italique en gras, sur 2 lignes en desktop */
  display: block;
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.15;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--c-text-muted);
  opacity: 0.9;
}
@media (min-width: 768px) {
  .hero__subtitle { font-size: 2.25rem; margin-top: 1rem; }
}
@media (min-width: 1024px) {
  .hero__subtitle { font-size: 3rem; }
}

/* Utility : retour à la ligne visible uniquement à partir de tablette */
.md-only { display: none; }
@media (min-width: 768px) { .md-only { display: inline; } }

.hero__lead {
  /* Original React : text-base md:text-xl, couleur #E5E5E0 */
  color: #E5E5E0;
  font-size: 1rem;
  font-weight: 500;
  max-width: 100%;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero__lead { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 48rem; }
}
.hero__lead a { text-decoration: underline; text-underline-offset: 4px; }
.hero__lead a:hover { color: var(--c-text); }
.hero__lead a { text-decoration: underline; text-underline-offset: 4px; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero__cta { flex-direction: row; align-items: center; gap: 1.25rem; }
}

/* ============== 8. TRUST BADGES (band under hero) ============== */
.trust-band {
  position: relative;
  z-index: 5;
  padding: 3rem 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
@media (min-width: 768px) {
  .trust-band {
    margin-top: -2rem;
    max-width: var(--container-max);
    margin-inline: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
}

.trust-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .trust-band__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-band__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-inline: 2rem; } }

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: background-color var(--t-fast);
}
.trust-card:hover { background: var(--c-surface-2); }

.trust-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 27, 0.5);
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.trust-card__icon--accent {
  background: var(--c-accent-soft);
  border: 0;
  color: var(--c-accent);
}
.trust-card__icon .icon { width: 1.5rem; height: 1.5rem; }
.trust-card h3 { color: var(--c-text); font-weight: 700; font-size: 1rem; }
.trust-card p { font-size: 0.875rem; color: var(--c-text-muted); margin-top: 0.25rem; }

/* ============== 9. SERVICE CARDS (homepage grid) ============== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  display: block;
  height: 16rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base);
}
@media (min-width: 768px) { .service-card { height: 20rem; } }

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover img { transform: scale(1.08); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1));
  transition: opacity var(--t-base);
}

.service-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  color: var(--c-text);
  z-index: 2;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(245, 245, 240, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  margin-bottom: 0.75rem;
  transition: background-color var(--t-base);
}
.service-card:hover .service-card__icon {
  background: var(--c-accent);
}
.service-card__icon .icon { width: 1.25rem; height: 1.25rem; }

.service-card h3 {
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--t-base), opacity var(--t-base);
  display: none;
}
@media (min-width: 768px) { .service-card__desc { display: block; } }
.service-card:hover .service-card__desc { max-height: 5rem; opacity: 1; }

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(245, 245, 240, 0.9);
}
.service-card__cta .icon { transition: transform var(--t-base); }
.service-card:hover .service-card__cta .icon { transform: translateX(3px); }

/* ============== 10. ABOUT BLOCK (image + texte) ============== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-hard);
}
.split__media-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  background: linear-gradient(to top, var(--c-bg), transparent);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  color: var(--c-text);
  pointer-events: none;
}
.split__media-caption .name { font-weight: 700; font-size: 1.25rem; }
.split__media-caption .role { color: var(--c-text-muted); }

.split__content .eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.split__content h2 { margin-bottom: 1.5rem; }
.split__content > p {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  margin-block: 2rem;
}
@media (min-width: 640px) {
  .benefits-list { grid-template-columns: 1fr 1fr; }
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--c-text-muted);
  font-weight: 500;
}
.benefits-list .icon {
  width: 1.25rem; height: 1.25rem;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ============== 11. PROCESS STEPS ============== */
.process {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(3, 1fr); } }
.process::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--c-border);
  display: none;
  z-index: 0;
}
@media (min-width: 768px) { .process::before { display: block; } }

.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process__step-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border-strong);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--t-base);
}
@media (min-width: 768px) { .process__step-icon { width: 6rem; height: 6rem; } }
.process__step:hover .process__step-icon { border-color: var(--c-accent); }
.process__step-icon .icon { width: 1.75rem; height: 1.75rem; }
.process__step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.process__step p { color: var(--c-text-muted); max-width: 18rem; margin-inline: auto; }

/* ============== 12. PROJECT / PORTFOLIO CARDS ============== */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  display: block;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hard); }

.project-card__media { position: relative; height: 16rem; overflow: hidden; }
.project-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.project-card:hover .project-card__media img { transform: scale(1.05); }

.project-card__body { padding: 1.5rem; }
.project-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.project-card__location .icon { width: 0.75rem; height: 0.75rem; }
.project-card__body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--c-text); }
.project-card__body p { color: var(--c-text-muted); font-size: 0.875rem; }

/* Before/After grid */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.before-after figure { position: relative; margin: 0; }
.before-after img { width: 100%; height: 16rem; object-fit: cover; display: block; }
@media (min-width: 768px) { .before-after img { height: 18rem; } }
.before-after figcaption {
  position: absolute;
  top: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.before-after figcaption.is-before {
  left: 0.75rem;
  background: rgba(28, 28, 27, 0.85);
  backdrop-filter: blur(4px);
  color: var(--c-text);
}
.before-after figcaption.is-after {
  right: 0.75rem;
  background: var(--c-accent);
  color: var(--c-text);
}

/* ============== 13. REVIEWS (cards + marquee) ============== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  position: relative;
  padding: 2rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hard); }
.review-card::before {
  content: "\201D";
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(168, 76, 58, 0.18);
  pointer-events: none;
}

.review-card__stars { display: flex; gap: 2px; color: var(--c-accent); margin-bottom: 1rem; }
.review-card__stars .icon { width: 1rem; height: 1rem; fill: currentColor; }
.review-card__text { color: var(--c-text-muted); font-style: italic; margin-bottom: 1.5rem; min-height: 5rem; }
.review-card__author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--c-border); }
.review-card__avatar {
  width: 2.5rem; height: 2.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-card__name { font-weight: 700; font-size: 0.875rem; color: var(--c-text); }
.review-card__date { font-size: 0.75rem; color: var(--c-text-dim); }

/* Marquee */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
  display: none;
}
@media (min-width: 768px) { .marquee { display: block; } }
.marquee__head {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.marquee__head .stars { display: flex; color: #E7711B; }
.marquee__head .stars .icon { width: 1rem; height: 1rem; fill: currentColor; }
.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-inline: 1rem;
  animation: marquee 80s linear infinite;
}
.marquee__card {
  flex-shrink: 0;
  width: 22rem;
  padding: 1.25rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.marquee__card-name { font-weight: 700; }
.marquee__card-stars { color: #E7711B; display: flex; gap: 1px; margin-block: 0.25rem 0.5rem; }
.marquee__card-stars .icon { width: 0.75rem; height: 0.75rem; fill: currentColor; }
.marquee__card-text {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 3rem;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--c-surface), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--c-surface), transparent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== 14. INTERVENTION ZONES TAGS ============== */
.zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 56rem;
  margin-inline: auto;
}
.zones-tags > * {
  padding: 0.5rem 1rem;
  background: var(--c-surface);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}
a.zones-tags__link:hover { color: var(--c-text); background: var(--c-surface-2); }

/* ============== 15. FINAL CTA / BANNERS ============== */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--c-surface);
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 76, 58, 0.15), transparent);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; max-width: 56rem; }
.cta-banner h2 { margin-bottom: 1.5rem; }
.cta-banner > .container > p { color: var(--c-text-muted); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 36rem; margin-inline: auto; }
.cta-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 640px) { .cta-banner__buttons { flex-direction: row; align-items: center; } }

/* === Variante FINAL CTA : carte d'infos à gauche, boutons à droite === */
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.10;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-banner__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .cta-banner__row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }
}

.cta-info-card {
  display: none; /* caché en mobile */
  text-align: left;
  padding: 1.5rem;
  background: rgba(245, 245, 240, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  min-width: 300px;
  color: var(--c-text);
}
@media (min-width: 768px) { .cta-info-card { display: block; } }
.cta-info-card h3 {
  color: var(--c-accent);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.cta-info-card__links { display: flex; flex-direction: column; gap: 0.5rem; }
.cta-info-card__links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #E5E5E0;
  transition: color var(--t-fast);
}
.cta-info-card__links a:hover { color: var(--c-accent); }
.cta-info-card__links a .icon { width: 1.25rem; height: 1.25rem; color: var(--c-text-muted); transition: color var(--t-fast); }
.cta-info-card__links a:hover .icon { color: var(--c-accent); }

.cta-banner__buttons-stacked {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 640px) { .cta-banner__buttons-stacked { width: auto; min-width: 280px; } }

/* ============== 16. PAGE HEADER (sub-pages) ============== */
.page-header {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  opacity: 0.55;
  z-index: 1;
}
.page-header__inner { position: relative; z-index: 2; }
.page-header h1 {
  /* Taille équivalent React : text-4xl md:text-6xl */
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .page-header h1 { font-size: 3.75rem; margin-bottom: 1.5rem; }
}
.page-header__lead {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  max-width: 48rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page-header__lead { font-size: 1.25rem; }
}
.page-header__lead.is-centered { margin-inline: auto; text-align: center; }
.page-header.is-centered .page-header__inner { text-align: center; max-width: 48rem; margin-inline: auto; }
.page-header__eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ============== 17. SERVICE DETAIL — HIGHLIGHTS BAND ============== */
.highlights-band {
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
  padding: 3rem 0;
}
.highlights-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .highlights-band__grid { grid-template-columns: repeat(3, 1fr); } }

.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.highlight__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight__icon .icon { width: 1.5rem; height: 1.5rem; }
.highlight h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.highlight p { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.5; }

/* ============== 18. STEPS LIST (service body) ============== */
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.steps-list li {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(168, 76, 58, 0.3);
  transition: border-color var(--t-base);
}
.steps-list li:hover { border-color: var(--c-accent); }
.steps-list h3 { font-size: 1.25rem; color: var(--c-text); margin-bottom: 0.5rem; }
.steps-list p { color: var(--c-text-muted); }

/* ============== 19. FAQ ACCORDION ============== */
.faq {
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:hover { border-color: rgba(168, 76, 58, 0.3); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  border-radius: 9999px;
  padding: 0.5rem;
  width: 2.5rem; height: 2.5rem;
  transition: transform var(--t-base);
}
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ============== 20. CONTACT PAGE ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.urgency-card {
  position: relative;
  padding: 1.5rem;
  background: var(--c-accent);
  color: var(--c-text);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) { .urgency-card { padding: 2rem; } }
.urgency-card::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background: rgba(245, 245, 240, 0.1);
  border-radius: 9999px;
  filter: blur(2rem);
  z-index: 0;
}
.urgency-card > * { position: relative; z-index: 1; }
.urgency-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  background: rgba(245, 245, 240, 0.2);
  border-radius: 9999px;
  margin-bottom: 1rem;
  animation: pulse-scale 2s ease-in-out infinite;
}
.urgency-card__icon .icon { width: 1.5rem; height: 1.5rem; }
.urgency-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.urgency-card p { margin-bottom: 1.25rem; color: rgba(245, 245, 240, 0.9); }
.urgency-card .btn {
  background: var(--c-text);
  color: var(--c-bg);
}
.urgency-card .btn:hover { background: #e5e5e0; color: var(--c-bg); }

.contact-info {
  padding: 1.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) { .contact-info { padding: 2rem; } }
.contact-info__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-info__head .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__head .icon-wrap .icon { width: 1.5rem; height: 1.5rem; }
.contact-info__head h2 { font-size: 1.25rem; }
.contact-info__head p { font-size: 0.875rem; color: var(--c-text-muted); }

.contact-info dl { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-info dd { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--c-text); }
.contact-info dd .icon { width: 1.25rem; height: 1.25rem; color: var(--c-accent); flex-shrink: 0; margin-top: 0.125rem; }
.contact-info dd a:hover { color: var(--c-accent); }
.contact-info dd .strong { font-weight: 700; font-size: 1.125rem; }

.map-frame {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  background: #0f0f0e;
  border-top: 1px solid var(--c-border);
}

/* ============== 21. FORM ============== */
.form {
  padding: 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hard);
}
@media (min-width: 768px) { .form { padding: 2.5rem; } }

.form__head { margin-bottom: 2rem; }
.form__head h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.form__head p  { color: var(--c-text-muted); font-size: 1.0625rem; }

.form__row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: var(--c-text-muted);
}
.field .required { color: var(--c-accent); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--c-bg);
  color: var(--c-text);
  border: 2px solid #3A3A38;
  border-radius: var(--radius);
  font: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 1px var(--c-accent);
}
.field textarea { resize: vertical; min-height: 7rem; }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23F5F5F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1 6 6 11 1'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form .btn--submit {
  width: 100%;
  height: 3.5rem;
  background: var(--c-text);
  color: var(--c-bg);
  font-size: 1.0625rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.form .btn--submit:hover { background: #E5E5E0; color: var(--c-bg); transform: translateY(-2px); box-shadow: var(--shadow-hard); }
.form .btn--submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
/* Aligne l'icône avec le texte ("Envoyer ma demande" / "Envoi en cours...") */
.btn--submit [data-submit-label],
.btn--submit [data-submit-spinner] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn--submit [data-submit-label] .icon,
.btn--submit [data-submit-spinner] .icon { flex-shrink: 0; }

.form__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text-dim);
  margin-top: 1rem;
}
.form__notice .icon { width: 1rem; height: 1rem; }

/* Honeypot anti-bot */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Toast / popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.is-open { display: flex; }
.popup {
  background: var(--c-bg);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 28rem;
  width: 100%;
  position: relative;
}
.popup--success { border-color: rgba(16, 185, 129, 0.4); }
.popup--error   { border-color: rgba(168, 76, 58, 0.5); }
.popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--c-text-dim);
  padding: 0.25rem;
  border-radius: 9999px;
}
.popup__close:hover { color: var(--c-text); background: rgba(255, 255, 255, 0.05); }
.popup__row { display: flex; gap: 1rem; align-items: flex-start; }
.popup__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup--success .popup__icon { background: rgba(16, 185, 129, 0.2); color: rgb(52, 211, 153); }
.popup--error .popup__icon   { background: var(--c-accent-soft); color: var(--c-accent); }
.popup__icon .icon { width: 1.5rem; height: 1.5rem; }
.popup__body h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.popup__body p  { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.5; }

/* ============== 22. ARTICLE (blog content) ============== */
.article {
  max-width: 48rem;
  margin-inline: auto;
}
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
.article__back .icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.article__back:hover { color: var(--c-text); }
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--c-text-dim);
  margin-top: 1.5rem;
}
.article__meta span, .article__meta time { display: inline-flex; align-items: center; gap: 0.375rem; }
.article__meta .icon { width: 1rem; height: 1rem; }
.article__header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}
.article__body { font-size: 1.0625rem; line-height: 1.7; color: var(--c-text-muted); }
.article__body > p { margin-bottom: 1.25rem; }
.article__body > .lead { font-size: 1.25rem; font-weight: 500; color: var(--c-text); margin-bottom: 2rem; }
.article__body h2 { font-size: 1.75rem; color: var(--c-text); margin: 2.5rem 0 1rem; }
.article__body ul { margin: 1rem 0 1.5rem 1.5rem; }
.article__body ul li { margin-bottom: 0.5rem; list-style: disc; padding-left: 0.5rem; }
.article__body strong { color: var(--c-text); font-weight: 700; }
.article__body aside {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--c-surface);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius);
}
.article__body aside h3 { color: var(--c-accent); margin-bottom: 0.5rem; }
.article__body aside p { font-style: italic; color: var(--c-text-muted); }

.article__cta-box {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--c-surface);
  border: 1px solid rgba(168, 76, 58, 0.2);
  border-radius: var(--radius-xl);
}
.article__cta-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.article__cta-box p { color: var(--c-text-muted); margin-bottom: 1.5rem; }
.article__cta-box .actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .article__cta-box .actions { flex-direction: row; } }

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: transform var(--t-base), border-color var(--t-fast);
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(168, 76, 58, 0.3); }
.blog-card__head { display: flex; justify-content: space-between; margin-bottom: 1rem; align-items: center; }
.blog-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card__reading { font-size: 0.75rem; color: var(--c-text-dim); display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-card__reading .icon { width: 0.75rem; height: 0.75rem; }
.blog-card h2 { font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--c-text); transition: color var(--t-fast); }
.blog-card:hover h2 { color: var(--c-accent); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--c-text-muted); flex: 1; margin-bottom: 1rem; }
.blog-card__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card__date { font-size: 0.75rem; color: var(--c-text-dim); display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-card__date .icon { width: 0.75rem; height: 0.75rem; }
.blog-card__cta { font-size: 0.875rem; color: var(--c-accent); font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-card:hover .blog-card__cta { gap: 0.5rem; }

/* ============== 23. FOOTER ============== */
.site-footer {
  background: #0F0F0E;
  border-top: 1px solid var(--c-border);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  color: var(--c-text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-col h2, .footer-col h3 {
  color: var(--c-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.375rem; }
.footer-col a { font-size: 0.875rem; }
.footer-col a:hover { color: var(--c-text); }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-brand .site-logo__mark { width: 3rem; height: 3rem; font-size: 1.125rem; }
.footer-brand .site-logo__text-main { font-size: 1.125rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; font-size: 0.875rem; }
.footer-contact a { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact a:hover { color: var(--c-accent); }
.footer-contact .icon { width: 1.125rem; height: 1.125rem; color: var(--c-accent); flex-shrink: 0; margin-top: 0.125rem; }

.footer-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.footer-rating .stars { display: flex; gap: 1px; color: var(--c-accent); }
.footer-rating .stars .icon { width: 0.875rem; height: 0.875rem; fill: currentColor; }

/* Footer : tags zones d'intervention */
.footer-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-zone-tag {
  padding: 0.25rem 0.75rem;
  background: var(--c-surface);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  cursor: default;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--c-text-dim);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom nav a:hover { color: var(--c-text); }

.footer-credit {
  font-size: 0.6875rem;
  color: var(--c-text-dim);
  margin: 0;
  width: 100%;
  text-align: center;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--c-border);
  opacity: 0.85;
}
.footer-credit a {
  color: var(--c-text-muted);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-credit a:hover { color: var(--c-accent); }
@media (min-width: 768px) {
  .footer-credit { text-align: right; }
}

/* ============== 24. MOBILE CTA (sticky bottom) ============== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem;
  background: rgba(28, 28, 27, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  display: none;
  transform: translateY(100%);
  transition: transform var(--t-base);
}
.mobile-cta.is-visible { transform: translateY(0); display: block; }
@media (min-width: 768px) { .mobile-cta { display: none !important; } }
.mobile-cta .btn { height: 3.25rem; }

/* ============== 25. ANIMATIONS ============== */
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* Animation pulse douce façon Tailwind (opacity), utilisée sur les éléments urgence */
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}
.pulse-anim {
  animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--t-slow), transform 0.7s var(--t-slow); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Small delay utility for staggered reveal */
.reveal[data-delay="1"] { transition-delay: 0.05s; }
.reveal[data-delay="2"] { transition-delay: 0.1s; }
.reveal[data-delay="3"] { transition-delay: 0.15s; }
.reveal[data-delay="4"] { transition-delay: 0.2s; }
.reveal[data-delay="5"] { transition-delay: 0.25s; }
.reveal[data-delay="6"] { transition-delay: 0.3s; }

/* ============== 25b. ABOUT PAGE SPECIFIC ============== */

/* Stats 15+ / 100% */
.about-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}
.about-stat { display: flex; flex-direction: column; }
.about-stat__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.about-stat__label {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.25rem;
}
.about-stat__sep {
  width: 1px;
  height: 3rem;
  background: var(--c-border);
  margin-inline: 1rem;
}

/* Citation flottante sur l'image */
.about-quote-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  max-width: 18rem;
  padding: 1.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  display: none;
}
@media (min-width: 768px) { .about-quote-card { display: block; } }
.about-quote-card p {
  color: var(--c-text);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

/* Cartes étapes (4 colonnes) */
.steps-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .steps-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-cards { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative;
  padding: 2rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.step-card:hover { box-shadow: var(--shadow-soft); }
.step-card::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: var(--c-surface);
  border-bottom-left-radius: 100px;
  transition: transform var(--t-base);
}
.step-card:hover::before { transform: scale(1.1); }
.step-card > * { position: relative; z-index: 1; }
.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}
.step-card__icon svg { width: 2rem; height: 2rem; }
.step-card h3 {
  font-size: 1.125rem;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Cartes engagements (6 cartes en 3 colonnes) */
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .commitments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .commitments-grid { grid-template-columns: repeat(3, 1fr); } }

.commitment-card {
  padding: 2rem;
  background: rgba(245, 245, 240, 0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: background-color var(--t-base);
}
.commitment-card:hover { background: rgba(245, 245, 240, 0.10); }
.commitment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(245, 245, 240, 0.10);
  border-radius: var(--radius-sm);
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}
.commitment-card__icon svg { width: 2rem; height: 2rem; }
.commitment-card h3 {
  font-size: 1.125rem;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}
.commitment-card p {
  color: var(--c-text-dim);
  line-height: 1.6;
}

/* Pills villes (avec icône MapPin) */
.cities-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto 3rem;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-bg);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: default;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.city-pill:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.city-pill svg { width: 1rem; height: 1rem; }

/* Bloc "Vous n'êtes pas sur la liste" */
.not-on-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 48rem;
  margin-inline: auto;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
@media (min-width: 768px) {
  .not-on-list { flex-direction: row; text-align: left; }
}
.not-on-list__text h3 {
  font-size: 1.25rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.not-on-list__text p { color: var(--c-text-muted); }
.not-on-list .btn { flex-shrink: 0; }

/* ============== 25c. PAGES SERVICES (palette bleu nuit / rouge brique) ============== */

:root {
  --svc-bg:       #1F2F44;
  --svc-surface:  #2B2E34;
  --svc-accent:   #B63A32;
  --svc-accent-h: #9F2F29;
  --svc-text:     #FFFFFF;
  --svc-muted:    #D1D5DB;
  --svc-dim:      #9CA3AF;
  --svc-border:   rgba(255, 255, 255, 0.10);
}

.svc-page { background: var(--svc-bg); color: var(--svc-text); }

/* HERO split (texte gauche, image droite) */
.svc-hero {
  padding: 3rem 0;
}
@media (min-width: 1024px) { .svc-hero { padding: 5rem 0; } }
.svc-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .svc-hero__inner { flex-direction: row; gap: 3rem; }
}
.svc-hero__text { width: 100%; }
.svc-hero__media { width: 100%; }
@media (min-width: 1024px) {
  .svc-hero__text { width: 50%; }
  .svc-hero__media { width: 50%; }
}

.svc-eyebrow {
  display: inline-block;
  color: var(--svc-accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.svc-h1 {
  font-size: clamp(1.875rem, 4vw + 0.5rem, 3rem);
  color: var(--svc-text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.svc-lead {
  font-size: 1.0625rem;
  color: var(--svc-muted);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.65;
}
@media (min-width: 1024px) { .svc-lead { font-size: 1.25rem; } }
.svc-lead a { text-decoration: underline; }
.svc-lead a:hover { color: var(--svc-text); }

.svc-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .svc-cta { flex-direction: row; } }
.svc-cta .btn { flex: 1; }
@media (min-width: 640px) { .svc-cta .btn { flex: 0 0 auto; } }

.svc-btn-primary {
  background: var(--svc-accent);
  color: var(--svc-text);
}
.svc-btn-primary:hover {
  background: var(--svc-accent-h);
  color: var(--svc-text);
}
.svc-btn-outline {
  background: transparent;
  color: var(--svc-text);
  border: 1px solid var(--svc-text);
}
.svc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--svc-text);
}

.svc-hero__media-frame {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--svc-border);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .svc-hero__media-frame { height: 400px; } }
.svc-hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Section "Ce que nos clients apprécient" (3 cards horizontales) */
.svc-features {
  padding: 3rem 0;
  background: var(--svc-surface);
  border-block: 1px solid var(--svc-border);
}
.svc-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .svc-features__grid { grid-template-columns: repeat(3, 1fr); } }
.svc-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.svc-feature__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--svc-bg);
  border: 1px solid var(--svc-border);
  border-radius: 9999px;
  color: var(--svc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-feature__icon svg { width: 1.25rem; height: 1.25rem; }
.svc-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--svc-text);
  margin-bottom: 0.25rem;
}
.svc-feature p {
  font-size: 0.875rem;
  color: var(--svc-dim);
  line-height: 1.5;
}
.svc-feature p a { text-decoration: underline; }
.svc-feature p a:hover { color: var(--svc-text); }

/* Section content (split image gauche / texte droite) */
.svc-content {
  padding: 4rem 0;
  background: var(--svc-bg);
}
@media (min-width: 1024px) { .svc-content { padding: 5rem 0; } }
.svc-content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .svc-content__inner { flex-direction: row; gap: 3rem; }
}
.svc-content__media,
.svc-content__text { width: 100%; }
@media (min-width: 768px) {
  .svc-content__media,
  .svc-content__text { width: 50%; }
}
.svc-content__media-frame {
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--svc-border);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .svc-content__media-frame { height: 400px; } }
.svc-content__media-frame img { width: 100%; height: 100%; object-fit: cover; }

.svc-h2 {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  color: var(--svc-text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.svc-content__text > p {
  color: var(--svc-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
@media (min-width: 1024px) {
  .svc-content__text > p { font-size: 1.0625rem; }
}
.svc-content__text > p a { text-decoration: underline; }
.svc-content__text > p a:hover { color: var(--svc-text); }

.svc-steps { display: flex; flex-direction: column; gap: 1rem; }
.svc-steps > div h4 {
  font-weight: 700;
  color: var(--svc-text);
  margin-bottom: 0.25rem;
}
.svc-steps > div p {
  font-size: 0.875rem;
  color: var(--svc-dim);
  line-height: 1.5;
}
.svc-steps > div p a { text-decoration: underline; }
.svc-steps > div p a:hover { color: var(--svc-text); }

/* Cartes hydrofuge (3 grandes cartes sur fond gris foncé) */
.svc-hydro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .svc-hydro-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-hydro-card {
  padding: 2rem;
  background: var(--svc-bg);
  border: 1px solid var(--svc-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-base);
}
.svc-hydro-card:hover { border-color: rgba(182, 58, 50, 0.5); }
.svc-hydro-card__icon {
  display: inline-flex;
  padding: 1rem;
  background: var(--svc-surface);
  border-radius: var(--radius);
  color: var(--svc-accent);
  margin-bottom: 1.5rem;
}
.svc-hydro-card__icon svg { width: 2rem; height: 2rem; }
.svc-hydro-card h3 {
  font-size: 1.25rem;
  color: var(--svc-text);
  margin-bottom: 0.75rem;
}
.svc-hydro-card p {
  color: var(--svc-dim);
  line-height: 1.65;
}

/* CTA final */
.svc-cta-final {
  padding: 4rem 0;
  background: var(--svc-surface);
  text-align: center;
  border-top: 1px solid var(--svc-border);
}
@media (min-width: 1024px) { .svc-cta-final { padding: 5rem 0; } }
.svc-cta-final h2 {
  color: var(--svc-text);
  margin-bottom: 1rem;
}
.svc-cta-final p {
  font-size: 1.0625rem;
  color: var(--svc-muted);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .svc-cta-final p { font-size: 1.125rem; } }
.svc-cta-final__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  max-width: 30rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .svc-cta-final__buttons { flex-direction: row; max-width: none; }
}

/* ============== 25d. PAGE TRAITEMENT DE CHARPENTE (palette principale warm) ============== */

/* ---- HERO compact ---- */
.tc-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}
.tc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.80) 50%, rgba(0,0,0,0.60));
}
.tc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  padding: 1rem;
  text-align: center;
}
.tc-hero__title {
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.tc-hero__lead {
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.tc-hero__lead a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.tc-hero__lead a:hover { color: #ffffff; }

/* ---- MICRO PROOFS ---- */
.tc-micro-proofs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 500;
}
@media (min-width: 768px) { .tc-micro-proofs { gap: 1.5rem; } }
.tc-micro-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.tc-micro-proof svg {
  width: 1rem;
  height: 1rem;
  color: var(--c-accent);
  flex-shrink: 0;
}

/* ---- HERO CTA ---- */
.tc-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .tc-hero__cta { flex-direction: row; }
}
.tc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--c-accent);
  color: #ffffff;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  border: none;
  transition: background-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  min-height: 2.75rem;
}
.tc-btn-primary:hover {
  background: var(--c-accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hard);
}
.tc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-fast);
  min-height: 2.75rem;
}
.tc-btn-outline:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}
.tc-btn-outline svg, .tc-btn-primary svg { width: 1rem; height: 1rem; }
.tc-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #000000;
  padding: 0.625rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  transition: background-color var(--t-base), transform var(--t-fast);
  min-height: 2.75rem;
}
.tc-btn-white:hover {
  background: #e5e7eb;
  color: #000000;
  transform: translateY(-1px);
}
.tc-btn-white svg { width: 1rem; height: 1rem; }

/* ---- SECTIONS ---- */
.tc-section {
  padding-block: 4rem;
  background: var(--c-bg);
}
@media (min-width: 768px) {
  .tc-section { padding-block: 4rem; }
  .tc-section--lg { padding-block: 6rem; }
}
.tc-section--surface { background: var(--c-surface-warm); }
.tc-section--bordered { border-top: 1px solid rgba(255, 255, 255, 0.05); }

/* ---- INTRO BLOCK ---- */
.tc-intro {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.tc-intro h2 {
  font-size: clamp(1.875rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.tc-intro p {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.tc-intro p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.tc-intro p a:hover { color: #ffffff; }

/* ---- DECO BAR (petite barre rouge) ---- */
.tc-deco-bar {
  height: 4px;
  width: 6rem;
  background: var(--c-accent);
  border-radius: var(--radius-full);
  margin: 0 auto;
}

/* ---- EYEBROW (label rouge) ---- */
.tc-eyebrow {
  display: block;
  color: var(--c-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ---- SECTION HEADINGS ---- */
.tc-h2 {
  font-size: clamp(1.875rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.tc-h2--mb-sm { margin-bottom: 2rem; }
.tc-h2--mb-lg { margin-bottom: 4rem; }
.tc-lead-muted {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.tc-lead-muted a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.tc-lead-muted a:hover { color: #ffffff; }

/* ---- SPLIT (texte / image) ---- */
.tc-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .tc-split { flex-direction: row; gap: 5rem; }
}
.tc-split--start { align-items: flex-start; }
.tc-split__col { width: 100%; }
@media (min-width: 1024px) {
  .tc-split__col { width: 50%; }
}
.tc-split__col--media-left { order: 2; }
@media (min-width: 1024px) {
  .tc-split__col--media-left { order: 1; }
}
.tc-split__col--text-right { order: 1; }
@media (min-width: 1024px) {
  .tc-split__col--text-right { order: 2; }
}

/* ---- MEDIA FRAMES ---- */
.tc-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.tc-media--4-3 { aspect-ratio: 4 / 3; }
.tc-media--3-4 { aspect-ratio: 3 / 4; }
.tc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform var(--t-slow), opacity var(--t-slow);
}
.tc-media:hover img { transform: scale(1.05); opacity: 1; }
.tc-media__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
}
.tc-media__overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 27, 0.8), transparent);
  pointer-events: none;
}

/* ---- GUARANTEE BADGE ---- */
.tc-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}
.tc-guarantee-badge svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--c-accent);
  flex-shrink: 0;
}
.tc-guarantee-badge__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}
.tc-guarantee-badge__subtitle {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.4;
}

/* ---- FEATURES GRID 2x2 ---- */
.tc-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .tc-features-grid { grid-template-columns: 1fr 1fr; }
}
.tc-feature-card {
  background: #2A2A28;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color var(--t-base);
}
.tc-feature-card:hover { background: #333330; }
.tc-feature-card__icon {
  background: rgba(168, 76, 58, 0.2);
  color: var(--c-accent);
  padding: 0.5rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tc-feature-card__icon svg { width: 1.25rem; height: 1.25rem; }
.tc-feature-card__title {
  font-weight: 600;
  color: #e5e7eb;
}

/* ---- NUMBERED STEPS (5 étapes) ---- */
.tc-numbered-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tc-numbered-step {
  display: flex;
  gap: 1rem;
}
.tc-numbered-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--c-accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: background-color var(--t-base), color var(--t-base);
}
.tc-numbered-step:hover .tc-numbered-step__num {
  background: #ffffff;
  color: var(--c-accent);
}
.tc-numbered-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  transition: color var(--t-base);
}
.tc-numbered-step:hover .tc-numbered-step__title {
  color: var(--c-accent);
}
.tc-numbered-step__desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---- METHOD GRID 5 cartes ---- */
.tc-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .tc-method-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .tc-method-grid { grid-template-columns: repeat(5, 1fr); }
}
.tc-method-card {
  background: #2A2A28;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.tc-method-card:hover {
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
  border-color: rgba(168, 76, 58, 0.5);
}
.tc-method-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-base);
}
.tc-method-card:hover .tc-method-card__icon {
  background: var(--c-accent);
}
.tc-method-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--c-accent);
  transition: color var(--t-base);
}
.tc-method-card:hover .tc-method-card__icon svg {
  color: #ffffff;
}
.tc-method-card__title {
  font-weight: 700;
  color: #e5e7eb;
  transition: color var(--t-base);
}
.tc-method-card:hover .tc-method-card__title { color: #ffffff; }

/* ---- METHOD HEADER ---- */
.tc-method-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tc-method-header h2 {
  font-size: clamp(1.875rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}
.tc-method-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* ---- REASONS GRID 6 items ---- */
.tc-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .tc-reasons-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .tc-reasons-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.tc-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color var(--t-base), border-color var(--t-base);
}
.tc-reason-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.tc-reason-item__icon {
  background: var(--c-accent);
  padding: 0.5rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tc-reason-item__icon svg {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}
.tc-reason-item__text {
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 500;
  line-height: 1.5;
}

/* ---- FINAL CTA ---- */
.tc-final-cta {
  padding-block: 5rem;
  background: linear-gradient(to bottom right, #111111, #242422);
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.tc-final-cta__inner {
  max-width: 56rem;
  margin: 0 auto;
}
.tc-final-cta h2 {
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.tc-final-cta p {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.tc-final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .tc-final-cta__buttons { flex-direction: row; }
}
.tc-btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--c-accent);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  border: none;
  transition: background-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
}
.tc-btn-primary-lg:hover {
  background: var(--c-accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -8px rgba(168, 76, 58, 0.5);
}
.tc-btn-primary-lg svg { width: 1.25rem; height: 1.25rem; }
.tc-btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid #ffffff;
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-fast);
}
.tc-btn-outline-lg:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}

/* ---- PULSE BADGE ---- */
.tc-pulse-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.tc-pulse-badge p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.tc-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--c-accent);
  display: inline-block;
  animation: tc-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes tc-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* ============== 25e. PAGE RÉALISATIONS (palette principale warm) ============== */

/* ---- HERO ---- */
.reno-hero {
  position: relative;
  padding: 5rem 0;
  background: var(--c-bg);
  color: var(--c-text);
  overflow: hidden;
  isolation: isolate;
}
.reno-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reno-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reno-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}
.reno-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.reno-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.reno-hero__lead {
  font-size: 1.25rem;
  color: #E5E5E0;
  max-width: 42rem;
  margin-inline: auto;
}
.reno-hero__lead-sub {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* ---- PROJECTS SECTION ---- */
.reno-section {
  padding: 5rem 0;
  background: var(--c-bg);
}
.reno-projects {
  display: flex;
  flex-direction: column;
}
.reno-projects > * + * {
  margin-top: 6rem;
}

/* ---- PROJECT CARD ---- */
.reno-project {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-border);
}
@media (min-width: 768px) {
  .reno-project {
    padding: 2.5rem;
  }
}

/* Project head: location + title + CTA */
.reno-project__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .reno-project__head {
    flex-direction: row;
    align-items: center;
  }
}

.reno-project__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.reno-project__location svg {
  width: 1rem;
  height: 1rem;
}

.reno-project__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}

.reno-project__cta-desktop {
  display: none;
}
@media (min-width: 768px) {
  .reno-project__cta-desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding-inline: 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1px solid rgba(245, 245, 240, 0.20);
    color: var(--c-text);
    background: transparent;
    transition: background var(--t-fast), color var(--t-fast);
    text-decoration: none;
  }
  .reno-project__cta-desktop:hover {
    background: var(--c-text);
    color: var(--c-bg);
  }
}

/* Media area */
.reno-project__media-single {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 400px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .reno-project__media-single {
    height: 600px;
  }
}
.reno-project__media-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reno-project__media-single:hover img {
  transform: scale(1.05);
}

.reno-project__media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .reno-project__media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reno-project__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 300px;
}
@media (min-width: 768px) {
  .reno-project__img-wrap {
    height: 400px;
  }
}
.reno-project__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reno-project__img-wrap:hover img {
  transform: scale(1.05);
}

.reno-project__badge {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: var(--c-text);
}
.reno-project__badge--before {
  left: 1rem;
  background: rgba(42, 42, 40, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--c-border);
}
.reno-project__badge--after {
  right: 1rem;
  background: var(--c-accent);
  border: 1px solid rgba(245, 245, 240, 0.20);
}

/* Detail box */
.reno-project__detail {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--c-border);
}
@media (min-width: 768px) {
  .reno-project__detail {
    padding: 2rem;
  }
}
.reno-project__detail-title {
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.reno-project__detail-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--c-accent);
  flex-shrink: 0;
}
.reno-project__detail-text {
  color: var(--c-text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin: 0;
}

.reno-project__cta-mobile {
  display: block;
  margin-top: 1.5rem;
}
.reno-project__cta-mobile .btn {
  width: 100%;
}
@media (min-width: 768px) {
  .reno-project__cta-mobile {
    display: none;
  }
}

/* ---- FINAL CTA ---- */
.reno-cta {
  position: relative;
  padding: 5rem 0;
  background: var(--c-surface);
  overflow: hidden;
}
.reno-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reno-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  mix-blend-mode: overlay;
  filter: blur(4px);
}
.reno-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.reno-cta__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}
.reno-cta__lead {
  font-size: 1.25rem;
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-inline: auto;
}
.reno-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .reno-cta__buttons {
    flex-direction: row;
  }
}
.reno-cta__buttons .btn {
  height: 3.5rem;
  padding-inline: 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
  width: 100%;
}
@media (min-width: 640px) {
  .reno-cta__buttons .btn {
    width: auto;
  }
}

/* ============== 26. UTILITIES ============== */
.text-accent { color: var(--c-accent); }
.text-muted  { color: var(--c-text-muted); }
.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mb-lg { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Print */
@media print {
  .site-header, .site-footer, .mobile-cta, .form { display: none !important; }
  body { background: white; color: black; }
}
