/* ============================================================
   MAISON NOBLE — Stylesheet
   Single-page landing · Premium Barber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg:      #0B0B0E;
  --bg2:     #111116;
  --bg3:     #18181F;
  --gold:    #C4974A;
  --gold-l:  #D4AA65;
  --white:   #FFFFFF;
  --muted:   rgba(255,255,255,0.42);
  --border:  rgba(255,255,255,0.07);
  --nav-h:   72px;
  --ease:    cubic-bezier(0.4,0,0.2,1);
  --radius:  2px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color .25s; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.muted { color: var(--muted); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-sm   { padding: .6rem 1.3rem; font-size: .68rem; }
.btn-full { width: 100%; }

.btn-gold    { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,151,74,.35); }

.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-dark { background: #0B0B0E; color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.btn-dark:hover { background: #1a1a24; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.4); }

/* ── SECTION BASE ───────────────────────────────────────── */
section { padding: 7rem 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: .92rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.85;
}
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-tag { display: inline-block; margin-bottom: 1.2rem; }

.divider { width: 40px; height: 1px; background: var(--gold); margin: 1.4rem 0; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11,11,14,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: .08em; white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-social { display: flex; gap: .65rem; }
.nav-social a {
  width: 32px; height: 32px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .25s;
}
.nav-social a:hover { border-color: var(--gold); color: var(--gold); }

.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
  background: none; border: none;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all .3s;
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════
   HERO — ACCUEIL
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 440px 210px;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  /* Fond de profondeur derrière tout le hero */
  background: var(--bg);
}

/* Vignette globale du hero (overlay de profondeur) */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 130% 90% at 55% 45%,
    transparent 30%,
    rgba(11,11,14,0.45) 70%,
    rgba(11,11,14,0.7) 100%
  );
}

/* ── Texte gauche ────────────────────────────────────────── */
.hero-text {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 3rem 6rem;
  padding-left: max(2rem, calc((100vw - 1280px) / 2 + 2rem));
  position: relative; z-index: 3;
}
/* Halo sombre derrière le texte pour lisibilité parfaite */
.hero-text::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    var(--bg) 0%,
    rgba(11,11,14,0.97) 55%,
    rgba(11,11,14,0.6) 78%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-text .eyebrow { margin-bottom: 1.8rem; position: relative; }
.hero-title {
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  color: var(--white); margin-bottom: 2rem;
  position: relative;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-size: .88rem; color: var(--muted); font-weight: 300;
  max-width: 340px; line-height: 1.95; margin-bottom: 2.8rem;
  position: relative;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; }

/* Ligne décorative dorée à gauche du titre */
.hero-title::before {
  content: '';
  position: absolute;
  left: -2rem; top: .5rem;
  width: 2px; height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: .5;
}

/* ── Photo centrale ──────────────────────────────────────── */
.hero-photo {
  grid-column: 2; grid-row: 1 / 3;
  position: relative; overflow: hidden;
  z-index: 1;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  /* Cinématique : légère désaturation + contraste subtil */
  filter: brightness(0.9) contrast(1.08) saturate(0.85);
  transform: scale(1.0);
  transition: transform 12s cubic-bezier(0.0, 0.0, 0.2, 1.0);
  will-change: transform;
}
.hero-photo img.loaded { transform: scale(1.05); }

/* Fondu gauche (fusion avec le texte) — très progressif */
.hero-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right,
      rgba(11,11,14,1)    0%,
      rgba(11,11,14,0.92) 6%,
      rgba(11,11,14,0.65) 18%,
      rgba(11,11,14,0.25) 35%,
      rgba(11,11,14,0.06) 50%,
      transparent         65%
    ),
    linear-gradient(to top,
      rgba(11,11,14,0.9) 0%,
      rgba(11,11,14,0.5) 10%,
      rgba(11,11,14,0.1) 22%,
      transparent        35%
    ),
    linear-gradient(to bottom,
      rgba(11,11,14,0.35) 0%,
      transparent         18%
    );
}

/* ── Panneau services droit ──────────────────────────────── */
.hero-panel {
  grid-column: 3; grid-row: 1 / 3;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.6rem 3rem;
  z-index: 3;
}
.panel-title {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.8rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.panel-list { display: flex; flex-direction: column; }
.panel-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left .25s var(--ease);
  cursor: default;
}
.panel-item:hover { padding-left: .4rem; }
.panel-item:hover .pi-name { color: var(--gold); }
.pi-name { font-size: .78rem; color: rgba(255,255,255,.72); transition: color .25s; }
.pi-price { font-family: 'Playfair Display', serif; font-size: .9rem; color: var(--white); flex-shrink: 0; margin-left: .5rem; }

.panel-item.featured {
  padding: .9rem .8rem; margin-top: .5rem;
  background: var(--gold); border-radius: var(--radius);
  border-bottom: none;
}
.panel-item.featured:hover { padding-left: .8rem; }
.panel-item.featured .pi-name { color: rgba(0,0,0,.75); }
.panel-item.featured .pi-price { color: #000; font-weight: 700; }
.panel-item.featured:hover .pi-name { color: #000; }

.panel-cta {
  margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--border);
}
.panel-cta a {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: .5rem;
  transition: gap .25s;
}
.panel-cta a:hover { gap: .9rem; }
.panel-cta a::after { content: '→'; }

/* ── Barre inférieure ────────────────────────────────────── */
.hero-bar {
  grid-column: 1; grid-row: 2;
  border-top: 1px solid var(--border);
  display: flex; align-items: stretch;
  background: rgba(11,11,14,0.82);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  z-index: 4;
  /* Fine ligne dorée en haut */
  box-shadow: inset 0 1px 0 0 rgba(196,151,74,0.18);
}
.hero-bar-item {
  flex: 1; padding: 1.4rem 2rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .25rem;
  transition: background .25s;
}
.hero-bar-item:hover { background: rgba(255,255,255,.025); }
.hero-bar-item:last-child { border-right: none; }
.hero-bar-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
}
.hero-bar-item strong sup { font-size: .55em; }
.hero-bar-item span {
  font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}


/* ══════════════════════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════════════════════ */
.about { background: var(--bg2); border-top: 1px solid var(--border); }

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

/* Image block */
.about-media { position: relative; }
.about-img-wrap {
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-wrap img {
  width: 100%; height: 560px;
  object-fit: cover; filter: grayscale(18%);
  transition: transform .7s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); padding: 1.6rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: #000; line-height: 1;
}
.badge-label {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(0,0,0,.65);
}

/* Content */
.about-content { padding-left: 1rem; }
.about-text {
  font-size: .9rem; color: var(--muted); line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2.8rem 0; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-block { }
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1; color: var(--gold);
}
.stat-label {
  font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-top: .4rem;
}

/* Mini équipe */
.team-row {
  display: flex; align-items: center; gap: .6rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.team-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--bg2);
  margin-left: -8px; flex-shrink: 0;
}
.team-avatar:first-child { margin-left: 0; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-more {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 600; color: var(--muted);
  margin-left: -8px; flex-shrink: 0;
}
.team-caption {
  font-size: .8rem; color: var(--muted); margin-left: .4rem;
}
.team-caption strong { color: var(--white); }


/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services { background: var(--bg); }

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

.svc-card {
  background: var(--bg);
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: background .3s;
}
.svc-card:hover { background: var(--bg3); }
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-img {
  height: 230px; position: relative; overflow: hidden; flex-shrink: 0;
}
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  /* Moody cinematic : désaturation douce + légère assombrissement */
  filter: brightness(0.88) contrast(1.06) saturate(0.75);
  transform: scale(1.02);
  transition: transform .6s var(--ease), filter .6s var(--ease);
  will-change: transform;
}
.svc-card:hover .svc-img img {
  transform: scale(1.09);
  filter: brightness(0.95) contrast(1.04) saturate(0.9);
}
.svc-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(11,11,14,.75) 0%,  rgba(11,11,14,.2) 45%, transparent 65%),
    linear-gradient(to bottom, rgba(11,11,14,.25) 0%, transparent 30%);
  transition: opacity .4s;
}
.svc-card:hover .svc-overlay {
  opacity: 0.7;
}

.svc-body {
  padding: 2rem 2rem 1.8rem; flex: 1; display: flex; flex-direction: column;
}
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,.04); line-height: 1; margin-bottom: .3rem;
}
.svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: .7rem;
}
.svc-body p { font-size: .84rem; color: var(--muted); line-height: 1.75; flex: 1; }
.svc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--border);
}
.svc-price { font-size: .82rem; color: var(--muted); }
.svc-price strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.svc-dur { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Card featured */
.svc-featured {
  background: var(--gold) !important;
}
.svc-featured::after { display: none; }
.svc-featured-inner {
  padding: 2.5rem 2rem; display: flex; flex-direction: column; height: 100%;
}
.svc-featured .svc-num { color: rgba(0,0,0,.08); }
.svc-featured .eyebrow { color: rgba(0,0,0,.55); margin-bottom: .8rem; display: block; }
.svc-featured h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: #000; margin-bottom: .8rem;
}
.svc-featured p { font-size: .84rem; color: rgba(0,0,0,.65); line-height: 1.75; flex: 1; }
.svc-featured .svc-footer {
  border-color: rgba(0,0,0,.12); margin-top: 1.5rem; padding-top: 1.2rem;
}
.svc-price-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: #000; line-height: 1;
}
.svc-featured .svc-dur { color: rgba(0,0,0,.45); }
.svc-featured .btn-dark {
  margin-top: 1.8rem; background: #000; color: var(--white); border: none;
}
.svc-featured .btn-dark:hover { background: #1a1a1a; }


/* ══════════════════════════════════════════════════════════
   GALERIE
══════════════════════════════════════════════════════════ */
.galerie { background: var(--bg2); border-top: 1px solid var(--border); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

/* Première image : grande à gauche (2 lignes) */
.gal-tall { grid-row: span 2; }

/* Quatrième image : large (2 colonnes) */
.gal-wide { grid-column: span 2; }

.gal-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(.95);
  transition: transform .6s var(--ease), filter .6s;
}
.gal-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1);
}
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,14,.75) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity .35s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white);
}


/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.cta-band { background: var(--gold); }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 3rem; padding-bottom: 3rem;
  gap: 2rem;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: #000;
}
.cta-text h2 em { font-style: italic; color: rgba(0,0,0,.6); }
.cta-text p { font-size: .88rem; color: rgba(0,0,0,.55); margin-top: .3rem; }
.cta-band .btn-dark { background: #000; color: var(--white); border: none; flex-shrink: 0; }
.cta-band .btn-dark:hover { background: #1a1a1a; box-shadow: 0 10px 25px rgba(0,0,0,.4); }


/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact { background: var(--bg); }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 0; border: 1px solid var(--border);
}

/* Infos gauche */
.contact-info {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2rem;
}
.contact-info .section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.contact-desc { font-size: .88rem; color: var(--muted); line-height: 1.8; }

.c-details { display: flex; flex-direction: column; gap: 1.4rem; }
.c-detail { display: flex; align-items: flex-start; gap: 1.1rem; }
.c-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.c-detail > div > strong {
  display: block; font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .3rem;
}
.c-detail > div > p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.c-detail a { color: var(--muted); }
.c-detail a:hover { color: var(--gold); }

/* Horaires */
.hours { border-top: 1px solid var(--border); padding-top: 1.8rem; }
.hours-title {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.hours-grid { display: flex; flex-direction: column; gap: 0; }
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .84rem;
}
.hour-row span:first-child { color: var(--muted); }
.hour-row span:last-child  { color: var(--white); font-weight: 500; }
.hour-row.closed span { color: rgba(255,255,255,.2); }

/* Formulaire droite */
.contact-form-wrap {
  padding: 4rem 3rem;
  background: var(--bg2);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; margin-bottom: .4rem;
}
.contact-form-wrap > p {
  font-size: .86rem; color: var(--muted); margin-bottom: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: .6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .9rem 1rem;
  font-family: 'Inter', sans-serif; font-size: .87rem; color: var(--white);
  background: var(--bg3); border: 1px solid var(--border);
  outline: none; border-radius: var(--radius);
  transition: border-color .25s, box-shadow .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.18); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,151,74,.1);
}
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4974A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.error input,
.form-group.error textarea { border-color: #e57373; }

.form-success {
  display: none; text-align: center;
  padding: 4rem 2rem;
  animation: fadeUp .5s var(--ease) both;
}
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin-bottom: .6rem;
}
.form-success p { font-size: .9rem; color: var(--muted); }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { font-size: 1.55rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .84rem; color: var(--muted); line-height: 1.8; max-width: 240px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.f-social-link {
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .25s;
}
.f-social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.footer-col h4 {
  font-size: .63rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: .75rem; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.45); transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.2); }
.footer-bottom a { color: var(--gold); }


/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal   { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-l { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(30px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.up, .reveal-l.up, .reveal-r.up { opacity: 1; transform: none; }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

@keyframes slideUp  { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.anim-1 { animation: slideUp .85s var(--ease) .1s both; }
.anim-2 { animation: slideUp .85s var(--ease) .3s both; }
.anim-3 { animation: slideUp .85s var(--ease) .5s both; }
.anim-4 { animation: slideUp .85s var(--ease) .7s both; }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr 400px 200px; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 350px 180px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrap img { height: 460px; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }
  /* Désactiver la vignette globale sur mobile (pas utile sans photo à côté) */
  .hero::after { display: none; }

  .hero-text {
    grid-column: 1; grid-row: 1;
    padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  }
  /* Sur mobile : fond plein derrière le texte, pas de fondu latéral */
  .hero-text::before {
    background: linear-gradient(to bottom,
      var(--bg) 0%, var(--bg) 75%, transparent 100%
    );
  }
  .hero-title::before { display: none; }

  .hero-photo {
    grid-column: 1; grid-row: 2;
    height: 62vw; max-height: 440px;
  }
  .hero-photo::before {
    background:
      linear-gradient(to top,    rgba(11,11,14,1) 0%, rgba(11,11,14,.5) 15%, transparent 40%),
      linear-gradient(to bottom, rgba(11,11,14,.6) 0%, transparent 25%);
  }
  .hero-panel { display: none; }
  .hero-bar {
    grid-column: 1; grid-row: 3;
    position: static; flex-wrap: wrap;
    border-top: 1px solid var(--border);
  }
  .hero-bar-item { min-width: 50%; }

  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-media { order: -1; }
  .about-img-wrap img { height: 380px; }
  .about-badge { right: 1rem; bottom: -1rem; }
  .about-content { padding-left: 0; }

  .gallery-grid { grid-template-rows: 240px 240px; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }

  /* Mobile nav */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,11,14,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: .85rem; }
  .nav-social { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 5rem 0; }
  .hero-text { padding: calc(var(--nav-h) + 2rem) 1.5rem 2.5rem; }
  .hero-bar-item { min-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gal-tall  { grid-row: span 1; }
  .gal-wide  { grid-column: span 2; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-img-wrap img { height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info  { padding: 2.5rem 1.5rem; }
  .contact-form-wrap { padding: 2.5rem 1.5rem; }
  .cta-band-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}
