/* ============================================================
   LBPP — Plâtrerie & Peinture · Direction A v2
   Standalone mockup CSS · base prête à porter en thème Concrete
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --linen:        #f0ece4;
  --linen-light:  #f6f2ea;
  --linen-dark:   #e6decf;
  --earth:        #1a1715;
  --earth-mid:    #2e2823;
  --earth-soft:   #5a4f44;
  --brown:        #a67d54;
  --brown-light:  #c9a47e;
  --brown-soft:   #e7d4ba;
  --warm-grey:    #9a9080;
  --white:        #faf8f4;
  --line:         rgba(26, 23, 21, 0.1);
  --line-strong:  rgba(26, 23, 21, 0.18);

  /* Typo */
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  /* Layout */
  --section-px:   clamp(1.25rem, 5vw, 5.5rem);
  --section-py:   clamp(4rem, 8vw, 8rem);
  --radius-sm:    4px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   cubic-bezier(0.65, 0, 0.35, 1);

  /* Sizing */
  --nav-h:        80px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

/* Tout le thème est scopé sous .lbpp-theme pour ne pas
   interférer avec l'UI admin de Concrete CMS */
.lbpp-theme {
  background: var(--linen);
  color: var(--earth);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip; /* clip ne casse pas position:sticky contrairement à hidden */
}
.lbpp-theme a { text-decoration: none; color: inherit; transition: color 0.25s ease, opacity 0.25s ease; }
.lbpp-theme p a:not([class]),
.lbpp-theme blockquote a:not([class]),
.lbpp-theme .layout-container li a:not([class]) { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.lbpp-theme p a:not([class]):hover,
.lbpp-theme blockquote a:not([class]):hover,
.lbpp-theme .layout-container li a:not([class]):hover { color: var(--brown-light); }
.lbpp-theme ul { list-style: none; }
.lbpp-theme img { display: block; max-width: 100%; user-select: none; -webkit-user-drag: none; }
.lbpp-theme button { cursor: pointer; background: none; border: none; font-family: inherit; }


.layout-container {
  padding: var(--section-py) var(--section-px);
}
.layout-container--flush {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.layout-container--narrow {
  padding: var(--section-py) var(--section-px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.lbpp-theme .layout-container ul:not([class]) { list-style: disc; padding-left: 1.5rem; padding-top: 8px; }
.lbpp-theme .layout-container ul:not([class]) li { line-height: 1.6; margin-bottom: 8px; padding-left: 6px; }
.lbpp-theme .layout-container ul:not([class]) li p { margin-bottom: 0; }

/* ── Typography ─────────────────────────────────────────────── */
.lbpp-theme h1,
.lbpp-theme h1 p,
.lbpp-theme h2,
.lbpp-theme h3,
.lbpp-theme h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.015em; color: var(--earth); }
.lbpp-theme h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.05; }
.lbpp-theme h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 600; }
.lbpp-theme h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 600; }
.lbpp-theme h4 { font-size: 1.05rem; font-weight: 600; }
.lbpp-theme p  { color: var(--earth-soft); }
.lbpp-theme em { font-style: italic; color: var(--brown); font-weight: 500; }
.highlight { font-style: italic; color: var(--brown); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brown);
}
.eyebrow--light { color: var(--brown-light); }
.eyebrow--light::before { background: var(--brown-light); }
.eyebrow--center::before { display: none; }

.lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--earth-soft);
}


/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--transition);
  border: 1.5px solid transparent;
  margin-top: 15px;
}
.lbpp-theme .btn--dark    { background: var(--earth); color: var(--linen); border-color: var(--earth); }
.lbpp-theme .btn--dark:hover    { background: var(--earth-mid); border-color: var(--earth-mid); color: var(--linen); }
.lbpp-theme .btn--outline { background: transparent; color: var(--earth); border-color: var(--earth); }
.lbpp-theme .btn--outline:hover { background: var(--earth); color: var(--linen); }
.lbpp-theme .btn--light   { background: var(--linen); color: var(--earth); border-color: var(--linen); }
.lbpp-theme .btn--light:hover   { background: transparent; color: var(--linen); border-color: var(--linen); }
.btn--full    { width: 100%; }


/* ── Reveal ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--transition), transform 0.85s var(--transition);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }


/* ============================================================
   NAV
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--section-px);
  height: var(--nav-h);
  background: var(--linen);
  border-bottom: 1px solid transparent;
  transition: transform 0.35s var(--transition), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.navbar.nav--hidden {
  transform: translateY(-100%);
}
.navbar.scrolled {
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 24px rgba(26, 23, 21, 0.05);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 50px;
  color: var(--earth);
}
.nav__logo svg { height: 100%; width: auto; }
.nav__logo img { height: 100%; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
  margin-bottom: 0; /* reset Bootstrap dl,ol,ul { margin-bottom: 1rem } */
}
.nav__links > li { position: relative; }
.nav__links a,
.nav__links .nav__parent {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth);
  opacity: 0.75;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__links a:hover { opacity: 1; }
.nav__links li.active > a { opacity: 1; color: var(--brown); }

/* Dropdown */
.nav__parent {
  cursor: default;
  user-select: none;
}
.nav__parent::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 0.1rem;
  transition: transform 0.25s ease;
}
.nav__has-dropdown:hover .nav__parent { opacity: 1; }
.nav__has-dropdown:hover .nav__parent::after { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0;
  background: var(--linen-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -15px rgba(26, 23, 21, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  list-style: none;
}
.nav__has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.75rem 1.35rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  opacity: 0.85;
}
.nav__dropdown a:hover {
  background: var(--linen-dark);
  opacity: 1;
  color: var(--brown);
}


/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--earth); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── Mobile nav ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  flex-direction: column;
  background: var(--linen);
  padding: calc(var(--nav-h) + 5rem) var(--section-px) 6rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav .mobile-link,
.mobile-nav .mobile-parent {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--earth);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav .mobile-parent {
  cursor: pointer;
}
.mobile-nav .mobile-parent::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--earth);
  transition: transform 0.3s ease;
}
.mobile-nav .mobile-parent.is-open::after {
  content: '−';
}
.mobile-nav .mobile-children {
  overflow: hidden;
  height: 0;
  transition: height 0.4s var(--transition);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .mobile-children-inner {
  padding: 0.5rem 0 1.2rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-nav .mobile-children a {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--earth-soft);
  padding: 0.5rem 0;
}
.mobile-nav .mobile-children a:hover { color: var(--brown); }

.mobile-nav .mobile-contact {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--earth-soft);
}
.mobile-nav .mobile-contact a {
  display: block;
  margin-top: 0.4rem;
  font-weight: 500;
  color: var(--earth);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 3fr 2.5fr;
  min-height: clamp(520px, 80vh, 760px);
  background: var(--linen);
}
.hero__content {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--earth);
  margin: 1.5rem 0 1.5rem;
  letter-spacing: -0.015em;
}
.hero__title em {
  font-style: italic;
  color: var(--brown);
  font-weight: 500;
}
.hero__lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--earth-soft);
  max-width: 580px;
  margin-bottom: 1.8rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  overflow: hidden;
  background: var(--linen-dark);
}
.hero__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}


/* ============================================================
   SERVICES (homepage) — fullbleed style
   ============================================================ */
.home-services-teaser {
  background: var(--linen);
}
.home-services-teaser__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 760px;
}
.home-services-teaser__head .eyebrow { margin-bottom: 1.4rem; }
.home-services-teaser__head h2 { line-height: 1.1; }
.home-services-teaser__head h2 em { font-style: italic; color: var(--brown); font-weight: 500; }

.home-services-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--earth);
  color: var(--linen);
  cursor: pointer;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--transition), opacity 0.6s ease;
  opacity: 0.85;
}
.service-card:hover img {
  transform: scale(1.04);
  opacity: 0.6;
}
.service-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  background: linear-gradient(180deg, transparent 0%, rgba(26, 23, 21, 0.78) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-card__num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}
.service-card__num::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--brown-light);
}
.lbpp-theme .service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 600;
  color: var(--linen);
  line-height: 1.15;
  margin: 0 0 0.2rem;
}
.lbpp-theme .service-card__desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.8);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}
.service-card__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.service-card__link::after { content: '→'; transition: transform 0.3s ease; }
.service-card:hover .service-card__link::after { transform: translateX(5px); }


/* ============================================================
   REALISATIONS — simple gallery, no radius
   ============================================================ */
.home-realisations-teaser {
  background: var(--linen-light);
}
.home-realisations-teaser__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
}
.home-realisations-teaser__head .eyebrow { margin-bottom: 1.4rem; }
.home-realisations-teaser__head h2 { line-height: 1.1; }
.home-realisations-teaser__head h2 em { font-style: italic; color: var(--brown); font-weight: 500; }

.home-realisations-teaser__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 1rem;
}
.real-card {
  position: relative;
  overflow: hidden;
  background: var(--linen-dark);
}
.real-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--transition);
}
.real-card:hover img { transform: scale(1.04); }
.real-card--large {
  grid-row: 1 / span 2;
}

@media (max-width: 960px) {
  .home-realisations-teaser__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .real-card--large { grid-row: 1; grid-column: 1 / span 2; }
}
@media (max-width: 600px) {
  .home-realisations-teaser__grid {
    grid-template-rows: 220px 200px 200px;
  }
}


/* ============================================================
   ABOUT teaser — split simple, no radius
   ============================================================ */
.home-about-teaser__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.home-about-teaser__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--linen-dark);
}
.home-about-teaser__image img { width: 100%; height: 100%; object-fit: cover; }
.home-about-teaser__content .eyebrow { margin-bottom: 1.4rem; }
.home-about-teaser__content h2 {
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.home-about-teaser__content h2 em { font-style: italic; color: var(--brown); font-weight: 500; }
.home-about-teaser__content p { margin-bottom: 1rem; }
.home-about-teaser__cta { margin-top: 1.5rem; }

@media (max-width: 960px) {
  .home-about-teaser__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ============================================================
   ABOUT PAGE (full page)
   ============================================================ */
/* Page hero générique — utilisé par default.php */
.default-hero {
  background: var(--linen);
  padding: clamp(3rem, 6vw, 6rem) var(--section-px) clamp(2rem, 4vw, 4rem);
}
.default-hero__breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.default-hero__breadcrumb a:hover { color: var(--brown); }
.default-hero__breadcrumb span { opacity: 0.4; }
.default-hero__title {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.default-hero__title em { font-style: italic; color: var(--brown); }
.default-hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--earth-soft);
  max-width: 640px;
}

.about-hero {
  background: var(--linen);
  padding: clamp(3rem, 6vw, 6rem) var(--section-px) clamp(2rem, 4vw, 4rem);
}
.about-hero__breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.about-hero__breadcrumb a:hover { color: var(--brown); }
.about-hero__breadcrumb span { opacity: 0.4; }
.about-hero__title {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.about-hero__title em { font-style: italic; color: var(--brown); }
.about-hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--earth-soft);
  max-width: 840px;
}

.about-portrait {
  width: 100%;
  height: clamp(320px, 60vw, 640px);
  overflow: hidden;
  background: var(--linen-dark);
}
/* Forcer la hauteur sur l'img (même logique que service-cover)
   pour contraindre l'overlay Concrete à la bonne taille en mode édition */
.about-portrait img {
  width: 100% !important;
  height: clamp(320px, 60vw, 640px) !important;
  object-fit: cover !important;
  object-position: center 30% !important;
  display: block !important;
  max-height: none !important;
}

.about-story {
  background: var(--linen-light);
}
.about-story__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.about-story__sidebar { padding-top: 0.5rem; }
.about-story__sidebar .eyebrow { margin-bottom: 1.2rem; }
.about-story__sidebar h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.about-story__sidebar h2 em { font-style: italic; color: var(--brown); font-weight: 500; }
.about-story__content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--earth-soft);
  margin-bottom: 1.2rem;
}
.about-story__content p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  margin: 0.4rem 0.6rem 0 0;
  color: var(--brown);
}
.about-story__content p strong { color: var(--earth); font-weight: 600; }

@media (max-width: 960px) {
  .about-story__layout { grid-template-columns: 1fr; gap: 2rem; }
}


.about-process {
  background: var(--earth);
  color: var(--linen);
}
.about-process__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
}
.about-process__head .eyebrow { color: var(--brown-light); margin-bottom: 1.4rem; }
.about-process__head .eyebrow::before { background: var(--brown-light); }
.about-process__head h2 { color: var(--linen); }
.about-process__head h2 em { color: var(--brown-light); font-style: italic; font-weight: 500; }

.about-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.process-step {
  border-top: 1px solid rgba(240, 235, 224, 0.15);
  padding-top: 1.2rem;
}
.process-step__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown-light);
  margin-bottom: 0.8rem;
  display: block;
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240, 235, 224, 0.65);
}

@media (max-width: 960px) {
  .about-process__steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .about-process__steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

.about-cta {
  background: var(--linen);
  text-align: center;
}
.about-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.about-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 1rem 0 1.5rem;
  font-weight: 500;
}
.about-cta h2 em { font-style: italic; color: var(--brown); font-weight: 500; }
.about-cta p {
  font-size: 1.05rem;
  color: var(--earth-soft);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   GALLERY (wide — used on about page)
   ============================================================ */
.gallery-wide {
  background: var(--linen-light);
}
.gallery-wide__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
}
.gallery-wide__head .eyebrow { margin-bottom: 1.4rem; }
.gallery-wide__head h2 em { font-style: italic; color: var(--brown); font-weight: 500; }



/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--earth-soft);
  max-width: 640px;
}

.page-content {
  background: var(--linen-light);
}

.contact-info { padding-top: 0.5rem; }
.contact-info .eyebrow { margin-bottom: 1.2rem; }
.contact-info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.contact-info h2 em { font-style: italic; color: var(--brown); font-weight: 500; }
.contact-info > p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--earth-soft);
  margin-bottom: 2rem;
  max-width: 380px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: var(--earth);
  color: var(--brown-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info__detail span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.contact-info__detail a,
.contact-info__detail p {
  font-size: 1rem;
  color: var(--earth);
  font-weight: 500;
  margin: 0;
}
.contact-info__detail a:hover { color: var(--brown); }
.contact-info__hours {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.contact-info__hours h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.8rem;
}
.contact-info__hours dl {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.4rem 1.5rem;
  font-size: 0.95rem;
}
.contact-info__hours dt { color: var(--earth-soft); }
.contact-info__hours dd { color: var(--earth); font-weight: 500; }

.contact-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form__head {
  margin-bottom: 0.5rem;
}
.contact-form__head h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.contact-form__head p {
  font-size: 0.92rem;
  color: var(--earth-soft);
  margin: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--earth);
  background: var(--linen);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown);
  background: var(--white);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--font-sans);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--earth-soft);
  pointer-events: none;
}
.form-success {
  font-size: 0.92rem;
  color: #3a6a3a;
  padding: 0.9rem 1rem;
  background: rgba(58, 106, 58, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 106, 58, 0.2);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}


.contact-cta-strip {
  background: var(--earth);
  color: var(--linen);
  padding: clamp(2rem, 4vw, 3rem) var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-cta-strip h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--linen);
  margin: 0;
  font-weight: 500;
}
.contact-cta-strip h3 em { font-style: italic; color: var(--brown-light); font-weight: 500; }
.contact-cta-strip__actions { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--earth);
  color: var(--linen);
  padding: clamp(3rem, 5vw, 5rem) var(--section-px) 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(240, 235, 224, 0.1);
}
.footer__brand .footer__logo {
  display: inline-flex;
  height: 110px;
  color: var(--linen);
  margin-bottom: 1.2rem;
}
.footer__brand .footer__logo svg { height: 100%; width: auto; }
.footer__brand .footer__logo img { height: 100%; width: auto; filter: brightness(0) invert(1); }
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240, 235, 224, 0.55);
  max-width: 290px;
  margin-top: 1rem;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a,
.footer__col p {
  font-size: 0.92rem;
  color: rgba(240, 235, 224, 0.7);
}


.footer__col a:hover { color: var(--brown-light); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(240, 235, 224, 0.7);
  line-height: 0.9rem;
}
.footer__contact-item svg { flex-shrink: 0; opacity: 0.7; }
.footer__contact-item a:hover { color: var(--brown-light); }

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(240, 235, 224, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom a { color: rgba(240, 235, 224, 0.55); }
.footer__bottom a:hover { color: var(--brown-light); }


/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-hero {
  background: var(--linen);
  padding: clamp(3rem, 6vw, 6rem) var(--section-px) clamp(2rem, 4vw, 4rem);
}
.service-hero__breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.service-hero__breadcrumb a:hover { color: var(--brown); }
.service-hero__breadcrumb span { opacity: 0.4; }
.service-hero__title,
.service-hero__title p {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
  color: var(--earth);
}
.service-hero__title em,
.service-hero__title p em { font-style: italic; color: var(--brown); }
.service-hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--earth-soft);
  max-width: 700px;
}

.service-cover {
  width: 100%;
  height: clamp(280px, 50vw, 540px);
  overflow: hidden;
  background: var(--linen-dark);
}
/* Forcer la hauteur directement sur l'img avec !important —
   CSS !important surpasse les attributs width/height inline que Concrete injecte.
   Les wrappers (figure, div) prennent alors automatiquement cette hauteur,
   ce qui contraint aussi l'overlay de sélection Concrete à la bonne taille. */
.service-cover img {
  width: 100% !important;
  height: clamp(280px, 50vw, 540px) !important;
  object-fit: cover !important;
  display: block !important;
  max-height: none !important;
}

.service-body {
  background: var(--linen-light);
}
.service-body__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.service-body__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.service-body__sidebar h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.2rem;
}
.service-body__nav { display: flex; flex-direction: column; gap: 0.4rem; }
.service-body__nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--earth);
  border: 1px solid transparent;
  background: var(--white);
}
.service-body__nav a:hover { border-color: var(--line); }
.service-body__nav a.is-active {
  background: var(--earth);
  color: var(--linen);
  border-color: var(--earth);
}
.service-body__nav-num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brown);
  opacity: 0.7;
}
.service-body__nav a.is-active .service-body__nav-num { color: var(--brown-light); opacity: 1; }

.service-body__content h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  margin: 3rem 0 1rem;
}
.service-body__content h2:first-child { margin-top: 0; }
.service-body__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--earth-soft);
  margin-bottom: 1rem;
}
.service-body__content p strong { color: var(--earth); font-weight: 600; }


/* Bloc Gallery natif Concrete — gouttières entre vignettes */
.lbpp-theme .ccm-block-gallery .row {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}
.lbpp-theme .ccm-block-gallery-image {
  overflow: hidden;
  background: var(--linen-dark);
}
.lbpp-theme .ccm-block-gallery-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.lbpp-theme .ccm-block-gallery-image-overlay-color {
  background: rgba(26, 23, 21, 0.45) !important;
}


.service-cta {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--earth);
  color: var(--linen);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.service-cta h3 {
  color: var(--linen);
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 0.8rem;
}
.service-cta h3 em { color: var(--brown-light); }
.service-cta p { color: rgba(240, 235, 224, 0.65); font-size: 0.95rem; margin: 0; }
.service-cta__actions { display: flex; gap: 1rem; justify-content: flex-end; }

@media (max-width: 960px) {
  .service-body__layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-body__sidebar { position: static; order: 2; }
  .service-body__content { order: 1; }
  .service-cta { grid-template-columns: 1fr; }
  .service-cta__actions { justify-content: flex-start; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .mobile-nav { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__image {
    order: -1;
    height: clamp(280px, 50vw, 420px);
  }
  .hero__content { padding: 3rem var(--section-px); }
  .hero__lead { max-width: 100%; }

  .home-services-teaser__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 600px) {
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero__actions .btn { width: 100%; }

  .home-services-teaser__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom-links { flex-direction: column; gap: 0.5rem; }
}



/* ── Oxima credit ───────────────────────────────────────────── */
.oxicopywrite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.oxicopywrite img {
  width: 56px;
  height: auto;
  vertical-align: text-top;
  display: inline-block;
  filter: brightness(0) invert(0.4);
  opacity: 0.6;
  transition: opacity 0.25s ease;
  margin-top: -4px;
}
.oxicopywrite:hover img {
  opacity: 1;
}


/* ============================================================
   CONCRETE CMS — MODE ÉDITION
   ============================================================ */

/* 1. Désactiver les animations reveal — les éléments doivent être visibles */
.ccm-edit-mode .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* 2. Désactiver le scroll-hide de la navbar */
.ccm-edit-mode .navbar {
  position: relative !important;
  transform: none !important;
  z-index: auto !important;
}

/* 3. Cacher la nav mobile (inutile en édition) */
.ccm-edit-mode .mobile-nav {
  display: none !important;
}

/* 4. Laisser les contours verts Concrete s'afficher correctement
      — les overflow:hidden sur les conteneurs les masquent */
.ccm-edit-mode .service-body__content,
.ccm-edit-mode .home-about-teaser__image {
  overflow: visible !important;
}

/* 4b. Service cards en mode édition */
.ccm-edit-mode .service-card { overflow: visible !important; }

/* 5. S'assurer que les areas vides ont une hauteur minimale visible */
.ccm-edit-mode .ccm-area-block-content:empty,
.ccm-edit-mode [data-area-id]:empty {
  min-height: 60px;
}

/* 6. Hero image — forcer les wrappers Concrete à hériter la hauteur de la grille */
.ccm-edit-mode .hero__image,
.ccm-edit-mode .hero__image > div,
.ccm-edit-mode .hero__image .ccm-area-block-content,
.ccm-edit-mode .hero__image .ccm-block-edit,
.ccm-edit-mode .hero__image .ccm-block-edit > div {
  height: 100% !important;
  min-height: clamp(520px, 80vh, 760px);
}

