@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0d5e7c;
  --primary-dark: #072b3d;
  --primary-light: #e4f0f5;
  --secondary: #ff6b35;
  --accent: #ffd700;
  --teal: #1a936f;
  --bg: #f5f8fa;
  --card: #fff;
  --text: #0f1724;
  --text-light: #4a5568;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition: background 0.3s;
}
header.scrolled { background: rgba(255,255,255,0.98); }
header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 12px;
}
.logo {
  font-size: 1.3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex; align-items: center; gap: 8px;
}
.logo-img { width: 32px; height: 32px; border-radius: 8px; -webkit-text-fill-color: initial; }
header nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
header nav a {
  color: var(--text-light); padding: 8px 16px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 500; transition: all 0.2s;
}
header nav a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
header nav a.cta {
  background: linear-gradient(135deg, var(--secondary), #e85d2c);
  color: #fff; padding: 8px 20px;
  box-shadow: 0 4px 15px rgba(255,107,53,0.25);
}
header nav a.cta:hover { box-shadow: 0 6px 20px rgba(255,107,53,0.35); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,43,61,0.85) 0%, rgba(13,94,124,0.7) 50%, rgba(7,43,61,0.9) 100%);
}
.hero-waves {
  position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0;
}
.hero-waves svg { width: 100%; height: 80px; }
.hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  font-size: 3.5rem; font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px; color: #fff;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 580px; margin-bottom: 32px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 48px; flex-wrap: wrap;
}
.hero-stat-number { font-size: 2rem; font-weight: 900; color: #fff; display: block; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #e85d2c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,107,53,0.4); transform: translateY(-2px); color: #fff; text-decoration: none; }
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); color: #fff; text-decoration: none; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.4); transform: translateY(-2px); color: #fff; text-decoration: none; }
.btn-white {
  background: #fff; color: var(--primary); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); transform: translateY(-2px); color: var(--primary-dark); text-decoration: none; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 2.4rem; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Wave divider */
.wave-divider {
  position: relative; height: 80px; margin-top: -80px; z-index: 2;
}
.wave-divider svg { width: 100%; height: 80px; }
.wave-divider--flip svg { transform: rotate(180deg); }

/* ═══════════════════════════════════════
   PARCS GRID
   ═══════════════════════════════════════ */
.parcs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.parc-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.parc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: transparent;
}
.parc-card-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
}
.parc-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.parc-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  color: #fff; padding: 5px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
}
.parc-card .rating-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: var(--accent); padding: 4px 12px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
}
.parc-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.parc-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.parc-card-body h3 a { color: var(--text); }
.parc-card-body h3 a:hover { color: var(--primary); }
.parc-card-meta {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 10px; display: flex; gap: 16px; flex-wrap: wrap;
}
.parc-card-meta span { display: flex; align-items: center; gap: 5px; }
.parc-card-desc {
  font-size: 0.9rem; color: var(--text-light);
  margin-bottom: 16px; line-height: 1.6; flex: 1;
}
.parc-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.parc-card-price { font-weight: 800; font-size: 1.1rem; color: var(--teal); }

/* ═══════════════════════════════════════
   TAGS
   ═══════════════════════════════════════ */
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2px;
}
.tag-famille { background: #e0f2e9; color: #1a936f; }
.tag-sensations { background: #fce8e8; color: #d32f2f; }
.tag-detente { background: var(--primary-light); color: var(--primary); }
.tag-hotel { background: #fef0e0; color: #e65100; }

/* ═══════════════════════════════════════
   TABLE
   ═══════════════════════════════════════ */
.comparatif-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.comparatif-table {
  width: 100%; border-collapse: collapse;
  background: var(--card); font-size: 0.9rem;
}
.comparatif-table th {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; font-weight: 600;
  padding: 18px 22px; text-align: left; white-space: nowrap;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparatif-table td {
  padding: 16px 22px; border-bottom: 1px solid var(--border); vertical-align: middle;
}
.comparatif-table tr:last-child td { border-bottom: none; }
.comparatif-table tr:hover td { background: var(--primary-light); }
.comparatif-table td:first-child { font-weight: 700; }

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.blog-card-img {
  height: 210px;
  background-size: cover; background-position: center;
  position: relative;
}
.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3));
}
.blog-card-body { padding: 24px; }
.blog-card-body .blog-date {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600;
}
.blog-card-body h3 { font-size: 1.15rem; font-weight: 700; margin: 8px 0 10px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.blog-card-body .read-more { font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════
   CONCIERGERIE
   ═══════════════════════════════════════ */
.conciergerie-section { background: var(--card); }
.conciergerie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.conciergerie-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 28px; }
.conciergerie-info .step {
  display: flex; gap: 18px; margin-bottom: 20px;
  padding: 20px 24px; border-radius: var(--radius-sm);
  background: var(--bg); transition: all 0.2s;
  border: 1px solid transparent;
}
.conciergerie-info .step:hover { background: var(--primary-light); border-color: var(--primary); }
.conciergerie-info .step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.conciergerie-info .step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.conciergerie-info .step p { font-size: 0.9rem; color: var(--text-light); }

/* ═══════════════════════════════════════
   FORM
   ═══════════════════════════════════════ */
.form-card {
  background: var(--card); padding: 36px; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.85rem;
  margin-bottom: 6px; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: 12px;
  font-size: 0.95rem; font-family: inherit;
  transition: all 0.2s; background: var(--bg); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,94,124,0.1);
  background: #fff;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════
   PARC DETAIL
   ═══════════════════════════════════════ */
.parc-header {
  position: relative; overflow: hidden;
  padding: 120px 0 60px; color: #fff;
}
.parc-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.parc-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,43,61,0.9) 0%, rgba(13,94,124,0.7) 100%);
}
.parc-header .container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.parc-header h1 { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.5px; }
.parc-header-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.9rem; opacity: 0.85; margin-top: 8px; }
.parc-price-big { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.parc-price-label { font-size: 0.82rem; opacity: 0.6; margin-top: 4px; }
.parc-header-actions { text-align: right; }
.parc-content { padding: 60px 0; }
.parc-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.parc-content h2 {
  font-size: 1.4rem; font-weight: 700; margin: 36px 0 16px;
  letter-spacing: -0.3px;
}
.parc-content h2:first-child { margin-top: 0; }
.parc-content p { margin-bottom: 18px; color: var(--text-light); line-height: 1.8; }
.parc-content ul { padding-left: 20px; margin-bottom: 24px; }
.parc-content ul li { margin-bottom: 8px; line-height: 1.6; }

.parc-sidebar-card {
  background: var(--card); border-radius: var(--radius); padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-bottom: 24px; position: sticky; top: 100px;
  border: 1px solid var(--border);
}
.parc-sidebar-card h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--primary-light);
}
.parc-sidebar-card .infos-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.parc-sidebar-card .infos-row:last-child { border-bottom: none; }
.parc-sidebar-card .infos-label { color: var(--text-light); }
.parc-sidebar-card .infos-value { font-weight: 600; text-align: right; }

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.breadcrumbs {
  padding: 16px 0; font-size: 0.82rem; color: var(--text-muted);
  background: #fff; border-bottom: 1px solid var(--border);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 8px; color: var(--border); }

/* ═══════════════════════════════════════
   BLOG ARTICLE
   ═══════════════════════════════════════ */
.article-header {
  padding: 90px 0 70px;
  position: relative; overflow: hidden;
  background: var(--primary-dark);
  color: #fff;
}
.article-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.article-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,43,61,0.92) 0%, rgba(13,94,124,0.75) 100%);
}
.article-header .container { position: relative; z-index: 2; }
.article-header h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; color: #fff; }
.article-meta { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 12px; }
.article-body { padding: 0 0 80px; }
.article-body .container { max-width: 760px; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; margin: 44px 0 16px; }
.article-body h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; line-height: 1.8; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body ul li { margin-bottom: 8px; }
.article-body .comparatif-wrapper { margin: 24px 0; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  background: linear-gradient(135deg, #072b3d, #0d5e7c);
  color: #fff;
}
.testimonials .section-title { color: #fff; }
.testimonials .section-subtitle { color: rgba(255,255,255,0.65); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding: 28px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.testimonial-card p {
  font-style: italic; font-size: 0.95rem;
  color: rgba(255,255,255,0.8); margin-bottom: 14px; line-height: 1.7;
}
.testimonial-card .author { font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #072b3d, #0d5e7c, #072b3d);
  color: #fff; text-align: center; padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; }
.cta-section p { opacity: 0.8; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: #0a121f; color: rgba(255,255,255,0.5); padding: 64px 0 32px;
}
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
footer h4 {
  color: #fff; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase;
}
footer p, footer a { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 2.2; }
footer a:hover { color: var(--accent); text-decoration: none; }
footer .copyright {
  grid-column: 1 / -1; text-align: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.25);
}
footer .footer-brand { font-size: 1.3rem; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 8px; }
footer .footer-brand span { color: var(--secondary); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 36px rgba(37,211,102,0.5); color: #fff; text-decoration: none; }

/* ═══════════════════════════════════════
   PHOTO GALLERY
   ═══════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item .gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.gallery-wide { grid-column: span 2; }
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
}

/* ═══════════════════════════════════════
   MAPS
   ═══════════════════════════════════════ */
.map-container {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin: 24px 0;
}
.map-container iframe { width: 100%; height: 300px; display: block; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 0.6s ease-out; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .parc-content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { min-height: auto; padding: 100px 0 0; }
  .hero-stats { gap: 24px; margin-top: 32px; }
  .section-title { font-size: 1.7rem; }
  .section { padding: 64px 0; }
  .parcs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .conciergerie-grid { grid-template-columns: 1fr; gap: 32px; }
  .parc-header .container { flex-direction: column; align-items: flex-start; }
  .parc-header-actions { text-align: left; width: 100%; }
  .parc-header { padding: 100px 0 40px; }
  footer .container { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  header .container { flex-direction: column; text-align: center; }
  header nav { justify-content: center; }
  .hero-badge { font-size: 0.75rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .article-header h1 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .comparatif-table th, .comparatif-table td { padding: 10px 12px; font-size: 0.78rem; }
  .parc-card-body { padding: 18px; }
  .hero-stat-number { font-size: 1.4rem; }
}
