/* ============================================================
   NEED HOUSE — style.css
   Palette: Taupe #b5a0a0 / Prune #5c1f3a / Crème #f5ede4 / Sombre #1a1515
   Fonts: Cormorant Garamond (headings) / DM Sans (body)
============================================================ */

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --nh-prune:     #5c1f3a;
  --nh-prune-2:   #451628;
  --nh-taupe:     #b5a0a0;
  --nh-taupe-2:   #c9b8b8;
  --nh-cream:     #f5ede4;
  --nh-cream-2:   #ede1d4;
  --nh-dark:      #1a1515;
  --nh-dark-2:    #241d1d;
  --nh-white:     #ffffff;
  --nh-text:      #2e2424;
  --nh-muted:     #7a6a6a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --nav-h:        72px;
  --section-py:   6rem;
  --radius:       2px;
  --radius-lg:    4px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body { font-family: var(--font-body); color: var(--nh-text); background: var(--nh-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* ── TYPOGRAPHIE ─────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nh-taupe);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--nh-taupe-2); }
.section-eyebrow--dark { color: #000; }
.section-eyebrow--lg {
  font-size: 1.95rem;
  letter-spacing: 0.18em;
  color: var(--nh-taupe);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--nh-dark);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--nh-prune); }
.section-title--light { color: var(--nh-cream); }
.section-title--light em { color: var(--nh-taupe-2); }
.section-title--black { color: var(--nh-dark); }
.section-title--black-align { color: var(--nh-dark); text-align: left; }

.valeurs-title-inline {
  color: var(--nh-dark);
  text-align: left;
  white-space: nowrap;
}
.valeurs-title-inline em { font-style: italic; font-weight: 300; color: #000; }

.tarifs-title-inline {
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.tarifs-title-inline em { font-style: italic; font-weight: 300; color: var(--nh-prune); }

.etapes-title-inline {
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.etapes-title-inline em { font-style: italic; font-weight: 300; color: var(--nh-prune); }

.avis-title-inline {
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.avis-title-inline em { font-style: italic; font-weight: 300; color: var(--nh-prune); }

.blog-title-inline {
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.blog-title-inline em { font-style: italic; font-weight: 300; color: var(--nh-prune); }

.about-em-prune { color: var(--nh-prune) !important; font-style: italic; font-weight: 300; }

.section-body { font-size: 1.05rem; line-height: 1.75; color: var(--nh-muted); margin-bottom: 1rem; }
.section-body--light { color: var(--nh-taupe-2); }

.italic-quote {
  font-style: italic;
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--nh-prune);
  line-height: 1.6;
  padding-left: 1.25rem;
  border-left: 2px solid var(--nh-taupe);
}

.mb-section { margin-bottom: 4rem; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--nh-white); }
.section--cream { background: var(--nh-cream); }
.section--dark  { background: var(--nh-dark); }

/* ── REVEAL ──────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal][data-delay="1"] { transition-delay: 0.15s; }
[data-reveal][data-delay="2"] { transition-delay: 0.30s; }
[data-reveal][data-delay="3"] { transition-delay: 0.45s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── BOUTONS ─────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--nh-prune); color: var(--nh-white);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta:hover { background: var(--nh-prune-2); color: var(--nh-white); transform: translateY(-2px); }
.btn-cta--full { width: 100%; }

.btn-outline-nh {
  display: inline-flex; align-items: center;
  color: var(--nh-prune); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--radius); border: 1.5px solid var(--nh-prune);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline-nh:hover { background: var(--nh-prune); color: var(--nh-white); transform: translateY(-2px); }

.btn-hero-primary {
  display: inline-flex; align-items: center;
  background: var(--nh-prune); color: var(--nh-white);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.25rem; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary:hover { background: var(--nh-prune-2); color: var(--nh-white); transform: translateY(-2px); }

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.25rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--nh-white); transform: translateY(-2px); }

/* ── NAVBAR ──────────────────────────────────────────────── */
#mainNav {
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition);
  padding: 0;
  z-index: 1000;
  /* ✅ RETOUR CLIENT : alignement haut pour que le logo s'aligne avec le menu */
  align-items: flex-start;
}
#mainNav .container {
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}
#mainNav.scrolled { background: rgba(26,21,21,0.97); backdrop-filter: blur(12px); }

/* ✅ RETOUR CLIENT : logo agrandi à la taille de l'encadré, haut aligné avec le menu */
.nav-logo {
  height: 160px;
  width: auto;
  display: block;
  /* Retire le décalage vertical pour que le haut du logo soit aligné avec le haut de la navbar */
  margin-top: 0;
}

/* Aligner le menu verticalement avec le haut de la navbar */
.navbar-collapse .navbar-nav {
  padding-top: 1.1rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); padding: 0.35rem 0.75rem;
  position: relative; transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 1px; background: var(--nh-taupe); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--nh-white); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border: none; background: none; padding: 0.5rem; display: flex; flex-direction: column; gap: 5px; cursor: pointer; margin-top: 1rem; }
.navbar-toggler:focus { outline: none; }
.toggler-icon { display: block; width: 24px; height: 1.5px; background: var(--nh-white); transition: transform var(--transition), opacity var(--transition); }

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 100vh;
  background-color: var(--nh-dark);
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center 40%; background-repeat: no-repeat;
  overflow: hidden; display: flex; align-items: center;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,10,10,0.55); pointer-events: none; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,10,10,0.4) 0%, transparent 25%, transparent 70%, rgba(15,10,10,0.65) 100%),
    linear-gradient(135deg, rgba(20,13,13,0.6) 0%, rgba(36,22,28,0.2) 100%);
  pointer-events: none; z-index: 1;
}
.hero-accent { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.06; z-index: 2; }
.hero-accent--1 { width: 600px; height: 600px; background: var(--nh-prune); top: -200px; right: -150px; animation: floatA 12s ease-in-out infinite alternate; }
.hero-accent--2 { width: 300px; height: 300px; background: var(--nh-taupe); bottom: 60px; left: -80px; animation: floatB 15s ease-in-out infinite alternate; }
@keyframes floatA { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-30px) scale(1.05); } }
@keyframes floatB { from { transform: translate(0,0); } to { transform: translate(-20px,20px) scale(0.97); } }

.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 600; line-height: 1.05; color: var(--nh-white); margin-bottom: 2rem; }
.hero-title em { font-style: italic; font-weight: 300; color: var(--nh-taupe-2); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; z-index: 3; opacity: 0.45; transition: opacity var(--transition); }
.scroll-indicator:hover { opacity: 1; }
.scroll-line { display: block; width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--nh-taupe)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── À PROPOS ────────────────────────────────────────────── */
.about-visual { position: relative; display: inline-flex; }
.about-img-frame { width: 380px; height: 480px; max-width: 100%; position: relative; overflow: hidden; }
.about-img-inner {
  width: 100%; height: 100%;
  background-image: url('https://agenceneedhouse.com/docs/images/apropos.png');
  background-size: cover; background-position: center;
  position: relative;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.9);
}
.about-img-frame:hover .about-img-inner { transform: scale(1.04); filter: saturate(1.05); }
.about-img-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,21,21,0.25) 100%);
  pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--nh-prune); color: var(--nh-white);
  padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
}
.about-badge i { font-size: 1.1rem; }

/* ── FEATURE CARDS ───────────────────────────────────────── */
.feature-card { padding: 2.5rem 2rem; background: var(--nh-white); border-top: 2px solid var(--nh-prune); height: 100%; transition: transform var(--transition); }
.feature-card:hover { transform: translateY(-4px); }
.feature-card--centered { text-align: center; }
.feature-icon { font-size: 1.75rem; color: var(--nh-prune); margin-bottom: 1.25rem; }
.feature-icon--centered { display: flex; justify-content: center; font-size: 2.2rem; }
.feature-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--nh-dark); margin-bottom: 0.75rem; }
.feature-title--lg { font-size: 1.65rem; }
.feature-body { font-size: 0.92rem; line-height: 1.7; color: var(--nh-muted); margin: 0; }

/* ── MISSION ─────────────────────────────────────────────── */
.mission-item { padding: 2rem 0; position: relative; }
.mission-item::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 1px; background: var(--nh-prune); }
.mission-item--centered { text-align: center; }
.mission-item--centered::before { left: 50%; transform: translateX(-50%); }
.mission-number { font-size: 2rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.mission-number--white { color: #fff; }
.mission-name { font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.mission-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.45); margin: 0; }

/* ── VALEURS ─────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--nh-cream);
  color: var(--nh-prune);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.value-icon--filled {
  background: var(--nh-cream);
  color: var(--nh-prune);
}
.value-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--nh-dark); margin-bottom: 0.35rem; }
.value-name--lg { font-size: 1.6rem; font-weight: 700; color: var(--nh-dark); }
.value-desc { font-size: 0.85rem; line-height: 1.65; color: var(--nh-muted); margin: 0; }

/* ── TARIFS ──────────────────────────────────────────────── */
.pricing-card { background: var(--nh-white); border-top: 3px solid var(--nh-prune); padding: 3rem 2.5rem; }
.pricing-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nh-taupe); margin-bottom: 1.5rem; }
.pricing-header { padding-bottom: 2rem; border-bottom: 1px solid var(--nh-cream-2); margin-bottom: 2rem; }
.pricing-amount { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.pricing-value { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: var(--nh-prune); line-height: 1; }
.pricing-value sup { font-size: 2.5rem; vertical-align: super; }
.pricing-value--dark { color: var(--nh-dark); }
.pricing-period { font-size: 0.88rem; line-height: 1.6; color: var(--nh-muted); }
.pricing-period small { font-size: 0.8rem; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.pricing-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--nh-text); }
.pricing-item i { color: var(--nh-prune); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-item--light { color: var(--nh-muted); }
.pricing-item--light i { color: var(--nh-taupe); }

/* ── ÉTAPES ──────────────────────────────────────────────── */
.steps-timeline { display: flex; flex-direction: column; max-width: 700px; margin: 0 auto; position: relative; }
.steps-timeline::before { content: ''; position: absolute; top: 0; left: 28px; bottom: 0; width: 1px; background: var(--nh-cream-2); }
.step { display: flex; gap: 2rem; padding: 2.5rem 0; position: relative; }
.step-marker { flex-shrink: 0; width: 56px; height: 56px; background: var(--nh-prune); color: var(--nh-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; position: relative; z-index: 1; }
.step-content { padding-top: 0.75rem; }
.step-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--nh-dark); margin-bottom: 0.75rem; }
.step-body { font-size: 0.95rem; line-height: 1.75; color: var(--nh-muted); margin: 0; }

/* ── AVIS CLIENTS ────────────────────────────────────────── */
.review-card { position: relative; height: 420px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.review-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 0.6s ease; filter: saturate(0.7); }
.review-card:hover .review-bg { transform: scale(1.1); filter: saturate(0.85); }
.review-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,13,13,0.2) 0%, rgba(20,13,13,0.5) 35%, rgba(20,13,13,0.82) 100%); z-index: 1; }
.review-inner { position: relative; z-index: 2; padding: 1.5rem; }
.review-header { margin-bottom: 0.75rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.review-script { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; font-weight: 300; color: rgba(255,255,255,0.9); line-height: 1; }
.review-stars { display: flex; gap: 3px; color: #d4a84b; font-size: 0.85rem; }
.review-body { background: rgba(255,255,255,0.92); padding: 1rem 1.2rem; margin: 0 0 0.75rem; }
.review-body p { font-size: 0.88rem; line-height: 1.65; color: var(--nh-text); margin: 0; text-align: center; }
.review-quote-open { display: block; font-size: 1.5rem; color: var(--nh-taupe); line-height: 1; margin-bottom: 0.25rem; }
.review-quote-close { display: block; font-size: 1.5rem; color: var(--nh-taupe); line-height: 1; text-align: right; margin-top: 0.25rem; }
.review-author { display: inline-block; background: var(--nh-taupe); color: var(--nh-white); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 1.1rem; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; height: 100%; background: var(--nh-white); border-top: 2px solid var(--nh-prune); transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-img { height: 220px; background-size: cover; background-position: center; flex-shrink: 0; filter: saturate(0.75); transition: filter 0.4s ease; }
.blog-card:hover .blog-img { filter: saturate(1); }
.blog-body { padding: 1.75rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-tag { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--nh-prune); background: rgba(92,31,58,0.07); padding: 0.25rem 0.65rem; margin-bottom: 0.9rem; }
.blog-title-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--nh-dark); line-height: 1.35; margin-bottom: 0.75rem; }
.blog-excerpt { font-size: 0.88rem; line-height: 1.7; color: var(--nh-muted); margin-bottom: 1.25rem; flex: 1; }
.blog-read-more { background: none; border: none; padding: 0; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nh-prune); cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: gap var(--transition); align-self: flex-start; }
.blog-read-more:hover { gap: 0.85rem; }
.blog-read-more[aria-expanded="true"] { color: var(--nh-taupe); }
.blog-full-text { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--nh-cream-2); animation: expandIn 0.3s ease forwards; }
@keyframes expandIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.blog-full-text p { font-size: 0.88rem; line-height: 1.75; color: var(--nh-muted); margin-bottom: 0.85rem; }
.blog-full-text p:last-child { margin-bottom: 0; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-info__item { display: flex; align-items: center; gap: 0.85rem; color: rgba(255,255,255,0.55); font-size: 0.92rem; transition: color var(--transition); }
.contact-info__item i { width: 36px; height: 36px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--nh-taupe); flex-shrink: 0; transition: background var(--transition), color var(--transition); }
.contact-info__item:hover { color: var(--nh-white); }
.contact-info__item:hover i { background: var(--nh-prune); color: var(--nh-white); }
.form-group-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nh-taupe); padding-bottom: 0.6rem; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.form-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.nh-input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); color: var(--nh-white); font-family: var(--font-body); font-size: 0.95rem; padding: 0.85rem 1rem; transition: border-color var(--transition), background var(--transition); width: 100%; }
.nh-input::placeholder { color: rgba(255,255,255,0.25); }
.nh-input:focus { background: rgba(255,255,255,0.07); border-color: var(--nh-taupe); outline: none; color: var(--nh-white); }
.nh-input option { background: var(--nh-dark); color: var(--nh-white); }
.invalid-feedback { font-size: 0.78rem; color: #e8a0a0; }
.form-control.is-invalid, .form-select.is-invalid { border-color: #c0534f; }
#formFeedback .alert-success { background: rgba(92,31,58,0.3); border: 1px solid var(--nh-prune); color: var(--nh-taupe-2); border-radius: var(--radius); padding: 1rem; font-size: 0.9rem; }
#formFeedback .alert-error   { background: rgba(192,83,79,0.15); border: 1px solid rgba(192,83,79,0.4); color: #e8a0a0; border-radius: var(--radius); padding: 1rem; font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--nh-dark-2); padding: 4rem 0 2rem; color: rgba(255,255,255,0.45); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: flex-start; justify-content: space-between; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }

/* ✅ RETOUR CLIENT : logo agrandi dans le footer */
.footer-logo { height: 140px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.35); margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-nav a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-nav a:hover { color: var(--nh-white); }

/* ✅ RETOUR CLIENT : pictos centrés + email/téléphone sous les pictos */
.footer-contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-social { display: flex; gap: 1rem; justify-content: center; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--nh-prune); color: var(--nh-white); }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.footer-contact-item:hover { color: var(--nh-white); }
.footer-contact-item i { font-size: 0.9rem; color: var(--nh-taupe); }

.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--nh-prune); color: var(--nh-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity var(--transition), transform var(--transition), background var(--transition); z-index: 99; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--nh-prune-2); }


/* ================================================================
   RESPONSIVE — 3 breakpoints : 992 / 768 / 576
================================================================ */
@media (max-width: 767.98px) {
  .nav-logo { height: 90px; }
  .footer-logo{ height: 90px; }
}
/* TABLETTE < 992px */
@media (max-width: 991.98px) {
  :root { --section-py: 4rem; }

  #mainNav { align-items: center; }
  #mainNav .container { align-items: center; }
  .nav-logo { height: 100px; }
  .footer-logo{ height: 100px; }
  .navbar-toggler { margin-top: 0; }

  #navMenu { background: rgba(26,21,21,0.98); padding: 1.5rem; margin-top: 0.5rem; }
  .navbar-nav .nav-link { padding: 0.6rem 0; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-collapse .navbar-nav { padding-top: 0; }

  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .about-visual { width: 100%; justify-content: center; }
  .about-img-frame { width: 100%; max-width: 380px; height: 380px; }

  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-timeline::before { left: 24px; }
  .step-marker { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* MOBILE < 768px — CENTRAGE COMPLET */
@media (max-width: 767.98px) {
  :root { --section-py: 3rem; }

  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 1.5rem; text-align: center; }
  .hero-actions { justify-content: center !important; }

  .section-eyebrow,
  .section-title,
  .section-body { text-align: center; }

  .section-title--black-align { text-align: center; }

  .valeurs-title-inline,
  .tarifs-title-inline,
  .etapes-title-inline,
  .avis-title-inline,
  .blog-title-inline { white-space: normal; text-align: center; }

  .italic-quote {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--nh-taupe);
    padding-top: 1rem;
    text-align: center;
  }

  .about-visual { width: 100%; justify-content: center; display: flex; }
  .about-img-frame {
    width: 100%;
    max-width: 100%;
    height: 280px;
  }
  .about-img-inner {
    width: 100%;
    height: 100%;
    background-image: url('https://agenceneedhouse.com/docs/images/apropos.png') !important;
    background-size: cover !important;
    background-position: center !important;
    display: block;
  }
  .btn-outline-nh { width: 100%; justify-content: center; }

  .feature-card--centered { text-align: center; }
  .feature-icon--centered { display: flex; justify-content: center; }

  .mission-item { text-align: center; }
  .mission-item::before { left: 50%; transform: translateX(-50%); }

  .values-grid { grid-template-columns: 1fr; }
  .value-item { flex-direction: column; align-items: center; text-align: center; }
  .value-icon { margin: 0 auto; }

  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-value { font-size: 3.5rem; }
  .pricing-amount { justify-content: center; }
  .pricing-period { text-align: center; }

  .steps-timeline::before { display: none; }
  .step { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
  .step-content { padding-top: 0; }
  .step-title, .step-body { text-align: center; }

  .review-card { height: 360px; }
  .review-header { align-items: center; width: 100%; }

  .blog-body { text-align: center; }
  .blog-tag { display: block; text-align: center; }
  .blog-read-more { align-self: center; }

  .section-title--light,
  .section-body--light { text-align: center; }
  .contact-info { align-items: center; }

  .footer-inner { flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { margin: 0 auto 1rem; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-contact-info { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; }
}

/* PETIT MOBILE < 576px */
@media (max-width: 575.98px) {
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; justify-content: center; width: 100%; }

  .about-img-frame { height: 240px; }

  .pricing-card { padding: 1.5rem 1rem; }

  .step-marker { align-self: center; }
}