/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ─── VARIABLES ─── */
:root {
  --bg:        #f5ede0;
  --bg2:       #efe4d2;
  --bg3:       #e8d9c4;
  --border:    rgba(120,80,30,0.15);
  --gold:      #8a5e28;
  --gold-lt:   #b07d3a;
  --gold-dim:  rgba(138,94,40,0.12);
  --text:      #2c1f0e;
  --text-muted:#6b4f2e;
  --text-dim:  #a8845a;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --radius:    12px;
  --max:       860px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,11,7,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: #e2c99a; letter-spacing: .02em; text-decoration: none;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 13px; color: #9a8e7e; text-decoration: none;
  font-weight: 400; letter-spacing: .02em; transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #c9a96e; }
.nav-cta {
  background: transparent; border: 1px solid #c9a96e;
  color: #c9a96e; padding: 8px 18px; border-radius: 6px;
  font-size: 13px; font-family: var(--sans); cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: #c9a96e; color: #0e0b07; }

/* ─── PAGE HERO (sombre) ─── */
.hero {
  width: 100%; background: #0e0b07;
  padding: 7rem 2rem 5rem; text-align: center;
}
.hero > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,169,110,0.35);
  color: #c9a96e; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 999px;
  margin-bottom: 2.5rem;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 300; line-height: 1.1; color: #f0ece4;
  margin-bottom: 1.75rem;
}
.hero h1 em { font-style: italic; color: #e2c99a; }
.hero-sub {
  font-size: 1rem; color: #9a8e7e;
  max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-badges {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.2);
  color: #b09070; font-size: 12px; padding: 6px 16px;
  border-radius: 999px; display: flex; align-items: center; gap: 6px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* PAGE HERO minimaliste (sous-pages) */
.page-hero {
  width: 100%; background: #0e0b07;
  padding: 5rem 2rem 4rem;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero .section-label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: #c9a96e; margin-bottom: .75rem;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: #f0ece4; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: #e2c99a; }
.page-hero p {
  font-size: 15px; color: #9a8e7e; max-width: 520px; line-height: 1.8;
}

/* ─── BOUTONS ─── */
.btn-primary {
  background: #c9a96e; color: #0e0b07; padding: 14px 32px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  font-family: var(--sans); border: none; cursor: pointer;
  transition: background .2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #e2c99a; }
.btn-ghost {
  background: transparent; border: 1px solid rgba(201,169,110,0.3);
  color: #9a8e7e; padding: 14px 32px; border-radius: 8px;
  font-size: 14px; font-family: var(--sans); cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: #c9a96e; color: #c9a96e; }
.btn-sm {
  background: var(--gold); color: #f5ede0; padding: 10px 22px;
  border-radius: 7px; font-size: 13px; font-weight: 500;
  font-family: var(--sans); border: none; cursor: pointer;
  transition: background .2s; text-decoration: none; display: inline-block;
}
.btn-sm:hover { background: var(--gold-lt); }

/* ─── SECTIONS ─── */
.section {
  max-width: var(--max); margin: 0 auto; padding: 5rem 2rem;
}
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300; color: var(--text); line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-lt); }
.section-intro {
  color: var(--text-muted); max-width: 540px; font-size: 15px; margin-bottom: 2.5rem;
}
hr.divider {
  border: none; border-top: 1px solid var(--border);
  max-width: var(--max); margin: 0 auto;
}
.zone-wrap {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kw { color: var(--gold); }

/* ─── CARTES VILLES ─── */
.cities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; margin-bottom: 1.25rem;
}
.city-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 14px;
  transition: all .25s; cursor: default;
}
.city-card:hover {
  border-color: rgba(138,94,40,0.4); background: rgba(138,94,40,0.05);
  transform: translateY(-2px);
}
.city-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gold-dim); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.city-name { font-size: 14px; font-weight: 500; color: var(--text); }
.city-code { font-size: 11px; color: var(--text-dim); margin-top: 1px; }
.zone-note {
  border-left: 2px solid var(--gold); padding: .75rem 1.1rem;
  font-size: 13px; color: var(--text-muted);
  background: rgba(138,94,40,0.06); border-radius: 0 8px 8px 0;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; margin-bottom: 2rem;
}
.service-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; transition: all .25s;
}
.service-card:hover {
  border-color: rgba(138,94,40,0.35); background: rgba(138,94,40,0.04);
}
.service-icon { font-size: 20px; margin-bottom: .75rem; }
.service-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: .5rem; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── SEO BLOCK ─── */
.seo-block {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-top: .5rem;
}
.seo-block h2 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: var(--text); margin-bottom: 1rem;
}
.seo-block p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; }
.seo-block p:last-child { margin-bottom: 0; }
.seo-block strong { color: var(--text); font-weight: 500; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2rem; margin-top: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 1px; background: var(--border);
}
.tl-item { position: relative; margin-bottom: 3rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -2rem; top: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px rgba(138,94,40,0.3);
}
.tl-date {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.tl-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: var(--text); margin-bottom: .6rem;
}
.tl-body { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ─── TARIFS ─── */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin-bottom: 1.5rem;
}
.tarif-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  transition: all .25s;
}
.tarif-card:hover { border-color: rgba(138,94,40,0.4); }
.tarif-icon { font-size: 22px; margin-bottom: .75rem; }
.tarif-card h3 { font-size: 14px; color: var(--text-muted); margin-bottom: .75rem; font-weight: 400; }
.tarif-price {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--gold-lt); line-height: 1; margin-bottom: .3rem;
}
.tarif-unit { font-size: 11px; color: var(--text-dim); margin-bottom: 1rem; }
.tarif-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.tarif-note {
  border-left: 2px solid var(--gold); padding: 1rem 1.25rem;
  font-size: 13px; color: var(--text-muted);
  background: rgba(138,94,40,0.06); border-radius: 0 8px 8px 0;
}
.tarif-note strong { color: var(--text); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; margin-top: 2rem;
}
@media (max-width: 620px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-item-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.contact-item-label {
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 3px;
}
.contact-item-value { font-size: 13px; color: var(--text); line-height: 1.5; }
.contact-item-value a { color: var(--gold); text-decoration: none; }
.contact-item-value a:hover { color: var(--gold-lt); }
.contact-form-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.contact-form-wrap h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: var(--text); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: #faf4ea; border: 1px solid var(--border);
  border-radius: 7px; padding: 10px 14px; font-size: 14px;
  font-family: var(--sans); color: var(--text); outline: none;
  transition: border-color .2s;
}
.form-group select { appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(138,94,40,0.5);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; background: var(--gold); color: #f5ede0;
  border: none; border-radius: 8px; padding: 13px;
  font-size: 14px; font-weight: 500; font-family: var(--sans);
  cursor: pointer; transition: background .2s; margin-top: .25rem;
}
.form-submit:hover { background: var(--gold-lt); }
.form-success {
  display: none; margin-top: .75rem;
  background: rgba(138,94,40,0.1); border: 1px solid rgba(138,94,40,0.3);
  border-radius: 8px; padding: .85rem 1rem;
  font-size: 13px; color: var(--gold-lt);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg3); border-top: 1px solid var(--border);
  text-align: center; padding: 2.5rem 2rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  color: var(--gold); margin-bottom: .75rem;
}
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: .75rem; }
.footer-nav a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
.footer-cities { font-size: 12px; color: var(--text-muted); margin-bottom: .5rem; }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
}
