/* ═══════════════════════════════════════════════
   NEFERTUM BUSINESS SERVICES — Design Premium v2
   ═══════════════════════════════════════════════ */

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

:root {
  --black:        #141414;
  --black-soft:   #1e1e1e;
  --black-card:   #1a1a1a;
  --white:        #ffffff;
  --beige:        #f7f3ec;
  --beige-dark:   #ede7da;
  --gray-100:     #f0ece4;
  --gray-200:     #e0dbd1;
  --gray-400:     #a8a39a;
  --gray-500:     #706b62;
  --gray-700:     #3a3730;
  --gold:         #c9a55a;
  --gold-light:   #dfc07e;
  --gold-pale:    #f2e8d0;
  --gold-dark:    #9e7e35;
  --gold-border:  rgba(201,165,90,0.22);
  --radius-sm:    3px;
  --radius:       6px;
  --radius-lg:    12px;
  --max-w:        1100px;
  --nav-h:        72px;
  --t:            0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p { line-height: 1.72; }

/* ══════════════════════════════
   LOGO
══════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo image in nav (white version on dark bg) */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* Invert to white on dark nav background */
  filter: brightness(0) invert(1);
  transition: filter var(--t);
}

/* Logo in footer — full color */
.logo-img-color {
  height: 70px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Logo in hero (light bg context) — full color */
.logo-img-dark {
  height: 52px;
  width: auto;
  display: block;
}

/* Fallback text (shown if logo.png not found) */
.logo-fallback {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.logo-mark-letter {
  font-family: 'Georgia', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--black); line-height: 1;
}

.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}

.logo-name {
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
}

.logo-sub {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 1px;
}

.logo-dark .logo-name { color: var(--black); }
.logo-dark .logo-sub  { color: var(--gold-dark); }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  transition: background var(--t);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.8rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}

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

.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  margin-left: 0.6rem;
  padding: 0.45rem 1.1rem;
}

.nav-links a.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: transparent; color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ══════════════════════════════
   LAYOUT
══════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

section {
  padding: 5rem 1.75rem;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Section tags, titles, dividers */
.s-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.s-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 1.1rem 0;
}

.s-desc {
  font-size: 1.02rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.78;
}

/* ══════════════════════════════
   HERO — SPLIT
══════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 0;
}

.hero-split-left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-split-left::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(201,165,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split-left::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -10%;
  width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(201,165,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.35rem;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.hero-split-right {
  position: relative;
  overflow: hidden;
}

.hero-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-split-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,20,20,0.35) 0%, transparent 50%);
}

/* PAGE HERO (smaller) */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 3.5rem) 1.75rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.page-hero-left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 3.5rem 3.5rem;
  position: relative;
}

.page-hero-left::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(201,165,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; max-width: 500px; }
.page-hero-content .s-tag { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); }
.page-hero-content .s-desc { color: rgba(255,255,255,0.58); }

.page-hero-right {
  position: relative;
  overflow: hidden;
}

.page-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,20,20,0.4) 0%, transparent 40%);
}

/* Simple dark page hero */
.page-hero-simple {
  background: var(--black);
  padding: calc(var(--nav-h) + 3.5rem) 1.75rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-simple::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,165,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-inner .s-tag { color: var(--gold-light); }
.page-hero-inner h1 { color: var(--white); }
.page-hero-inner .s-desc { color: rgba(255,255,255,0.58); }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}

.card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  border-color: var(--gold-pale);
  transform: translateY(-2px);
}

.card-icon-circle {
  width: 54px; height: 54px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.card-icon-circle svg { width: 24px; height: 24px; }

.card-num {
  width: 54px; height: 54px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Georgia', serif;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.72; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  transition: gap var(--t), color var(--t);
}

.card-link:hover { color: var(--gold); gap: 0.8rem; }

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--gold-dark);
  transition: background var(--t);
}

.card:hover .card-arrow { background: var(--gold); color: var(--black); }

/* ══════════════════════════════
   SERVICE CARD (with image)
══════════════════════════════ */
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}

.svc-card:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.svc-card-body { padding: 1.75rem 1.75rem 2rem; }

.svc-checklist {
  list-style: none;
  margin: 1.1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.svc-checklist li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--gold-pale);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  position: relative;
}

/* ══════════════════════════════
   MÉTHODE — STEPS HORIZONTAUX
══════════════════════════════ */
.method-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 3rem;
}

.method-step {
  text-align: center;
  padding: 0 0.75rem;
}

.method-step-num {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  font-family: 'Georgia', serif;
  margin: 0 auto 1.1rem;
}

.method-step h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.method-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.method-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 1.25rem;
  color: var(--gold);
  font-size: 1.25rem;
}

/* ══════════════════════════════
   VALEURS
══════════════════════════════ */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.valeur-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--beige);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige-dark);
}

.valeur-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.valeur-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.valeur-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ══════════════════════════════
   PRESTATIONS LIST
══════════════════════════════ */
.prestations-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.prestation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: border-color var(--t), background var(--t);
}

.prestation-item:hover {
  border-color: var(--gold-pale);
  background: var(--beige);
}

.prestation-item .pi-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════
   HIGHLIGHT BLOC
══════════════════════════════ */
.highlight-bloc {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 1.75rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}

.highlight-bloc .hb-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
  display: block;
}

.highlight-bloc p { font-size: 0.93rem; color: var(--gray-700); line-height: 1.72; }

/* ══════════════════════════════
   INTERNAL LINKS
══════════════════════════════ */
.internal-link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.6rem;
  background: var(--black);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.5;
  transition: background var(--t), box-shadow var(--t);
  margin-top: 0.85rem;
  border: 1px solid rgba(201,165,90,0.1);
}

.internal-link:hover {
  background: var(--black-soft);
  border-color: rgba(201,165,90,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.internal-link-arrow {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
  font-weight: 700;
}

.internal-link strong { color: var(--white); display: block; margin-bottom: 0.2rem; }
.internal-link span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ══════════════════════════════
   TWO COL LAYOUT
══════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
}

/* ══════════════════════════════
   DARK / BEIGE SECTIONS
══════════════════════════════ */
.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .s-tag { color: var(--gold-light); }
.section-dark h2 { color: var(--white); }
.section-dark .s-desc { color: rgba(255,255,255,0.58); }
.section-dark p { color: rgba(255,255,255,0.58); }

.section-beige { background: var(--beige); }

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  background: var(--gold);
  padding: 3.5rem 1.75rem;
}

.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--black); font-size: clamp(1.3rem, 3vw, 1.9rem); }
.cta-band p { color: rgba(0,0,0,0.6); margin-top: 0.4rem; font-size: 0.95rem; }

/* ══════════════════════════════
   CONTACT FORM
══════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--beige);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--t), background var(--t);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,165,90,0.1);
}

.form-group textarea { resize: vertical; min-height: 150px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

/* Service radio buttons */
.service-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.service-choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--beige);
}

.service-choice:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--black);
}

.service-choice input[type="radio"] { display: none; }

.service-choice-icon {
  width: 28px; height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ══════════════════════════════
   STEPS (vertical, for pages)
══════════════════════════════ */
.steps-list {
  display: grid;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}

.step {
  background: var(--white);
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-num {
  width: 48px; height: 48px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Georgia', serif;
  flex-shrink: 0;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ══════════════════════════════
   PHOTO GRID
══════════════════════════════ */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 480px;
}

.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-grid img:first-child {
  grid-row: span 2;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 1.75rem 2rem;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
}

.footer-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}

.footer-nav-list a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  width: 28px; height: 28px;
  background: rgba(201,165,90,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: -1px;
}

.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--t);
}

.footer-legal a:hover { color: var(--gold-light); }

/* ══════════════════════════════
   DIVIDER
══════════════════════════════ */
hr.sep {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 3rem 0;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-left { min-height: 100vh; }
  .hero-split-right { display: none; }

  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-right { display: none; }
  .page-hero-left { min-height: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .method-steps { grid-template-columns: 1fr; }
  .method-arrow { display: none; }
  .method-step { padding: 1rem 0; border-bottom: 1px solid var(--gray-200); }
}

@media (max-width: 820px) {
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-image img { height: 300px; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { height: 320px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    padding: 0.75rem 1.5rem 1.5rem;
    gap: 0.15rem;
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .nav-links.open a { padding: 0.8rem 0.5rem; font-size: 0.88rem; }
  .nav-links.open a.nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .cards-grid-3,
  .cards-grid-2 { grid-template-columns: 1fr; }
  .prestations-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .service-choices { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 1.25rem; }
  .photo-grid { grid-template-columns: 1fr; height: auto; }
  .photo-grid img:first-child { grid-row: span 1; height: 220px; }
  .photo-grid img { height: 180px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 0 1.25rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}
