/* =========================================================
   Carrosserie de la Pallanterie — Premium Atelier
   Design system
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

:root {
  --c-graphite: #121212;
  --c-charcoal: #1e1e1e;
  --c-charcoal-2: #262626;
  --c-ivory: #f6f2ea;
  --c-ivory-2: #ece7dc;
  --c-grey-soft: #d8d6d0;
  --c-grey-metal: #9b9b95;
  --c-grey-line: rgba(155, 155, 149, 0.22);
  --c-burgundy: #7a1e24;
  --c-burgundy-deep: #5f161b;
  --c-white: #ffffff;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  --container: 1240px;
  --container-narrow: 960px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 480ms;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ivory);
  background: var(--c-graphite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

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

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

/* ======= Typography ======= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-grey-soft);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--c-ivory);
  max-width: 64ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-burgundy);
}

@media (max-width: 767px) {
  .eyebrow:not(.eyebrow-plain) {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

/* ======= Layout ======= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

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

section {
  padding: clamp(72px, 10vw, 140px) 0;
}

.section-dark {
  background: var(--c-graphite);
  color: var(--c-ivory);
}

.section-charcoal {
  background: var(--c-charcoal);
  color: var(--c-ivory);
}

.section-ivory {
  background: var(--c-ivory);
  color: var(--c-graphite);
}

.section-ivory p {
  color: #4a4a47;
}

.section-ivory .eyebrow {
  color: #6e6e68;
}

.section-ivory .eyebrow::before {
  background: var(--c-burgundy);
}

/* ======= Buttons ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--c-burgundy);
  color: var(--c-ivory);
}

.btn-primary:hover {
  background: var(--c-burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -16px rgba(122, 30, 36, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(246, 242, 234, 0.28);
}

.btn-ghost:hover {
  border-color: var(--c-burgundy);
  background: var(--c-burgundy);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--c-graphite);
  color: var(--c-ivory);
}

.btn-dark:hover {
  background: var(--c-burgundy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-graphite);
  border-color: rgba(18, 18, 18, 0.25);
}

.btn-outline-dark:hover {
  background: var(--c-graphite);
  color: var(--c-ivory);
  transform: translateY(-2px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ======= Header ======= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 360ms var(--ease), padding 360ms var(--ease),
    border-color 360ms var(--ease), backdrop-filter 360ms var(--ease);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.65), rgba(18, 18, 18, 0));
}

.site-header.scrolled {
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(246, 242, 234, 0.06);
  padding: 10px 0;
}

.nav-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 10px;
  line-height: 1.1;
  flex-shrink: 1;
  min-width: 0;
}

.brand-name {
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--c-ivory);
  white-space: nowrap;
}

.brand-sub {
  font-size: clamp(0.5rem, 1.5vw, 0.58rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
  margin-top: 0;
  white-space: nowrap;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.main-nav a,
.main-nav .nav-trigger {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(246, 242, 234, 0.78);
  padding: 6px 0;
  white-space: nowrap;
  transition: color 300ms var(--ease);
}

.main-nav a::after,
.main-nav .nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-burgundy);
  transition: width 360ms var(--ease);
}

.main-nav a:hover,
.main-nav a.active,
.main-nav .nav-trigger:hover,
.main-nav .nav-trigger.active {
  color: var(--c-ivory);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav .nav-trigger:hover::after,
.main-nav .nav-trigger.active::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.header-ctas .btn {
  padding: 10px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

@media (max-width: 1280px) {
  .main-nav { gap: 16px; }
  .main-nav a,
  .main-nav .nav-trigger { font-size: 0.74rem; }
  .header-ctas .btn { padding: 9px 12px; font-size: 0.66rem; }
  .brand-sub { display: none; }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-ivory);
  transition: transform 300ms var(--ease), opacity 200ms;
}

.menu-toggle.open span:nth-child(1),
.nav-toggle:checked ~ .site-header .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2),
.nav-toggle:checked ~ .site-header .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3),
.nav-toggle:checked ~ .site-header .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .main-nav,
  .header-ctas {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .brand-sub { display: inline; }
}

@media (max-width: 767px) {
  .brand { gap: 8px; }
  .brand-sub { display: none; }

}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-graphite);
  z-index: 49;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform 500ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.nav-toggle:checked ~ .mobile-menu {
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--c-ivory);
  border-bottom: 1px solid rgba(246, 242, 234, 0.08);
}

.mobile-menu .mobile-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu .btn {
  justify-content: center;
}

/* ======= Hero ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 96px;
  overflow: hidden;
  background: var(--c-graphite);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: contrast(1.05) brightness(0.85);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0) 30%, rgba(18, 18, 18, 0.92) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.55) 0%, rgba(18, 18, 18, 0) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero h1 {
  margin-top: 24px;
  color: var(--c-ivory);
}

.hero .lede {
  margin-top: 28px;
  color: rgba(246, 242, 234, 0.78);
  max-width: 640px;
}

.hero .cta-row {
  margin-top: 40px;
}

.trust-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 242, 234, 0.12);
}

.trust-bar > div {
  padding: 4px 22px 4px 0;
  border-right: 1px solid rgba(246, 242, 234, 0.08);
}

.trust-bar > div:last-child {
  border-right: 0;
}

.trust-bar .label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
  margin-bottom: 8px;
}

.trust-bar .value {
  font-size: 0.95rem;
  color: var(--c-ivory);
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  .trust-bar > div {
    border-right: 0;
    padding-right: 0;
  }
}

/* Sub-hero (interior pages) */
.subhero {
  position: relative;
  padding: clamp(140px, 16vw, 200px) 0 clamp(72px, 9vw, 120px);
  background: var(--c-graphite);
  border-bottom: 1px solid rgba(246, 242, 234, 0.06);
  overflow: hidden;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(122, 30, 36, 0.18), transparent 60%);
}

.subhero-inner {
  position: relative;
  max-width: 820px;
}

.subhero h1 {
  margin-top: 22px;
}

.subhero .lede {
  margin-top: 28px;
}

.breadcrumb {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
  margin-bottom: 0;
}

.breadcrumb a:hover {
  color: var(--c-ivory);
}

.breadcrumb .sep {
  margin: 0 10px;
  color: rgba(155, 155, 149, 0.5);
}

/* ======= Section header ======= */
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head h2 {
  margin-top: 18px;
}

.section-head p {
  margin-top: 22px;
}

/* ======= Cards grid ======= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-grey-line);
  border-left: 1px solid var(--c-grey-line);
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card-svc {
  display: block;
  padding: 40px 32px;
  border-right: 1px solid var(--c-grey-line);
  border-bottom: 1px solid var(--c-grey-line);
  background: transparent;
  transition: all var(--t-base) var(--ease);
  position: relative;
  color: inherit;
}

.section-ivory .card-svc {
  color: var(--c-graphite);
}

.card-svc:hover {
  background: rgba(122, 30, 36, 0.06);
  transform: translateY(-2px);
}

.section-ivory .card-svc:hover {
  background: var(--c-white);
  box-shadow: 0 20px 40px -28px rgba(18, 18, 18, 0.2);
}

.card-svc .num {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--c-burgundy);
  margin-bottom: 28px;
  display: block;
}

.card-svc h3 {
  margin-bottom: 16px;
}

.card-svc p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.card-svc .arrow {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  transition: gap 300ms var(--ease);
}

.card-svc:hover .arrow {
  gap: 16px;
}

/* ======= Split layout ======= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-charcoal);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.split-img:hover img {
  transform: scale(1.03);
}

.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(246, 242, 234, 0.06);
  pointer-events: none;
}

/* ======= Stats ======= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-grey-line);
  margin-top: 60px;
}

@media (max-width: 767px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  padding: 36px 24px 0 0;
  border-right: 1px solid var(--c-grey-line);
}

.stat:last-child {
  border-right: 0;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-ivory);
  line-height: 1;
}

.section-ivory .stat .num {
  color: var(--c-graphite);
}

.stat .lab {
  display: block;
  margin-top: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
}

/* ======= Process steps ======= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-grey-line);
}

@media (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.step {
  padding: 44px 28px 44px 0;
  border-right: 1px solid var(--c-grey-line);
  position: relative;
}

.step:last-child {
  border-right: 0;
}

.step .num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--c-burgundy);
  margin-bottom: 28px;
  display: block;
}

.step h3 {
  margin-bottom: 14px;
}

.step p {
  font-size: 0.92rem;
}

/* ======= Before/after gallery ======= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gal-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-charcoal-2);
}

.gal-item .ph {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(246, 242, 234, 0.04), transparent 60%),
    linear-gradient(135deg, var(--c-charcoal-2) 0%, var(--c-graphite) 100%);
  transition: transform 1s var(--ease);
}

.gal-item.has-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gal-item:hover .ph,
.gal-item:hover img {
  transform: scale(1.03);
}

.gal-item .label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  color: var(--c-ivory);
}

.gal-item .label .tag {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-burgundy);
}

.gal-item .label .ttl {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 18, 18, 0.85) 100%);
  z-index: 1;
}

/* ======= Insurance / dark feature ======= */
.feature-dark {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--c-charcoal);
  overflow: hidden;
}

.feature-dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(122, 30, 36, 0.18), transparent 70%);
}

.feature-dark .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .feature-dark .container {
    grid-template-columns: 1fr;
  }
}

/* ======= Local cards ======= */
.local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .local-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.local-card {
  padding: 28px 24px;
  background: var(--c-charcoal-2);
  border: 1px solid rgba(246, 242, 234, 0.06);
  transition: all var(--t-base) var(--ease);
}

.section-ivory .local-card {
  background: var(--c-white);
  border-color: rgba(18, 18, 18, 0.08);
}

.local-card:hover {
  border-color: var(--c-burgundy);
  transform: translateY(-2px);
}

.local-card .pin {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-burgundy);
}

.local-card .name {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-ivory);
}

.section-ivory .local-card .name {
  color: var(--c-graphite);
}

/* ======= Final CTA ======= */
.final-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-graphite);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(122, 30, 36, 0.18), transparent 70%);
}

.final-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--c-ivory);
}

.final-cta p {
  margin-top: 24px;
  font-size: 1.08rem;
  color: rgba(246, 242, 234, 0.7);
}

.final-cta .cta-row {
  justify-content: center;
  margin-top: 44px;
}

/* ======= FAQ ======= */
.faq {
  border-top: 1px solid var(--c-grey-line);
  margin-top: 50px;
}

.faq-item {
  border-bottom: 1px solid var(--c-grey-line);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
  transition: color 300ms var(--ease);
}

.faq-q:hover {
  color: var(--c-burgundy);
}

.faq-q .plus {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 400ms var(--ease);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.faq-q .plus::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.faq-q .plus::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transition: transform 400ms var(--ease);
}

.faq-item.open .faq-q .plus::after {
  transform: scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 0 26px;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ======= Contact specific ======= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--c-charcoal);
  border: 1px solid rgba(246, 242, 234, 0.06);
  transition: all var(--t-base) var(--ease);
}

.contact-card:hover {
  border-color: var(--c-burgundy);
  transform: translateY(-2px);
}

.contact-card .icn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 242, 234, 0.18);
  color: var(--c-burgundy);
  margin-bottom: 28px;
}

.contact-card h3 {
  color: var(--c-ivory);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.92rem;
  flex: 1;
}

.contact-card .link {
  margin-top: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 300ms var(--ease);
}

.contact-card:hover .link {
  gap: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-grey-line);
  margin-top: 60px;
}

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

.info-item {
  padding: 36px 28px 0 0;
  border-right: 1px solid var(--c-grey-line);
}

.info-item:last-child {
  border-right: 0;
}

@media (max-width: 1024px) {
  .info-item {
    border-right: 0;
    border-bottom: 1px solid var(--c-grey-line);
    padding: 28px 0;
  }
}

.info-item .lab {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
}

.info-item .val {
  display: block;
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--c-ivory);
  line-height: 1.5;
}

.section-ivory .info-item .val {
  color: var(--c-graphite);
}

.map-frame {
  margin-top: 60px;
  position: relative;
  aspect-ratio: 21 / 9;
  background: var(--c-charcoal);
  overflow: hidden;
  border: 1px solid rgba(246, 242, 234, 0.06);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) contrast(1.05) brightness(0.85);
}

/* ======= Footer ======= */
.site-footer {
  background: var(--c-graphite);
  color: var(--c-grey-soft);
  padding: 90px 0 30px;
  border-top: 1px solid rgba(246, 242, 234, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

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

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-col .brand-name {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--c-grey-soft);
  transition: color 300ms var(--ease);
}

.footer-col a:hover {
  color: var(--c-burgundy);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 242, 234, 0.06);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--c-grey-metal);
}

.footer-bottom a {
  color: var(--c-grey-metal);
  border-bottom: 1px dotted rgba(155, 155, 149, 0.3);
  transition: color 300ms var(--ease);
}

.footer-bottom a:hover {
  color: var(--c-burgundy);
  border-bottom-color: var(--c-burgundy);
}

/* ======= Animations ======= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ======= Misc ======= */
.divider {
  height: 1px;
  background: var(--c-grey-line);
  width: 100%;
}

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

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

.rel-card {
  display: block;
  padding: 28px 26px;
  background: var(--c-charcoal-2);
  border: 1px solid rgba(246, 242, 234, 0.06);
  transition: all var(--t-base) var(--ease);
}

.section-ivory .rel-card {
  background: var(--c-white);
  border-color: rgba(18, 18, 18, 0.08);
}

.rel-card:hover {
  border-color: var(--c-burgundy);
  transform: translateY(-2px);
}

.rel-card .tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-burgundy);
}

.rel-card .ttl {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-ivory);
}

.section-ivory .rel-card .ttl {
  color: var(--c-graphite);
}

.rel-card .arr {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--c-burgundy);
  letter-spacing: 0.12em;
}

/* Cinematic full-width image */
.cinematic {
  position: relative;
  height: clamp(360px, 50vh, 560px);
  overflow: hidden;
}

.cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}

.cinematic:hover img {
  transform: scale(1.03);
}

.cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.3), rgba(18, 18, 18, 0.6));
}

/* Two-up bullets */
.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .bullets {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.bullets li {
  list-style: none;
  padding-left: 26px;
  position: relative;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--c-grey-soft);
}

.section-ivory .bullets li {
  color: #4a4a47;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: var(--c-burgundy);
}

/* ======= Page hero (interior pages) ======= */
.page-hero {
  position: relative;
  min-height: clamp(440px, 62vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: clamp(140px, 16vw, 200px) 0 clamp(56px, 7vw, 88px);
  background: var(--c-graphite);
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 242, 234, 0.06);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) brightness(0.78);
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.1) 35%, rgba(18,18,18,0.95) 100%),
    linear-gradient(90deg, rgba(18,18,18,0.6) 0%, rgba(18,18,18,0) 65%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.page-hero h1 {
  margin-top: 22px;
  color: var(--c-ivory);
}
.page-hero .lede {
  margin-top: 26px;
  color: rgba(246, 242, 234, 0.82);
  max-width: 640px;
}
.page-hero .cta-row {
  margin-top: 36px;
}
.page-hero .breadcrumb {
  color: rgba(246, 242, 234, 0.55);
}
.page-hero .breadcrumb a {
  color: rgba(246, 242, 234, 0.75);
}
.page-hero .eyebrow {
  margin-top: 8px;
  display: inline-flex;
  color: var(--c-ivory);
}

/* Accent variants */
.page-hero--carrosserie .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(18,18,18,0.5) 0%, rgba(18,18,18,0.05) 30%, rgba(18,18,18,0.95) 100%),
    radial-gradient(ellipse at 85% 15%, rgba(122,30,36,0.28), transparent 55%);
}
.page-hero--tolerie .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.1) 30%, rgba(14,14,16,0.95) 100%),
    radial-gradient(ellipse at 10% 90%, rgba(120,130,140,0.22), transparent 60%);
}
.page-hero--peinture .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(20,16,18,0.55) 0%, rgba(20,16,18,0.05) 30%, rgba(20,16,18,0.95) 100%),
    radial-gradient(ellipse at 80% 25%, rgba(122,30,36,0.32), transparent 55%);
}
.page-hero--vitrage .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(10,18,24,0.6) 0%, rgba(10,18,24,0.1) 30%, rgba(10,18,24,0.95) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(80,140,170,0.28), transparent 60%);
}
.page-hero--anciens .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(22,18,14,0.55) 0%, rgba(22,18,14,0.1) 30%, rgba(22,18,14,0.95) 100%),
    radial-gradient(ellipse at 85% 80%, rgba(170,120,60,0.28), transparent 60%);
}
.page-hero--realisations .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.1) 35%, rgba(18,18,18,0.95) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(122,30,36,0.18), transparent 65%);
}
.page-hero--assurances .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(14,16,20,0.6) 0%, rgba(14,16,20,0.15) 30%, rgba(14,16,20,0.96) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(80,110,150,0.22), transparent 60%);
}
.page-hero--contact .page-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(16,16,18,0.55) 0%, rgba(16,16,18,0.15) 30%, rgba(16,16,18,0.95) 100%),
    radial-gradient(ellipse at 15% 20%, rgba(200,160,90,0.18), transparent 60%);
}

@media (max-width: 767px) {
  .page-hero { min-height: clamp(380px, 70vh, 520px); }
  .page-hero-bg img { opacity: 0.45; }
}

/* ======= Dropdown nav ======= */
.main-nav .nav-item { position: relative; display: inline-flex; align-items: center; }
.main-nav .nav-item > a,
.main-nav .nav-item > .nav-trigger { display: inline-flex; align-items: center; gap: 6px; }
.main-nav .nav-item > a .caret,
.main-nav .nav-item > .nav-trigger .caret {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
  transition: transform 300ms var(--ease);
}
.main-nav .nav-item:hover > a .caret,
.main-nav .nav-item:focus-within > a .caret,
.main-nav .nav-item:hover > .nav-trigger .caret,
.main-nav .nav-item:focus-within > .nav-trigger .caret { transform: rotate(225deg) translateY(-2px); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--c-graphite);
  border: 1px solid rgba(246,242,234,0.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0; height: 14px;
}
.main-nav .nav-item:hover .nav-dropdown,
.main-nav .nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; flex-direction: column;
  padding: 12px 14px;
  font-size: 0.82rem;
  letter-spacing: 0;
  color: rgba(246,242,234,0.85);
  border-bottom: 0;
  transition: background 240ms var(--ease), color 240ms var(--ease);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a .sub {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
  margin-top: 4px;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(246,242,234,0.04);
  color: var(--c-ivory);
}

/* Mobile collapsible group */
.mobile-menu .m-group { border-bottom: 1px solid rgba(246, 242, 234, 0.08); }
.mobile-menu .m-group > summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  font-size: 1.4rem;
  color: var(--c-ivory);
}
.mobile-menu .m-group > summary::-webkit-details-marker { display: none; }
.mobile-menu .m-group > summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 240ms var(--ease);
}
.mobile-menu .m-group[open] > summary::after { content: "−"; }
.mobile-menu .m-group .m-sub {
  display: flex; flex-direction: column;
  padding: 4px 0 16px 16px;
  gap: 0;
}
.mobile-menu .m-group .m-sub a {
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 0;
  color: rgba(246,242,234,0.8);
}

/* =========================================================
   Mode landing page temporaire (one-page)
   ========================================================= */
.lp-nav { gap: 26px; }
.lp-hero { min-height: 78vh; }
.lp-hero-title-line {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.25rem, 5.15vw, 4rem);
}
.lp-hero-subtitle-line {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.15rem, 4.6vw, 3.2rem);
}
.lp-center { justify-content: center; }
.lp-nowrap { white-space: nowrap; }
.lp-cards .card-svc { cursor: default; }
.lp-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 40px auto 36px;
  text-align: left;
}
.lp-contact-item {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--c-grey-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
a.lp-contact-item:hover { transform: translateY(-3px); border-color: var(--c-burgundy); }
.lp-contact-item .lab {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-grey-metal);
  margin-bottom: 8px;
}
.lp-contact-item .val { display: block; font-size: 17px; line-height: 1.5; }

/* --- Présentation éditoriale --- */
.lp-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.lp-split .lp-copy p { max-width: 46ch; color: rgba(18,18,18,0.72); }
.lp-figure {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(18,18,18,0.45);
}
.lp-figure img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.lp-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18,18,18,0.35));
}
.lp-badge {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  background: var(--c-burgundy);
  color: var(--c-ivory);
  padding: 18px 26px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}
.lp-badge span {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.85;
}
.lp-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid rgba(18,18,18,0.12);
  padding-top: 28px;
}
.lp-facts b {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-burgundy);
}
.lp-facts span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
}

/* --- Services --- */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  align-items: stretch;
  gap: 20px;
}
.lp-cards .card-svc {
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 26px 30px;
  border-bottom: 1px solid rgba(246,242,234,0.12);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(246,242,234,0.05), rgba(246,242,234,0.01));
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.lp-cards .card-svc:hover { transform: translateY(-4px); border-color: rgba(246,242,234,0.28); }
.lp-cards .card-svc .num {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-burgundy);
  margin-bottom: 18px;
}
.lp-cards .card-svc h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
  min-height: calc(2 * 1.3em);
}
.lp-cards .card-svc p { font-size: 14.5px; line-height: 1.65; color: rgba(246,242,234,0.62); margin: 0; flex: 1 0 auto; }

/* --- Localisation --- */
.lp-loc {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  margin-top: 8px;
}
.lp-loc-card {
  background: var(--c-graphite);
  color: var(--c-ivory);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.lp-loc-card dl { margin: 0; display: grid; gap: 18px; }
.lp-loc-card dt {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,242,234,0.5); margin-bottom: 4px;
}
.lp-loc-card dd { margin: 0; font-size: 16.5px; line-height: 1.6; }
.lp-loc-card dd a {
  color: var(--c-ivory);
  transition: color 300ms var(--ease);
}
.lp-loc-card dd a:hover { color: var(--c-burgundy); }
.lp-map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(18,18,18,0.12);
}
.lp-map iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* --- Contact final --- */
.lp-final { position: relative; overflow: hidden; }
.lp-final-bg { position: absolute; inset: 0; }
.lp-final-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.lp-final-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(122,30,36,0.45), transparent 55%),
    linear-gradient(180deg, rgba(18,18,18,0.9), rgba(18,18,18,0.96));
}
.lp-final .container { position: relative; z-index: 2; }
.lp-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  text-align: left;
}
.lp-final-grid h2 { margin: 16px 0 18px; }
.lp-final-grid > div > p { color: rgba(246,242,234,0.68); max-width: 42ch; }
.lp-final-grid .cta-row { justify-content: flex-start; margin-top: 28px; }
.lp-contact { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: none; margin: 0; text-align: left; }
.lp-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(246,242,234,0.14);
  border-radius: 4px;
  background: rgba(246,242,234,0.04);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
a.lp-contact-item:hover {
  transform: translateY(-3px);
  border-color: var(--c-burgundy);
  background: rgba(122,30,36,0.14);
}
.lp-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-burgundy);
  color: var(--c-ivory);
}
.lp-contact-icon svg { width: 20px; height: 20px; }
.lp-contact-item .lab {
  display: block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,242,234,0.5);
  margin-bottom: 4px;
}
.lp-contact-item .val { display: block; font-size: 16.5px; line-height: 1.45; }

@media (max-width: 1024px) {
  .lp-split, .lp-loc, .lp-final-grid { grid-template-columns: 1fr; }
  .lp-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lp-figure { order: -1; }
  .lp-figure img { aspect-ratio: 16 / 10; }
  .lp-hero .hero-content,
  .lp-about-intro,
  .lp-services .section-header,
  .lp-loc > .section-header,
  .lp-final-grid > div:first-child { text-align: center; align-items: center; }
  .lp-hero .cta-row,
  .lp-about-intro .btn,
  .lp-final-grid .cta-row { justify-content: center; }
  .lp-about-intro p,
  .lp-final-grid > div:first-child > p { margin-left: auto; margin-right: auto; }
  .lp-facts { justify-content: center; }
}

@media (max-width: 767px) {
  .lp-nav { display: none; }
  .lp-hero { min-height: 68vh; }
  .lp-hero .hero-content { text-align: center; }
  .lp-hero .cta-row { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .lp-hero .cta-row .btn { width: 100%; max-width: 320px; }
  .lp-hero h1 { font-size: clamp(28px, 8.2vw, 40px); line-height: 1.12; }
  .lp-hero .lp-hero-title-line { font-size: clamp(19px, 6.7vw, 40px); }
  .lp-hero .lede { font-size: 15px; line-height: 1.6; max-width: 46ch; margin-left: auto; margin-right: auto; }
  .lp-facts { grid-template-columns: 1fr 1fr; gap: 18px; justify-items: center; }
  .lp-cards { grid-template-columns: 1fr; }
  .lp-cards .card-svc { text-align: center; padding: 26px 18px; }
  .lp-contact { grid-template-columns: 1fr; }
  .lp-contact-item { gap: 12px; padding: 16px 14px; text-align: center; flex-direction: column; }
  .lp-contact-icon { width: 40px; height: 40px; }
  .lp-contact-icon svg { width: 18px; height: 18px; }
  .lp-contact-item .val { font-size: 15px; }
  .lp-final-grid { text-align: center; }
  .lp-final-grid .cta-row { justify-content: center; }
  .lp-loc-card { text-align: center; }
  .lp-loc-card .cta-row { justify-content: center; }
  .lp-about-grid,
  .lp-split { text-align: center; }
  .lp-about-intro .btn,
  .lp-split .cta-row { margin-left: auto; margin-right: auto; }
  .section-head { margin-bottom: 36px; }
  .section-head h2,
  .lp-about-intro h2 { font-size: clamp(24px, 7vw, 34px); line-height: 1.15; }
  .lp-final-grid h2 { font-size: clamp(19px, 5.4vw, 30px); line-height: 1.2; }
  .lp-nowrap { white-space: nowrap; }
  .lp-about-intro { margin-left: auto; margin-right: auto; }
  .lp-fact > div { max-width: none; }
  .lp-hero h1,
  .lp-hero h1 span,
  .lp-about-intro h2,
  .lp-services h2,
  .lp-loc h2,
  .lp-final-grid h2,
  .lp-contact-item .val { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
}


/* --- Section présentation (sobre & simple) --- */
.lp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.lp-about-intro { max-width: 46ch; }
.lp-about-intro h2 { margin: 18px 0 22px; }
.lp-about-intro p {
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.65;
  color: rgba(18,18,18,0.7);
}
.lp-about-intro .btn { margin-top: 34px; }

.lp-about-facts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(18,18,18,0.12);
}

.lp-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-bottom: 1px solid rgba(18,18,18,0.12);
}

.lp-fact > div { max-width: 62ch; }

.lp-fact p + p { margin-top: 10px; }

.lp-fact-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--c-burgundy);
}

.lp-fact h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--c-graphite);
}

.lp-fact p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(18,18,18,0.58);
}

@media (max-width: 1024px) {
  .lp-about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .lp-about-intro { max-width: none; }
  .lp-about-facts { width: 100%; }
}

/* Eyebrow sans filet (hero landing) */
.eyebrow-plain { display: inline-block; text-align: center; line-height: 1.7; }
.eyebrow-plain::before { display: none; }
.eb-sep { display: none; }

/* Version desktop d'origine */
@media (min-width: 1025px) {
  .eb-sep { display: inline; }
  .eb-br { display: none; }
  .lp-fact {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    text-align: left;
    gap: 0;
  }
  .lp-fact-num { padding-top: 4px; }
  .lp-fact > div { max-width: 62ch; }
}

/* ==========================================================
   Responsive mobile (≤767px) et tablette (768–1024px)
   Aucune règle ci-dessous ne s'applique au-dessus de 1025px.
   ========================================================== */

/* --- Tablette : vraie étape intermédiaire, max 2 colonnes --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .container,
  .container-narrow { padding: 0 40px; }
  .cards-grid,
  .lp-cards,
  .gallery-grid,
  .local-grid,
  .process,
  .stats,
  .trust-bar,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-svc { padding: 34px 28px; }
}

/* --- Mobile : une seule colonne, largeurs fluides --- */
@media (max-width: 767px) {
  .container,
  .container-narrow { padding: 0 20px; }
  .cards-grid,
  .lp-cards,
  .gallery-grid,
  .local-grid,
  .process,
  .stats,
  .trust-bar,
  .footer-grid,
  .info-grid,
  .related,
  .contact-grid,
  .bullets,
  .lp-contact,
  .lp-loc,
  .lp-final-grid,
  .lp-about-grid,
  .lp-split,
  .split,
  .feature-dark .container { grid-template-columns: minmax(0, 1fr); }
  .lp-facts { grid-template-columns: minmax(0, 1fr); }

  .trust-bar > div,
  .stat,
  .step,
  .info-item { border-right: 0; padding-right: 0; }

  /* Zones tactiles ≥ 44px */
  .btn,
  .mobile-menu a,
  .mobile-menu summary,
  .menu-toggle,
  .lp-contact-item,
  .footer-col a { min-height: 44px; display: flex; align-items: center; }
  .btn { justify-content: center; width: 100%; max-width: 340px; }
  .cta-row { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .menu-toggle { width: 44px; height: 44px; justify-content: center; }
  .lp-contact-item { flex-direction: column; justify-content: center; }
  .footer-col a { min-height: 40px; }

  /* Footer centré, tous les éléments conservés */
  .site-footer .footer-grid,
  .site-footer .footer-col,
  .site-footer .footer-bottom { text-align: center; }
  .site-footer .footer-bottom { flex-direction: column; gap: 12px; align-items: center; }
  .footer-col a { justify-content: center; }

  /* Images nettes et non déformées */
  .split-img,
  .gal-item { aspect-ratio: 4 / 3; }
  .split-img img,
  .gal-item img,
  .lp-figure img,
  .hero-bg img,
  .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }

  /* Hiérarchie typographique conservée, tailles réduites */
  h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6.6vw, 2rem); }
  h3 { font-size: 1.08rem; }
  .lede { font-size: 1rem; }
  section { padding: 56px 0; }
  .subhero { padding: 116px 0 56px; }

  /* Champs de formulaire confortables (si un formulaire existe) */
  input, select, textarea {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }
  textarea { min-height: 132px; }
  label, .consent { font-size: 0.95rem; line-height: 1.5; }
}

/* Tablette : navigation desktop conservée sur la landing (pas de hamburger) */
@media (min-width: 768px) and (max-width: 1024px) {
  .lp-body .main-nav.lp-nav,
  .lp-body .header-ctas { display: flex; }
  .lp-body .main-nav.lp-nav { gap: 16px; }
  .lp-body .main-nav.lp-nav a { font-size: 0.74rem; }
  /* Deux colonnes là où c'est plus lisible */
  .contact-grid,
  .related,
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
   Pages légales
   ========================================================= */
.legal-body { background: var(--ivory, #F6F2EA); color: var(--c-graphite, #121212); }
.legal-main { padding: 96px 0 64px; }
.legal-wrap { max-width: 820px; }
.legal-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A1E24;
  margin: 0 0 8px;
}
.legal-wrap h1,
.legal-wrap h2 { color: var(--c-graphite, #121212); }
.legal-lede { font-size: 1.05rem; line-height: 1.5; color: #4a4a47; margin-bottom: 0; }
.legal-wrap section { padding: 0; margin-top: 12px; }
.legal-wrap h2 { font-size: 1.35rem; margin: 0 0 6px; }
.legal-wrap p,
.legal-list li { line-height: 1.5; color: #4a4a47; }
.legal-wrap p { margin: 0 0 8px; }
.legal-wrap p:last-child { margin-bottom: 0; }
.legal-list { list-style: none; padding: 0; margin: 0 0 8px; }
.legal-list:last-child { margin-bottom: 0; }
.legal-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
.legal-list li:last-child { margin-bottom: 0; }
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: #7A1E24;
}
.legal-wrap a { color: #7A1E24; text-decoration: none; }
.legal-wrap a:hover { opacity: 0.75; }


/* Liens légaux du pied de page */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 0 18px;
  border-top: 1px solid rgba(246, 242, 234, 0.12);
  font-size: 0.86rem;
}
.footer-legal a,
.footer-legal-btn {
  color: inherit;
  opacity: 0.72;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-legal a:hover,
.footer-legal-btn:hover { opacity: 1; color: #C8A25B; }

/* =========================================================
   Bandeau et panneau de consentement (montés côté client)
   ========================================================= */
.cc-root {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 16px;
  display: flex;
  justify-content: center;
}
.cc-root-modal {
  inset: 0;
  align-items: center;
  background: rgba(18, 18, 18, 0.6);
  overflow-y: auto;
}
.cc-banner,
.cc-panel {
  width: 100%;
  max-width: 1080px;
  background: #1E1E1E;
  color: #F6F2EA;
  border: 1px solid rgba(246, 242, 234, 0.14);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.cc-panel { max-width: 640px; }
.cc-banner h2,
.cc-panel h2 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.cc-banner p,
.cc-panel p { margin: 0; font-size: 0.9rem; line-height: 1.7; opacity: 0.82; }
.cc-link { color: #C8A25B; text-decoration: underline; }
.cc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.cc-btn {
  flex: 1 1 220px;
  min-height: 46px;
  padding: 12px 18px;
  font: inherit;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 2px;
  background: transparent;
  color: #F6F2EA;
  border: 1px solid rgba(246, 242, 234, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cc-btn:hover { background: #7A1E24; border-color: #7A1E24; }
.cc-state { margin-top: 10px !important; font-size: 0.82rem !important; }
.cc-rows { margin-top: 18px; display: grid; gap: 14px; }
.cc-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(246, 242, 234, 0.12);
  border-radius: 3px;
  cursor: pointer;
}
.cc-row input { margin-top: 4px; width: 18px; height: 18px; accent-color: #7A1E24; }
.cc-row strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.cc-row em { font-style: normal; font-size: 0.82rem; line-height: 1.6; opacity: 0.72; }
.cc-note { margin-top: 16px !important; font-size: 0.8rem !important; }

@media (max-width: 767px) {
  .legal-main { padding: 84px 0 48px; }
  .footer-legal { justify-content: center; text-align: center; }
  .cc-btn { flex: 1 1 100%; }
  .cc-banner, .cc-panel { padding: 20px; }
}
