/* ================================================
   Zen Évasion — Design System
   ================================================ */

:root {
  --noir:       #0e0d0c;
  --rouge:      #b91c1c;
  --rouge-h:    #991b1b;
  --rouge-l:    #fee2e2;
  --or:         #c9a84c;
  --gris-clair: #f7f6f4;
  --gris-mid:   #e8e6e1;
  --gris-txt:   #6b6860;
  --blanc:      #ffffff;
  --ft: 'Cormorant Garamond', Georgia, serif;
  --fc: 'DM Sans', sans-serif;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --r:  4px;
  --rl: 10px;
  --max: 1280px;
  --nav-h: 90px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fc); background: var(--blanc); color: var(--noir); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--ft); color: var(--noir); line-height: 1.2; }
h1 { font-size: clamp(34px,5vw,62px); font-weight: 600; }
h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 600; }
h3 { font-size: clamp(19px,2.5vw,28px); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gris-txt); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--noir); font-weight: 500; }

/* ── Layout ── */
.container    { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px;      margin: 0 auto; padding: 0 24px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 56px 0; }
.section-alt  { background: var(--gris-clair); }
.section-dark { background: var(--noir); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p  { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ── Navigation ── */
#site-navigation {
  position: sticky; top: 0; z-index: 1000;
  background: var(--noir);
  border-bottom: 2px solid var(--or);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.nav-logo {
  font-family: var(--ft); font-size: 1.55rem; font-weight: 600;
  color: var(--blanc); white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-logo .or { color: var(--or); }
.nav-phone {
  color: var(--or); font-size: .88rem; font-weight: 500;
  white-space: nowrap; margin-right: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 0; margin-left: auto;
}
.nav-links > li > a,
.dropdown-toggle {
  color: rgba(255,255,255,0.75); font-size: .82rem;
  padding: 8px 9px; border-radius: var(--r);
  transition: color .2s, background .2s;
  white-space: nowrap; background: none; border: none;
  cursor: pointer; font-family: var(--fc);
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover,
.dropdown-toggle:hover { color: var(--blanc); background: rgba(255,255,255,0.08); }
.nav-urgences > a { color: var(--or) !important; font-weight: 500; }
.nav-urgences > a:hover { color: var(--blanc) !important; }
.nav-cta > a {
  background: var(--rouge) !important; color: var(--blanc) !important;
  padding: 8px 14px; border-radius: var(--r); font-weight: 500;
  margin-left: 6px; flex-shrink: 0;
}
.nav-cta > a:hover { background: var(--rouge-h) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--blanc); border-radius: var(--r);
  box-shadow: var(--shadow-lg); min-width: 230px;
  padding: 8px 0; z-index: 200; border-top: 2px solid var(--or);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 10px 20px;
  color: var(--noir); font-size: .88rem; transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--gris-clair); color: var(--rouge); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--blanc); transition: transform .3s, opacity .3s;
}

/* ── Urgences bar ── */
.urgences-bar {
  background: var(--or); color: var(--noir); text-align: center;
  padding: 11px 24px; font-weight: 500; font-size: .92rem;
}
.urgences-bar a { color: var(--noir); font-weight: 700; text-decoration: underline; }

/* ── Hero (accueil) ── */
.hero {
  background: url('/assets/zen-evasion-header-image.png') center/cover no-repeat;
  color: var(--blanc);
  padding: 96px 24px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(14,13,12,0.62);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--or);
}
.hero-content { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15); border: 1px solid var(--or);
  color: var(--or); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 { color: var(--blanc); max-width: 800px; margin-bottom: 20px; }
.hero .lead {
  color: rgba(255,255,255,0.7); font-size: 1.15rem;
  max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-tel {
  display: flex; align-items: center; gap: 10px;
  color: var(--blanc); font-weight: 500; font-size: .95rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 20px; border-radius: var(--r); transition: background .2s;
}
.hero-tel:hover { background: rgba(255,255,255,0.14); }
.hero-tel .icon { color: var(--or); }

/* ── Page hero (sous-pages) ── */
.page-hero {
  background: var(--noir); color: var(--blanc);
  padding: 56px 24px 48px; border-bottom: 3px solid var(--or);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb { color: rgba(255,255,255,0.4); font-size: .82rem; margin-bottom: 14px; }
.breadcrumb a { color: var(--or); }
.breadcrumb span::before { content: ' › '; }
.page-hero h1 { color: var(--blanc); font-size: clamp(26px,4vw,50px); margin-bottom: 12px; }
.page-hero .subtitle { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 640px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-weight: 500; font-family: var(--fc); font-size: .93rem;
  transition: all .2s; cursor: pointer; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-primary  { background: var(--rouge); color: var(--blanc); }
.btn-primary:hover  { background: var(--rouge-h); transform: translateY(-1px); color: var(--blanc); }
.btn-ghost    { background: transparent; color: var(--blanc); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--blanc); background: rgba(255,255,255,0.08); }
.btn-outline  { background: transparent; color: var(--rouge); border: 1.5px solid var(--rouge); }
.btn-outline:hover { background: var(--rouge); color: var(--blanc); }
.btn-or   { background: var(--or); color: var(--noir); font-weight: 600; }
.btn-or:hover { background: #b8952e; }
.btn-lg   { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Cards grid ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--blanc); border-radius: var(--rl);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img-wrap { overflow: hidden; height: 200px; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img-wrap img { transform: scale(1.04); }
.card-body   { padding: 28px; }
.card-icon   {
  width: 48px; height: 48px; background: var(--rouge-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--rouge); font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p  { font-size: .92rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--rouge); font-weight: 500; font-size: .88rem; margin-top: 14px;
  transition: gap .2s;
}
.card-link:hover { gap: 10px; }

/* Flat service card */
.svc-card {
  background: var(--gris-clair); border-radius: var(--rl);
  padding: 32px; border-left: 4px solid var(--or);
  transition: transform .2s;
}
.svc-card:hover { transform: translateX(4px); }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }

/* ── Stats band ── */
.stats-band { background: var(--noir); padding: 56px 24px; }
.stats-grid  {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-num   { font-family: var(--ft); font-size: 3rem; font-weight: 600; color: var(--or); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.6); font-size: .88rem; }

/* ── CTA band ── */
.cta-band { background: var(--rouge); color: var(--blanc); padding: 64px 24px; text-align: center; }
.cta-band h2 { color: var(--blanc); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 28px; }
.cta-band-inner { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Feature list ── */
.features    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature     { display: flex; gap: 14px; }
.feature-dot {
  width: 8px; height: 8px; background: var(--or);
  border-radius: 50%; margin-top: 8px; flex-shrink: 0;
}
.feature h4 { margin-bottom: 6px; }
.feature p  { font-size: .9rem; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step  { text-align: center; counter-increment: step; }
.step-num {
  width: 56px; height: 56px; background: var(--noir); color: var(--or);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--ft); font-size: 1.5rem; font-weight: 600;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p  { font-size: .9rem; }

/* ── Fleet cards ── */
.fleet-card { background: var(--blanc); border-radius: var(--rl); box-shadow: var(--shadow); overflow: hidden; }
.fleet-head {
  background: var(--noir); padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid var(--or);
}
.fleet-head h3 { color: var(--blanc); font-size: 1.2rem; margin: 0; }
.fleet-cap { background: var(--or); color: var(--noir); font-weight: 700; padding: 4px 12px; border-radius: 20px; font-size: .88rem; }
.fleet-body  { padding: 22px 24px; }
.fleet-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.fleet-tag   { background: var(--gris-clair); border-radius: 20px; padding: 4px 11px; font-size: .8rem; color: var(--gris-txt); }

/* ── Form ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: 6px; color: var(--noir); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gris-mid); border-radius: var(--r);
  font-family: var(--fc); font-size: .93rem; color: var(--noir);
  background: var(--blanc); transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--rouge); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--gris-txt); margin-top: 8px; }
.form-success { background: #d1fae5; border: 1.5px solid #34d399; border-radius: var(--r); padding: 16px 20px; color: #065f46; display: none; margin-top: 16px; }

/* ── Blog ── */
.blog-cat { display: inline-block; background: var(--rouge-l); color: var(--rouge); font-size: .78rem; font-weight: 500; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.blog-meta { font-size: .8rem; color: var(--gris-txt); margin-top: 10px; }

/* ── Utility ── */
.ft { font-family: var(--ft); }
.fc { font-family: var(--fc); }

/* ── Article prose ── */
.prose { color: var(--gris-txt); }
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.85rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.6rem; font-size: clamp(17px,2.2vw,22px); }
.prose p  { margin-bottom: 1.1rem; line-height: 1.78; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { color: var(--gris-txt); margin-bottom: 0.4rem; line-height: 1.65; }
.prose a  { color: var(--rouge); text-decoration: underline; }
.prose strong { color: var(--noir); }
.prose .info-box {
  background: var(--gris-clair); border-left: 4px solid var(--or);
  padding: 20px 24px; border-radius: 0 var(--r) var(--r) 0; margin: 1.8rem 0;
}
.prose .info-box p:last-child { margin-bottom: 0; }
.article-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.article-meta span { font-size: .82rem; color: rgba(255,255,255,0.5); }
.blog-card { background: var(--blanc); border-radius: var(--rl); padding: 24px; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card h3 { font-size: clamp(17px,2vw,22px); margin-bottom: 10px; }
.blog-card h3 a { color: var(--noir); transition: color .2s; }
.blog-card h3 a:hover { color: var(--rouge); }
.blog-card p { font-size: .9rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gris-mid); }
.faq-item:first-child { border-top: 1px solid var(--gris-mid); }
.faq-item summary {
  cursor: pointer; font-weight: 500; color: var(--noir); padding: 18px 4px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1rem; font-family: var(--fc);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--rouge); outline-offset: 2px; border-radius: 2px; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--rouge); flex-shrink: 0; }
details.faq-item[open] summary::after { content: '−'; }
.faq-item p, .faq-body p { padding: 0 4px 18px; color: var(--gris-txt); line-height: 1.7; }
.faq-body { padding-bottom: 4px; }
.faq-body a { color: var(--rouge); text-decoration: underline; }

/* ── Footer ── */
#colophon {
  background: var(--noir); padding: 64px 24px 0;
  border-top: 3px solid var(--or);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
}
#colophon h3 { font-family: var(--ft); color: var(--blanc); font-size: 1.15rem; margin-bottom: 18px; }
#colophon ul { display: flex; flex-direction: column; gap: 9px; }
#colophon ul li a { color: rgba(255,255,255,0.55); font-size: .88rem; transition: color .2s; }
#colophon ul li a:hover { color: var(--or); }
#colophon address { display: flex; flex-direction: column; gap: 7px; font-size: .88rem; }
#colophon address a { color: rgba(255,255,255,0.55); transition: color .2s; }
#colophon address a:hover { color: var(--or); }
.footer-devis p { color: rgba(255,255,255,0.55); font-size: .88rem; margin-bottom: 12px; }
.btn-footer { display: inline-block; background: var(--rouge); color: var(--blanc); padding: 11px 20px; border-radius: var(--r); font-size: .9rem; font-weight: 500; transition: background .2s; }
.btn-footer:hover { background: var(--rouge-h); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0;
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; font-size: .82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--or); }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 50%; color: var(--or); transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--rouge); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Urgences page ── */
.urgences-hero { background: #7f1d1d; }
.big-phone { font-family: var(--ft); font-size: clamp(2.5rem,7vw,5rem); font-weight: 600; color: var(--or); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-3     { grid-template-columns: repeat(2, 1fr); }
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features   { grid-template-columns: repeat(2, 1fr); }
  .steps      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-phone  { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero    { padding: 72px 24px 56px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .steps    { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }
  .nav-links  {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--noir); flex-direction: column;
    align-items: stretch; gap: 0; padding: 16px;
    overflow-y: auto; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .dropdown-toggle {
    padding: 14px 12px; font-size: .97rem;
    border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%;
  }
  .nav-cta > a { text-align: center; margin-top: 12px; display: block; }
  .has-dropdown { position: static; }
  .dropdown { position: static; box-shadow: none; border-top: none; padding: 0 0 0 14px; border-left: 2px solid var(--or); margin: 4px 0 8px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-band-inner { flex-direction: column; align-items: center; }
}
