/* ============================================================
   Detailing Performance — feuille de style site
   À placer dans : webroot/css/detailing.css
   Appel dans le layout : <?= $this->Html->css('detailing') ?>
   ============================================================ */

:root {
  --gold: #d9a93f;
  --gold-light: #e6bd5a;
  --bronze: #b45309;
  --bg: #0a0a0a;
  --panel: #141414;
  --line: rgba(255, 255, 255, 0.07);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: #b8b8b8;
  --muted-2: #9a9a9a;
  --muted-3: #8a8a8a;
  --radius: 18px;
  --maxw: 1280px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a { color: inherit; }

.dp-wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.dp-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.dp-kicker__bar { width: 28px; height: 3px; background: var(--gold); transform: skewX(-30deg); }
.dp-kicker__txt {
  font-style: italic; font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Buttons ---------- */
.dp-btn {
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; padding: 17px 34px; border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dp-btn--gold {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 16px 40px -14px rgba(217, 169, 63, 0.9);
}
.dp-btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.dp-btn--ghost {
  background: transparent; color: var(--text); font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.dp-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.dp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.dp-nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.dp-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.dp-logo__mark { height: 36px; width: auto; display: block; }
.dp-logo__txt { display: flex; flex-direction: column; line-height: 0.95; gap: 1px; }
.dp-logo__txt b { font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 0.18em; color: #fff; }
.dp-logo__txt span { font-family: var(--font-head); font-weight: 600; font-size: 9px; letter-spacing: 0.46em; color: var(--gold); }
.dp-logo__mark--footer { height: 48px; width: auto; display: block; }
.dp-logo__txt--footer b { font-size: 19px !important; letter-spacing: 0.2em !important; }
.dp-logo__txt--footer span { font-size: 11px !important; letter-spacing: 0.52em !important; }
.dp-nav__links { display: flex; align-items: center; gap: 6px; }
.dp-nav__link {
  position: relative; text-decoration: none; color: #e7e7e7; font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em; padding: 10px 16px; border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.dp-nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.dp-nav__link.is-active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.dp-nav__cta {
  margin-left: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg); font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  padding: 12px 22px; border-radius: 10px; box-shadow: 0 8px 24px -10px rgba(217, 169, 63, 0.8);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dp-nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.dp-nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; align-items: center; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; cursor: pointer;
}
.dp-nav__burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.dp-nav__burger span:nth-child(2) { background: var(--gold); }
.dp-nav__panel {
  display: none; border-top: 1px solid var(--line); background: rgba(10, 10, 10, 0.97);
  padding: 14px 22px 22px; flex-direction: column; gap: 4px;
}
.dp-nav__panel.is-open { display: flex; }
.dp-nav__panel a {
  text-decoration: none; color: #e7e7e7; font-size: 17px; font-weight: 600; padding: 14px 12px;
  border-radius: 10px; border-left: 3px solid rgba(255, 255, 255, 0.1);
}
.dp-nav__panel a:hover { background: rgba(255, 255, 255, 0.05); }
.dp-nav__panel .dp-nav__cta {
  margin: 8px 0 0; justify-content: center; border-left: none;
}

@media (max-width: 899px) {
  .dp-nav__links { display: none; }
  .dp-nav__burger { display: inline-flex; }
}

/* ============================================================
   HERO (Accueil)
   ============================================================ */
.dp-hero {
  position: relative; min-height: 100vh; padding: 132px 28px 70px;
  display: flex; align-items: center; overflow: hidden;
}
.dp-hero__bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover;
  background-position: 62% center; opacity: 0.45;
}
.dp-hero__veil {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.66) 40%, rgba(10,10,10,0.22) 78%, rgba(10,10,10,0) 100%);
}
.dp-hero__diag {
  position: absolute; left: -10%; width: 130%; transform: rotate(-14deg); z-index: 1; pointer-events: none;
}
.dp-hero__diag--1 {
  top: 56%; height: 74px; opacity: 0.82;
  background: linear-gradient(90deg, transparent 0 47%, rgba(217,169,63,0.4) 57%, var(--gold) 76%);
}
.dp-hero__diag--2 {
  top: calc(56% + 68px); height: 11px; opacity: 0.8;
  background: linear-gradient(90deg, transparent 0 52%, var(--bronze) 74%);
}
.dp-hero__glow {
  position: absolute; top: -20%; right: -15%; width: 700px; height: 700px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(217,169,63,0.12), transparent 62%);
}
.dp-hero__inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px;
}
.dp-hero__copy { flex: 1 1 440px; min-width: 320px; }
.dp-hero__title {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96; letter-spacing: -0.01em; margin: 0 0 26px; text-wrap: balance;
}
.dp-hero__title em { font-style: normal; color: var(--gold); }
.dp-hero__lead {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65; color: var(--muted);
  max-width: 480px; margin: 0 0 36px;
}
.dp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.dp-hero__media { flex: 1 1 420px; min-width: 320px; position: relative; }
.dp-hero__img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 20px;
}
.dp-hero__badge {
  position: absolute; bottom: -18px; left: 24px; background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 14px; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.9);
}
.dp-hero__badge b { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--gold); line-height: 1; }
.dp-hero__badge b small { font-size: 15px; color: #777; }
.dp-hero__badge span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ---------- Stats band ---------- */
.dp-stats { position: relative; background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.dp-stats__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.dp-stats__cell { padding: 40px 24px; border-left: 1px solid var(--line-soft); text-align: center; }
.dp-stats__val { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 4vw, 48px); color: #fff; line-height: 1; }
.dp-stats__lbl { margin-top: 10px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-3); }

/* ---------- Services teaser (Accueil) ---------- */
.dp-section { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 96px 28px 40px; }
.dp-section__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 44px;
}
.dp-section__title {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02; margin: 0; max-width: 640px;
}
.dp-link-underline {
  text-decoration: none; color: #fff; font-weight: 600; font-size: 15px;
  border-bottom: 2px solid var(--gold); padding-bottom: 4px; transition: color 0.2s ease;
}
.dp-link-underline:hover { color: var(--gold); }

.dp-teasers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.dp-teaser {
  position: relative; text-decoration: none; display: block; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 34px;
  overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease;
}
.dp-teaser:hover { transform: translateY(-6px); border-color: rgba(217, 169, 63, 0.5); }
.dp-teaser::before {
  content: ''; position: absolute; top: 0; right: -40px; width: 160px; height: 8px;
  background: var(--gold); transform: rotate(-32deg); opacity: 0.85;
}
.dp-teaser__num { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
.dp-teaser__title { font-family: var(--font-head); font-weight: 700; font-size: 23px; color: #fff; margin: 14px 0 12px; }
.dp-teaser__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin: 0 0 22px; }
.dp-teaser__from { font-size: 13px; font-weight: 600; color: var(--gold); }

/* ---------- CTA band ---------- */
.dp-cta { position: relative; margin: 90px 0 0; padding: 0 28px; }
.dp-cta__box {
  position: relative; max-width: var(--maxw); margin: 0 auto; background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; overflow: hidden;
  padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 64px);
}
.dp-cta__diag--1 { position: absolute; top: -30px; right: -8%; width: 60%; height: 70px; background: var(--gold); transform: rotate(-18deg); opacity: 0.95; }
.dp-cta__diag--2 { position: absolute; top: 44px; right: -8%; width: 60%; height: 12px; background: var(--bronze); transform: rotate(-18deg); opacity: 0.9; }
.dp-cta__row { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.dp-cta__title { font-family: var(--font-head); font-weight: 800; font-style: italic; font-size: clamp(36px, 6vw, 64px); line-height: 0.98; margin: 0; }
.dp-cta__title em { font-style: italic; color: var(--gold); }

.dp-spacer-90 { height: 90px; }
.dp-spacer-96 { height: 96px; }

/* ============================================================
   FOOTER
   ============================================================ */
.dp-footer { position: relative; background: var(--bg); color: #fff; overflow: hidden; border-top: 1px solid var(--line-soft); }
.dp-footer__diag--1 { position: absolute; top: -60px; right: -120px; width: 520px; height: 30px; background: var(--gold); transform: rotate(-32deg); opacity: 0.9; }
.dp-footer__diag--2 { position: absolute; top: -28px; right: -120px; width: 520px; height: 8px; background: var(--bronze); transform: rotate(-32deg); opacity: 0.85; }
.dp-footer__grid {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 72px 28px 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 48px 40px;
}
.dp-footer__about { color: var(--muted-2); font-size: 14px; line-height: 1.7; max-width: 270px; margin: 0 0 20px; }
.dp-footer__socials { display: flex; gap: 10px; }
.dp-footer__socials a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 10px; color: #cfcfcf;
  font-size: 13px; font-weight: 600; text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.dp-footer__socials a:hover { border-color: var(--gold); color: var(--gold); }
.dp-footer__h { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin: 0 0 20px; }
.dp-footer__col { display: flex; flex-direction: column; gap: 14px; }
.dp-footer__col a { color: #cfcfcf; font-size: 14.5px; text-decoration: none; transition: color 0.2s; }
.dp-footer__col a:hover { color: var(--gold); }
.dp-footer__center { padding-left: 14px; border-left: 2px solid var(--gold); }
.dp-footer__center b { font-weight: 700; font-size: 14px; color: #fff; display: block; margin-bottom: 4px; }
.dp-footer__center span { color: var(--muted-2); font-size: 13.5px; line-height: 1.55; }
.dp-footer__bottom {
  position: relative; max-width: var(--maxw); margin: 56px auto 0; padding: 24px 28px;
  border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.dp-footer__bottom span { color: #6f6f6f; font-size: 12.5px; }

/* ============================================================
   PRESTATIONS (v2)
   ============================================================ */
.dp-presta-head { position: relative; padding: 150px 28px 56px; overflow: hidden; }
.dp-presta-head__diag { position: absolute; top: 38%; left: -10%; width: 130%; height: 60px; background: var(--gold); transform: rotate(-13deg); opacity: 0.1; z-index: 0; }
.dp-presta-head__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.dp-presta-head__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 7vw, 82px); line-height: 0.96; margin: 0 0 20px; }
.dp-presta-head__title em { font-style: italic; color: var(--gold); }
.dp-presta-head__lead { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65; color: var(--muted); max-width: 600px; margin: 0; }

.dp-group { max-width: var(--maxw); margin: 0 auto; padding: 0 28px 16px; }
.dp-group__head { display: flex; align-items: baseline; gap: 16px; padding: 40px 0 28px; }
.dp-group__kicker { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.16em; color: var(--gold); }
.dp-group__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3.4vw, 38px); margin: 0; letter-spacing: -0.01em; }
.dp-group__title--gold { color: var(--gold); }
.dp-group__rule { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.1); align-self: center; }

.dp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; align-items: stretch; }
.dp-card {
  position: relative; display: flex; flex-direction: column; background: var(--panel);
  border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px 30px; overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.dp-card:hover { transform: translateY(-5px); border-color: rgba(217, 169, 63, 0.55); }
.dp-card--gold { background: linear-gradient(180deg, #16130c, var(--panel)); border-color: rgba(217, 169, 63, 0.32); }
.dp-card__flag {
  position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--bg);
  font-weight: 700; font-size: 10.5px; letter-spacing: 0.1em; padding: 5px 11px; border-radius: 20px;
}
.dp-card__tag { font-style: italic; font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.dp-card__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); color: #fff; margin: 0 0 20px; line-height: 1.05; }
.dp-card__prices { display: flex; gap: 10px; margin-bottom: 22px; }
.dp-price { flex: 1; background: rgba(255, 255, 255, 0.04); border-radius: 12px; padding: 14px 12px; text-align: center; }
.dp-price__lbl { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 6px; }
.dp-price__val { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); color: #fff; line-height: 1; }
.dp-price__val--gold { color: var(--gold); }
.dp-card__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dp-card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #c4c4c4; line-height: 1.45; }
.dp-card__list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.dp-card__guarantee {
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: rgba(217, 169, 63, 0.1); border: 1px solid rgba(217, 169, 63, 0.3); border-radius: 10px; padding: 8px 14px;
}
.dp-card__guarantee b { color: var(--gold); font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em; }
.dp-card__guarantee span { color: #cdb46a; font-size: 11.5px; }
.dp-card__btn {
  text-decoration: none; text-align: center; display: block; background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2); font-weight: 700; font-size: 14.5px; padding: 14px;
  border-radius: 12px; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dp-card__btn:hover, .dp-card--gold .dp-card__btn { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.dp-card--gold .dp-card__btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

.dp-note {
  max-width: var(--maxw); margin: 0 auto; padding: 20px 28px 0;
}
.dp-note p {
  display: flex; align-items: center; gap: 12px; color: var(--muted-3); font-size: 13.5px;
  margin: 0; padding: 14px 18px; border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 12px;
}
.dp-note p span { color: var(--gold); font-size: 18px; }

/* ---------- Comparison table ---------- */
.dp-compare { max-width: var(--maxw); margin: 0 auto; padding: 90px 28px 0; }
.dp-compare__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 44px); text-align: center; margin: 0 0 40px; }
.dp-compare__title em { font-style: italic; color: var(--gold); }
.dp-compare__table { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; background: var(--panel); }
.dp-compare__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-top: 1px solid var(--line-soft); }
.dp-compare__row:first-child { border-top: none; }
.dp-compare__k { padding: 22px 28px; font-weight: 600; color: #cfcfcf; font-size: 14.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.dp-compare__v { padding: 22px 20px; text-align: center; color: #fff; font-size: 15.5px; border-left: 1px solid var(--line-soft); }
.dp-compare__v--gold { color: var(--gold); font-weight: 700; }

.dp-final-cta { max-width: var(--maxw); margin: 0 auto; padding: 84px 28px 0; text-align: center; }
.dp-final-cta__title { font-family: var(--font-head); font-weight: 800; font-style: italic; font-size: clamp(30px, 5vw, 54px); margin: 0 0 26px; }
.dp-final-cta__title em { font-style: italic; color: var(--gold); }
.dp-final-cta .dp-btn { font-size: 17px; padding: 19px 40px; }

@media (max-width: 640px) {
  .dp-compare__row { grid-template-columns: 1fr; }
  .dp-compare__v { border-left: none; border-top: 1px solid var(--line-soft); }
}

/* ============================================================
   À PROPOS
   ============================================================ */
.dp-about-intro { position: relative; padding: 150px 28px 60px; overflow: hidden; }
.dp-about-intro__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 56px; align-items: center; }
.dp-about-intro__copy { flex: 1 1 420px; min-width: 320px; }
.dp-about-intro__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 5.4vw, 62px); line-height: 1; margin: 0 0 24px; }
.dp-about-intro__title em { font-style: normal; color: var(--gold); }
.dp-about-intro__copy p { font-size: clamp(15px, 1.6vw, 17.5px); line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.dp-about-intro__copy p:last-child { margin-bottom: 0; }
.dp-about-intro__media { flex: 1 1 380px; min-width: 300px; position: relative; }
.dp-about-intro__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; display: block; border-radius: 20px; }
.dp-about-intro__badge {
  position: absolute; bottom: 24px; left: -18px;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(14px);
  border: 1px solid rgba(217,169,63,0.35); border-radius: 14px;
  padding: 16px 22px; display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.dp-about-intro__badge b { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--gold); line-height: 1; }
.dp-about-intro__badge span { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.4; }
.dp-about-intro__media::before { content: ''; position: absolute; top: -22px; right: -18px; width: 200px; height: 10px; background: var(--gold); transform: rotate(-30deg); z-index: 2; }

/* ============================================================
   SECTION ATELIER EN ACTION
   ============================================================ */
.dp-atelier { max-width: var(--maxw); margin: 0 auto; padding: 90px 28px 0; }
.dp-atelier__head { margin-bottom: 36px; }
.dp-atelier__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.05; margin: 8px 0 0;
}
.dp-atelier__title em { font-style: italic; color: var(--gold); }
.dp-atelier__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dp-atelier__frame {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.dp-atelier__frame:hover {
  border-color: rgba(217,169,63,0.4);
  box-shadow: 0 18px 48px -14px rgba(0,0,0,0.7);
  transform: translateY(-4px);
}
.dp-atelier__img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.dp-atelier__frame:hover .dp-atelier__img { transform: scale(1.05); }

@media (max-width: 840px) {
  .dp-atelier__strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dp-atelier__strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dp-about-intro__badge { left: 12px; bottom: 12px; }
}

.dp-about-stats { background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin-top: 40px; }
.dp-about-stats .dp-stats__grid { padding: 0 28px; }
.dp-about-stats .dp-stats__cell { padding: 48px 24px; }
.dp-about-stats .dp-stats__val { color: var(--gold); font-size: clamp(36px, 4.4vw, 54px); }

.dp-engagements { max-width: var(--maxw); margin: 0 auto; padding: 90px 28px 0; }
.dp-engagements__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 44px); margin: 0 0 44px; max-width: 620px; }
.dp-engagements__title em { font-style: normal; color: var(--gold); }
.dp-engagements__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.dp-engagement { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; overflow: hidden; }
.dp-engagement::before { content: ''; position: absolute; bottom: -18px; left: -30px; width: 130px; height: 6px; background: var(--gold); transform: rotate(-35deg); opacity: 0.7; }
.dp-engagement__icon { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.dp-engagement__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff; margin: 0 0 10px; }
.dp-engagement__desc { font-size: 14px; line-height: 1.6; color: var(--muted-2); margin: 0; }

.dp-centres { max-width: var(--maxw); margin: 0 auto; padding: 90px 28px 0; }
.dp-centres__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3.6vw, 42px); margin: 0 0 36px; }
.dp-centres__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.dp-centre { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.dp-centre img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.dp-centre__body { padding: 26px 28px; }
.dp-centre__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.dp-centre__dot { width: 10px; height: 10px; background: var(--gold); transform: skewX(-20deg); }
.dp-centre__name { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; margin: 0; }
.dp-centre__addr { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 6px; }
.dp-centre__note { font-size: 13.5px; color: var(--muted-3); margin: 0; }

/* ============================================================
   RÉALISATIONS (avant / après)
   ============================================================ */
.dp-realisations-head { position: relative; padding: 150px 28px 50px; overflow: hidden; }
.dp-realisations-head__diag { position: absolute; top: 55%; left: -10%; width: 130%; height: 70px; background: var(--gold); transform: rotate(-13deg); opacity: 0.1; z-index: 0; }
.dp-realisations-head__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.dp-realisations-head__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 7vw, 82px); line-height: 0.96; margin: 0 0 20px; }
.dp-realisations-head__title em { font-style: italic; color: var(--gold); }
.dp-realisations-head__lead { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65; color: var(--muted); max-width: 560px; margin: 0; }

.dp-gallery { max-width: var(--maxw); margin: 0 auto; padding: 30px 28px 0; }
.dp-gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; }
.dp-ba { position: relative; margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: var(--panel); cursor: pointer; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.dp-ba:hover { transform: translateY(-6px); border-color: rgba(217,169,63,0.55); box-shadow: 0 28px 60px -28px rgba(0,0,0,0.9); }
.dp-ba__pair { position: relative; display: flex; aspect-ratio: 4 / 3; }
.dp-ba__side { position: relative; flex: 1; overflow: hidden; }
.dp-ba__side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dp-ba__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.05)); pointer-events: none; }
.dp-ba__tag { position: absolute; top: 12px; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; padding: 5px 10px; border-radius: 6px; }
.dp-ba__tag--before { left: 12px; color: #fff; background: rgba(10,10,10,0.7); }
.dp-ba__tag--after { right: 12px; color: var(--bg); background: var(--gold); }
.dp-ba__divider { position: absolute; top: -12%; left: 50%; width: 7px; height: 124%; background: var(--gold); transform: translateX(-50%) rotate(10deg); box-shadow: 0 0 24px rgba(217,169,63,0.7); pointer-events: none; }
.dp-ba__caption { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; }
.dp-ba__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; }
.dp-ba__chip { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(217,169,63,0.35); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }

/* ============================================================
   RÉSERVATION (booking — JS pilote l'affichage)
   ============================================================ */
.dp-booking-head { position: relative; padding: 140px 28px 24px; overflow: hidden; }
.dp-booking-head__diag { position: absolute; top: 60%; left: -10%; width: 130%; height: 60px; background: var(--gold); transform: rotate(-12deg); opacity: 0.1; }
.dp-booking-head__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.dp-booking-head__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 6vw, 64px); line-height: 0.98; margin: 0; }
.dp-booking-head__title em { font-style: normal; color: var(--gold); }

.dp-booking { max-width: 1000px; margin: 0 auto; padding: 14px 28px 0; }
.dp-stepper { display: flex; align-items: center; gap: 6px; }
.dp-stepper__step { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0; }
.dp-stepper__n { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; border: 1.5px solid rgba(255,255,255,0.15); color: #7a7a7a; }
.dp-stepper__step.is-active .dp-stepper__n { background: var(--gold); color: #fff; border-color: var(--gold); }
.dp-stepper__step.is-done .dp-stepper__n { background: rgba(217,169,63,0.15); color: var(--gold); border-color: var(--gold); }
.dp-stepper__lbl { font-size: 13.5px; font-weight: 600; color: #7a7a7a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-stepper__step.is-active .dp-stepper__lbl, .dp-stepper__step.is-done .dp-stepper__lbl { color: #fff; }
.dp-stepper__rule { height: 1px; background: rgba(255,255,255,0.08); margin-top: 18px; }

.dp-booking__h { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin: 0 0 18px; }
.dp-svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.dp-svc { text-align: left; cursor: pointer; padding: 16px 18px; border-radius: 13px; background: var(--panel); border: 1.5px solid var(--line); transition: all .2s ease; }
.dp-svc.is-sel { background: rgba(217,169,63,0.12); border-color: var(--gold); }
.dp-svc__name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px; }
.dp-svc__price { display: block; font-size: 13px; color: var(--muted-3); }
.dp-svc.is-sel .dp-svc__price { color: var(--gold); }

.dp-toggle { display: inline-flex; background: var(--panel); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 5px; gap: 5px; }
.dp-toggle button { cursor: pointer; padding: 11px 22px; border-radius: 9px; border: none; font-weight: 600; font-size: 14px; font-family: var(--font-body); background: transparent; color: #bdbdbd; transition: all .2s ease; }
.dp-toggle button.is-sel { background: var(--gold); color: var(--bg); }

.dp-cal-wrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.dp-cal { flex: 1 1 320px; min-width: 300px; background: var(--panel); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 22px; }
.dp-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dp-cal__nav { width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.12); background: transparent; color: #fff; font-size: 18px; cursor: pointer; }
.dp-cal__nav:disabled { color: #3a3a3a; cursor: not-allowed; }
.dp-cal__month { font-family: var(--font-head); font-weight: 700; font-size: 16px; text-transform: capitalize; }
.dp-cal__weekdays, .dp-cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dp-cal__weekdays { margin-bottom: 8px; }
.dp-cal__weekdays span { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: #6f6f6f; padding: 4px 0; }
.dp-day { aspect-ratio: 1; border-radius: 9px; border: 1px solid transparent; background: transparent; color: #e7e7e7; font-size: 14px; font-family: var(--font-body); font-weight: 500; cursor: pointer; transition: background .15s ease; }
.dp-day.is-sel { background: var(--gold); color: var(--bg); font-weight: 700; }
.dp-day.is-past { color: #3a3a3a; cursor: not-allowed; }
.dp-day.is-full { background: #1c1c1c; color: #555; cursor: not-allowed; }
.dp-day.is-empty { visibility: hidden; }
.dp-cal__legend { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.dp-cal__legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--muted-3); }
.dp-cal__legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

.dp-slots { flex: 1 1 260px; min-width: 250px; background: var(--panel); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 22px; align-self: stretch; }
.dp-slots__title { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.dp-slots__hint { font-size: 13px; color: var(--muted-3); margin-bottom: 16px; }
.dp-slots__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 8px; }
.dp-slot { padding: 13px 8px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.12); background: #0f0f0f; color: #e7e7e7; font-size: 14px; font-weight: 600; font-family: var(--font-body); cursor: pointer; }
.dp-slot.is-sel { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.dp-slot.is-taken { background: #161616; color: #4a4a4a; border-color: rgba(255,255,255,0.05); cursor: not-allowed; text-decoration: line-through; }
.dp-slots__empty { color: #6f6f6f; font-size: 14px; padding: 24px 0; text-align: center; }

.dp-summary { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; background: linear-gradient(180deg, #16130c, var(--panel)); border: 1px solid rgba(217,169,63,0.25); border-radius: 16px; padding: 22px 26px; }
.dp-summary__lbl { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 6px; }
.dp-summary__val { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--gold); line-height: 1; }
.dp-summary__val small { font-size: 14px; color: var(--muted-3); font-weight: 500; }

.dp-field { display: block; }
.dp-field > span { display: block; font-size: 13px; font-weight: 600; color: #cfcfcf; margin-bottom: 8px; }
.dp-input, .dp-textarea { width: 100%; box-sizing: border-box; background: #0f0f0f; border: 1px solid rgba(255,255,255,0.14); border-radius: 11px; padding: 14px 16px; color: #fff; font-size: 15px; font-family: var(--font-body); }
.dp-input:focus, .dp-textarea:focus { outline: none; border-color: var(--gold); }
.dp-input::placeholder, .dp-textarea::placeholder { color: #5e5e5e; }
.dp-textarea { resize: vertical; }
.dp-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.dp-error { display: block; color: #ff7a5c; font-size: 12.5px; margin-top: 6px; }
.dp-form-actions { display: flex; gap: 14px; margin-top: 26px; }
.dp-btn-back { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 600; font-size: 15px; padding: 16px 28px; border-radius: 12px; cursor: pointer; }
.dp-btn-next { flex: 1; background: var(--gold); border: none; color: var(--bg); font-weight: 700; font-size: 16px; padding: 16px 28px; border-radius: 12px; cursor: pointer; box-shadow: 0 16px 40px -16px rgba(217,169,63,0.9); }
.dp-btn-next:disabled { background: #33312c; color: #6f6a5e; cursor: not-allowed; box-shadow: none; }

.dp-pay-grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.dp-recap { flex: 1 1 280px; min-width: 270px; background: var(--panel); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px 26px; }
.dp-recap__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0 0 18px; }
.dp-recap__row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.dp-recap__row span:first-child { color: var(--muted-3); }
.dp-recap__row span:last-child { color: #fff; font-weight: 600; text-align: right; }
.dp-recap__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; }
.dp-recap__total b { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--gold); }
.dp-recap__solde { font-size: 12px; color: #6f6f6f; margin-top: 4px; }
.dp-pay { flex: 1 1 320px; min-width: 290px; background: var(--panel); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px 26px; }
.dp-pay__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dp-pay__head h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0; }
.dp-pay__badge { font-size: 11px; color: var(--muted-3); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 8px; }
.dp-pay__row { display: flex; gap: 12px; margin-bottom: 20px; }
.dp-pay__btn { width: 100%; border: none; cursor: pointer; background: var(--gold); color: var(--bg); font-weight: 700; font-size: 16px; padding: 16px; border-radius: 12px; box-shadow: 0 16px 40px -16px rgba(217,169,63,0.9); }
.dp-pay__btn:disabled { background: #8a6d1f; cursor: wait; }
.dp-pay__edit { display: flex; gap: 14px; margin-top: 12px; justify-content: center; }
.dp-pay__edit button { background: transparent; border: none; color: var(--muted-3); font-size: 13px; cursor: pointer; text-decoration: underline; }

.dp-confirm { max-width: 720px; margin: 0 auto; padding: 30px 28px 0; text-align: center; }
.dp-confirm__check { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%; background: rgba(34,197,94,0.12); border: 2px solid #22c55e; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #22c55e; }
.dp-confirm__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
.dp-confirm__title em { font-style: normal; color: var(--gold); }
.dp-confirm__lead { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0 0 8px; }
.dp-confirm__ref { color: var(--muted-3); font-size: 14px; margin: 0 0 30px; }
.dp-confirm__ref b { color: var(--gold); font-weight: 700; font-family: var(--font-head); letter-spacing: 0.04em; }
.dp-confirm__box { text-align: left; background: var(--panel); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px 26px; margin-bottom: 28px; }
.dp-confirm__paid { display: flex; justify-content: space-between; padding-top: 14px; font-size: 14px; }
.dp-confirm__paid span:last-child { color: #22c55e; font-weight: 700; }
.dp-confirm__reset { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 600; font-size: 15px; padding: 15px 30px; border-radius: 12px; cursor: pointer; }
.dp-confirm__reset:hover { border-color: var(--gold); color: var(--gold); }

.is-hidden { display: none !important; }

/* ============================================================
   ANIMATIONS HERO — entrée de page
   ============================================================ */

/* Ligne de titre : bloc indépendant pour le reveal */
.dp-title-line {
  display: block;
  overflow: hidden;
}

/* Keyframes */
@keyframes dp-rise {
  from { opacity: 0; transform: translateY(52px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dp-slide-right {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes dp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dp-pop {
  from { opacity: 0; transform: scale(0.88) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Classes d'animation avec délais échelonnés */
.dp-anim {
  opacity: 0;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 0.8, 0.32, 1);
  animation-duration: 0.72s;
}

/* Kicker */
.dp-anim--1 { animation-name: dp-fade-up; animation-delay: 0.05s; }

/* Ligne titre 1 */
.dp-anim--2 { animation-name: dp-rise; animation-delay: 0.18s; }

/* Ligne titre 2 + image (même temps, effet parallèle) */
.dp-anim--3 { animation-name: dp-rise; animation-delay: 0.34s; }

/* Ligne titre 3 */
.dp-anim--4 { animation-name: dp-rise; animation-delay: 0.50s; }

/* Lead text */
.dp-anim--5 { animation-name: dp-fade-up; animation-delay: 0.66s; }

/* Boutons + badge */
.dp-anim--6 { animation-name: dp-fade-up; animation-delay: 0.80s; }

/* Image hero : entre par la droite */
.dp-hero__media.dp-anim { animation-name: dp-slide-right; animation-delay: 0.28s; animation-duration: 0.80s; }

/* Badge : pop */
.dp-hero__badge.dp-anim { animation-name: dp-pop; animation-delay: 0.90s; animation-duration: 0.55s; }

/* Diagonales hero : glissent depuis la droite */
.dp-hero__diag--1 { animation: dp-slide-right 1s cubic-bezier(0.22, 0.8, 0.32, 1) 0.6s both; }
.dp-hero__diag--2 { animation: dp-slide-right 1s cubic-bezier(0.22, 0.8, 0.32, 1) 0.72s both; }

/* Glow : fondu lent */
.dp-hero__glow { animation: dp-fade-up 1.4s ease 0.3s both; }

/* Respect de prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .dp-anim,
  .dp-hero__diag--1,
  .dp-hero__diag--2,
  .dp-hero__glow {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   PAGE RÉALISATIONS — galerie portfolio
   ============================================================ */
.dp-real-head__lead {
  color: var(--muted); font-size: 16px; max-width: 560px; margin: 14px 0 0; line-height: 1.6;
}

/* Filtres */
.dp-portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 1100px; margin: 36px auto 0; padding: 0 28px;
}
.dp-filter-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.14); color: #b8b8b8;
  font-size: 13.5px; font-weight: 600; font-family: var(--font-body);
  padding: 9px 20px; border-radius: 100px; cursor: pointer;
  transition: all 0.2s ease;
}
.dp-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.dp-filter-btn.is-active {
  background: var(--gold); border-color: var(--gold); color: #0a0a0a;
}

/* Grille portfolio */
.dp-portfolio { max-width: 1100px; margin: 0 auto; padding: 32px 28px 0; }
.dp-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dp-portfolio__empty { text-align: center; color: var(--muted-3); padding: 60px 0; }

/* Carte */
.dp-pcard {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.dp-pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(217,169,63,0.35);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.6);
}
.dp-pcard--featured {
  grid-column: span 2;
}

/* Photo */
.dp-pcard__img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.dp-pcard--featured .dp-pcard__img-wrap { aspect-ratio: 16/9; }
.dp-pcard__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.dp-pcard:hover .dp-pcard__img { transform: scale(1.04); }

/* Badge catégorie */
.dp-pcard__badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,10,10,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(217,169,63,0.4); border-radius: 100px;
  padding: 5px 12px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
}

/* Infos */
.dp-pcard__info { padding: 18px 20px 20px; }
.dp-pcard__top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px; margin-bottom: 4px;
}
.dp-pcard__vehicule {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff;
}
.dp-pcard__annee {
  font-size: 12px; font-weight: 600; color: var(--muted-3); flex-shrink: 0;
}
.dp-pcard__prestation {
  font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 8px;
}
.dp-pcard__desc {
  margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55;
}

@media (max-width: 900px) {
  .dp-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .dp-pcard--featured { grid-column: span 2; }
}
@media (max-width: 560px) {
  .dp-portfolio__grid { grid-template-columns: 1fr; }
  .dp-pcard--featured { grid-column: span 1; }
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.dp-contact-wrap {
  max-width: 1100px; margin: 0 auto; padding: 48px 28px 0;
  display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap;
}

/* Colonne formulaire */
.dp-contact-form-col { flex: 1 1 540px; min-width: 300px; }

.dp-contact-form { width: 100%; }

/* Succès */
.dp-contact-success {
  display: flex; align-items: flex-start; gap: 18px;
  background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 14px; padding: 20px 24px; margin-bottom: 28px;
}
.dp-contact-success__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(34, 197, 94, 0.15); border: 1.5px solid #22c55e;
  display: flex; align-items: center; justify-content: center;
  color: #22c55e; font-size: 18px; font-weight: 700;
}
.dp-contact-success strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.dp-contact-success p { margin: 0; color: var(--muted); font-size: 14px; }

/* Select */
.dp-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  cursor: pointer;
}
.dp-select option { background: #1a1a1a; color: #fff; }

/* Champ en erreur */
.dp-input--err { border-color: #ff7a5c !important; }

/* Champ requis */
.dp-required { font-style: normal; color: var(--gold); margin-left: 2px; }

/* Footer formulaire */
.dp-contact-form__footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-top: 24px;
}
.dp-contact-form__mention { font-size: 12.5px; color: var(--muted-3); }
.dp-contact-submit { white-space: nowrap; }

/* Colonne aside */
.dp-contact-aside { flex: 0 0 320px; min-width: 260px; display: flex; flex-direction: column; gap: 16px; }

/* Carte info */
.dp-contact-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 24px;
}
.dp-contact-card__title {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold);
  margin: 0 0 10px;
}
.dp-contact-card__phone {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 26px; color: #fff; text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.dp-contact-card__phone:hover { color: var(--gold); }
.dp-contact-card__email {
  display: block; font-size: 14px; color: var(--gold); text-decoration: none;
  word-break: break-all; transition: opacity 0.2s ease;
}
.dp-contact-card__email:hover { opacity: 0.75; }
.dp-contact-card__hint { margin: 6px 0 0; font-size: 12.5px; color: var(--muted-3); }

/* Centres */
.dp-contact-centre {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.dp-contact-centre:last-child { border-bottom: none; padding-bottom: 0; }
.dp-contact-centre__dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-top: 5px;
}
.dp-contact-centre b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.dp-contact-centre span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.dp-contact-map-link {
  display: inline-block; margin-top: 8px; font-size: 12px; color: var(--gold);
  text-decoration: none; font-weight: 600; transition: opacity 0.2s ease;
}
.dp-contact-map-link:hover { opacity: 0.75; }

/* CTA aside */
.dp-contact-card--cta { background: linear-gradient(135deg, #16130c, var(--panel)); }
.dp-contact-card--cta p { margin: 0 0 14px; font-size: 14px; color: var(--muted); }

@media (max-width: 768px) {
  .dp-contact-wrap { flex-direction: column; }
  .dp-contact-aside { flex: 1 1 auto; width: 100%; }
  .dp-contact-form__footer { flex-direction: column; align-items: flex-start; }
  .dp-contact-submit { width: 100%; justify-content: center; }
}
