/* ── PAGES VILLES ─────────────────────────────────────── */

/* HERO */
.ville-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 80px;
  overflow: hidden;
}

.ville-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem;
  background: var(--ivory);
}

.ville-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--taupe-light);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.ville-breadcrumb a { color: var(--gold); text-decoration: none; }
.ville-breadcrumb a:hover { text-decoration: underline; }

.ville-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--charcoal); margin: 1rem 0 1.5rem;
}
.ville-hero-title em { font-style: italic; color: var(--gold); }

.ville-hero-subtitle {
  font-size: 1rem; color: var(--taupe);
  max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem;
}

.ville-hero-actions { display: flex; gap: 1rem; align-items: center; margin-bottom: 3rem; }

.ville-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}
.ville-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--charcoal); line-height: 1;
}
.ville-stat-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--taupe-light); margin-top: 0.3rem;
}

.ville-hero-image {
  position: relative; overflow: hidden; background: var(--cream);
}
.ville-hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.ville-hero-badge {
  position: absolute; bottom: 2rem; left: -1rem;
  background: var(--white);
  padding: 1.2rem 1.8rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(42,37,32,0.15);
}
.ville-hero-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500; margin-bottom: 0.3rem;
}
.ville-hero-badge-text { font-size: 0.78rem; color: var(--taupe); }

/* INTRO */
.ville-intro {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 5rem; padding: 7rem 4rem;
  background: var(--white);
  align-items: start;
}
.ville-intro-text .section-tag { margin-bottom: 1rem; }
.ville-intro-text p {
  font-size: 0.93rem; color: var(--taupe);
  line-height: 1.85; margin-bottom: 1.2rem;
}
.divider { width: 50px; height: 1px; background: var(--gold); margin: 1.2rem 0 1.8rem; }

.ville-aside-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-left: 3px solid var(--gold);
  position: sticky; top: 100px;
}
.ville-aside-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.ville-aside-list { list-style: none; }
.ville-aside-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 0.83rem;
}
.ville-aside-list li span { color: var(--taupe); }
.ville-aside-list li strong { color: var(--charcoal); }

/* FAQ */
.ville-faq {
  padding: 7rem 4rem;
  background: var(--cream);
  max-width: 900px; margin: 0 auto;
}
.ville-faq .section-tag { margin-bottom: 1rem; }
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 0.5px solid var(--border-strong);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; text-align: left; gap: 2rem;
}
.faq-question span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--charcoal);
  line-height: 1.3;
}
.faq-icon {
  font-size: 1.4rem; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.88rem; color: var(--taupe); line-height: 1.8; }

/* AUTRES VILLES */
.ville-autres {
  padding: 7rem 4rem;
  background: var(--charcoal);
  text-align: center;
}
.ville-autres .section-tag { justify-content: center; }
.ville-autres .section-tag::before { background: var(--gold); }
.ville-autres .section-title { color: var(--ivory); margin-bottom: 3rem; }
.ville-autres .section-title em { color: var(--gold-light); }
.ville-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center; max-width: 800px; margin: 0 auto;
}
.ville-link {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 0.5px solid rgba(196,163,90,0.4);
  color: var(--taupe-light); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.08em;
  transition: all 0.3s;
}
.ville-link:hover {
  background: var(--gold); color: var(--charcoal);
  border-color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ville-hero { grid-template-columns: 1fr; min-height: auto; }
  .ville-hero-content { padding: 7rem 2rem 3rem; }
  .ville-hero-image { height: 50vw; min-height: 300px; }
  .ville-intro { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .ville-aside-card { position: static; }
  .ville-faq { padding: 5rem 2rem; }
  .ville-autres { padding: 5rem 2rem; }
}

@media (max-width: 680px) {
  .ville-hero-content { padding: 6rem 1.2rem 2.5rem; }
  .ville-hero-title { font-size: 2.8rem; }
  .ville-hero-actions { flex-direction: column; align-items: flex-start; }
  .ville-stats { gap: 1.5rem; flex-wrap: wrap; }
  .ville-hero-badge { display: none; }
  .ville-intro { padding: 4rem 1.2rem; }
  .ville-faq { padding: 4rem 1.2rem; }
  .ville-autres { padding: 4rem 1.2rem; }
  .faq-question span:first-child { font-size: 0.95rem; }
}
