/* ════════════════════════════════════════════════════════
   AY Conseil V2 — Direction A : Cabinet Parisien
   Palette : blanc / or / quasi-noir — typographique
   Font display : Cormorant Garamond
   ════════════════════════════════════════════════════════ */

/* ── 1. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── 2. CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --ink:    #1A1A18;
  --gold:   #B49A6C;
  --gray:   #7A7870;
  --line:   #E2DDD4;
  --white:  #FFFFFF;
  --bg-alt: #F7F5F1;
  --dark:   #111110;

  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;

  --container: 960px;
  --pad:   130px;
  --pad-m: 80px;
  --pad-s: 56px;

  --charcoal: #2C3340;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --fast: 0.2s var(--ease);
  --std:  0.3s var(--ease);
}

/* ── 3. UTILITAIRES ───────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Eyebrow label — italic Cormorant or small caps */
.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* Section title */
.sec-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.sec-title-light { color: var(--white); }

/* Gold rule */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0 1.6rem;
}
.rule.center { margin: 1.4rem auto 1.6rem; }

/* Lead text */
.lead {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.78;
  max-width: 540px;
}

/* Centered section header */
.sec-head { text-align: center; margin-bottom: 4.5rem; }
.sec-head .lead { margin: 0 auto; }

/* ── 4. NAVBAR ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast), padding var(--fast);
}
.nav.scrolled {
  padding: 0.9rem 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  transition: color var(--fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-contact {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.5rem 1.1rem;
  transition: background var(--fast), color var(--fast);
}
.nav-contact:hover { background: var(--ink); color: var(--white); }
.nav-links a.nav-contact::after { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: var(--fast);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-4px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  color: var(--gray);
  padding: 0.85rem 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: color var(--fast);
}
.mobile-menu a:hover { color: var(--ink); }
.mob-cta {
  display: block;
  margin: 1.2rem 0;
  padding: 0.8rem;
  text-align: center;
  background: var(--ink);
  color: var(--white) !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none !important;
}
.mobile-menu.open { display: flex; }

/* ── 5. HERO ──────────────────────────────────────────── */

/* Entrance animations */
.hero-eyebrow    { animation: heroFade 0.7s var(--ease) 0.15s both; }
.hero-logo-main  { animation: heroFade 1s   var(--ease) 0.35s both; }
.hero-rule    { transform-origin: center; animation: heroRule 0.65s var(--ease) 0.85s both; }
.hero-tagline { animation: heroFade 0.6s var(--ease) 1.05s both; }
.hero-sub     { animation: heroFade 0.6s var(--ease) 1.2s  both; }
.hero-actions { animation: heroFade 0.6s var(--ease) 1.38s both; }
.hero-stats   { animation: heroFade 0.6s var(--ease) 1.55s both; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroRule {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M-20,40 A20,20 0 0,1 20,40' fill='none' stroke='rgba(180,154,108,0.25)' stroke-width='0.8'/%3E%3Cpath d='M20,40 A20,20 0 0,1 60,40' fill='none' stroke='rgba(180,154,108,0.25)' stroke-width='0.8'/%3E%3Cpath d='M0,20 A20,20 0 0,1 40,20' fill='none' stroke='rgba(180,154,108,0.25)' stroke-width='0.8'/%3E%3Cpath d='M-40,20 A20,20 0 0,1 0,20' fill='none' stroke='rgba(180,154,108,0.25)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-color: var(--white);
  background-size: 40px 40px;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  display: block;
}
.hero-logo-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.hero-logo-icon {
  width: clamp(100px, 22vw, 180px);
  height: auto;
}
.hero-logo-name {
  font-family: 'Trajan Pro', 'Trajan', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #133867;
  margin: 0;
}
.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2.4rem auto;
}
.hero-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.8rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 auto 2.8rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 4.5rem;
  flex-wrap: wrap;
}
.btn-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color var(--fast);
}
.btn-text::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transition: background var(--fast);
}
.btn-text:hover { color: var(--gold); }
.btn-text:hover::after { background: var(--gold); }
.btn-outline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--line);
  padding: 0.65rem 1.6rem;
  transition: border-color var(--fast), color var(--fast);
}
.btn-outline:hover { border-color: var(--gold); color: var(--ink); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stat-n {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.stat-l {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.4rem;
  display: block;
}

/* ── 6. PARALLAX BAND ────────────────────────────────── */
.parallax-band {
  height: 460px;
  background-image: url('img-droit.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(80%);
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,16,0.62);
}
.parallax-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 680px;
}
.parallax-caption blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.parallax-caption blockquote::before { content: '\201C'; color: var(--gold); }
.parallax-caption blockquote::after  { content: '\201D'; color: var(--gold); }
.parallax-caption cite {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.parallax-caption .parallax-rule {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ── 7. PHOTO STRIP ──────────────────────────────────── */
.photo-strip {
  overflow: hidden;
  line-height: 0;
}
.photo-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 3px;
  height: 440px;
}
.ps-item {
  overflow: hidden;
  position: relative;
}
.ps-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08);
  transition: filter 0.5s ease, transform 0.6s var(--ease);
  display: block;
}
.ps-item:hover img {
  filter: grayscale(30%) contrast(1.02);
  transform: scale(1.04);
}

/* ── 7. CABINET ───────────────────────────────────────── */
.cabinet {
  padding: var(--pad) 0;
  background: var(--bg-alt);
}
.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.cabinet-text p {
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}
.cabinet-text p strong { color: var(--ink); font-weight: 600; }
.profile-card {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.profile-logo { margin-bottom: 1rem; }
.profile-logo img { height: 42px; width: auto; }
.profile-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.profile-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.profile-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}
.cabinet-visual { position: relative; }
.cabinet-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}
.cabinet-visual:hover .cabinet-img { filter: grayscale(0%); }
.cabinet-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem 1.8rem;
}
.badge-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ── 7. VALEURS — typographique, 3 colonnes ───────────── */
.valeurs {
  padding: var(--pad) 0;
  background:
    linear-gradient(rgba(10,18,40,0.72), rgba(10,18,40,0.72)),
    url('assets landing page/jael-vallee-WJXAwGrsHJg-unsplash.jpg') center/cover no-repeat;
}
.valeurs .eyebrow { color: var(--gold); }
.valeurs .sec-title { color: var(--white); }
.valeurs .lead { color: rgba(255,255,255,0.6); }
.valeurs .rule { background: var(--gold); }
.valeurs-grid { border-top-color: rgba(255,255,255,0.15); }
.valeurs .valeur-title { color: var(--white); }
.valeurs .valeur-desc { color: rgba(255,255,255,0.6); }
.valeurs .valeur-item { border-right-color: rgba(255,255,255,0.15); }
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.valeur-item {
  padding: 3.5rem 2.5rem 3.5rem 0;
  border-right: 1px solid var(--line);
}
.valeur-item:last-child { border-right: none; padding-right: 0; }
.valeur-item:not(:first-child) { padding-left: 2.5rem; }
.valeur-num {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.8rem;
}
.valeur-title {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.valeur-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.78;
}

/* ── 8. SERVICES — explorateur interactif ─────────────── */
.services {
  padding: var(--pad) 0;
  background: var(--bg-alt);
}
.explorer {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  min-height: 580px;
}
.explorer-rail {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
}
.explorer-rail-head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.explorer-rail-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  font-weight: 500;
}
.explorer-rail-count {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold);
  margin-top: 4px;
}
.explorer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}
.explorer-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  border-left: 2px solid transparent;
  transition: background 0.2s var(--ease);
}
.explorer-btn:hover { background: rgba(255,255,255,.04); }
.explorer-btn.active {
  background: rgba(180,154,108,.10);
  border-left-color: var(--gold);
}
.explorer-btn-num {
  font-family: var(--display);
  font-size: 0.72rem;
  color: rgba(255,255,255,.22);
  min-width: 20px;
  transition: color 0.2s;
}
.explorer-btn.active .explorer-btn-num { color: var(--gold); }
.explorer-btn-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,.5);
  line-height: 1.35;
  transition: color 0.2s;
}
.explorer-btn.active .explorer-btn-label,
.explorer-btn:hover .explorer-btn-label { color: rgba(255,255,255,.88); }
.explorer-btn-arrow {
  margin-left: auto;
  color: transparent;
  font-size: 0.72rem;
  transition: color 0.2s, transform 0.2s;
}
.explorer-btn.active .explorer-btn-arrow {
  color: var(--gold);
  transform: translateX(3px);
}
.explorer-panel {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.explorer-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
  z-index: 2;
}
.explorer-slide {
  position: absolute;
  inset: 0;
  padding: 48px 52px 44px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.explorer-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.explorer-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.explorer-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.explorer-slide-num {
  font-family: var(--display);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.explorer-slide-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.explorer-slide-rule {
  width: 26px; height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}
.explorer-slide-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.78;
  max-width: 430px;
  margin-bottom: 20px;
}
.explorer-slide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.explorer-slide-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--ink);
  line-height: 1.5;
}
.explorer-slide-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .explorer { grid-template-columns: 1fr; min-height: auto; }
  .explorer-panel { min-height: 420px; }
  .explorer-slide:not(.active) { display: none; }
  .explorer-slide.active { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; }
  .explorer-slide { padding: 32px 24px 28px; }
}

/* ── 9. EXPERTISE ─────────────────────────────────────── */
.expertise {
  padding: var(--pad) 0;
  background: var(--white);
}
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.ep {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color var(--fast);
}
.ep:hover { border-color: var(--gold); }
.ep svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── 10. OUTILS ───────────────────────────────────────── */
.outils {
  padding: var(--pad) 0;
  background: var(--bg-alt);
}
.outils-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.8rem;
}
.otab {
  flex: none;
  padding: 0.9rem 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--fast);
}
.otab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--fast);
}
.otab.active { color: var(--ink); }
.otab.active::after { transform: scaleX(1); }
.otab svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.otab-panel { display: none; }
.otab-panel.active {
  display: block;
  animation: panelIn 0.2s var(--ease) both;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Credit simulator */
.credit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: start;
}
.credit-form-card, .credit-result-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
}
.credit-result-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.tool-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tool-card-title svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.tool-fg { margin-bottom: 1rem; }
.tool-fg label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.tool-fg input, .tool-fg select {
  width: 100%;
  padding: 0.68rem 0.9rem;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--fast), box-shadow var(--fast);
}
.tool-fg input:focus, .tool-fg select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180,154,108,0.1);
}
.duree-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.input-sfx { position: relative; }
.input-sfx input { padding-right: 3rem; }
.input-sfx span {
  position: absolute;
  right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
  pointer-events: none;
}
.btn-calc {
  width: 100%;
  padding: 0.85rem;
  margin-top: 0.5rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background var(--fast);
}
.btn-calc:hover { background: #2a2a28; }
.btn-calc svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.cr-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.4rem;
}
.cr-mode-btn {
  padding: 0.58rem 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cr-mode-btn + .cr-mode-btn { border-left: 1px solid var(--line); }
.cr-mode-btn.active { background: var(--ink); color: var(--white); }
.cr-mode-btn:not(.active):hover { background: #f5f3ef; }

.result-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2rem;
}
.result-empty svg { width: 44px; height: 44px; stroke: var(--line); fill: none; stroke-width: 1.2; }
.result-empty p { font-size: 0.86rem; color: var(--gray); line-height: 1.6; }
.result-data { display: none; }
.result-data.visible { display: block; }
.res-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.res-card {
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  background: var(--white);
}
.res-card.accent { background: var(--ink); border-color: var(--ink); }
.res-card .rc-lbl {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.res-card.accent .rc-lbl { color: rgba(255,255,255,0.42); }
.res-card .rc-val {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.res-card.accent .rc-val { color: var(--gold); }
.res-card .rc-unit { font-size: 0.65rem; color: var(--gray); margin-top: 0.1rem; }
.res-card.accent .rc-unit { color: rgba(255,255,255,0.32); }
.amort-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.amort-wrap { overflow-x: auto; border: 1px solid var(--line); }
.amort-table { width: 100%; border-collapse: collapse; font-size: 0.76rem; }
.amort-table th {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 0.7rem;
  text-align: right;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.amort-table th:first-child { text-align: center; }
.amort-table td {
  padding: 0.42rem 0.7rem;
  text-align: right;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
}
.amort-table td:first-child { text-align: center; font-weight: 600; color: var(--ink); }
.amort-table tr:last-child td { border-bottom: none; }
.amort-table tr:hover td { background: var(--bg-alt); }
.amort-sep td {
  text-align: center !important;
  font-weight: 600;
  color: rgba(120,116,112,0.5);
  background: var(--bg-alt);
  border: none;
  padding: 0.3rem;
  letter-spacing: 0.1em;
}
.btn-pdf {
  width: 100%;
  padding: 0.78rem;
  margin-top: 1rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.btn-pdf:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-pdf svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* BCT Devises */
.devises-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.devises-title-block h3 { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.devises-title-block p { font-size: 0.8rem; color: var(--gray); margin-top: 0.2rem; }
.devises-title-block p strong { color: var(--ink); font-weight: 600; }
.btn-refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--fast);
}
.btn-refresh:hover { border-color: var(--gold); }
.btn-refresh svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none; stroke-width: 2.2;
  transition: transform 0.4s linear;
}
.btn-refresh.loading svg { animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.devises-body {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.devise-section-hd {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 0.6rem 1.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.devise-section-hd::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.devises-table { width: 100%; border-collapse: collapse; }
.devises-table th {
  background: rgba(26,26,24,0.04);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  text-align: right;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.devises-table th:first-child { text-align: left; }
.devises-table th:nth-child(2) { text-align: center; }
.devises-table td {
  padding: 0.65rem 1.1rem;
  text-align: right;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--gray);
}
.devises-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.devises-table td:nth-child(2) { text-align: center; }
.devises-table tr:last-child td { border-bottom: none; }
.devises-table tr:hover td { background: var(--bg-alt); }
.d-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,24,0.06);
  padding: 0.1rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  font-family: monospace;
  letter-spacing: 0.05em;
}
.d-val { font-weight: 600; color: var(--ink); }
.devises-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  gap: 1rem;
  color: var(--gray);
}
.spinner {
  width: 28px; height: 28px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.devises-error {
  text-align: center;
  padding: 3rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.devises-error svg { width: 40px; height: 40px; stroke: var(--line); fill: none; stroke-width: 1.5; }
.devises-error p { font-size: 0.9rem; line-height: 1.6; }
.devises-error a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.devises-footer {
  padding: 0.55rem 1.1rem;
  font-size: 0.68rem;
  color: var(--gray);
  text-align: right;
  border-top: 1px solid var(--line);
}
.devises-footer a { color: var(--gold); }

/* DuPont panel */
.dupont-panel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: start;
}
.dupont-intro-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.dupont-intro-header {
  background: var(--ink);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dupont-intro-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dupont-intro-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dupont-intro-title { color: var(--white); font-size: 0.92rem; font-weight: 600; }
.dupont-intro-sub { color: rgba(255,255,255,0.42); font-size: 0.73rem; margin-top: 0.15rem; }
.dupont-intro-body { padding: 1.4rem 1.5rem; }
.dupont-intro-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.72; margin-bottom: 1.1rem; }
.dupont-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.4rem; }
.dupont-feature { display: flex; align-items: flex-start; gap: 0.65rem; }
.dupont-feature-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.48rem;
}
.dupont-feature-text { font-size: 0.84rem; color: var(--gray); line-height: 1.55; }
.dupont-feature-text strong { color: var(--ink); font-weight: 600; }
.dupont-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.4rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  transition: background var(--fast);
}
.dupont-cta-btn:hover { background: #2a2a28; }
.dupont-cta-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.dupont-formula-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.dupont-formula-header {
  background: var(--bg-alt);
  padding: 0.85rem 1.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--line);
}
.dupont-formula-body { padding: 1.2rem; }
.dupont-formula-eq {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.dupont-formula-eq .eq-roe {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.dupont-formula-eq .eq-op { color: var(--gold); font-weight: 700; }
.dupont-formula-eq small { color: var(--gray); font-weight: 400; }
.dupont-ratios-preview { display: flex; flex-direction: column; gap: 0.5rem; }
.dupont-ratio-row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.dupont-ratio-num {
  width: 20px; height: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dupont-ratio-label { font-size: 0.82rem; font-weight: 600; color: var(--ink); flex: 1; }
.dupont-ratio-formula { font-size: 0.72rem; color: var(--gray); font-style: italic; }
.dupont-note {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── 11. CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  padding: 6rem 0;
  border-top: 1px solid rgba(180,154,108,0.14);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 0.8rem;
}
.cta-band h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.cta-band p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  line-height: 1.75;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
  flex-shrink: 0;
}
.btn-gold {
  display: inline-block;
  padding: 0.82rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--fast);
}
.btn-gold:hover { background: #c5ab7a; }
.cta-phone-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
}
.cta-phone-line svg {
  width: 13px; height: 13px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cta-phone-line a { color: rgba(255,255,255,0.62); font-weight: 600; transition: color var(--fast); }
.cta-phone-line a:hover { color: var(--white); }

/* ── 12. CONTACT ──────────────────────────────────────── */
.contact {
  padding: var(--pad) 0;
  background: var(--dark);
}
.contact .eyebrow { color: var(--gold); }
.contact .sec-title { color: var(--white); }
.contact .lead { color: rgba(255,255,255,0.45); }
.contact .rule { background: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-map {
  margin-top: 3.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.contact-map iframe { display: block; }
.map-placeholder {
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 3rem 2rem;
  text-align: center;
}
.map-placeholder svg { width: 36px; height: 36px; stroke: var(--gold); opacity: .7; }
.map-placeholder p { font-family: var(--display); font-size: 1.1rem; color: var(--white); margin: 0; }
.map-placeholder span { font-size: 0.85rem; color: rgba(255,255,255,.45); }
.map-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .2s;
}
.map-btn:hover { background: var(--gold-light); }
.map-embed-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--sans);
  transition: color .2s, border-color .2s;
}
.map-embed-btn:hover { color: var(--white); border-color: rgba(255,255,255,.35); }
.contact-info-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2.2rem;
}
.ci { display: flex; gap: 1rem; margin-bottom: 1.6rem; align-items: flex-start; }
.ci-icon { flex-shrink: 0; margin-top: 3px; }
.ci-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ci-text strong {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.28);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.ci-text span, .ci-text a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  transition: color var(--fast);
}
.ci-text a:hover { color: rgba(255,255,255,0.9); }

.contact-form {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  resize: none;
  transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg select option { background: var(--dark); color: var(--white); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180,154,108,0.12);
  background: rgba(255,255,255,0.06);
}
.fg textarea { min-height: 110px; }
.btn-submit {
  width: 100%;
  padding: 0.88rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background var(--fast);
}
.btn-submit:hover { background: #c5ab7a; }
.btn-submit svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── 13. FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.footer-brand-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.72;
  margin-top: 1rem;
  max-width: 240px;
}
.footer-brand-desc strong { color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-certif-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(180,154,108,0.16);
  padding: 0.35rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.footer-certif-badge svg {
  width: 11px; height: 11px;
  stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round;
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.2rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-list a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color var(--fast); }
.footer-nav-list a:hover { color: rgba(255,255,255,0.65); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.fci { display: flex; align-items: flex-start; gap: 0.55rem; }
.fci svg {
  width: 13px; height: 13px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 3px;
}
.fci span, .fci a { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.55; transition: color var(--fast); }
.fci a:hover { color: rgba(255,255,255,0.62); }
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-bar p { font-size: 0.72rem; color: rgba(255,255,255,0.17); }
.footer-bottom-bar strong { color: rgba(255,255,255,0.26); font-weight: 500; }

/* ── 14. RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .cabinet-grid { gap: 4rem; }
  .svc-item { grid-template-columns: 3rem 1fr auto; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --pad: var(--pad-m); }
  .parallax-band { background-attachment: scroll; height: 320px; }
  .photo-strip-inner { height: 260px; gap: 2px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .cabinet-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cabinet-badge { right: 0; bottom: -1rem; }
  .valeurs-grid { grid-template-columns: 1fr; border-top: none; }
  .valeur-item {
    border-right: none;
    border-top: 1px solid var(--line);
    padding: 2.5rem 0;
  }
  .valeur-item:last-child { padding-bottom: 0; }
  .valeur-item:not(:first-child) { padding-left: 0; }
  .svc-item { grid-template-columns: 2.5rem 1fr auto; gap: 1rem; }
  .svc-title { font-size: 1.2rem; }
  .dupont-panel-wrap { grid-template-columns: 1fr; }
  .credit-layout { grid-template-columns: 1fr; }
  .res-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .cta-band-actions { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 2.5rem; }
  .outils-tabs { flex-wrap: wrap; }
  .otab { font-size: 0.78rem; padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
  :root { --pad: var(--pad-s); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.8rem, 20vw, 6rem); }
  .hero-actions { flex-direction: column; gap: 1.2rem; }
  .hero-stats { gap: 2rem; }
  .svc-arrow { display: none; }
}

/* ── 15. REDUCED MOTION ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity 0.3s ease; transform: translateY(0) !important; }
  .otab-panel.active { animation: none; }
  .spinner { animation: none; }
}

/* ── 16. RECRUTEMENT ─────────────────────────────────── */
.recrutement { padding: var(--sec-pad) 0; background: var(--ivory); }

.recru-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.recru-col-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.recru-col-title svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* Offres */
.recru-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 2.5rem 1.5rem;
  background: var(--paper); border: 1px dashed var(--line);
  border-radius: 4px; text-align: center; color: var(--stone);
  font-size: 0.88rem; line-height: 1.6;
}
.recru-empty svg {
  width: 28px; height: 28px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.6;
}

.recru-offre-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.recru-offre-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.recru-offre-card.selected { border-left-color: var(--ink); background: #fff; }

.recru-offre-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
}
.recru-offre-titre {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
}
.recru-offre-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold); background: rgba(180,154,108,0.1);
  padding: 0.25rem 0.6rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.recru-offre-meta {
  display: flex; gap: 1rem; margin-top: 0.5rem;
  font-size: 0.78rem; color: var(--stone);
}
.recru-offre-meta span { display: flex; align-items: center; gap: 0.3rem; }
.recru-offre-meta svg {
  width: 12px; height: 12px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.recru-offre-desc {
  margin-top: 0.75rem; font-size: 0.85rem; color: var(--stone); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.recru-offre-cta {
  margin-top: 0.9rem; font-size: 0.78rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em;
}

/* Formulaire */
.recru-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
}
.recru-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.recru-reset-link { margin-top: 1rem; font-size: 0.82rem; text-align: center; }
.recru-reset-link a { color: var(--stone); text-decoration: none; }
.recru-reset-link a:hover { color: var(--gold); }

.recru-success {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; padding: 3rem 2rem; text-align: center;
}
.recru-success svg {
  width: 48px; height: 48px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.recru-success p { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); line-height: 1.5; }
.recru-success p span { font-family: var(--font-body); font-size: 0.88rem; color: var(--stone); display: block; margin-top: 0.4rem; }

/* ── Admin panel ── */
.admin-login {
  max-width: 380px; margin: 8rem auto; padding: 2.5rem;
  background: #fff; border: 1px solid #e8e4de; border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.admin-login h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 0.5rem; }
.admin-login p  { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }
.admin-panel { max-width: 900px; margin: 0 auto; padding: 2rem 1rem; }
.admin-tabs  { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 2px solid #e8e4de; }
.admin-tab   { padding: 0.75rem 1.5rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
               text-transform: uppercase; background: none; border: none; cursor: pointer; color: #888; transition: color 0.2s; }
.admin-tab.active { color: #B49A6C; border-bottom: 2px solid #B49A6C; margin-bottom: -2px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-card { background: #fff; border: 1px solid #e8e4de; border-radius: 4px; padding: 1.5rem; margin-bottom: 1rem; }
.admin-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.admin-card h4 { font-size: 1rem; font-weight: 600; }
.admin-card .meta { font-size: 0.78rem; color: #999; margin-top: 0.3rem; }
.admin-card .body { font-size: 0.85rem; color: #555; margin-top: 0.75rem; line-height: 1.6; }
.btn-danger { background: #c0392b; color: #fff; border: none; padding: 0.4rem 0.9rem;
              border-radius: 3px; font-size: 0.78rem; cursor: pointer; }
.btn-danger:hover { background: #a93226; }
.btn-admin { background: #2C3340; color: #fff; border: none; padding: 0.55rem 1.25rem;
             border-radius: 3px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.btn-admin:hover { background: #B49A6C; }
.admin-form { background: #fff; border: 1px solid #e8e4de; border-radius: 4px; padding: 1.5rem; margin-bottom: 2rem; }
.admin-form h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #888; margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0.6rem 0.85rem; font-size: 0.88rem; border: 1px solid #ddd; border-radius: 3px; font-family: inherit; box-sizing: border-box; }
.fg textarea { resize: vertical; }
.badge-sponta { font-size: 0.72rem; font-weight: 600; color: #7a6a4a; background: rgba(180,154,108,0.15); padding: 0.2rem 0.55rem; border-radius: 20px; }
.badge-offre  { font-size: 0.72rem; font-weight: 600; color: #2a5c8a; background: rgba(42,92,138,0.1);  padding: 0.2rem 0.55rem; border-radius: 20px; }

@media (max-width: 900px) {
  .recru-grid { grid-template-columns: 1fr; }
  .recru-form-row { grid-template-columns: 1fr; }
}

/* file input recrutement */
#recru-cv { padding: 0.45rem 0.6rem; cursor: pointer; }
.fg-hint { display: block; font-size: 0.75rem; color: var(--stone); margin-top: 0.3rem; min-height: 1em; }
.fg-hint.error { color: #c0392b; }

/* Surcharge : texte visible sur fond clair dans le formulaire de recrutement */
.recru-form-wrap .fg input,
.recru-form-wrap .fg select,
.recru-form-wrap .fg textarea {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
.recru-form-wrap .fg input::placeholder,
.recru-form-wrap .fg textarea::placeholder {
  color: var(--stone);
}
