/* ═══════════════════════════════════════════════════════════════
   MÉTALLERIE MARINGER — Design system « Atelier lumineux »
   Refonte 2026-07 : fond ivoire/blanc, bleu roi, accents laiton.
   Typo : Fraunces (titres) + Work Sans (corps).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ivory: #faf7f1;
  --paper: #fffdf9;
  --bleu: #24407c;
  --bleu-deep: #182b52;
  --laiton: #b08d3f;
  --laiton-soft: #d7bd7f;
  --encre: #221f1b;
  --gris: #6f6a61;
  --bordeaux: #7a1728;
  --ombre: 0 18px 44px rgba(24, 31, 52, .10);
}

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

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  background: var(--ivory);
  color: var(--encre);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Fraunces : formes régulières et stables (pas de glyphes de grand corps optique) */
  font-optical-sizing: none;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 18;
}

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

::selection { background: var(--laiton-soft); color: var(--encre); }

/* ── LAYOUT ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 3.5rem; }
.section-pad { padding: 7rem 0; }
.prose-max { max-width: 780px; }
.two-col-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }

/* ── TYPOGRAPHIE ── */
.section-label {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--laiton);
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--laiton);
  flex-shrink: 0;
}
.h2 {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--encre);
  margin-bottom: 1.6rem;
}
.h3 {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--encre);
  margin-bottom: 1.3rem;
}
.body-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #3d3833;
}
.body-text + .body-text { margin-top: 1.1rem; }
.body-text strong { font-weight: 600; color: var(--encre); }

/* Trait laiton dessiné sous les titres (activé par main.js .line-drawn) */
.line-target { position: relative; padding-bottom: 1.1rem; }
.line-target::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 58px; height: 3px;
  background: linear-gradient(90deg, var(--laiton), var(--laiton-soft));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.16,1,.3,1) .15s;
}
.line-drawn::after { transform: scaleX(1); }

/* ── RÉVÉLATIONS AU SCROLL ── */
.js-ready .r {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.js-ready .r.d1 { transition-delay: .1s; }
.js-ready .r.d2 { transition-delay: .2s; }
.js-ready .r.d3 { transition-delay: .3s; }
.js-ready .r.on { opacity: 1; transform: translateY(0); }
.js-ready .r.slide-left { transform: translateX(-36px); }
.js-ready .r.slide-right { transform: translateX(36px); }
.js-ready .r.slide-left.on, .js-ready .r.slide-right.on { transform: translateX(0); }
.js-ready .r.scale-in { transform: scale(.95); }
.js-ready .r.scale-in.on { transform: scale(1); }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1.05rem 2.2rem;
  font-family: 'Work Sans', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.btn svg { flex-shrink: 0; }
.btn-bleu {
  background: var(--bleu);
  color: #fff;
  border-color: var(--bleu);
  box-shadow: 4px 4px 0 rgba(176, 141, 63, .28);
}
.btn-bleu:hover {
  background: var(--bleu-deep);
  border-color: var(--bleu-deep);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(176, 141, 63, .38);
}
.btn-outline {
  background: transparent;
  color: var(--encre);
  border-color: rgba(34, 31, 27, .35);
}
.btn-outline:hover { border-color: var(--laiton); color: var(--laiton); }
.btn-white {
  background: var(--ivory);
  color: var(--bleu);
  border-color: var(--ivory);
}
.btn-white:hover { background: transparent; color: var(--ivory); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover { border-color: var(--laiton-soft); color: var(--laiton-soft); }

/* ── NAV ── */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .7rem 2.2rem;
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 31, 27, .07);
  transition: box-shadow .3s;
}
nav#nav.stuck { box-shadow: 0 8px 30px rgba(24, 31, 52, .08); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.nav-logo img { height: 52px; width: auto; }
.nav-brand {
  font-family: 'Fraunces', serif;
  font-weight: 460;
  font-size: .98rem;
  line-height: 1.1;
  color: var(--encre);
  letter-spacing: .02em;
}
.nav-brand em { font-style: normal; color: var(--bleu); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.nav-links a {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--encre);
  transition: color .25s;
}
.nav-links a:hover { color: var(--bleu); }
.nav-links a.active {
  color: var(--bleu);
  border-bottom: 2px solid var(--laiton);
  padding-bottom: .3rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(34, 31, 27, .18);
  border-radius: 50%;
  color: var(--encre);
  transition: color .25s, border-color .25s, background .25s;
}
.nav-social a:hover { color: #fff; background: var(--bleu); border-color: var(--bleu); }
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.15rem;
  background: var(--bleu);
  color: #fff;
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s;
}
.nav-tel:hover { background: var(--bleu-deep); }

/* ── HERO (accueil) ── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 2.5rem; /* le hero grandit avec son contenu : les CTA ne sont jamais coupés */
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: scale(1.05);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 241, .34) 0%,
    rgba(250, 247, 241, .16) 40%,
    rgba(250, 247, 241, .82) 100%
  );
}
.hero-logo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-logo img {
  width: clamp(210px, 38vh, 400px); /* calé sur la hauteur d'écran : tout tient sans scroll, CTA compris */
  filter: drop-shadow(0 10px 30px rgba(250, 247, 241, .8));
}
/* Écrans peu hauts (13 pouces, laptops) : on compacte pour que les CTA soient visibles direct */
@media (max-height: 860px) {
  .hero { padding: 4.2rem 0 2rem; }
  .hero-logo-top { margin-bottom: .7rem; }
  .hero-logo-rule, .hero-logo-rule2 { margin: .8rem 0; }
  .hero-logo-slogan { font-size: clamp(1.15rem, 2.2vw, 1.6rem); }
  .hero-logo-bottom { margin-top: .7rem; }
  .hero-ctas { margin-top: 1.5rem; }
}
.hero-logo-top {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 1.2rem;
}
.hero-logo-rule, .hero-logo-rule2 {
  width: 64px; height: 1.5px;
  background: var(--laiton);
  margin: 1.2rem 0;
}
.hero-logo-slogan {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: var(--encre);
  max-width: 620px;
}
.hero-logo-bottom {
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gris);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}
.hero-body { position: absolute; }
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gris);
  animation: cueFloat 2.6s ease-in-out infinite;
}
@keyframes cueFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── MINI-HERO (pages internes) : bandeau bleu, photo entière encadrée ── */
.page-hero {
  position: relative;
  background: var(--bleu-deep);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3.5rem;
  max-width: 100%;
  padding: 8.5rem 4.5rem 4.5rem;
}
.page-hero-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
}
.page-hero-bg img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 70px rgba(10, 16, 32, .45);
}
/* Filet laiton décalé derrière la photo */
.page-hero-bg::before {
  content: '';
  position: absolute;
  top: 16px; left: -16px; right: 16px; bottom: -16px;
  border: 1.5px solid rgba(215, 189, 127, .45);
  border-radius: 3px;
  pointer-events: none;
}
.page-hero-veil { display: none; }
.page-hero-body {
  position: relative; z-index: 2;
  grid-column: 1;
  grid-row: 1;
  padding: 0;
}
.page-hero-eyebrow {
  display: block;
  font-size: .65rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--laiton-soft);
  margin-bottom: .9rem;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp .8s .25s cubic-bezier(.16,1,.3,1) forwards;
}
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 420; line-height: 1.08; color: #fff;
  opacity: 0; transform: translateY(24px);
  animation: heroFadeUp .9s .4s cubic-bezier(.16,1,.3,1) forwards;
}
.page-hero-sub {
  margin-top: 1rem; max-width: 520px;
  font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.85);
  line-height: 1.7;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp .8s .55s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── INTRO (accueil) ── */
#accueil-section { padding: 7.5rem 0; background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5.5rem;
  align-items: center;
}
.quote-block {
  position: relative;
  background: var(--bleu);
  color: #fff;
  padding: 3.4rem 3rem;
  border-radius: 3px;
  box-shadow: var(--ombre);
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 6.5rem;
  line-height: .6;
  color: var(--laiton-soft);
  display: block;
  margin-bottom: 1.2rem;
}
.quote-text {
  font-family: 'Fraunces', serif;
  font-weight: 380;
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255,255,255,.94);
}
.quote-attr {
  margin-top: 1.6rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--laiton-soft);
}

/* ── APERÇU 4 UNIVERS (accueil) ── */
#apercu { padding: 7.5rem 0; }
.apercu-head { margin-bottom: 3.5rem; }
.apercu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.apercu-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid rgba(34, 31, 27, .08);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s, border-color .45s;
}
.apercu-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--ombre);
  border-color: rgba(176, 141, 63, .45);
}
.apercu-img { aspect-ratio: 4/3.4; overflow: hidden; position: relative; }
.apercu-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.apercu-card:hover .apercu-img img { transform: scale(1.06); }
.apercu-label {
  display: block;
  padding: 1.4rem 1.5rem 0;
  font-size: .62rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--laiton);
}
.apercu-title {
  padding: .55rem 1.5rem 0;
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--encre);
}
.apercu-arrow {
  display: inline-block;
  margin: 1rem 1.5rem 1.5rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bleu);
  transition: transform .3s;
}
.apercu-card:hover .apercu-arrow { transform: translateX(6px); }

/* ── BANDE CTA (toutes pages) ── */
.cta-band {
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-deep) 100%);
  padding: 6rem 0;
  text-align: center;
  color: #fff;
}
.cta-band .kicker {
  display: block;
  font-size: .68rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--laiton-soft);
  margin-bottom: 1.1rem;
}
.cta-band-title {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: .9rem;
}
.cta-band-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin: 0 auto 2.2rem;
}
.tel-giant {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 460;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: .04em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--laiton);
  padding-bottom: .3rem;
  transition: color .25s, border-color .25s;
}
.tel-giant:hover { color: var(--laiton-soft); border-color: var(--laiton-soft); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-social {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}
.cta-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  transition: background .25s, border-color .25s, color .25s;
}
.cta-social a:hover { background: var(--laiton); border-color: var(--laiton); color: var(--bleu-deep); }

/* ── SECTION CONTACT ACCUEIL ── */
#contact-accueil { padding: 7.5rem 0; background: var(--paper); }
.home-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }
.contact-meta { margin-top: 2.6rem; display: flex; flex-direction: column; gap: 1.45rem; }
.contact-meta-item label {
  display: block;
  font-size: .6rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--laiton);
  margin-bottom: .3rem;
}
.contact-meta-item span {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: 1.12rem;
  color: var(--encre);
}
.contact-meta-item a { color: var(--bleu); }

/* ── BANDE BLEUE DE CONTENU (histoire / atelier) ── */
.band-bleu {
  background: var(--bleu-deep);
  padding: 6.5rem 0;
  color: #fff;
}
.band-bleu .h2, .band-bleu .h3 { color: #fff; }
.band-bleu .body-text { color: rgba(255,255,255,.72); }
.band-bleu .body-text strong { color: #fff; }
.band-bleu .section-label { color: var(--laiton-soft); }
.band-bleu .section-label::before { background: var(--laiton-soft); }

/* ── SAVOIR-FAIRE : SPLITS CATÉGORIES ── */
.sf-header { padding: 6.5rem 0 4rem; }
.sf-intro {
  font-size: .95rem;
  color: var(--gris);
  max-width: 560px;
  line-height: 1.85;
}
.sf-splits { display: flex; flex-direction: column; }
.sf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.sf-split:nth-child(even) { background: var(--paper); }
.sf-split-img { position: relative; overflow: hidden; }
.sf-split-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sf-split:nth-child(even) .sf-split-img { order: 2; }
.sf-split-content {
  padding: 4.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sf-num {
  font-family: 'Fraunces', serif;
  font-weight: 340;
  font-size: 4.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--laiton);
  margin-bottom: 1.1rem;
}
.sf-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.sf-tag {
  font-size: .66rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase;
  color: #514a40;
  border: 1px solid rgba(176, 141, 63, .5);
  background: rgba(176, 141, 63, .07);
  padding: .38rem .75rem;
  border-radius: 2px;
  white-space: nowrap;
}
.sf-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.9rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bleu);
  text-decoration: none;
  transition: gap .3s, color .25s;
}
.sf-cta:hover { gap: .9rem; color: var(--laiton); }

/* ── SECTION FORGE (contraste sombre conservé) ── */
.forge-section {
  background: var(--bleu-deep);
  padding: 7rem 0;
}
.forge-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.forge-photo-wrap { position: relative; }
.forge-photo-inner {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3.3;
}
.forge-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.forge-tag {
  position: absolute;
  bottom: -14px; left: 22px;
  background: var(--laiton);
  color: var(--bleu-deep);
  font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase;
  padding: .55rem 1rem;
  border-radius: 2px;
}
.forge-eyebrow { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.3rem; }
.forge-eyebrow-line { width: 30px; height: 1.5px; background: var(--laiton-soft); }
.forge-eyebrow .section-label { margin: 0; color: var(--laiton-soft) !important; }
.forge-eyebrow .section-label::before { display: none; }
.forge-title {
  font-family: 'Fraunces', serif;
  font-weight: 420;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.4rem;
}
.forge-text {
  font-size: .93rem;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  max-width: 560px;
}
.forge-quote {
  margin-top: 1.8rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--laiton);
  font-family: 'Fraunces', serif;
  font-weight: 380;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--laiton-soft);
  max-width: 520px;
}
.forge-bg-num {
  position: absolute;
  right: -1rem; bottom: -3rem;
  font-family: 'Fraunces', serif;
  font-size: 11rem;
  font-weight: 340;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}

/* ── ATELIER ── */
#atelier { padding: 7.5rem 0; background: var(--paper); }
.atelier-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 5rem;
  align-items: center;
}
.atelier-img-wrap { position: relative; }
.atelier-img { overflow: hidden; border-radius: 3px; box-shadow: var(--ombre); }
.atelier-img img { width: 100%; height: auto; }
.atelier-badge {
  position: absolute;
  right: -22px; bottom: -22px;
  width: 128px; height: 128px;
  background: var(--bleu);
  border: 3px solid var(--ivory);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ombre);
}
.badge-num {
  font-family: 'Fraunces', serif;
  font-weight: 460;
  font-size: 2rem;
  color: var(--laiton-soft);
  line-height: 1;
}
.badge-label {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-align: center;
  margin-top: .3rem;
  line-height: 1.4;
}
.atelier-values {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.atelier-val { display: flex; gap: .9rem; align-items: flex-start; }
.atelier-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--laiton);
  margin-top: .6rem;
  flex-shrink: 0;
}
.atelier-val-text {
  font-size: .88rem;
  color: #45403a;
  line-height: 1.75;
}
.atelier-val-text strong { color: var(--encre); font-weight: 600; }

/* ── ÉQUIPE (Notre histoire) ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 3.25rem; }
.team-card {
  background: var(--paper);
  border: 1px solid rgba(34, 31, 27, .08);
  border-top: 3px solid var(--laiton);
  border-radius: 3px;
  padding: 2.2rem 2.1rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--ombre); }
.team-name {
  font-family: 'Fraunces', serif;
  font-weight: 460;
  font-size: 1.6rem;
  color: var(--encre);
  margin-bottom: .3rem;
}
.team-role {
  display: block;
  font-size: .6rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bleu);
  margin-bottom: .95rem;
}
.team-desc { font-size: .92rem; color: #45403a; line-height: 1.75; }

/* ── SPLITS GÉNÉRIQUES (histoire / atelier) ── */
.splits { display: flex; flex-direction: column; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--paper);
}
.split-img { position: relative; overflow: hidden; }
.split-img img {
  position: absolute; inset: 0;
  width: 100%; height: 110%;
  object-fit: cover;
  will-change: transform;
}
.split-content {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split.flip { background: var(--ivory); }
.split.flip .split-img { order: 2; }
.split.flip .split-content { order: 1; }

/* ── CONTACT ── */
#contact { padding: 7.5rem 0; background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field label {
  display: block;
  font-size: .62rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gris);
  margin-bottom: .55rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  font-family: 'Work Sans', sans-serif;
  font-size: .92rem;
  color: var(--encre);
  background: #fff;
  border: 1px solid rgba(34, 31, 27, .16);
  border-radius: 2px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--bleu);
  box-shadow: 0 0 0 3px rgba(36, 64, 124, .1);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
footer {
  background: var(--bleu-deep);
  color: rgba(255,255,255,.75);
  padding: 4.5rem 0 0;
}
.foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1.25fr .85fr 1fr 1fr;
  gap: 3rem;
}
.foot-brand img { height: 84px; width: auto; margin-bottom: 1.1rem; filter: drop-shadow(0 0 14px rgba(255,255,255,.55)) drop-shadow(0 0 3px rgba(255,255,255,.7)); }
.f-name {
  font-family: 'Fraunces', serif;
  font-weight: 460;
  font-size: 1.25rem;
  color: #fff;
}
.f-tag {
  font-size: .68rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--laiton-soft);
  margin: .4rem 0 1rem;
}
.f-desc { font-size: .84rem; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 340px; }
.fc h4 {
  font-size: .66rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--laiton-soft);
  margin-bottom: 1.2rem;
}
.fc ul { list-style: none; }
.fc li { margin-bottom: .55rem; }
.fc a {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  cursor: pointer;
  transition: color .25s;
}
.fc a:hover { color: var(--laiton-soft); }
.fc-addr { margin-top: 1.4rem; font-size: .84rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.foot-contact-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .7rem;
  font-size: .86rem;
}
.foot-contact-line svg { color: var(--laiton-soft); flex-shrink: 0; }
.foot-contact-line a { color: rgba(255,255,255,.85); text-decoration: none; }
.foot-contact-line a:hover { color: var(--laiton-soft); }
.foot-social { display: flex; gap: .55rem; margin-top: 1.3rem; }
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  transition: background .25s, border-color .25s, color .25s;
}
.foot-social a:hover { background: var(--laiton); border-color: var(--laiton); color: var(--bleu-deep); }
.foot-btm {
  max-width: 1180px;
  margin: 3.5rem auto 0;
  padding: 1.6rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .74rem;
  color: rgba(255,255,255,.45);
}
.foot-credit a { color: var(--laiton-soft); text-decoration: none; }
.foot-credit a:hover { text-decoration: underline; }

/* ── MODALES LÉGALES ── */
.legal-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 400;
  background: rgba(24, 31, 52, .55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.legal-modal-content {
  position: relative;
  background: var(--ivory);
  color: var(--encre);
  max-width: 680px;
  max-height: 82vh;
  overflow-y: auto;
  padding: 2.6rem 2.8rem;
  border-radius: 4px;
  border-top: 4px solid var(--laiton);
  font-size: .88rem;
  line-height: 1.7;
}
.legal-modal-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 460;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  color: var(--bleu);
}
.legal-modal-content h3 {
  font-size: .95rem;
  font-weight: 600;
  margin: 1.4rem 0 .5rem;
  color: var(--encre);
}
.legal-modal-content p { margin: .5rem 0; color: #45403a; }
.legal-modal-content ul { margin: .5rem 0 .5rem 1.2rem; }
.legal-modal-content li { margin: .3rem 0; list-style: disc; }
.legal-modal-content a { color: var(--bleu); }
.legal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none;
  font-size: 1.9rem; cursor: pointer;
  color: var(--gris); line-height: 1; padding: .3rem;
}
.legal-close:hover { color: var(--bleu); }

/* ── FAB TÉLÉPHONE FLOTTANT ── */
.fab {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 300;
}
.fab a {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--bleu);
  color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .85rem 1.1rem;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 12px 32px rgba(24, 31, 52, .3);
  transition: background .25s, transform .25s;
}
.fab a:hover { background: var(--bleu-deep); transform: translateY(-3px); }
.fab .lbl { display: none; }
.fab a:hover .lbl { display: inline; }

/* ── BOUTON RETOUR EN HAUT ── */
#scroll-top {
  position: fixed;
  left: 1.4rem; bottom: 1.4rem;
  z-index: 300;
  width: 52px; height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .4s, transform .4s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-4px); }
.scroll-label {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: .2rem;
}

/* ── SECTIONS GÉNÉRIQUES ── */
.section-pad { padding: 7rem 0; }

/* ═══ PAGES PRESTATIONS (2026-08) ═══ */
/* FAQ */
.faq-list { margin-top: 2.2rem; }
.faq-item { border-bottom: 1px solid rgba(34, 31, 27, .1); padding: 1.5rem 0; }
.faq-item:first-child { border-top: 1px solid rgba(34, 31, 27, .1); }
.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 460;
  color: var(--encre);
  margin-bottom: .55rem;
}
.faq-a { font-size: .95rem; line-height: 1.85; color: #3d3833; }

/* Liens vers les autres savoir-faire */
.presta-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.9rem; }
.presta-link {
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bleu);
  border: 1.5px solid rgba(36, 64, 124, .3);
  padding: .6rem 1.05rem;
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s;
}
.presta-link:hover { background: var(--bleu); border-color: var(--bleu); color: #fff; }

/* Photo équipe (Notre histoire) */
.equipe-photo { margin: 3rem 0 .5rem; position: relative; }
.equipe-photo img { width: 100%; height: auto; border-radius: 3px; box-shadow: var(--ombre); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .apercu-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-split-content { padding: 3.2rem 2.6rem; }
}

@media (max-width: 900px) {
  .wrap { padding: 0 1.5rem; }
  .section-pad { padding: 4.5rem 0; }
  #accueil-section, #apercu, #contact-accueil, #atelier, #contact { padding: 4.5rem 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-blocks { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .atelier-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .atelier-badge { right: 8px; bottom: -18px; }
  .page-hero { grid-template-columns: 1fr; gap: 2.4rem; padding: 6.5rem 1.5rem 3rem; }
  .page-hero-bg { grid-column: 1; grid-row: 2; }
  .page-hero-bg img { max-height: 44vh; }
  .page-hero-bg::before { top: 10px; left: -10px; right: 10px; bottom: -10px; }
  .page-hero-body { grid-column: 1; grid-row: 1; padding: 0; }
  .sf-split { grid-template-columns: 1fr; min-height: auto; }
  .sf-split-img { aspect-ratio: 4/3; position: relative; }
  .sf-split:nth-child(even) .sf-split-img { order: 0; }
  .sf-split-content { padding: 2.6rem 1.5rem 3.2rem; }
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-img { aspect-ratio: 4/3; }
  .split-img img { height: 100%; }
  .split.flip .split-img { order: 0; }
  .split.flip .split-content { order: 1; }
  .split-content { padding: 2.6rem 1.5rem 3.2rem; }
  .forge-inner { grid-template-columns: 1fr; gap: 3.5rem; padding: 0 1.5rem; }
  .forge-bg-num { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 2.25rem; padding: 0 1.5rem; }
  .foot-btm { flex-direction: column; gap: .6rem; text-align: center; padding: 1.5rem 1.5rem; }
  .legal-modal-content { padding: 1.75rem 1.3rem; }
  .legal-modal-content h2 { font-size: 1.4rem; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .hero { min-height: 560px; }
  .tel-giant { font-size: 1.9rem; }
}

@media (max-width: 640px) {
  .apercu-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ═══ MENU MOBILE (burger) ═══ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px; margin: 0;
  background: none; border: none; cursor: pointer;
  z-index: 210;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--encre); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-burger span:nth-child(2) { opacity: 0; }
nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links { gap: 1.2rem; }
  .nav-social { display: none; }
}

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-tel .nav-tel-txt { display: none; }
  .nav-tel { padding: .6rem .8rem; }

  .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(250, 247, 241, .98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(34, 31, 27, .08);
    box-shadow: 0 24px 40px rgba(24, 31, 52, .12);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .4s ease, opacity .3s ease;
  }
  nav.open .nav-links { max-height: 80vh; opacity: 1; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(34, 31, 27, .06);
    font-size: .8rem; letter-spacing: .16em;
  }
  .nav-links a.active { border-bottom: 1px solid rgba(34, 31, 27, .06); color: var(--bleu); }
}

/* ============ BADGE NOTE GOOGLE (carte laiton, a gauche du CTA « Parlons de votre projet ») ============ */
.gnote {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--paper);
  border: 1px solid var(--laiton-soft);
  border-radius: 14px; padding: 8px 18px;
  box-shadow: var(--ombre);
}
.gnote-note {
  font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600;
  line-height: .9; color: var(--laiton);
}
.gnote-stars { color: #fbbc04; font-size: .9rem; letter-spacing: 2px; line-height: 1.2; }
.gnote-lbl { font-size: .8rem; color: var(--gris); }
.gnote-lbl .gw { font-weight: 600; }


/* ============ MAILLAGE INTERNE : liens de cartes et liens en texte ============ */
.card-link {
  display: inline-block; margin-top: .75rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  color: var(--laiton); text-decoration: none;
  border-bottom: 1px solid var(--laiton-soft); padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.card-link:hover { color: var(--bleu); border-color: var(--bleu); }
.tlink {
  color: var(--bleu); text-decoration: none;
  border-bottom: 1px solid var(--laiton-soft);
  transition: border-color .2s ease;
}
.tlink:hover { border-color: var(--bleu); }
