/* ===========================
   JEREMY MONITOR DJ — Design System
   =========================== */

:root {
  --gold:    #d4a843;
  --gold-l:  #f0c96a;
  --dark:    #0a0a0f;
  --dark2:   #13131c;
  --dark3:   #1c1c2a;
  --dark4:   #252535;
  --white:   #f8f8fc;
  --grey:    #a0a0b8;
  --grey-l:  #c8c8dc;
  --accent:  #7b5ea7;
  --radius:  8px;
  --shadow:  0 4px 32px rgba(0,0,0,.5);
  --transition: .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}
html { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-l); }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { color: var(--grey-l); max-width: 68ch; }

.gold { color: var(--gold); }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  padding: 1rem 0;
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,.15);
  transition: background var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: -.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--grey-l); font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: .5rem 1.25rem; border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-l); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, #1a0d2e 100%);
  position: relative;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 70% 50%, rgba(123,94,167,.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,168,67,.1) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,168,67,.1); border: 1px solid rgba(212,168,67,.3);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .8rem; font-weight: 600; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 52ch; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .85rem; color: var(--grey); }
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-disc {
  width: 320px; height: 320px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--dark4), var(--accent), var(--gold), var(--dark4));
  display: flex; align-items: center; justify-content: center;
  animation: spin 12s linear infinite;
  box-shadow: 0 0 80px rgba(123,94,167,.4), 0 0 40px rgba(212,168,67,.2);
  position: relative;
}
.hero-disc::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--dark);
  box-shadow: inset 0 0 10px rgba(0,0,0,.8);
}
@keyframes spin { to { transform: rotate(360deg); } }
.eq-bars {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; align-items: flex-end; height: 50px;
}
.eq-bar {
  width: 6px; border-radius: 3px; background: var(--gold);
  animation: eq 1.2s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 35px; animation-delay: .15s; }
.eq-bar:nth-child(3) { height: 50px; animation-delay: .3s; }
.eq-bar:nth-child(4) { height: 28px; animation-delay: .45s; }
.eq-bar:nth-child(5) { height: 42px; animation-delay: .6s; }
.eq-bar:nth-child(6) { height: 18px; animation-delay: .75s; }
.eq-bar:nth-child(7) { height: 38px; animation-delay: .9s; }
@keyframes eq { from { transform: scaleY(.3); opacity: .6; } to { transform: scaleY(1); opacity: 1; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all var(--transition); border: none;
  position: relative; z-index: 2;
  pointer-events: auto;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-l); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 1rem auto 0; border-radius: 2px; }

/* ── Cards ── */
.card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 2rem;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(212,168,67,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(212,168,67,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: .75rem; }
.card p { font-size: .9rem; }

/* ── Services ── */
.services { background: var(--dark2); }
.service-card { position: relative; overflow: hidden; }
.service-card .badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--dark);
  font-size: .7rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: 999px; text-transform: uppercase;
}
.price-from { font-size: .8rem; color: var(--grey); margin-top: 1rem; }
.price-from strong { font-size: 1.2rem; color: var(--gold); }

/* ── Prestation detail ── */
.prestation-list { display: flex; flex-direction: column; gap: .6rem; margin: 1rem 0; }
.prestation-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--grey-l);
}
.prestation-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── Tarifs table ── */
.tarif-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.tarif-table th {
  background: rgba(212,168,67,.15); color: var(--gold);
  padding: .75rem 1rem; text-align: left; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.tarif-table td { padding: .85rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .9rem; }
.tarif-table tr:last-child td { border-bottom: none; }
.tarif-table tr:hover td { background: rgba(255,255,255,.03); }
.tarif-price { color: var(--gold); font-weight: 700; }

/* ── Zones ── */
.zone-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.zone-item {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: .9rem; color: var(--grey-l);
  transition: all var(--transition);
}
.zone-item:hover { border-color: var(--gold); color: var(--white); }
.zone-item strong { display: block; color: var(--white); margin-bottom: .2rem; }

/* ── Testimonials ── */
.testimonials { background: var(--dark3); }
.testimonial-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 2rem; position: relative;
}
.testimonial-card::before {
  content: '"'; font-size: 5rem; color: var(--gold);
  position: absolute; top: -1rem; left: 1.5rem; line-height: 1;
  opacity: .3;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: .95rem; color: var(--grey-l); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: var(--grey); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .icon { color: var(--gold); font-size: 1.25rem; transition: transform var(--transition); }
.faq-answer { padding-bottom: 1.25rem; font-size: .9rem; color: var(--grey-l); display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .icon { transform: rotate(45deg); }

/* ── Contact ── */
.contact { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(212,168,67,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .85rem; color: var(--grey); margin-bottom: .2rem; }
.contact-item a, .contact-item span { font-size: .95rem; }
.contact-form { background: var(--dark3); border-radius: 16px; padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--grey-l); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--dark4); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); color: var(--white);
  font-size: .9rem; font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ── */
.footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.08);
  padding: 3rem 0 2rem;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: .9rem; color: var(--grey); margin-top: 1rem; }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 1rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .9rem; color: var(--grey); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--grey);
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark3); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--grey);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 6rem 0 2rem;
  background: var(--dark2);
}
.breadcrumb nav { font-size: .85rem; color: var(--grey); }
.breadcrumb nav a { color: var(--grey); }
.breadcrumb nav span { margin: 0 .4rem; }
.breadcrumb h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: .75rem; }
.breadcrumb p { margin-top: .75rem; max-width: 60ch; }

/* ── Page content ── */
.page-content { padding: 4rem 0 6rem; }
.page-content h2 { margin: 2.5rem 0 1rem; }
.page-content h3 { margin: 1.75rem 0 .75rem; color: var(--gold); }
.page-content p { margin-bottom: 1rem; }
.page-content ul { margin: 1rem 0 1rem 1.5rem; }
.page-content ul li { color: var(--grey-l); margin-bottom: .4rem; list-style: disc; }
.page-content table { width: 100%; }

/* ── Schema / structured data visual ── */
.highlight-box {
  background: rgba(212,168,67,.08); border: 1px solid rgba(212,168,67,.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--white); margin: 0; }

/* ── Responsive ── */

/* Tablette paysage & petits desktops (≤ 1100px) */
@media (max-width: 1100px) {
  .footer-4col { grid-template-columns: 1fr 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 1.5rem; }
}

/* Tablette portrait (≤ 900px) */
@media (max-width: 900px) {
  .footer-4col { grid-template-columns: 1fr 1fr !important; }
  .grid-2, .grid-3, .grid-4, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  /* zone-grid uses auto-fill — no override needed */
  .tarif-table { font-size: .9rem; }
  .section-header h2 { font-size: 1.6rem; }
}

/* Mobile large (≤ 640px) */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--dark2); padding: 2rem;
    gap: 1.5rem; z-index: 999; overflow-y: auto;
  }
  section { padding: 4rem 0; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .footer-4col { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { justify-content: center; }
  .card { padding: 1.5rem; }
  .zone-grid { grid-template-columns: 1fr; }
}

/* Mobile petit (≤ 400px) */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.7rem; }
  .btn-lg { padding: .9rem 1.5rem; font-size: .95rem; }
  .tarif-table th, .tarif-table td { padding: .6rem .5rem; font-size: .82rem; }
}

/* Utilitaires extraits des inline styles */
.btn-card { margin-top: 1rem; width: 100%; justify-content: center; }
.btn-full { width: 100%; justify-content: center; }
.btn-full-lg { width: 100%; justify-content: center; font-size: 1rem; }
.card-icon-centered { margin: 0 auto 1rem; }
.badge-purple { background: var(--accent); }
.mt-2 { margin-top: 2rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-125 { margin-top: 1.25rem; }
.gdpr-row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; cursor: pointer; }
.gdpr-text { font-size: .85rem; color: var(--grey); line-height: 1.5; }
.gdpr-checkbox { margin-top: .2rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--gold); }
.tarif-note { font-size: .85rem; color: var(--grey); margin-top: 1rem; }
.section-dark2 { background: var(--dark2); }
.section-combo { background: linear-gradient(135deg, var(--dark3) 0%, #1a0d2e 100%); }
.combo-grid { gap: 4rem; align-items: center; }
.combo-list { margin-top: 1.5rem; }
.combo-price { margin-top: 1.5rem; font-size: 1.1rem; }
.combo-price-amount { color: var(--gold); font-size: 1.5rem; }
.combo-price-old { font-size: .85rem; color: var(--grey); }
.combo-title { color: var(--gold); margin-bottom: 1rem; }
.combo-subtitle { margin-bottom: 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo-text { font-size: 1.5rem; }
.footer-desc { font-size: .88rem; color: var(--grey); margin-top: 1rem; line-height: 1.6; }
.footer-social { margin-top: 1.25rem; }
.footer-zones-title { margin-top: 1.5rem; }
.card-featured { border: 2px solid var(--gold); }
.contact-info-list { margin-top: 2rem; }
.contact-social { margin-top: 2rem; }
.highlight-prestation { margin-top: .75rem; }
.highlight-cta { margin-top: 1.5rem; }
.highlight-box-mb { margin-bottom: 1.5rem; }

/* ===== NOUVEAU DESIGN SYSTEM (refonte 2025) ===== */

/* Hero avec photo background */
.hero-photo {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.88));
  z-index: 0;
}
.hero-photo .hero-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto; padding: 7rem 2rem 5rem;
  text-align: center; width: 100%;
}
.hero-badge-pill {
  display: inline-block; background: rgba(212,168,67,.15);
  border: 1px solid #d4a843; color: #d4a843;
  padding: .4rem 1.2rem; border-radius: 30px;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-photo h1 { color: #fff; margin-bottom: 1rem; }
.hero-sub { color: #d4a843; font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; letter-spacing: .04em; }
.hero-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; max-width: 650px; margin: 0 auto 2rem; }
.hero-btns-duo { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-gold-solid { background: #d4a843; color: #000; font-weight: 700; padding: .9rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1rem; transition: .2s; display: inline-block; }
.btn-gold-solid:hover { background: #c49030; color: #000; }
.btn-white-outline { border: 2px solid #fff; color: #fff; font-weight: 600; padding: .9rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1rem; transition: .2s; display: inline-block; }
.btn-white-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.hero-3stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); }
.h3s-num { font-size: 1.8rem; font-weight: 800; color: #d4a843; }
.h3s-label { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; }

/* Cards avec image en haut */
.img-card { background: #1a1a1a; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.07); transition: transform .2s, box-shadow .2s; }
.img-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); border-color: rgba(212,168,67,.3); }
.img-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.img-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.img-card-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.img-card-price { color: #d4a843; font-weight: 700; font-size: .95rem; margin-bottom: .75rem; }
.img-card-body ul { list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1; }
.img-card-body ul li { padding: .3rem 0; font-size: .88rem; color: #aaa; }
.img-card-body ul li::before { content: "✓ "; color: #d4a843; font-weight: 700; }
.img-card-body a { margin-top: auto; }

/* Section 2 colonnes avec image */
.sec-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.portrait-img { width: 100%; border-radius: 16px; border: 3px solid #d4a843; object-fit: cover; max-height: 500px; display: block; }
@media(max-width:860px) { .sec-2col { grid-template-columns: 1fr; } }

/* Tags pills interculturel */
.tags-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-culture { display: inline-block; border: 1px solid rgba(212,168,67,.45); color: #d4a843; background: rgba(212,168,67,.07); padding: .35rem .9rem; border-radius: 20px; font-size: .85rem; transition: .2s; }
.tag-culture:hover { background: rgba(212,168,67,.2); }

/* Cards tarif */
.tarif-cards-row { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.tarif-card-new { background: #1a1a1a; border-radius: 12px; padding: 1.75rem; min-width: 190px; flex: 1; text-align: center; border: 1px solid #2a2a2a; position: relative; max-width: 260px; }
.tarif-card-new.pop { border-color: #d4a843; }
.tarif-pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #d4a843; color: #000; font-size: .72rem; font-weight: 700; padding: .2rem .9rem; border-radius: 20px; white-space: nowrap; }
.tarif-card-new h3 { font-size: .95rem; font-weight: 600; color: #e8e8e8; margin-bottom: .5rem; }
.tarif-card-new .price { font-size: 2rem; font-weight: 900; color: #d4a843; margin: .4rem 0 .2rem; }
.tarif-card-new .duration { font-size: .8rem; color: #777; }

/* Testimonials nouvelle version */
.testi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media(max-width:800px) { .testi-row { grid-template-columns: 1fr; } }
.testi-card-new { background: #fff; border-radius: 12px; padding: 1.75rem; box-shadow: 0 2px 16px rgba(0,0,0,.07); color: #111; }
.testi-top { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.testi-av { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: .9rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: .9rem; color: #111; }
.testi-where { font-size: .78rem; color: #888; }
.testi-stars-new { color: #d4a843; font-size: .95rem; margin-bottom: .75rem; }
.testi-body { font-size: .9rem; color: #444; line-height: 1.65; font-style: italic; }

/* Section fond image avec overlay */
.section-bg-img { position: relative; padding: 5rem 2rem; text-align: center; background-size: cover; background-position: center; }
.section-bg-img::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.78); }
.section-bg-img .inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.section-bg-img h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 1rem; }
.section-bg-img p { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.big-price { font-size: 2.8rem; font-weight: 900; color: #d4a843; }
.old-price { font-size: .9rem; color: rgba(255,255,255,.45); text-decoration: line-through; display: block; margin-bottom: 1.5rem; }

/* Blog magazine design */
.blog-hero-new {
  position: relative; padding: 7rem 2rem 5rem; text-align: center;
  background: url('https://images.pexels.com/photos/5192289/pexels-photo-5192289.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') center/cover;
}
.blog-hero-new::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.9)); }
.blog-hero-new .inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.blog-hero-new h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.blog-hero-new p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; margin: 0 auto; max-width: 100%; }

.blog-container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.blog-section { padding: 4rem 0 2rem; }
.blog-cat-title { font-size: 1.1rem; font-weight: 700; color: #d4a843; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; padding-bottom: .5rem; border-bottom: 2px solid rgba(212,168,67,.3); display: flex; align-items: center; gap: .75rem; }
.blog-cat-title::after { content: ''; flex: 1; height: 1px; background: rgba(212,168,67,.15); }
.blog-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.blog-card { background: #141414; border: 1px solid #222; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: .2s; text-decoration: none; }
.blog-card:hover { border-color: #d4a843; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.4); }
.blog-card-img { width: 100%; height: 160px; object-fit: cover; display: block; background: #1a1a1a; }
.blog-card-img-placeholder { width: 100%; height: 160px; background: linear-gradient(135deg, #1a1a1a, #252525); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.blog-card-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #d4a843; margin-bottom: .4rem; }
.blog-card-title { font-size: .95rem; font-weight: 600; color: #e8e8e8; line-height: 1.4; margin-bottom: .5rem; flex: 1; }
.blog-card-meta { font-size: .78rem; color: #666; }
.blog-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media(max-width:700px){ .blog-featured { grid-template-columns: 1fr; } }
.blog-card-featured { border-radius: 12px; overflow: hidden; background: #141414; border: 1px solid #222; text-decoration: none; display: flex; flex-direction: column; transition: .2s; }
.blog-card-featured:hover { border-color: #d4a843; }
.blog-card-featured img { width: 100%; height: 280px; object-fit: cover; }
.blog-card-featured .body { padding: 1.5rem; }
.blog-card-featured .cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: #d4a843; letter-spacing: .1em; margin-bottom: .5rem; }
.blog-card-featured h2 { font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: .75rem; }
.blog-card-featured p { font-size: .9rem; color: #aaa; line-height: 1.6; }
.blog-cta-band { background: linear-gradient(135deg, #141414, #1a1209); border: 1px solid rgba(212,168,67,.3); border-radius: 12px; padding: 3rem 2rem; text-align: center; margin: 3rem 0; }
.blog-cta-band h2 { color: #d4a843; margin-bottom: .75rem; }
.blog-cta-band p { color: #aaa; margin: 0 auto 1.5rem; max-width: 500px; }

/* Page article blog */
.article-header { padding: 7rem 0 3rem; }
.article-header .cat-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #d4a843; margin-bottom: .75rem; }
.article-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 800px; line-height: 1.2; }
.article-header .meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: .85rem; color: #777; }
.article-body { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.15rem; color: #d4a843; margin: 2rem 0 .75rem; }
.article-body p { color: #bbb; line-height: 1.8; margin-bottom: 1.1rem; max-width: 100%; }
.article-body ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-body ul li { color: #bbb; margin-bottom: .5rem; list-style: disc; line-height: 1.7; }
.article-body .highlight { background: rgba(212,168,67,.08); border-left: 3px solid #d4a843; padding: 1rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.article-body .highlight p { color: #e8e8e8; margin: 0; }
.article-cta { background: #141414; border: 1px solid rgba(212,168,67,.3); border-radius: 12px; padding: 2rem; text-align: center; margin: 3rem 0; }
.article-cta h3 { color: #d4a843; margin-bottom: .75rem; }
.article-cta p { color: #aaa; margin: 0 auto 1.25rem; }
