/* =========================================================
   Dar Elite — Noir & Or
   Tokens + base + composants — full responsive
   ========================================================= */

:root {
  /* === Palette === */
  --de-bg:        #0d0a08;          /* noir profond */
  --de-bg-tint:   #161210;          /* surface chaude */
  --de-card:      #17130f;
  --de-border:    #2a221a;
  --de-border-2:  #3a2e22;
  --de-fg:        #f1e9d9;          /* ivoire chaud */
  --de-muted:     #b5a890;
  --de-gold:      #d4af6a;          /* or champagne */
  --de-gold-soft: #e9cf95;
  --de-gold-deep: #a8884c;

  /* === Gradients === */
  --de-grad-gold:  linear-gradient(135deg, #e9cf95 0%, #b08a4a 100%);
  --de-grad-hero:  linear-gradient(180deg, #110d0a 0%, #0d0a08 100%);
  --de-grad-navy:  linear-gradient(135deg, #17130f 0%, #0a0807 100%);

  /* === Shadows === */
  --de-shadow-soft: 0 10px 40px -16px rgba(212,175,106,0.25);
  --de-shadow-card: 0 3px 18px -8px rgba(0,0,0,0.55);

  /* === Typography === */
  --de-font-display: "Urbanist", system-ui, -apple-system, sans-serif;
  --de-font-sans:    "Epilogue", system-ui, -apple-system, sans-serif;
  --de-font-serif:   "Cormorant Garamond", "Times New Roman", Georgia, serif;

  --de-radius:     1rem;
  --de-radius-lg:  1.75rem;

  --de-container:  1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.de-body {
  margin: 0;
  background: var(--de-bg);
  color: var(--de-fg);
  font-family: var(--de-font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--de-gold); }

/* =========== Typography helpers =========== */
.de-h1 {
  font-family: var(--de-font-display);
  font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.de-h2 {
  font-family: var(--de-font-display);
  font-size: clamp(1.85rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 .75rem;
}
.de-h3 {
  font-family: var(--de-font-display);
  font-size: clamp(1.25rem, 1.4vw + 1rem, 1.8rem);
  font-weight: 700;
  margin: 0 0 .5rem;
}
.de-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--de-gold);
  margin: 0 0 .75rem;
}
.de-lead {
  font-size: clamp(1rem, .4vw + .9rem, 1.15rem);
  color: rgba(241,233,217,.78);
  max-width: 38ch;
  margin: 1.5rem 0;
}
.de-prose { color: rgba(241,233,217,.8); }
.de-gold   { color: var(--de-gold); }
.de-gold-italic {
  font-family: var(--de-font-serif);
  font-style: italic;
  font-weight: 500;
  background: var(--de-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.de-divider { border: 0; height: 1px; width: 48px; background: var(--de-gold); margin: 1.25rem 0; opacity:.6; }

/* =========== Layout =========== */
.de-container {
  max-width: var(--de-container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.de-section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.de-section--tint { background: var(--de-bg-tint); border-block: 1px solid var(--de-border); }
.de-narrow { max-width: 820px; margin-inline: auto; }
.de-section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.de-section__head--split { text-align: left; max-width: 100%; display: grid; gap: 2rem; }
@media (min-width: 960px) {
  .de-section__head--split { grid-template-columns: 2fr 1fr; align-items: end; }
}

.de-grid-12 { display: grid; gap: 2.5rem; grid-template-columns: repeat(12, 1fr); }
@media (max-width: 900px) { .de-grid-12 { grid-template-columns: 1fr; } }
.de-col-5 { grid-column: span 5; }
.de-col-7 { grid-column: span 7; }
@media (max-width: 900px) { .de-col-5, .de-col-7 { grid-column: 1 / -1; } }

/* =========== Header =========== */
.de-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(13,10,8,.72);
  border-bottom: 1px solid var(--de-border);
}
.de-header__inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; gap: 1rem; }
.de-logo img, .de-logo svg, .custom-logo { height: 44px; width: auto; }
.de-nav__list { display: none; gap: 1.75rem; list-style: none; margin: 0; padding: 0; font-weight: 500; font-size: .92rem; }
@media (min-width: 960px) { .de-nav__list { display: flex; align-items: center; } }
.de-nav__cta {
  background: var(--de-grad-gold); color: #1a1308 !important;
  padding: .55rem 1.1rem; border-radius: 999px; font-weight: 700;
}
.de-nav__cta:hover { color: #1a1308 !important; opacity: .92; }

.de-burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--de-border-2); border-radius: 10px;
  cursor: pointer;
}
.de-burger span { display: block; width: 18px; height: 1.5px; background: var(--de-gold); }
@media (min-width: 960px) { .de-burger { display: none; } }

.de-mobile {
  position: fixed; inset: 64px 0 auto 0;
  background: var(--de-bg); border-bottom: 1px solid var(--de-border);
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem clamp(1rem, 3vw, 2rem) 1.5rem;
  z-index: 55;
}
.de-mobile.is-open { display: flex; }
.de-mobile a { padding: .85rem .25rem; border-bottom: 1px solid var(--de-border); }
.de-mobile a:last-child { border-bottom: 0; }
@media (min-width: 960px) {
  .de-mobile, .de-mobile.is-open { display: none !important; }
}

.de-main { padding-top: 80px; }

/* =========== Buttons =========== */
.de-btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent; cursor: pointer;
}
.de-btn--primary {
  background: var(--de-grad-gold); color: #1a1308;
  box-shadow: var(--de-shadow-soft);
}
.de-btn--primary:hover { transform: translateY(-1px); color: #1a1308; }
.de-btn--ghost {
  background: transparent; color: var(--de-fg);
  border-color: var(--de-border-2);
}
.de-btn--ghost:hover { border-color: var(--de-gold); color: var(--de-gold); }

/* =========== Badges =========== */
.de-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid var(--de-border-2);
  background: rgba(23,19,15,.6); backdrop-filter: blur(8px);
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(241,233,217,.85);
}

/* =========== Hero =========== */
.de-hero {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--de-grad-hero);
  overflow: hidden;
}
.de-hero__glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.de-hero__glow--a { top: -160px; left: -160px; width: 520px; height: 520px; background: rgba(212,175,106,.18); }
.de-hero__glow--b { bottom: -100px; right: -100px; width: 440px; height: 440px; background: rgba(212,175,106,.12); }

.de-hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 980px) { .de-hero__grid { grid-template-columns: 7fr 5fr; } }

.de-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

.de-hero__trust {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: .9rem 1.5rem;
  color: rgba(241,233,217,.7); font-size: .92rem;
}
.de-hero__trust li { display: flex; align-items: center; gap: .5rem; }
.de-hero__trust li + li::before { content: ""; width: 1px; height: 14px; background: var(--de-border-2); margin-right: .9rem; }

.de-hero__visual { position: relative; }
.de-hero__frame {
  position: relative; border-radius: var(--de-radius-lg); overflow: hidden;
  border: 1px solid var(--de-border-2); box-shadow: var(--de-shadow-card);
}
.de-hero__frame img { width: 100%; height: clamp(360px, 55vw, 640px); object-fit: cover; }
.de-hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,8,.9), rgba(13,10,8,.05) 55%, transparent);
}
.de-hero__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .8rem; border-radius: 999px;
  background: rgba(13,10,8,.7); border: 1px solid var(--de-border-2); backdrop-filter: blur(8px);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
.de-hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--de-gold); animation: depulse 1.8s infinite; }
@keyframes depulse { 0%,100% { opacity: 1 } 50% { opacity: .4 } }

.de-hero__caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  padding: 1rem 1.1rem; border-radius: 1rem;
  background: rgba(23,19,15,.8); border: 1px solid var(--de-border-2);
  backdrop-filter: blur(10px);
}
.de-hero__caption p:last-child { margin: .25rem 0 0; font-family: var(--de-font-display); font-size: 1.05rem; line-height: 1.35; }

/* =========== About =========== */
.de-about__card {
  border-radius: var(--de-radius-lg);
  background: var(--de-grad-navy);
  border: 1px solid var(--de-border-2);
  padding: clamp(2rem, 4vw, 3rem);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center; text-align: center;
  margin: 0;
}
.de-quote { font-family: var(--de-font-serif); font-style: italic; font-size: 1.1rem; color: rgba(241,233,217,.9); margin-top: 1rem; }

.de-blockquote {
  position: relative; margin: 1.5rem 0 0; padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--de-gold);
  background: rgba(23,19,15,.5); border-radius: .85rem;
  color: rgba(241,233,217,.92); font-style: italic;
}
.de-blockquote cite { display: block; margin-top: .75rem; font-style: normal; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--de-gold); }

.de-mini-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-top: 1.5rem; }
.de-mini-grid > div {
  padding: .9rem 1rem; border: 1px solid var(--de-border);
  background: rgba(23,19,15,.45); border-radius: .85rem;
}
.de-mini-grid strong { display: block; color: var(--de-fg); }
.de-mini-grid span   { display: block; font-size: .82rem; color: var(--de-muted); margin-top: .15rem; }

.de-area { margin-top: 1.25rem; color: var(--de-muted); font-size: .92rem; }

/* =========== Cards / Services =========== */
.de-cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .de-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .de-cards { grid-template-columns: repeat(3, 1fr); } }
.de-cards--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .de-cards--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .de-cards--3 { grid-template-columns: repeat(3, 1fr); } }

.de-card {
  position: relative; overflow: hidden;
  background: var(--de-card); border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg); padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.de-card:hover { border-color: rgba(212,175,106,.5); transform: translateY(-2px); box-shadow: var(--de-shadow-soft); }
.de-card h4 { margin: 1rem 0 .35rem; font-family: var(--de-font-display); font-size: 1.1rem; }
.de-card p  { margin: 0; color: var(--de-muted); font-size: .95rem; }
.de-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--de-grad-gold); color: #1a1308; font-weight: 800;
}

.de-card--engagement { padding: clamp(1.75rem, 3vw, 2.5rem); }
.de-card__watermark {
  position: absolute; right: 24px; top: -10px;
  font-family: var(--de-font-display); font-weight: 800; font-size: 6.5rem;
  color: rgba(212,175,106,.08); user-select: none; pointer-events: none;
}
.de-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.de-card__head .de-eyebrow { margin: 0; }
.de-card__stat { display: flex; align-items: end; justify-content: space-between; padding-top: 1.25rem; margin-top: 1.5rem; border-top: 1px solid var(--de-border); }
.de-stat {
  font-family: var(--de-font-display); font-weight: 800; font-size: 2rem;
  background: var(--de-grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.de-card__stat span:last-child { color: var(--de-muted); font-size: .8rem; }

/* =========== Stages (services) =========== */
.de-stage + .de-stage { margin-top: 4rem; }
.de-stage__head {
  display: flex; align-items: end; gap: 1.25rem;
  border-bottom: 1px solid var(--de-border); padding-bottom: 1rem; margin-bottom: 1.5rem;
}
.de-stage__num {
  font-family: var(--de-font-display); font-weight: 800; font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1; background: var(--de-grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========== Gallery =========== */
.de-gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .de-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px){ .de-gallery { grid-template-columns: repeat(5, 1fr); } }
.de-gallery figure { margin: 0; overflow: hidden; border-radius: 1rem; border: 1px solid var(--de-border); aspect-ratio: 1/1; }
.de-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.de-gallery figure:hover img { transform: scale(1.04); }

/* =========== FAQ =========== */
.de-faq {
  border: 1px solid var(--de-border); border-radius: 1rem;
  padding: 1rem 1.25rem; background: var(--de-card);
  margin-bottom: .75rem;
}
.de-faq + .de-faq { margin-top: .75rem; }
.de-faq summary {
  cursor: pointer; font-family: var(--de-font-display); font-weight: 700; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.de-faq summary::-webkit-details-marker { display: none; }
.de-faq summary::after { content: "+"; color: var(--de-gold); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.de-faq[open] summary::after { transform: rotate(45deg); }
.de-faq p { margin: .75rem 0 0; color: var(--de-muted); }

/* =========== Contact =========== */
.de-contact__panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--de-radius-lg);
  background: var(--de-grad-navy);
  border: 1px solid var(--de-border-2);
}
.de-contact__list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .85rem; }
.de-contact__item {
  display: flex; align-items: center; gap: .9rem;
  min-width: 0; padding: .9rem 1rem; border-radius: 1rem;
  background: rgba(212,175,106,.08); border: 1px solid rgba(212,175,106,.22);
}
.de-contact__item--phone { background: rgba(212,175,106,.14); border-color: rgba(212,175,106,.42); }
.de-contact__icon { flex: 0 0 auto; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 999px; background: var(--de-grad-gold); color: #1a1308; }
.de-contact__item span:last-child { min-width: 0; }
.de-contact__item small { display: block; color: var(--de-muted); font-size: .72rem; line-height: 1.2; margin-bottom: .15rem; text-transform: uppercase; letter-spacing: .12em; }
.de-contact__list a { color: var(--de-fg); font-weight: 700; overflow-wrap: anywhere; }
.de-contact__list a:hover { color: var(--de-gold); }

.de-contact__form .de-form,
.de-contact__form .wpcf7-form {
  background: var(--de-card); border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid; gap: 1rem;
}
.de-form label, .wpcf7-form-control-wrap { display: grid; gap: .4rem; font-size: .85rem; color: var(--de-muted); }
.de-form input, .de-form textarea,
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"], .wpcf7-form textarea {
  background: var(--de-bg); color: var(--de-fg);
  border: 1px solid var(--de-border-2); border-radius: .75rem;
  padding: .85rem 1rem; font: inherit; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.de-form input:focus, .de-form textarea:focus,
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
  outline: none; border-color: var(--de-gold);
  box-shadow: 0 0 0 3px rgba(212,175,106,.18);
}
.wpcf7-form .wpcf7-submit, .de-form button[type="submit"] {
  background: var(--de-grad-gold); color: #1a1308 !important;
  border: 0; border-radius: 999px; padding: .95rem 1.6rem;
  font-weight: 700; cursor: pointer; box-shadow: var(--de-shadow-soft);
}
.de-form__hint { font-size: .78rem; color: var(--de-muted); margin: 0; }

/* =========== Footer =========== */
.de-footer {
  background: var(--de-bg); border-top: 1px solid var(--de-border);
  position: relative; overflow: hidden;
}
.de-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,106,.6), transparent);
}
.de-footer__cta {
  display: grid; gap: 1.5rem; padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--de-border); align-items: center;
}
@media (min-width: 960px) { .de-footer__cta { grid-template-columns: 2fr 1fr; } }
.de-footer__cta .de-btn { justify-self: start; }
@media (min-width: 960px) { .de-footer__cta .de-btn { justify-self: end; } }

.de-footer__grid {
  display: grid; gap: 2.5rem; padding: clamp(3rem,5vw,4rem) 0;
}
@media (min-width: 720px) { .de-footer__grid { grid-template-columns: 2fr 1fr 1.2fr; } }
.de-footer__logo { height: 44px; width: auto; }
.de-footer__desc { color: rgba(241,233,217,.7); margin-top: 1rem; max-width: 36ch; }
.de-footer__tagline { margin-top: 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--de-gold); }
.de-footer__title { font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(241,233,217,.55); margin: 0 0 1rem; }
.de-footer__nav, .de-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; font-size: .92rem; }
.de-footer__contact-item { display: flex; align-items: flex-start; gap: .65rem; color: rgba(241,233,217,.78); }
.de-footer__contact-item span:first-child { flex: 0 0 auto; line-height: 1.35; }
.de-footer__contact-item--phone a { color: var(--de-fg); font-weight: 800; }
.de-footer__contact a { overflow-wrap: anywhere; }
.de-footer__contact a:hover { color: var(--de-gold); }

.de-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  padding: 1.25rem 0; border-top: 1px solid var(--de-border);
  font-size: .78rem; color: rgba(241,233,217,.5);
}

/* =========== Utility =========== */
::selection { background: var(--de-gold); color: #1a1308; }

/* =========== Icons SVG =========== */
.de-icon { display: inline-block; width: 1.1em; height: 1.1em; vertical-align: -0.18em; color: var(--de-gold, #d4af6a); flex-shrink: 0; }
.de-icon--inline { width: .9em; height: .9em; vertical-align: -0.12em; margin-left: .35em; }
.de-icon--star { width: 1em; height: 1em; }
.de-stars { display: inline-flex; gap: 2px; color: var(--de-gold, #d4af6a); vertical-align: -0.15em; }
.de-footer__contact-item .de-icon,
.de-contact__icon .de-icon { width: 18px; height: 18px; }
.de-area .de-icon,
.de-eyebrow .de-icon { margin-right: .35em; }
.de-card__icon .de-icon { width: 22px; height: 22px; }
.de-badge .de-icon { margin-right: .4em; }
