/* ===== VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --gold-pale: #F5EDD6;
  --dark: #0D1117;
  --dark2: #161B22;
  --text: #2C2C2C;
  --text-light: #666;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(201,168,76,0.15);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,17,23,0.0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}
.nav-logo img { height: 56px; width: auto; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4)); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.5px; position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 600; font-size: 0.85rem;
  padding: 10px 24px; border-radius: 50px;
  transition: var(--transition); letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.burger { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(13,17,23,0.98); border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu a {
  color: rgba(255,255,255,0.85); padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); background: rgba(201,168,76,0.05); }
.mobile-cta { color: var(--gold) !important; font-weight: 600; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.82) 0%, rgba(13,17,23,0.55) 50%, rgba(154,122,46,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.2rem; z-index: 2;
  animation: bounce 2s infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 50px;
  transition: var(--transition); box-shadow: 0 6px 25px rgba(201,168,76,0.4);
  letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.55); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  font-weight: 600; font-size: 0.95rem; padding: 12px 30px; border-radius: 50px;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-outline.light { border-color: rgba(201,168,76,0.5); color: var(--gold-light); }
.btn-outline.light:hover { border-color: var(--gold-light); color: var(--white); }

/* ===== STATS ===== */
#stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 60px 32px;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat-item {
  text-align: center; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.stat-item i { font-size: 2rem; color: var(--gold); margin-bottom: 4px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold-light); font-weight: 700; }
.stat-item span:last-child { font-size: 0.85rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

/* ===== SECTIONS COMMON ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-label.center { text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--dark); margin-bottom: 60px; }
.section-title.center { text-align: center; }

/* ===== ABOUT ===== */
#about { background: var(--gold-pale); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: 24px; padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.about-logo-img { width: 220px; height: auto; filter: drop-shadow(0 8px 30px rgba(201,168,76,0.5)); }
.about-card-float {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); padding: 16px 24px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.about-card-float i { font-size: 1.3rem; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark);
  line-height: 1.2; margin-bottom: 24px;
}
.about-text h2 em { color: var(--gold-dark); font-style: normal; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-features div {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
}
.about-features i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px;
}
.service-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(201,168,76,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-icon i { font-size: 1.5rem; color: var(--gold-dark); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== APPOINTMENT ===== */
#appointment {
  position: relative; padding: 120px 32px; text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1200 50%, var(--dark2) 100%);
  overflow: hidden;
}
#appointment::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.appt-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.appt-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px;
}
.appt-content p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }
.appt-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.section-label.light { color: var(--gold-light); }

/* ===== CONTACT ===== */
#contact { background: var(--gold-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.contact-icon i { color: var(--dark); font-size: 1.1rem; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.contact-item a:hover { color: var(--gold-dark); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); height: 380px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 60px 32px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-logo img { height: 50px; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3)); }
.footer-logo p { color: rgba(255,255,255,0.6); font-size: 0.85rem; max-width: 200px; line-height: 1.5; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact i { color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .about-img { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 300px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 14px 20px; }
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float i { font-size: 1.8rem; color: #fff; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== CLICKABLE CONTACT LINKS ===== */
.contact-link {
  font-size: 0.95rem; color: var(--text); line-height: 1.6;
  transition: var(--transition); display: inline-block;
}
.contact-link:hover { color: var(--gold-dark); text-decoration: underline; }

.map-open-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 600; font-size: 0.88rem;
  border-radius: 50px; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.map-open-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }

/* ===== BILINGUAL NAV BUTTON ===== */
.nav-cta .ar {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; opacity: 0.85;
  border-left: 1px solid rgba(13,17,23,0.3);
  margin-left: 8px; padding-left: 8px;
  direction: rtl;
}

/* ===== RDV MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,17,23,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: 24px;
  padding: 40px; width: 100%; max-width: 580px;
  position: relative; max-height: 90vh; overflow-y: auto;
  transform: translateY(30px); transition: transform 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(201,168,76,0.1); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--gold-dark); font-size: 1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--gold); color: var(--white); }
.modal-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.modal-header i { font-size: 2rem; color: var(--gold); }
.modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark); line-height: 1.3; }
.modal-header h3 span { font-size: 1rem; color: var(--gold-dark); font-family: 'Inter', sans-serif; direction: rtl; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(201,168,76,0.25); border-radius: 10px;
  padding: 11px 14px; font-size: 0.92rem; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%; padding: 14px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); font-size: 1rem; font-weight: 700;
  border-radius: 50px; display: flex; align-items: center; justify-content: center;
  gap: 10px; transition: var(--transition); margin-top: 8px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-submit i { font-size: 1.3rem; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
}

/* ===== GALLERY ===== */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,17,23,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay i { color: var(--gold-light); font-size: 2rem; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lb-content { text-align: center; max-width: 90vw; max-height: 90vh; }
.lb-content img {
  max-width: 90vw; max-height: 80vh;
  border-radius: 12px; object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lb-content p { color: rgba(255,255,255,0.75); margin-top: 14px; font-size: 0.95rem; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light);
  cursor: pointer; border-radius: 50%; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.1rem; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.2rem; }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.2rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--dark); }

/* ===== MOBILE RDV TOP BUTTON ===== */
.mobile-rdv-top {
  width: 100%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 1rem;
  padding: 18px 32px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: 0.3px;
}
.mobile-rdv-top i { font-size: 1.1rem; }

/* ===== HORAIRES ===== */
.horaires { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.h-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; padding: 5px 10px; border-radius: 8px;
  background: rgba(201,168,76,0.07);
}
.h-row span:first-child { color: var(--text); font-weight: 500; }
.h-row span:last-child { color: var(--gold-dark); font-weight: 600; }
.h-row.closed { background: rgba(0,0,0,0.04); }
.h-row.closed span { color: #999; }

/* ===== HERO RDV BUTTON ===== */
.btn-rdv-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 1.05rem;
  padding: 16px 36px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-rdv-hero .ar {
  font-size: 0.9rem; opacity: 0.85;
  border-left: 1px solid rgba(13,17,23,0.3);
  margin-left: 6px; padding-left: 8px;
}
.btn-rdv-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.65); }

/* ===== FOOTER LEGAL ===== */
.footer-legal { color: rgba(255,255,255,0.35); font-size: 0.78rem; transition: var(--transition); }
.footer-legal:hover { color: var(--gold-light); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px 0; }

/* ===== PERFORMANCE FIXES ===== */
@font-face { font-display: swap; }
.gallery-item img { width: 100%; height: 100%; }
.nav-logo img { height: 56px; width: auto; }
.footer-logo img { height: 50px; width: auto; }
