/* ============================================================
   ORCHOT THEME — main.css
   Charte : Rouge #E63946 & Blanc — Syne + Inter
   ============================================================ */

/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  --red:          #e63946;
  --red-light:    #ff4d5a;
  --red-pale:     #FFF0F1;
  --red-bg:       #FFFAFA;
  --noir:         #111111;
  --gris:         #2A2A2A;
  --gris-mid:     #666666;
  --gris-light:   #999999;
  --gris-soft:    #E8E8E8;
  --border:       #EBEBEB;
  --blanc:        #FFFFFF;
  --off-white:    #F9F9F7;
  --cream:        #F5F3EF;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.04);
  --shadow-md:    0 8px 30px rgba(0,0,0,.06);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.08);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --container:    1280px;
  --container-narrow: 960px;
  --header-h:     80px;
  --section-gap:  clamp(5rem, 10vw, 9rem);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gris);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Skip link */
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 9999;
  padding: 8px 16px; background: var(--red); color: var(--blanc);
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  color: var(--noir);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: 2em 0 .75em; }
.entry-content ul,
.entry-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .4em; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content blockquote {
  border-left: 3px solid var(--red); padding: 1.25em 1.75em;
  background: var(--red-pale); margin: 2.5em 0;
  font-family: var(--font-display); font-size: 1.15rem; font-style: normal;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: var(--section-gap) 0;
}

/* ── 5. BOUTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85em 2em;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s cubic-bezier(.23,1,.32,1), color .25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

/* Fill-reveal pseudo-element (slides up on hover) */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.23,1,.32,1);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.btn:active { transform: translateY(-1px); }

/* Span inside btn — text must sit above pseudo */
.btn span, .btn > * { position: relative; z-index: 1; }

.btn--primary {
  background: var(--red); color: var(--blanc); border: 2px solid var(--red);
}
.btn--primary::before { background: var(--noir); }
.btn--primary:hover { border-color: var(--noir); color: var(--blanc); }

.btn--outline {
  background: transparent; color: var(--red); border: 2px solid var(--red);
}
.btn--outline::before { background: var(--red); }
.btn--outline:hover { color: var(--blanc); }

.btn--outline.btn--light {
  color: var(--blanc); border-color: var(--blanc);
}
.btn--outline.btn--light::before { background: var(--blanc); }
.btn--outline.btn--light:hover { color: var(--red); }

.btn--sm  { padding: .5em 1.25em; font-size: .78rem; }
.btn--lg  { padding: 1em 2.5em;  font-size: .9rem; }

/* ── 6. TOPBAR ────────────────────────────────────────────── */
.topbar {
  background: var(--noir); color: var(--blanc);
  text-align: center; padding: .5rem 1rem;
  font-size: .8rem; letter-spacing: .05em;
}

/* ── 7. HEADER ────────────────────────────────────────────── */

/* Palette mega-menu */
:root {
  --mega-bg:          #FAF8F4;   /* beige soft */
  --mega-bg-blog:     #FFFFFF;
  --mega-border:      #EDE9E4;
  --mega-cat:         var(--red); /* #e63946 */
  --mega-link:        #3D3D3D;
  --mega-link-hover:  var(--red);
  --mega-muted:       #888888;
  --mega-icon:        #AAAAAA;
  --mega-shadow:      0 16px 48px rgba(26,26,26,.10);
}

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--blanc);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
  /* No position:relative here — megamenu positions relative to .site-header */
}

/* Brand */
.site-header__brand-link {
  display: flex; flex-direction: column; line-height: 1.1;
}
.site-header__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--noir);
}
.site-header__brand-tagline {
  font-size: .7rem; color: var(--gris-mid);
  letter-spacing: .12em; text-transform: uppercase; margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
 * NAV + MEGA-MENU
 * ══════════════════════════════════════════════════════════════ */

/* Nav bar */
.site-nav { flex: 1; }
.site-nav__list {
  display: flex; align-items: center; gap: 0;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__item { position: relative; }
.site-nav__item--mega { position: static; } /* megamenu stretches full header width */

/* Lien/bouton commun */
.site-nav__link,
.site-nav__toggle {
  display: inline-flex; align-items: center; gap: .3em;
  padding: .5rem .9rem;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--gris);
  border-bottom: 2px solid transparent;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
.site-nav__link:hover,
.site-nav__toggle:hover,
.site-nav__item.current-menu-item > .site-nav__link,
.site-nav__item--mega.mega-open > .site-nav__toggle {
  color: var(--red); border-bottom-color: var(--red);
}

/* Chevron animé */
.site-nav__chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.site-nav__item--mega.mega-open .site-nav__chevron {
  transform: rotate(180deg);
}

/* ── CTA bouton "PRENDRE RDV" ── */
.btn--rdv {
  display: inline-flex; align-items: center;
  padding: .55em 1.5em;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--noir);
  border: 2px solid var(--noir);
  border-radius: 50px;
  white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .3s ease, border-color .3s ease, transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s cubic-bezier(.23,1,.32,1);
}
.btn--rdv::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: var(--red);
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.23,1,.32,1);
  z-index: -1;
}
.btn--rdv:hover::before { transform: translateY(0); }
.btn--rdv:hover { color: var(--blanc); border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230,57,70,.25); }

/* ══════════════════════════════════════════════════════════════
 * MEGA-MENU PANEL
 * ══════════════════════════════════════════════════════════════ */
.megamenu {
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 9000;
  background: var(--mega-bg);
  border-top: 2px solid var(--red);
  border-bottom: 1px solid var(--mega-border);
  box-shadow: var(--mega-shadow);

  /* Caché par défaut */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.megamenu.mega-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.megamenu__inner {
  display: grid;
  grid-template-columns: 1fr 280px;  /* services | blog */
  gap: 0;
  min-height: 280px;
}

/* ── Section services (gauche) ── */
.megamenu__services {
  padding: 2rem 2.5rem 2rem 0;
  border-right: 1px solid var(--mega-border);
}

.megamenu__cat-header {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--mega-border);
}
.megamenu__cat-icon {
  color: var(--mega-cat); flex-shrink: 0;
}
.megamenu__cat-title {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--mega-cat); margin: 0;
}
.megamenu__cat-title a {
  color: inherit; transition: opacity var(--transition);
}
.megamenu__cat-title a:hover { opacity: .75; }

/* Deux colonnes de services */
.megamenu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem 2rem;
  margin-bottom: 1.25rem;
}
.megamenu__list {
  list-style: none; margin: 0; padding: 0;
}
.megamenu__list-item { margin-bottom: .1rem; }

.megamenu__service-link {
  display: flex; align-items: center; gap: .55rem;
  padding: .42rem .5rem;
  font-size: .88rem; font-weight: 400;
  color: var(--mega-link);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}
.megamenu__service-link:hover {
  color: var(--mega-link-hover);
  background: rgba(230,57,70,.06);
  padding-left: .85rem;
}
.megamenu__service-icon {
  color: var(--mega-icon);
  flex-shrink: 0; display: flex; align-items: center;
  transition: color var(--transition);
}
.megamenu__service-link:hover .megamenu__service-icon {
  color: var(--mega-link-hover);
}

/* Voir tous */
.megamenu__see-all {
  display: inline-flex; align-items: center; gap: .3em;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mega-cat);
  transition: gap var(--transition);
}
.megamenu__see-all:hover { gap: .55em; }

.megamenu__empty {
  font-size: .88rem; color: var(--mega-muted);
}

/* ── Section blog "À la une" (droite) ── */
.megamenu__blog {
  background: var(--mega-bg-blog);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.megamenu__blog-title {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--mega-muted);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--mega-border);
  margin: 0 0 .25rem;
}
.megamenu__blog-list {
  display: flex; flex-direction: column; gap: .5rem;
  flex: 1;
}
.megamenu__blog-item {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .5rem; border-radius: var(--radius);
  transition: background var(--transition);
}
.megamenu__blog-item:hover {
  background: var(--red-bg);
}
.megamenu__blog-thumb {
  flex-shrink: 0; width: 68px; height: 52px;
  overflow: hidden; border-radius: 2px;
}
.megamenu__blog-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.megamenu__blog-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: .2rem;
}
.megamenu__blog-item-title {
  display: block;
  font-size: .85rem; font-weight: 600;
  color: var(--mega-link); line-height: 1.35;
}
.megamenu__blog-item:hover .megamenu__blog-item-title {
  color: var(--mega-link-hover);
}
.megamenu__blog-excerpt {
  font-size: .78rem; color: var(--mega-muted);
  line-height: 1.45; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.megamenu__blog-read {
  font-size: .72rem; font-weight: 600;
  color: var(--mega-cat); letter-spacing: .04em;
}
.megamenu__blog-all {
  display: block; text-align: center;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--mega-muted);
  padding: .5rem;
  border-top: 1px solid var(--mega-border);
  transition: color var(--transition);
}
.megamenu__blog-all:hover { color: var(--mega-link-hover); }

/* Burger */
.site-header__burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; padding: 0;
}
.site-header__burger span {
  display: block; height: 2px; background: var(--noir);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--noir);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .45;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(17,17,17,.45) 0%, rgba(17,17,17,.88) 100%),
    radial-gradient(ellipse at 25% 55%, rgba(230,57,70,.12) 0%, transparent 50%);
}
.hero__content {
  position: relative; z-index: 1; color: var(--blanc);
  padding-block: 6rem;
}
/* Eyebrow pill — already styled in WAAAW block, remove duplicate */
.hero__eyebrow {
  display: inline-block; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  background: rgba(230,57,70,.12); border: 1px solid rgba(230,57,70,.25);
  padding: .35em 1.1em; border-radius: 50px; margin-bottom: 1.5rem;
  font-family: var(--font-display); font-weight: 700;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem); color: var(--blanc);
  margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero__subtitle {
  font-size: 1.15rem; max-width: 520px;
  color: rgba(255,255,255,.65); margin-bottom: 3rem;
  line-height: 1.8; font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase;
}

/* ── 9. SECTION HEADER ────────────────────────────────────── */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header--center { text-align: center; }
.section-header__eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
  padding: .4em 1em;
  border: 1px solid rgba(230,57,70,.25);
  border-radius: 50px;
  background: var(--red-pale);
}
.section-header__title { margin-bottom: 1.25rem; }
.section-header__desc { max-width: 560px; color: var(--gris-mid); font-size: 1.05rem; line-height: 1.75; }
.section-header--center .section-header__desc { margin-inline: auto; }
.section-header--light .section-header__title,
.section-header--light .section-header__desc { color: var(--blanc); }
.section-header--light .section-header__eyebrow {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── 10. SERVICE CARDS ───────────────────────────────────── */
.services-cats { display: flex; flex-direction: column; gap: 3.5rem; }

.services-cat__title {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--noir); margin-bottom: 1.25rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--border);
}
.services-cat__title a { color: var(--noir); }
.services-cat__title a:hover { color: var(--red); }
.services-cat__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .45s cubic-bezier(.23,1,.32,1), transform .45s cubic-bezier(.23,1,.32,1), border-color .3s ease;
}
.service-card:hover { border-color: transparent; }
.service-card__img { overflow: hidden; }
.service-card__img img { width: 100%; height: 200px; object-fit: cover; transition: transform .7s cubic-bezier(.23,1,.32,1); }
.service-card__body { padding: 1.25rem; }
.service-card__cat {
  font-size: .7rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--red); display: block;
  margin-bottom: .5rem;
}
.service-card__title { font-size: 1.1rem; margin-bottom: .5rem; font-family: var(--font-display); }
.service-card__title a { color: var(--noir); }
.service-card__title a:hover { color: var(--red); }
.service-card__desc { font-size: .88rem; color: var(--gris-mid); margin-bottom: 1rem; }
.service-card__link { font-size: .82rem; font-weight: 600; color: var(--red); letter-spacing: .05em; }

/* ─────────────────────────────────────────────────────────────
 * ARCHIVE GRIDS — CSS Grid + GSAP filtering
 * ───────────────────────────────────────────────────────────── */
.services-archive-grid,
.realisations-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-archive-item,
.real-archive-item {
  /* items managed by CSS Grid — no float needed */
  min-width: 0;
}

/* Items hidden by filter get display:none via JS */
.service-archive-item[data-hidden],
.real-archive-item[data-hidden] {
  display: none;
}

@media (max-width: 900px) {
  .services-archive-grid,
  .realisations-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .services-archive-grid,
  .realisations-archive-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 11. RÉALISATIONS CARDS ──────────────────────────────── */

.real-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .45s cubic-bezier(.23,1,.32,1), transform .45s cubic-bezier(.23,1,.32,1), border-color .3s ease;
}
.real-card:hover { border-color: transparent; }
.real-card__img { position: relative; overflow: hidden; }
.real-card__img img { width: 100%; height: 240px; object-fit: cover; transition: transform .7s cubic-bezier(.23,1,.32,1); }
.real-card__badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: var(--blanc);
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .3em .75em;
}
.real-card__body { padding: 1.25rem; }
.real-card__title { font-size: 1.1rem; margin-bottom: .4rem; }
.real-card__title a { color: var(--noir); }
.real-card__title a:hover { color: var(--red); }
.real-card__meta { font-size: .8rem; color: var(--gris-light); margin-bottom: .6rem; }
.real-card__desc { font-size: .88rem; color: var(--gris-mid); margin-bottom: .75rem; }
.real-card__link { font-size: .82rem; font-weight: 600; color: var(--red); }

/* ── 12. ARCHIVE HERO ────────────────────────────────────── */
.archive-hero {
  background: var(--noir); padding: 7rem 0 5rem;
  position: relative; overflow: hidden;
}
/* Subtle noise/grain texture overlay */
.archive-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,57,70,.08) 0%, transparent 70%);
  pointer-events: none;
}
.archive-hero::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--red);
}
.archive-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--blanc);
  margin-bottom: .75rem;
  letter-spacing: -0.04em;
}
.archive-hero__desc { color: rgba(255,255,255,.65); max-width: 580px; font-size: 1.05rem; line-height: 1.75; }

/* ── 13. FILTRES ─────────────────────────────────────────── */
.archive-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 2.5rem 0 2rem;
}
.filter-btn {
  padding: .5em 1.4em; font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--border); color: var(--gris-mid);
  border-radius: 50px;
  transition: background .35s cubic-bezier(.23,1,.32,1), color .25s ease, border-color .25s ease, transform .25s ease;
  background: var(--blanc);
  font-family: var(--font-display);
}
.filter-btn:hover,
.filter-btn--active,
.filter-btn[aria-pressed="true"] {
  background: var(--red); color: var(--blanc); border-color: var(--red);
}

/* ── 14. SECTION COULEURS ────────────────────────────────── */
.section--dark {
  background: var(--noir);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230,57,70,.07) 0%, transparent 60%);
  pointer-events: none;
}
.section--dark .container { position: relative; z-index: 1; }
.section--red  { background: var(--red); }
.section--red .section-header__eyebrow,
.section--red .section-header__title,
.section--red .section-header__desc { color: var(--blanc); }
.section--red .section-header__eyebrow {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
}
.section--pale { background: var(--off-white); }

/* ── 15. RÉALISATIONS SLIDER (Homepage) ─────────────────── */
.realisations-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.real-slide { position: relative; overflow: hidden; border-radius: var(--radius); }
.real-slide__img img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s; }
.real-slide:hover .real-slide__img img { transform: scale(1.06); }
.real-slide__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,26,.85));
  padding: 1.5rem 1rem 1rem; color: var(--blanc);
}
.real-slide__client { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: .25rem; }
.real-slide__title { font-size: 1.1rem; color: var(--blanc); margin-bottom: .25rem; }
.real-slide__title a { color: var(--blanc); }
.real-slide__title a:hover { color: var(--red); }
.real-slide__lieu { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── 16. TÉMOIGNAGES ─────────────────────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.temoignage-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 2rem; border-top: 3px solid rgba(255,255,255,.4);
}
.temoignage-card__text {
  font-family: var(--font-display); font-size: 1.1rem; font-style: normal;
  color: var(--blanc); margin-bottom: 1rem; font-weight: 400;
  line-height: 1.7;
}
.temoignage-card__footer cite {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-style: normal;
}

/* ── 17. CTA BAND ────────────────────────────────────────── */
.section--cta-band {
  background: var(--noir);
  text-align: center;
  color: var(--blanc);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
/* Ambient red glow */
.section--cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230,57,70,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(230,57,70,.08) 0%, transparent 55%);
  pointer-events: none;
}
.section--cta-band .container { position: relative; z-index: 1; }
.section--cta-band h2 { color: var(--blanc); margin-bottom: 1rem; }
.section--cta-band p  { color: rgba(255,255,255,.55); margin-bottom: 2.5rem; font-size: 1.1rem; }

/* ── 18. ARCHIVE HERO (page) ─────────────────────────────── */
.page-hero {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  padding: 4.5rem 0 3.5rem;
}
.page-hero--simple .page-hero__title { font-size: clamp(1.8rem, 4vw, 2.5rem); }

/* ── 19. SERVICE SINGLE — Landing page layout ───────────── */

/* ── Hero shared ── */
.service-hero, .real-hero {
  position: relative; min-height: 58vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--noir);
}
.service-hero--landing { min-height: 72vh; }

.service-hero__bg, .real-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38;
}
.service-hero__overlay, .real-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,17,17,.25) 0%,
    rgba(17,17,17,.6) 50%,
    rgba(17,17,17,.92) 100%
  );
}
/* Breadcrumb floating at top */
.service-hero__breadcrumb {
  position: absolute; top: 1.75rem; left: 0; right: 0;
  z-index: 2;
}
.service-hero__breadcrumb .breadcrumb { color: rgba(255,255,255,.55); }
.service-hero__breadcrumb .breadcrumb a { color: rgba(255,255,255,.55); }
.service-hero__breadcrumb .breadcrumb a:hover { color: var(--blanc); }

.service-hero__content, .real-hero__content {
  position: relative; z-index: 1; color: var(--blanc);
  padding-bottom: 4.5rem; padding-top: 6rem; width: 100%;
}
.service-hero__cat, .real-hero__cat {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  background: var(--red); color: var(--blanc);
  padding: .3em 1em; border-radius: 3px; margin-bottom: 1.25rem;
}
.service-hero__title, .real-hero__title {
  color: var(--blanc); margin-bottom: .85rem;
  letter-spacing: -0.04em;
}
.service-hero__accroche {
  font-size: 1.15rem; color: rgba(255,255,255,.65);
  max-width: 580px; margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300;
}
.service-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Feature Strip ── */
.service-strip {
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 2rem 0;
}
.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  divider: var(--border);
}
.service-strip__item {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s ease;
}
.service-strip__item:last-child { border-right: none; }
.service-strip__item:hover { background: rgba(255,255,255,.03); }
.service-strip__icon {
  color: var(--red);
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,57,70,.1);
  border-radius: var(--radius);
}
.service-strip__text { display: flex; flex-direction: column; gap: .2rem; }
.service-strip__title {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  color: var(--blanc); display: block;
}
.service-strip__desc { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ── Main layout ── */
.service-main { background: var(--blanc); }
.service-main__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.service-main__wysiwyg { margin-bottom: 3rem; }

/* ── Points forts redesigned ── */
.service-points { margin: 0; }
.service-points__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  letter-spacing: -0.03em;
}
.service-points__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--red);
  transition: box-shadow .3s ease, transform .3s ease;
}
.service-point:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-point__check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--red); color: var(--blanc);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.service-point__title {
  font-size: .95rem; font-family: var(--font-display);
  font-weight: 700; margin-bottom: .3rem; color: var(--noir);
}
.service-point__desc { font-size: .84rem; color: var(--gris-mid); line-height: 1.6; }

/* ── CTA aside card ── */
.service-main__cta-aside { position: sticky; top: calc(var(--header-h) + 2rem); }

.service-cta-card {
  background: var(--noir);
  color: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.service-cta-card__top { display: flex; flex-direction: column; gap: .5rem; }
.service-cta-card__label {
  font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  font-family: var(--font-display); font-weight: 700;
}
.service-cta-card__title {
  font-size: 1.4rem; font-family: var(--font-display);
  font-weight: 800; color: var(--blanc); letter-spacing: -0.03em;
  line-height: 1.15;
}
.service-cta-card__desc {
  font-size: .88rem; color: rgba(255,255,255,.5);
  margin: 0;
}
.service-cta-card .btn { width: 100%; justify-content: center; }
.service-cta-card__reassurance {
  display: flex; flex-direction: column; gap: .3rem;
  font-size: .78rem; color: rgba(255,255,255,.4);
}

/* ── Services liés ── */
.service-related { background: var(--off-white); }
.service-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-related__card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .4s cubic-bezier(.23,1,.32,1), transform .4s cubic-bezier(.23,1,.32,1);
}
.service-related__card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.service-related__img { overflow: hidden; }
.service-related__img a { display: block; }
.service-related__img img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .6s cubic-bezier(.23,1,.32,1);
}
.service-related__card:hover .service-related__img img { transform: scale(1.05); }
.service-related__body { padding: 1.4rem; }
.service-related__title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; margin-bottom: .5rem;
}
.service-related__title a { color: var(--noir); }
.service-related__title a:hover { color: var(--red); }
.service-related__desc { font-size: .85rem; color: var(--gris-mid); margin-bottom: 1rem; }
.service-related__link { font-size: .82rem; font-weight: 600; color: var(--red); }

/* ── Real-body (Réalisation single — unchanged) ── */
.real-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding-block: 3rem;
}
.real-sidebar-card {
  background: var(--red-bg); border: 1px solid var(--border);
  border-top: 3px solid var(--red); padding: 1.5rem; margin-bottom: 1.5rem;
}
.real-sidebar-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.real-sidebar-card p  { font-size: .9rem; color: var(--gris-mid); margin-bottom: 1.25rem; }
.real-sidebar-related { margin-top: 1.5rem; }
.real-sidebar-related h4 {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.real-sidebar-related ul li {
  padding: .4rem 0; border-bottom: 1px dashed var(--border); font-size: .9rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-main__layout { grid-template-columns: 1fr 300px; gap: 3rem; }
}
@media (max-width: 840px) {
  .service-main__layout { grid-template-columns: 1fr; }
  .service-main__cta-aside { position: static; }
  .service-strip__grid { grid-template-columns: 1fr; }
  .service-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .service-strip__item:last-child { border-bottom: none; }
  .service-points__grid { grid-template-columns: 1fr; }
  .service-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .service-related__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
 * 20. GALERIE SINGLE — orchot-gallery (Isotope masonry)
 * ══════════════════════════════════════════════════════════════ */

/* Section wrapper */
.orchot-gallery-section {
  padding-block: 3rem 4rem;
  border-top: 1px solid var(--border);
}

/* Image vedette */
.gallery-featured {
  margin-bottom: 1.25rem; position: relative; overflow: hidden;
}
.gallery-featured__link {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.gallery-featured__img {
  width: 100%; max-height: 520px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-featured__link:hover .gallery-featured__img { transform: scale(1.03); }
.gallery-featured__overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  color: var(--blanc); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--transition);
  opacity: 0;
}
.gallery-featured__link:hover .gallery-featured__overlay {
  opacity: 1; background: rgba(26,26,26,.45);
}

/* ── Galerie CSS Grid (remplace Isotope) ── */
.orchot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

/* Sizer Isotope ignoré en Grid */
.orchot-gallery__sizer { display: none; }

/* Items */
.orchot-gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
}
.orchot-gallery__item--wide {
  grid-column: span 2;
}
.orchot-gallery__item--tall .orchot-gallery__img {
  height: 360px;
}

/* Lien image */
.orchot-gallery__link {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--off-white);
}
.orchot-gallery__img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.orchot-gallery__link:hover .orchot-gallery__img { transform: scale(1.06); }

/* Icône zoom */
.orchot-gallery__zoom {
  position: absolute; inset: 0;
  background: rgba(230,57,70,0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
}
.orchot-gallery__link:hover .orchot-gallery__zoom {
  opacity: 1; background: rgba(230,57,70,.45);
}

/* Responsive galerie */
@media (max-width: 1024px) {
  .orchot-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-featured__img { max-height: 320px; }
  .orchot-gallery { grid-template-columns: repeat(2, 1fr); }
  .orchot-gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .orchot-gallery { grid-template-columns: 1fr; }
  .orchot-gallery__item--wide { grid-column: span 1; }
}

/* Legacy (si galerie simple sans Isotope) */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .5rem; margin-top: 1.25rem;
}
.galerie-item { overflow: hidden; display: block; aspect-ratio: 4/3; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.galerie-item:hover img { transform: scale(1.06); }
.service-galerie, .real-galerie { padding-block: 2.5rem 3rem; }
.service-galerie__title, .real-video h2 { font-size: 1.5rem; margin-bottom: .5rem; }

/* ── 21. VIDÉO EMBED ─────────────────────────────────────── */
.video-embed {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden; margin-top: 1rem;
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ── 22. RÉALISATION SINGLE MÉTA ─────────────────────────── */
.real-hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 1.25rem;
}
.real-hero__meta > div dt {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: .15rem;
}
.real-hero__meta > div dd { font-size: .95rem; color: var(--blanc); }

.real-sidebar-card dl { margin-bottom: 1.25rem; }
.real-sidebar-card dt {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gris-light); margin-top: .75rem;
}
.real-sidebar-card dd { font-size: .95rem; color: var(--noir); }

/* ── 23. BLOG CARDS ──────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: var(--blanc); border: 1px solid var(--border); overflow: hidden;
  border-radius: var(--radius-lg);
  transition: box-shadow .45s cubic-bezier(.23,1,.32,1), transform .45s cubic-bezier(.23,1,.32,1), border-color .3s ease;
}
.post-card:hover { border-color: transparent; }
.post-card__img { overflow: hidden; }
.post-card__img img { width: 100%; height: 200px; object-fit: cover; transition: transform .7s cubic-bezier(.23,1,.32,1); }
.post-card__body { padding: 1.25rem; }
.post-card__meta { font-size: .75rem; color: var(--gris-light); margin-bottom: .5rem; }
.post-card__meta time { margin-right: .5rem; }
.post-card__title { font-size: 1.1rem; margin-bottom: .5rem; }
.post-card__title a:hover { color: var(--red); }
.post-card__excerpt { font-size: .88rem; color: var(--gris-mid); margin-bottom: .75rem; }
.post-card__link { font-size: .82rem; font-weight: 600; color: var(--red); }

/* ── 24. SINGLE POST ─────────────────────────────────────── */
.post-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--noir);
}
.post-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .4;
}
.post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(26,26,26,.9));
}
.post-hero__content {
  position: relative; z-index: 1;
  padding-block: 3rem; color: var(--blanc);
}
.post-hero__cats { font-size: .72rem; color: var(--red); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; }
.post-hero__title { color: var(--blanc); margin-bottom: .75rem; }
.post-hero__meta { font-size: .82rem; color: rgba(255,255,255,.6); display: flex; gap: .5rem; flex-wrap: wrap; }

.post-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 3rem; padding-block: 3rem;
}
.post-nav {
  display: flex; justify-content: space-between;
  gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.post-nav a {
  display: flex; flex-direction: column;
  font-size: .82rem; color: var(--gris-mid); max-width: 45%;
}
.post-nav a span { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gris-light); margin-bottom: .2rem; }
.post-nav a strong { color: var(--noir); }
.post-nav a:hover strong { color: var(--red); }
.post-nav__next { align-items: flex-end; }

.post-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.post-tags a {
  padding: .3em .8em; border: 1px solid var(--border);
  font-size: .78rem; color: var(--gris-mid);
  transition: all var(--transition);
}
.post-tags a:hover { background: var(--red); color: var(--blanc); border-color: var(--red); }

/* ── 25. SIDEBAR ─────────────────────────────────────────── */
.sidebar .widget { margin-bottom: 2rem; }
.sidebar .widget-title {
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); padding-bottom: .5rem;
  border-bottom: 2px solid var(--border); margin-bottom: 1rem;
}

/* ── 26. BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--blanc); }
.breadcrumb__sep { color: rgba(255,255,255,.35); }

/* ── 27. PAGINATION ──────────────────────────────────────── */
.pagination { margin: 3rem 0 1rem; }
.pagination .page-numbers {
  display: flex; flex-wrap: wrap; gap: .4rem; list-style: none;
  justify-content: center;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border); font-size: .85rem;
  color: var(--gris-mid); transition: all var(--transition);
}
.pagination .page-numbers li .current,
.pagination .page-numbers li a:hover { background: var(--red); color: var(--blanc); border-color: var(--red); }
.pagination .page-numbers li .prev,
.pagination .page-numbers li .next { width: auto; padding: 0 1rem; font-size: .8rem; }

/* ── 28. 404 ─────────────────────────────────────────────── */
.page-404 { padding: 6rem 0; text-align: center; }
.page-404__inner { max-width: 520px; margin-inline: auto; }
.page-404__code {
  font-family: var(--font-display); font-size: 8rem; font-weight: 300;
  color: var(--border); line-height: 1; display: block; margin-bottom: .5rem;
}
.page-404__title { font-size: 2rem; margin-bottom: 1rem; }
.page-404__desc { color: var(--gris-mid); margin-bottom: 2rem; }
.page-404__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── 29. NO RESULTS ──────────────────────────────────────── */
.no-results {
  text-align: center; padding: 4rem 1rem; color: var(--gris-mid);
}
.no-results h2 { margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════════════
   30. FOOTER — Signals-style (brand + nav + wordmark)
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,.65);
  margin-top: auto;
  overflow: hidden;
}

/* ── Top : brand gauche + nav droite ── */
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

/* Brand */
.site-footer__brand {
  flex: 0 0 auto;
  max-width: 280px;
}
.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blanc);
  display: block;
  margin-bottom: .75rem;
}
.site-footer__tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 240px;
}
.site-footer__social {
  display: flex;
  gap: .85rem;
}
.site-footer__social a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.site-footer__social a:hover { color: var(--red); }

/* Navigation columns group */
.site-footer__nav {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.site-footer__col { min-width: 120px; }

.site-footer__col-title {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.site-footer__links {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer__links li { margin-bottom: .6rem; }
.site-footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__links a:hover { color: var(--blanc); }

.site-footer__contact address { font-style: normal; }
.site-footer__contact p { font-size: .88rem; margin-bottom: .5rem; }
.site-footer__contact a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__contact a:hover { color: var(--blanc); }

/* ── Wordmark géant ── */
.site-footer__wordmark {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  line-height: .82;
  padding-inline: 0;
  margin-top: 1rem;
  pointer-events: none;
  user-select: none;
}
.site-footer__wordmark span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 22rem);
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
  /* Outlined stroke style — Signals inspired */
  color: transparent;
  -webkit-text-stroke: 2px rgba(230,57,70,.6);
  text-stroke: 2px rgba(230,57,70,.6);
  white-space: nowrap;
  padding-inline: .5rem;
  transform-origin: bottom left;
  transition: -webkit-text-stroke-color .4s ease, color .4s ease;
}
.site-footer__wordmark:hover span {
  color: transparent;
  -webkit-text-stroke-color: var(--red);
}

/* ── Bottom bar ── */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 1.1rem;
}
.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer__copy,
.site-footer__legal {
  font-size: .75rem;
  color: rgba(255,255,255,.28);
}
.site-footer__legal a { color: rgba(255,255,255,.28); text-decoration: none; }
.site-footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ── Responsive footer ── */
@media (max-width: 900px) {
  .site-footer__top { flex-direction: column; gap: 2.5rem; }
  .site-footer__brand { max-width: 100%; }
  .site-footer__nav { gap: 2.5rem; }
  .site-footer__wordmark span { font-size: clamp(4rem, 22vw, 8rem); }
}
@media (max-width: 560px) {
  .site-footer__nav { gap: 1.5rem; }
  .site-footer__wordmark span { font-size: 20vw; }
  .site-footer__bottom .container { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

/* ── 31. ARCHIVE LAYOUT ──────────────────────────────────── */
.archive-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 3rem; padding-block: 3rem;
}
.archive-main { min-width: 0; }

/* ── 32. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  /* footer responsive handled in footer section */
  .service-body, .real-body { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .archive-layout { grid-template-columns: 1fr; }
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-featured__body { padding: 1.25rem; }
  .services-archive-grid,
  .realisations-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
  /* Mega-menu tablette : pleine largeur, layout simplifié (pas de colonne blog) */
  .megamenu {
    /* position: absolute + left:0 + right:0 déjà défini — on garde pleine largeur */
    left: 0; right: 0;
  }
  .megamenu__inner {
    grid-template-columns: 1fr;
  }
  .megamenu__blog { display: none; }
  .megamenu__services {
    border-right: none; padding: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Nav mobile : panneau latéral */
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blanc);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 150;
    padding: 1.5rem 1.25rem;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }

  /* Liens et toggles mobiles */
  .site-nav__link,
  .site-nav__toggle {
    font-size: .95rem;
    padding: .75rem .25rem;
    border-bottom: 1px solid var(--border) !important;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    justify-content: space-between;
    text-transform: none;
    letter-spacing: 0;
  }
  .site-nav__toggle { display: flex; }

  /* Mega-menu mobile : accordéon inline */
  .megamenu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  .megamenu.mega-visible { max-height: 1000px; }
  .megamenu__inner { grid-template-columns: 1fr; min-height: auto; }
  .megamenu__services { border-right: none; padding: 1rem 1rem 1rem 1.25rem; }
  .megamenu__blog { display: none; }
  .megamenu__cols { grid-template-columns: 1fr; gap: 0; }
  .megamenu__cat-header { display: none; }
  .megamenu__service-link { font-size: .9rem; padding: .45rem .5rem; }
  .megamenu__see-all { margin-top: .5rem; }

  .site-header__burger { display: flex; }
  .site-header__cta .btn--rdv { display: none; }

  .hero { min-height: 80vh; }
  .services-cat__grid { grid-template-columns: 1fr 1fr; }
  .realisations-slider, .temoignages-grid { grid-template-columns: 1fr; }
  /* footer responsive handled in footer section */
  .real-hero__meta { gap: 1rem; }
  .single-feature-banner { margin-top: -1.3rem; }
}

@media (max-width: 480px) {
  .services-cat__grid,
  .posts-grid { grid-template-columns: 1fr; }

  .hero__actions,
  .service-hero__actions { flex-direction: column; }
  .page-404__actions { flex-direction: column; align-items: center; }
  .services-archive-grid,
  .realisations-archive-grid { grid-template-columns: 1fr; }
}

/* ── 33. UTILITAIRES ─────────────────────────────────────── */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute; height: 1px; width: 1px;
  overflow: hidden; word-wrap: normal;
}

/* ── 34. PRINT ───────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .section--cta-band, .service-body__sidebar { display: none; }
  a[href]::after { content: ' (' attr(href) ')'; }
}

/* ══════════════════════════════════════════════════════════════
 * 35. LIGHTBOX FULLSCREEN (#orchot-lb)
 * ══════════════════════════════════════════════════════════════ */
#orchot-lb {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
#orchot-lb.lb-visible {
  opacity: 1; pointer-events: auto;
}

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.93);
  cursor: zoom-out;
}

/* Stage central */
.lb-stage {
  position: relative; z-index: 1;
  max-width: 92vw; max-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center;
}
.lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  max-width: 100%; max-height: 80vh;
}
.lb-img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; display: block;
  box-shadow: 0 12px 80px rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.06);
}

/* Caption */
.lb-caption {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; width: 100%;
  padding: .6rem .25rem 0;
}
.lb-caption__text {
  font-size: .82rem; color: rgba(255,255,255,.6);
  flex: 1; text-align: left; line-height: 1.4;
}
.lb-caption__count {
  font-size: .75rem; color: rgba(255,255,255,.35);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}

/* Boutons communs */
.lb-close,
.lb-prev,
.lb-next {
  position: fixed; z-index: 2;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--red);
  color: var(--blanc);
  border-color: var(--red);
  transform: scale(1.08);
}

/* Positions */
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 768px) {
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .lb-stage { max-width: 96vw; }
  .lb-close { top: .5rem; right: .5rem; width: 38px; height: 38px; }
}

/* ══════════════════════════════════════════════════════════════
 * 36. SINGLE — éléments améliorés
 * ══════════════════════════════════════════════════════════════ */

/* Actions hero service */
.service-hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.5rem;
}

/* Témoignage enrichi */
.real-temoignage {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 1.75rem;
  background: var(--red-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2.5rem 0;
  font-style: normal;
}
.real-temoignage__quote-icon {
  margin-bottom: .75rem; opacity: .7;
}
.real-temoignage__text {
  font-family: var(--font-display);
  font-size: 1.15rem; font-style: italic;
  color: var(--noir); line-height: 1.75;
  margin: 0 0 1rem;
}
.real-temoignage__footer {
  font-style: normal; font-size: .88rem;
  color: var(--gris-mid);
}
.real-temoignage__footer cite {
  font-style: normal; font-weight: 600;
  color: var(--noir);
}
.real-temoignage__client {
  color: var(--red);
}

/* Sidebar related avec miniatures */
.real-sidebar-related ul li,
.service-sidebar-related ul li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .65rem 0; border-bottom: 1px dashed var(--border);
  list-style: none;
}
.related-thumb {
  flex-shrink: 0; width: 58px; height: 44px;
  overflow: hidden; border-radius: var(--radius);
  display: block;
}
.related-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.related-thumb:hover img { transform: scale(1.08); }

.related-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: .2rem;
}
.related-info a {
  font-size: .88rem; font-weight: 500;
  color: var(--noir); line-height: 1.3;
  display: block;
}
.related-info a:hover { color: var(--red); }
.related-client {
  font-size: .75rem; color: var(--gris-light);
}

/* Navigation réalisations précédent/suivant */
.real-nav {
  display: flex; justify-content: space-between; align-items: stretch;
  gap: 1rem; padding-block: 2rem;
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
}
.real-nav__prev,
.real-nav__next {
  display: flex; flex-direction: column; gap: .25rem;
  max-width: 48%; padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
  color: var(--gris-mid);
}
.real-nav__prev:hover,
.real-nav__next:hover {
  border-color: var(--red); background: var(--red-bg);
  color: var(--noir);
}
.real-nav__next { margin-left: auto; align-items: flex-end; text-align: right; }
.real-nav__prev span,
.real-nav__next span {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gris-light);
}
.real-nav__prev strong,
.real-nav__next strong {
  font-size: .9rem; color: var(--noir); font-weight: 500;
}

/* ── Sidebar DL projet ── */
.real-sidebar-dl {
  margin-bottom: 1.25rem;
}
.real-sidebar-dl dt {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gris-light); margin-top: .75rem;
}
.real-sidebar-dl dd {
  font-size: .92rem; color: var(--noir); font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
 * 37. BLOG PAGE TEMPLATE
 * ══════════════════════════════════════════════════════════════ */
.blog-grid {
  padding-block: 2rem 3rem;
}
.archive-filters--blog {
  margin-top: 2.5rem;
}
.archive-filters--blog a.filter-btn {
  text-decoration: none;
}
.post-card__cat a {
  color: var(--red); font-weight: 600;
  text-decoration: none;
}
.post-card__cat a:hover { text-decoration: underline; }
.post-card__meta-sep { color: var(--border); margin: 0 .25rem; }

/* ══════════════════════════════════════════════════════════════
 * 37B. BLOG FEATURED + CATEGORIES
 * ══════════════════════════════════════════════════════════════ */
.blog-featured {
  padding-block: 2rem 1rem;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.blog-featured__body {
  padding: 1.5rem 1.5rem 1.5rem 0;
}
.blog-featured__eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .85rem;
}
.blog-featured__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: .75rem;
}
.blog-featured__title a:hover {
  color: var(--red);
}
.blog-featured__excerpt {
  color: var(--gris-mid);
  margin-bottom: 1rem;
}
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  padding-block: 1rem 0;
}
.blog-cats__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gris-mid);
}
.blog-cats__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.blog-cats__item {
  display: inline-flex;
  align-items: center;
  padding: .38em .9em;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--gris-mid);
  transition: all var(--transition);
}
.blog-cats__item:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-bg);
}

/* ══════════════════════════════════════════════════════════════
 * 37C. FAQ ACCORDION
 * ══════════════════════════════════════════════════════════════ */
.faq-layout {
  max-width: 900px;
  padding-block: 2rem 3rem;
}
.faq-intro {
  margin-bottom: 1.5rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border);
  background: var(--blanc);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.is-open {
  border-color: #e8b9bd;
  box-shadow: var(--shadow-sm);
}
.faq-item__question {
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  text-align: left;
  font-size: .98rem;
  font-weight: 600;
  color: var(--noir);
}
.faq-item__question:hover {
  color: var(--red);
}
.faq-item__question:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.faq-item__icon {
  display: inline-flex;
  align-items: center;
  color: var(--gris-mid);
}
.faq-item__icon svg {
  transition: transform .24s ease;
}
.faq-item.is-open .faq-item__icon svg {
  transform: rotate(180deg);
}
.faq-item__answer-wrap {
  border-top: 1px solid var(--border);
}
.faq-item__answer {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--gris);
}

/* ══════════════════════════════════════════════════════════════
 * 37D. SINGLES MODERNISÉS (Banner + Splide)
 * ══════════════════════════════════════════════════════════════ */
.service-hero,
.real-hero {
  min-height: clamp(300px, 55vh, 560px);
}
.single-feature-banner {
  margin-top: -2.2rem;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 3;
}
.single-feature-banner__media {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--off-white);
}
.single-feature-banner__img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}
.single-gallery-section {
  padding-block: 1rem 3rem;
}
.single-gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--red);
}
.single-gallery__title {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}
.single-gallery__count {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris-light);
}
.single-gallery__slide {
  background: #0f1014;
}
.single-gallery__img {
  width: 100%;
  height: clamp(300px, 56vh, 620px);
  object-fit: cover;
}
.single-gallery__caption {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  padding: .65rem .9rem;
  margin: 0;
}
.single-gallery__thumb-slide {
  opacity: .7;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.single-gallery__thumb-slide.is-active,
.single-gallery__thumb-slide:hover {
  opacity: 1;
}
.single-gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════════
 * 37E. ARCHIVES GRID + GSAP FILTERS (sans Isotope)
 * ══════════════════════════════════════════════════════════════ */
.services-archive-grid,
.realisations-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  visibility: visible;
}
.service-archive-item,
.real-archive-item {
  width: auto;
  float: none;
  padding: 0;
  transform-origin: center top;
}

/* ══════════════════════════════════════════════════════════════
 * 39. SPLIDE GALLERY — Single Service & Réalisation
 * ══════════════════════════════════════════════════════════════ */

/* Section wrapper */
.single-gallery-section {
  padding-block: 3rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.single-gallery__header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2rem;
}
.single-gallery__title {
  font-size: 1.6rem; color: var(--noir); margin: 0;
  display: flex; align-items: baseline; gap: .75rem;
}
.single-gallery__count {
  font-family: var(--font-body); font-size: .75rem;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gris-light); background: var(--blanc);
  border: 1px solid var(--border); padding: .2em .7em;
  border-radius: 50px;
}

/* Main slider */
.js-orchot-splide .splide__track {
  border-radius: var(--radius);
  overflow: hidden;
}
.single-gallery__slide {
  position: relative;
}
.single-gallery__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.single-gallery__caption {
  text-align: center;
  font-size: .82rem;
  color: var(--gris-mid);
  margin-top: .75rem;
  font-style: italic;
}

/* Splide arrows custom */
.js-orchot-splide .splide__arrow {
  background: var(--blanc);
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: 50%;
  opacity: 1;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.js-orchot-splide .splide__arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.06);
}
.js-orchot-splide .splide__arrow svg {
  fill: var(--noir);
  transition: fill var(--transition);
}
.js-orchot-splide .splide__arrow:hover svg {
  fill: var(--blanc);
}

/* Thumbnail strip */
.js-orchot-splide-thumbs {
  margin-top: .75rem;
}
.js-orchot-splide-thumbs .splide__track {
  padding-block: .25rem;
}
.single-gallery__thumb-slide {
  opacity: .55;
  transition: opacity .2s ease;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}
.single-gallery__thumb-slide.is-active {
  opacity: 1;
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.single-gallery__thumb {
  width: 100%;
  height: 76px;
  object-fit: cover;
  display: block;
}

/* Feature banner (image à la une entre body et galerie) */
.single-feature-banner {
  padding-block: 0;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-block: 2rem;
}
.single-feature-banner__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  max-height: 480px;
}
.single-feature-banner__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .single-gallery__img { height: 300px; }
  .single-feature-banner__img { height: 260px; }
  .single-gallery__thumb { height: 58px; }
}
@media (max-width: 480px) {
  .single-gallery__img { height: 220px; }
  .single-feature-banner { display: none; }
}

/* ══════════════════════════════════════════════════════════════
 * 38. SCROLL PROGRESS BAR
 * ══════════════════════════════════════════════════════════════ */
#orchot-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--red);
  z-index: 9998;
  transform-origin: left center;
  pointer-events: none;
  transition: none;
}

/* ══════════════════════════════════════════════════════════════
 * 39. CONTACT PAGE — Premium redesign
 * ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.contact-hero {
  background: var(--noir);
  padding: 5.5rem 0 5rem;
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(230,57,70,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(230,57,70,.06) 0%, transparent 55%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--red);
}

.contact-hero__inner { position: relative; z-index: 1; }

.contact-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: 1.5rem;
}

/* Left */
.contact-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.2);
  border-radius: 50px; padding: .35em 1em;
  margin-bottom: 1.5rem;
}
.contact-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--blanc);
  letter-spacing: -0.05em;
  line-height: .97;
  margin-bottom: 1.5rem;
}
.contact-hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(230,57,70,.7);
}
.contact-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  line-height: 1.75;
}

/* Right — info pills */
.contact-hero__right {
  display: flex; flex-direction: column; gap: 1rem;
}

.contact-info-pill {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
a.contact-info-pill:hover {
  background: rgba(230,57,70,.1);
  border-color: rgba(230,57,70,.3);
  transform: translateX(4px);
  color: inherit;
}
.contact-info-pill__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,57,70,.15);
  border-radius: 50%;
  color: var(--red);
}
.contact-info-pill__body {
  display: flex; flex-direction: column; gap: .15rem;
}
.contact-info-pill__body small {
  font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  font-family: var(--font-display); font-weight: 600;
}
.contact-info-pill__body strong {
  font-size: .95rem; color: var(--blanc); font-weight: 500;
}

.contact-hero__socials {
  display: flex; gap: .65rem;
  padding-top: .5rem;
}
.contact-hero__social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .35s cubic-bezier(.23,1,.32,1);
}
.contact-hero__social-link:hover {
  background: var(--red); color: var(--blanc); border-color: var(--red);
  transform: translateY(-3px);
}

/* ── Main section ── */
.contact-main {
  padding: var(--section-gap) 0;
  background: var(--blanc);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

/* ── Form card ── */
.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
}
.contact-form-card__header { margin-bottom: 2.5rem; }
.contact-form-card__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: .5rem;
}
.contact-form-card__desc {
  font-size: .92rem; color: var(--gris-mid); margin: 0;
}
.contact-form-card__notice {
  color: var(--gris-mid); font-size: .9rem;
  background: var(--cream); border: 1px solid var(--border);
  padding: 1rem 1.25rem; border-radius: var(--radius);
}

/* ── Side column ── */
.contact-side__intro {
  margin-bottom: 2.5rem;
  font-size: 1.05rem; color: var(--gris-mid); line-height: 1.8;
}

/* Engagements */
.contact-engagements {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-engagement {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--blanc);
  transition: background .25s ease;
}
.contact-engagement:last-child { border-bottom: none; }
.contact-engagement:hover { background: var(--red-pale); }
.contact-engagement__num {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800;
  color: var(--red); line-height: 1;
  min-width: 3rem;
}
.contact-engagement__text {
  font-size: .88rem; color: var(--gris); font-weight: 500; line-height: 1.4;
}

/* Horaires */
.contact-hours {
  background: var(--noir);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-hours__title {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: .88rem;
  font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.contact-hours__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .75rem;
}
.contact-hours__list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-hours__list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours__list li span { color: rgba(255,255,255,.45); }
.contact-hours__list li strong { color: var(--blanc); }

/* ── Map ── */
.contact-map {
  height: 440px; overflow: hidden;
  border-top: 3px solid var(--red);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-main__grid { grid-template-columns: 1fr 320px; gap: 3rem; }
}
@media (max-width: 840px) {
  .contact-hero__layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-hero__title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem; }
}
@media (max-width: 480px) {
  .contact-hero { padding: 4rem 0 3rem; }
}

/* CF7 form styling */
.contact-form-card .wpcf7-form label,
.contact-form-card .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gris);
  letter-spacing: .02em;
}
.contact-form-card .wpcf7-form input[type="text"],
.contact-form-card .wpcf7-form input[type="email"],
.contact-form-card .wpcf7-form input[type="tel"],
.contact-form-card .wpcf7-form textarea,
.contact-form-card .wpcf7-form select {
  width: 100%;
  padding: .85em 1.1em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--blanc);
  font-size: .95rem;
  color: var(--noir);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form-card .wpcf7-form input:focus,
.contact-form-card .wpcf7-form textarea:focus,
.contact-form-card .wpcf7-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-pale);
}
.contact-form-card .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-card .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85em 2.5em;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--blanc);
  border: 2px solid var(--red);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}
.contact-form-card .wpcf7-form input[type="submit"]:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-form-card .wpcf7-response-output {
  border-radius: var(--radius);
  font-size: .88rem;
  margin-top: 1rem;
}

/* Map */
.contact-map {
  width: 100%;
  background: var(--gris-soft);
}
.contact-map__embed {
  width: 100%;
  height: 420px;
}
.contact-map__embed iframe {
  width: 100%;
  height: 100%;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-hero { padding: 5rem 0 3rem; }
  .contact-main__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form-card { padding: 1.75rem; }
  .contact-map__embed { height: 300px; }
}

/* ══════════════════════════════════════════════════════════════
 * 40. FAQ PAGE
 * ══════════════════════════════════════════════════════════════ */
.faq-layout {
  padding: var(--section-gap) 0;
  max-width: var(--container-narrow);
  margin-inline: auto;
}
.faq-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gris-mid);
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.8;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--noir);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1.4;
}
.faq-item__question:hover {
  color: var(--red);
}
.faq-item.is-open .faq-item__question {
  color: var(--red);
}

/* Icon rotation */
.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  transition: transform .3s ease, background .3s ease;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: var(--red-pale);
}
.faq-item__icon svg {
  transition: color var(--transition);
}
.faq-item.is-open .faq-item__icon svg {
  color: var(--red);
}

/* Answer panel */
.faq-item__answer-wrap {
  overflow: hidden;
}
.faq-item__answer {
  padding: 0 0 1.75rem;
  font-size: .95rem;
  color: var(--gris-mid);
  line-height: 1.8;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-item__question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }
  .faq-layout { padding: 3rem 0; }
}

/* ══════════════════════════════════════════════════════════════
 * 41. LENIS SMOOTH SCROLL
 * ══════════════════════════════════════════════════════════════ */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ── PAGE L'AGENCE — styles manquants ──────────────────────── */
.about-layout { padding: var(--section-gap) 0; }

.orchot-gallery-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 2.5rem;
}

.about-values {
  padding: var(--section-gap) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red-pale);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: .5rem;
}

.value-card__desc {
  font-size: .93rem;
  color: var(--gris-mid);
  line-height: 1.65;
  margin: 0;
}

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

/* ── LOAD MORE ──────────────────────────────────────────────── */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 3rem 0 1rem;
}

.load-more-btn {
  min-width: 200px;
  justify-content: center;
  gap: .6em;
  transition: all var(--transition);
}

.load-more-btn.is-loading {
  pointer-events: none;
  opacity: .7;
}

@keyframes orchot-spin {
  to { transform: rotate(360deg); }
}

.load-more-btn .spin {
  animation: orchot-spin .8s linear infinite;
}

/* ══════════════════════════════════════════════════════════════
   PAGE L'AGENCE — sections étendues
   ══════════════════════════════════════════════════════════════ */

/* ── Introduction ─────────────────────────────────────────── */
.about-intro { padding-block: var(--section-gap); }

.about-intro__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-intro__text .section-header--left {
  text-align: left;
  align-items: flex-start;
}

.about-intro__body {
  color: var(--gris-mid);
  line-height: 1.8;
  font-size: 1.05rem;
}
.about-intro__body p { margin-bottom: 1rem; }
.about-intro__body p:last-child { margin-bottom: 0; }

/* Chiffres clés */
.about-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 1rem;
}

.about-stat {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.about-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: .4rem;
}

.about-stat__label {
  display: block;
  font-size: .85rem;
  color: var(--gris-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-intro__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro__stats  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-intro__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ── Mot du Président ─────────────────────────────────────── */
.about-president { padding-block: var(--section-gap); }

.president-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

/* Image / placeholder */
.president-split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #EDE9E5;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg, 0 16px 40px rgba(0,0,0,.12));
}

.president-split__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.president-split__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.president-split__placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contenu texte */
.president-split__content {
  position: relative;
  padding-left: 1rem;
}

.president-quote-mark {
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: .8;
  color: var(--red);
  opacity: .18;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  pointer-events: none;
  user-select: none;
}

.president-split__message {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--gris-mid);
  margin: 0 0 2.5rem;
}
.president-split__message p { margin-bottom: 1rem; }
.president-split__message p:last-child { margin-bottom: 0; }
.president-split__message blockquote,
blockquote.president-split__message {
  margin: 0;
  padding: 0;
  border: none;
  font-style: italic;
}

.president-split__identity {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-top: 2rem;
  border-top: 2px solid var(--red);
  max-width: 260px;
}

.president-split__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--noir);
}

.president-split__role {
  font-size: .85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .president-split { grid-template-columns: 340px 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .president-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .president-split__media { max-width: 360px; margin-inline: auto; }
  .president-quote-mark { font-size: 6rem; }
  .president-split__content { padding-left: 0; }
}

/* ── Équipe ───────────────────────────────────────────────── */
.about-team { padding-block: var(--section-gap); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Photo */
.team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #EDE9E5;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-card__photo img {
  transform: scale(1.04);
}

.team-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Body */
.team-card__body {
  padding: 1.4rem 1.25rem 1.75rem;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: .3rem;
}

.team-card__role {
  font-size: .85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .82rem;
  color: var(--gris-mid);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.team-card__linkedin:hover { color: #0A66C2; }

.team-card--placeholder { opacity: .6; pointer-events: none; }

@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   WAAAW PREMIUM LAYER — Curseur · Marquee · Clip-path · Polish
   ══════════════════════════════════════════════════════════════ */

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .filter-btn, label { cursor: none; }

  #orchot-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform .1s ease, width .25s ease, height .25s ease, opacity .25s ease;
    will-change: transform;
  }

  #orchot-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    opacity: .55;
    transition: opacity .3s ease, width .35s cubic-bezier(.23,1,.32,1), height .35s cubic-bezier(.23,1,.32,1), border-color .3s ease;
    will-change: transform;
  }

  /* Hover state: ring grows, dot shrinks */
  body.cursor-hover #orchot-cursor-dot {
    width: 4px; height: 4px; opacity: .7;
  }
  body.cursor-hover #orchot-cursor-ring {
    width: 64px; height: 64px; opacity: .35; border-color: var(--red);
  }

  /* Click burst */
  body.cursor-click #orchot-cursor-dot {
    transform: translate(-50%, -50%) scale(2.5);
    background: var(--red-light);
  }
  body.cursor-click #orchot-cursor-ring {
    width: 80px; height: 80px; opacity: .15;
  }
}

/* ── MARQUEE TICKER ────────────────────────────────────────── */
.orchot-marquee {
  overflow: hidden;
  background: var(--noir);
  color: var(--blanc);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.orchot-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  gap: 0;
}
.orchot-marquee:hover .orchot-marquee__track {
  animation-play-state: paused;
}

.orchot-marquee__items {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 0;
}

.orchot-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.75);
}

.orchot-marquee__sep {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  opacity: .8;
  flex-shrink: 0;
}

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

/* ── CLIP-PATH DIVIDERS ─────────────────────────────────────── */
/* Dark sections get a diagonal top edge */
.section--cta-band {
  clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--section-gap) + 3rem);
  margin-top: -1px;
}

/* Footer diagonal top */
.site-footer {
  clip-path: polygon(0 2.5rem, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(3rem + 2.5rem);
  margin-top: -1px;
}

/* Archive hero slight bottom slope */
.archive-hero {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), 0 100%);
  padding-bottom: calc(3.5rem + 2rem);
}

/* ── TYPOGRAPHY TIGHTENING (display headings) ──────────────── */
.hero__title,
.archive-hero__title,
.service-hero__title,
.real-hero__title,
.page-hero__title {
  letter-spacing: -0.05em;
  font-weight: 800;
}

.section-header__title {
  letter-spacing: -0.04em;
}

/* Extra-large hero size */
.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .97;
}

/* Eyebrow labels — more polish */
.hero__eyebrow,
.archive-hero__eyebrow,
.section-header__eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  font-weight: 700;
}

/* ── SPLIT-TEXT CHARS wrapper (JS adds .char spans) ──────── */
.split-title .char {
  display: inline-block;
  will-change: transform, opacity;
}

/* ── SECTION HEADER — position context ─────────────────────── */
.section-header {
  position: relative;
}

/* ── MAGNETIC BUTTON WRAPPER ────────────────────────────────── */
.mag-btn {
  display: inline-block;
  position: relative;
}
/* The inner element receives the GSAP transform */
.mag-btn__inner {
  display: inline-flex;
  align-items: center;
  pointer-events: none;
}

/* ── HERO SCROLL HINT — polished ────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
  animation: scroll-hint-bob 2.4s ease-in-out infinite;
}

@keyframes scroll-hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION TRANSITION REVEAL ──────────────────────────────── */
.reveal-wrap { overflow: hidden; }
.reveal-wrap .reveal-inner {
  will-change: transform;
}

/* ── CARD HOVER PREMIUM ─────────────────────────────────────── */
/* Unified premium hover — all card types */
.service-card:hover,
.real-card:hover,
.post-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
}

/* ── SMOOTH IMAGE ZOOM ON HOVER ─────────────────────────────── */
.service-card:hover .service-card__img img,
.real-card:hover .real-card__img img,
.post-card:hover .post-card__img img {
  transform: scale(1.06);
}

/* ── NAV LINK UNDERLINE ANIM ────────────────────────────────── */
.site-nav__link,
.site-nav__toggle {
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

/* ── FILTER BUTTONS — premium ───────────────────────────────── */
.filter-btn {
  transition: background .35s cubic-bezier(.23,1,.32,1), color .3s ease, transform .25s ease;
}
.filter-btn:not(.filter-btn--active):hover {
  transform: translateY(-2px);
}

/* ── LOAD MORE BUTTON ───────────────────────────────────────── */
.load-more-btn {
  min-width: 200px;
  justify-content: center;
}

/* ── HOMEPAGE HERO EYEBROW PILL — defined in section 8 above ── */

/* ── WORDMARK PREMIUM ───────────────────────────────────────── */
.site-footer__wordmark {
  overflow: hidden;
}
.site-footer__wordmark span {
  display: block;
  will-change: transform;
}

/* ── PAGE TRANSITION OVERLAY ────────────────────────────────── */
#orchot-page-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--noir);
  transform-origin: top center;
  transform: scaleY(0); /* invisible by default — GSAP sets it to 1 then animates to 0 */
  pointer-events: none;
  will-change: transform;
}

/* ── RESPONSIVE CLIP-PATH DISABLE (mobile) ──────────────────── */
@media (max-width: 768px) {
  .section--cta-band,
  .site-footer {
    clip-path: none;
    padding-top: var(--section-gap);
    margin-top: 0;
  }
  .archive-hero {
    clip-path: none;
    padding-bottom: 3.5rem;
  }
}
