/*
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}



@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/PlusJakartaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
*/

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair-display-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair-display-latin-900-normal.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair-display-latin-700-italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair-display-latin-900-italic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plus-jakarta-sans-latin-ext-300-normal.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plus-jakarta-sans-latin-ext-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plus-jakarta-sans-latin-ext-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plus-jakarta-sans-latin-ext-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


:root {
  --noir: #0a0a0a;
  --deep: #111118;
  --card: #16161e;
  --white: #f0ede8;
  --warm: #e8e2d8;
  --muted: #8a8580;
  --gold: #c9a84c;
  --gold2: #e8c76a;
  --orange: #e05c20;
  --border: rgba(240, 237, 232, 0.07);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--noir);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: 0.3s;
}

.footer-socials a:hover {
  background: var(--gold);
  transform: translateY(-2px);
  color: var(--noir);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 75px;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(10, 10, 10, .96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: .04em;
}

.nav-logo span {
  background: linear-gradient(90deg, #c9a84c, #e8c76a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(240, 237, 232, .65);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-btn {
  font-size: .82rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--noir);
  padding: .55rem 1.5rem;
  text-decoration: none;
  border-radius: 100px;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

/* ── FIL D'ARIANE ─────────────────────────────────────────────────── */
.breadcrumb-bar {
  position: absolute;
  z-index: 10;
  padding: 5rem 3.5rem 0;
  width: 100%;
}

div.scrolled ~ .breadcrumb-bar {
  padding-top: 1.4rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: .7rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
}

/* séparateur chevron SVG en CSS */
.breadcrumb li + li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 .25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(240,237,232,0.18)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Lien cliquable */
.breadcrumb a {
  color: rgba(240, 237, 232, .38);
  text-decoration: none;
  transition: color .18s;
  white-space: nowrap;
  padding: .2rem .1rem;
}

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

/* Icône maison pour l'accueil */
.bc-home {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.bc-home svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* Page courante : non cliquable, visible */
.breadcrumb [aria-current="page"] {
  color: rgba(240, 237, 232, .72);
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Tag de service optionnel (ex: "Sonorisation") */
.bc-tag {
  display: inline-flex;
  align-items: center;
  padding: .15rem .55rem;
  border-radius: 100px;
  background: rgba(201, 168, 76, .08);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media(max-width: 768px) {
  .breadcrumb-bar { padding: .9rem 1.5rem 0; }
  .breadcrumb [aria-current="page"] { max-width: 160px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 168, 76, .18) 0%, transparent 55%), radial-gradient(ellipse 60% 60% at 20% 100%, rgba(224, 92, 32, .22) 0%, transparent 50%), radial-gradient(ellipse 60% 60% at 80% 90%, rgba(201, 168, 76, .14) 0%, transparent 50%), linear-gradient(180deg, #050508 0%, #0e0c14 40%, #180f0a 100%);
}

.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.beam {
  position: absolute;
  top: 0;
  width: 2px;
  height: 75vh;
  transform-origin: top center;
  background: linear-gradient(to bottom, rgba(201, 168, 76, .55), transparent);
  filter: blur(3px);
}

.beam:nth-child(1) {
  left: 15%;
  transform: rotate(14deg);
  opacity: .5;
  animation: ba 7s ease-in-out infinite;
}

.beam:nth-child(2) {
  left: 30%;
  transform: rotate(5deg);
  opacity: .35;
  background: linear-gradient(to bottom, rgba(224, 92, 32, .45), transparent);
  animation: ba 9s ease-in-out infinite 1s;
}

.beam:nth-child(3) {
  left: 50%;
  transform: rotate(-2deg);
  opacity: .55;
  animation: ba 6s ease-in-out infinite .5s;
}

.beam:nth-child(4) {
  left: 68%;
  transform: rotate(-8deg);
  opacity: .4;
  background: linear-gradient(to bottom, rgba(255, 180, 80, .4), transparent);
  animation: ba 8s ease-in-out infinite 2s;
}

.beam:nth-child(5) {
  left: 82%;
  transform: rotate(-16deg);
  opacity: .45;
  animation: ba 10s ease-in-out infinite 1.5s;
}

@keyframes ba {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: .75;
  }
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(201, 168, 76, .12) 0%, rgba(224, 92, 32, .06) 30%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 3.5rem 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, .65);
  max-width: 780px;
  margin-bottom: 2.8rem;
  line-height: 1.75;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  font-size: .88rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--noir);
  padding: .9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(201, 168, 76, .3);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .45);
}

.btn-outline {
  font-size: .88rem;
  font-weight: 500;
  background: transparent;
  color: var(--white);
  padding: .9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(240, 237, 232, .25);
  letter-spacing: .03em;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, .6);
  backdrop-filter: blur(8px);
}

.stat {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
}

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

.stat-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat-l {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* SECTIONS */
section {
  padding: 7rem 3.5rem;
}

.s-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.s-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.s-title em {
  font-style: italic;
  color: var(--gold);
}

.s-desc {
  font-size: 1rem;
  color: rgba(240, 237, 232, .6);
  max-width: 540px;
  line-height: 1.75;
}

/* SERVICES */
#services {
  background: var(--deep);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.svc {
  background: var(--deep);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.svc:hover {
  background: #1a1a24;
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, .07);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
  user-select: none;
  transition: color .3s;
}

.svc:hover .svc-num {
  color: rgba(201, 168, 76, .14);
}

.svc-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}

.svc-tag {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .7rem;
}

.svc h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svc h3 a {
  text-decoration: none;
  color: var(--white);
}

.svc p {
  font-size: .95rem;
  color: rgba(240, 237, 232, .58);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.chip {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 168, 76, .07);
  border: 1px solid rgba(201, 168, 76, .18);
  padding: .25rem .65rem;
  border-radius: 100px;
}

/* ABOUT */
#apropos {
  background: var(--noir);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--card);
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 168, 76, .25) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 20% 80%, rgba(224, 92, 32, .2) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 168, 76, .15) 0%, transparent 50%), linear-gradient(180deg, #0a0808 0%, #1a1008 60%, #0f0808 100%);
  z-index: 1;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 250deg at 50% 0%, transparent 5%, rgba(201, 168, 76, .12) 8%, transparent 12%), conic-gradient(from 255deg at 50% 0%, transparent 5%, rgba(224, 92, 32, .1) 8%, transparent 12%), conic-gradient(from 263deg at 50% 0%, transparent 5%, rgba(201, 168, 76, .1) 8%, transparent 12%);
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: rgba(10, 10, 10, .85);
  border: 1px solid rgba(201, 168, 76, .3);
  backdrop-filter: blur(12px);
  padding: 1.2rem 1.5rem;
  z-index: 10;
  text-align: center;
}

.about-badge-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-badge-l {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

.about-content .s-desc {
  margin-bottom: 3rem;
}

.strengths {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strength {
  display: flex;
  gap: 1.5rem;
  padding: 1.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(201, 168, 76, .15);
  border-radius: 6px;
  transition: all .3s;
}

.strength:hover {
  border-left: 3px solid var(--gold);
  background: #1c1c26;
  transform: translateY(-2px);
}

.strength-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  padding-top: .1rem;
}

.strength h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}

.strength p {
  font-size: .84rem;
  color: rgba(240, 237, 232, .55);
  line-height: 1.6;
}

/* ZONES */
#zones {
  background: var(--deep);
}

.zones-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.zones-cta-block {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
}

.zones-cta-block p {
  font-size: .88rem;
  color: rgba(240, 237, 232, .6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.phone-big {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: .5rem;
  transition: color .2s;
}

.phone-big:hover {
  color: var(--gold2);
}

.phone-sub {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 3.5rem;
}

.dept {
  background: var(--deep);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background .2s;
  cursor: default;
}

.dept:hover {
  background: var(--card);
}

.dept-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.dept-v {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .35rem;
}

.communes-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.communes {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.com {
  font-size: .78rem;
  color: rgba(240, 237, 232, .5);
  background: var(--card);
  border: 1px solid var(--border);
  padding: .35rem .85rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
}

.com:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, .4);
  background: rgba(201, 168, 76, .05);
}

.com.key {
  color: var(--warm);
  border-color: rgba(240, 237, 232, .15);
}

/* PROCESS */
#process {
  background: var(--noir);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}

.step {
  background: var(--noir);
  padding: 3rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.step:hover {
  background: #121218;
}

.step-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, .06);
  position: absolute;
  top: .5rem;
  right: 1rem;
  line-height: 1;
  user-select: none;
  transition: color .3s;
}

.step:hover .step-num {
  color: rgba(201, 168, 76, .12);
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.step-phase {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .8rem;
}

.step p {
  font-size: .84rem;
  color: rgba(240, 237, 232, .55);
  line-height: 1.65;
}

/* REFERENCES */
#references {
  background: var(--deep);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.ref {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.ref:hover {
  border-color: rgba(201, 168, 76, .25);
}

.ref-quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  color: rgba(201, 168, 76, .07);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  user-select: none;
}

.ref-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1.2rem;
}

.ref-type {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(224, 92, 32, .08);
  border: 1px solid rgba(224, 92, 32, .2);
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.ref-text {
  font-size: .9rem;
  color: rgba(240, 237, 232, .65);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.8rem;
}

.ref-author {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

.ref-org {
  font-size: .75rem;
  color: var(--gold);
  margin-top: .2rem;
}

/* CTA */
#cta {
  background: var(--noir);
  position: relative;
  overflow: hidden;
  padding: 9rem 3.5rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(201, 168, 76, .12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 50%, rgba(224, 92, 32, .08) 0%, transparent 50%), radial-gradient(ellipse 40% 40% at 90% 50%, rgba(201, 168, 76, .07) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-inner .s-desc {
  margin: 0 auto 3rem;
  text-align: center;
}

.cta-phone {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: .6rem;
  transition: color .2s;
}

.cta-phone:hover {
  color: var(--gold2);
}

.cta-phone-sub {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* SEO */
.seo-links-section {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3rem 3.5rem;
}

.seo-links-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(138, 133, 128, .5);
  margin-bottom: 1.5rem;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.seo-l {
  font-size: .72rem;
  color: rgba(138, 133, 128, .45);
  text-decoration: none;
  padding: .2rem .5rem;
  border-radius: 3px;
  transition: color .15s;
}

.seo-l:hover {
  color: var(--gold);
}

/* FOOTER */
footer {
  background: #060606;
  padding: 4rem 3.5rem 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-brand .ci {
  margin-top: 1.2rem;
}

.footer-brand .ci a {
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: .3rem;
  font-size: .82rem;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

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

.footer-col li {
  margin-bottom: .55rem;
}

.footer-col a {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .74rem;
  color: rgba(138, 133, 128, .8);
}

/* ANIM */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

  .zones-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dept-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ref-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Burger menu mobile ───────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, width .3s ease;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 199;
  flex-direction: column;
  gap: .3rem;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  display: block;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(240, 237, 232, .7);
  text-decoration: none;
  border-radius: 4px;
  transition: background .15s, color .15s;
  font-family: var(--sans);
}

.nav-drawer a:hover {
  background: rgba(201, 168, 76, .08);
  color: var(--gold);
}

.nav-drawer .drawer-cta {
  margin-top: .8rem;
  background: var(--gold);
  color: var(--noir);
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
}

.nav-drawer .drawer-cta:hover {
  background: var(--gold2);
}

/* ── Tablette 768–1100px ─────────────────────────────── */
@media(min-width:769px) and (max-width:1100px) {
  nav {
    padding: 0 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

  #cta {
    padding: 7rem 2rem;
  }

  .hero-content {
    padding: 0 2rem 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-links-section {
    padding: 2.5rem 2rem;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-burger {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 1.5rem;
  }

  #cta {
    padding: 6rem 1.5rem;
  }

  .hero-content {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-eyebrow {
    font-size: .75rem;
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    font-size: .92rem;
    margin-bottom: 2rem;
  }

  .btn-gold,
  .btn-outline {
    padding: .8rem 1.6rem;
    font-size: .82rem;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .dept-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .ref-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
  }

  .seo-links-section {
    padding: 2rem 1.5rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc {
    padding: 2rem 1.5rem;
  }

  .stat {
    padding: 1.2rem 1rem;
  }

  .stat-n {
    font-size: 1.9rem;
  }

  .zones-cta-block {
    padding: 1.8rem;
  }

  .footer-bottom {
    text-align: center;
  }
}