/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --gold: #c9a460;
  --gold-light: #e0c07a;
  --dark: #0d0d0d;
  --dark-2: #171717;
  --dark-3: #222;
  --gray-light: #f6f6f4;
  --gray-mid: #888;
  --white: #fff;
  --text: #2a2a2a;
  --radius: 12px;
  --tr: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,.09);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Raleway", sans-serif; color: var(--text); background: var(--white); line-height: 1.7; cursor: none; }
img { max-width: 100%; display: block; }
a { cursor: none; }

/* ===========================
   PRELOADER
=========================== */
#preloader { position: fixed; inset: 0; background: var(--dark); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; transition: opacity .5s, visibility .5s; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: 90px; animation: pulse 1.4s ease-in-out infinite; }
.preloader-spinner { width: 38px; height: 38px; border: 2px solid rgba(255,255,255,.08); border-top-color: var(--gold); border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.95)} }

/* ===========================
   CURSOR
=========================== */
.cursor { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .2s, height .2s; }
.cursor-outline { width: 36px; height: 36px; border: 1.5px solid rgba(201,164,96,.5); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9997; transform: translate(-50%,-50%); transition: all .12s ease; }
.cursor.cursor-hover { width: 18px; height: 18px; }
.cursor-outline.cursor-hover { width: 54px; height: 54px; border-color: var(--gold); }
@media (hover: none) { body { cursor: auto; } .cursor, .cursor-outline { display: none; } }

/* ===========================
   REVEAL ANIMATIONS
=========================== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(38px)} to{opacity:1;transform:none} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-55px); transition: opacity .85s ease, transform .85s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(55px); transition: opacity .85s ease, transform .85s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"],.reveal-left[data-delay="1"],.reveal-right[data-delay="1"] { transition-delay: .15s; }
.reveal[data-delay="2"],.reveal-left[data-delay="2"],.reveal-right[data-delay="2"] { transition-delay: .3s; }
.reveal[data-delay="3"],.reveal-left[data-delay="3"],.reveal-right[data-delay="3"] { transition-delay: .45s; }

/* ===========================
   HEADER
=========================== */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 500; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: space-between; padding: 12px 50px; border-bottom: 1px solid rgba(0,0,0,.07); box-shadow: 0 2px 20px rgba(0,0,0,.05); transition: box-shadow var(--tr); animation: fadeInDown .6s ease both; }
.logo img { width: 100px; }
.menu ul { list-style: none; display: flex; align-items: center; gap: 26px; }
.menu a { font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); text-decoration: none; transition: color var(--tr); cursor: none; }
.menu a:hover, .menu a.active { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-tel { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--dark); text-decoration: none; transition: color var(--tr); cursor: none; }
.btn-tel i { color: var(--gold); }
.btn-tel:hover { color: var(--gold); }
.btn-reserve { background: var(--gold); color: var(--white); padding: 10px 22px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background var(--tr), transform var(--tr); cursor: none; }
.btn-reserve:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-1px); }

/* ===========================
   HERO PRO
=========================== */
.hero-pro { position: relative; height: 88vh; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 80px 20px 0; max-width: 820px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 7px 18px; border-radius: 20px; margin-bottom: 24px;
  animation: fadeInUp .7s ease .3s both;
}
.hero-content h1 { font-family: "Playfair Display", serif; font-size: clamp(34px, 5.5vw, 72px); font-weight: 700; line-height: 1.14; margin-bottom: 22px; animation: fadeInUp .9s ease .6s both; }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; animation: fadeInUp .9s ease .9s both; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp .9s ease 1.2s both; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--white); text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 15px 36px; border-radius: 4px; transition: background var(--tr), transform var(--tr); cursor: none; }
.btn-cta:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: var(--white); text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 15px 28px; border-radius: 4px; transition: background var(--tr), transform var(--tr); cursor: none; }
.btn-wa:hover { background: #1fb855; transform: translateY(-2px); }

/* ===========================
   STATS
=========================== */
.section-stats { background: var(--dark-2); display: flex; justify-content: center; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.05); }
.stat { text-align: center; padding: 44px 55px; border-right: 1px solid rgba(255,255,255,.07); flex: 1; min-width: 160px; }
.stat:last-child { border-right: none; }
.stat-value { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 10px; }
.stat-number, .stat-text { font-family: "Playfair Display", serif; font-size: 50px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-suffix { font-family: "Playfair Display", serif; font-size: 26px; color: var(--gold); font-weight: 700; }
.stat p { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.38); }

/* ===========================
   SECTIONS BASE
=========================== */
.section { padding: 90px 60px; }
.section-dark { background: var(--dark); }
.section-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-label.left { text-align: left; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(26px, 3.8vw, 46px); font-weight: 700; text-align: center; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.section-title.left { text-align: left; }
.section-title.light { color: var(--white); }
.section-sub { text-align: center; font-size: 15px; color: var(--gray-mid); margin-bottom: 16px; max-width: 660px; margin-left: auto; margin-right: auto; }
.section-sub.light { color: rgba(255,255,255,.5); }

/* ===========================
   INTRO
=========================== */
.section-intro { background: var(--white); }
.intro-inner { display: flex; align-items: center; gap: 70px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.intro-text { flex: 1; min-width: 300px; }
.intro-desc { font-size: 15px; color: #666; line-height: 1.9; margin-bottom: 16px; }
.btn-outline { display: inline-block; margin-top: 28px; padding: 13px 32px; border: 2px solid var(--gold); color: var(--gold); text-decoration: none; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; border-radius: 4px; transition: background var(--tr), color var(--tr); cursor: none; }
.btn-outline:hover { background: var(--gold); color: var(--white); }

.intro-visual { flex-shrink: 0; }
.intro-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.icard { background: var(--gray-light); border-radius: 12px; padding: 22px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; border-top: 2px solid var(--gold); transition: transform .3s, box-shadow .3s; min-width: 140px; }
.icard:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.icard i { font-size: 26px; color: var(--gold); }
.icard span { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* ===========================
   SERVICES PRO GRID
=========================== */
.services-pro-grid { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 52px; }
.spro-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,.07);
  border-top: 3px solid var(--gold); border-radius: var(--radius);
  padding: 40px 28px; width: 340px; text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}
.spro-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.spro-icon { width: 68px; height: 68px; background: rgba(201,164,96,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: background .3s, transform .3s; }
.spro-card:hover .spro-icon { background: rgba(201,164,96,.2); transform: scale(1.08); }
.spro-icon i { font-size: 28px; color: var(--gold); }
.spro-card h3 { font-family: "Playfair Display", serif; font-size: 19px; color: var(--white); margin-bottom: 12px; }
.spro-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.78; }

/* ===========================
   POURQUOI CHOISIR
=========================== */
.section-why { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0; max-width: 1100px; margin: 56px auto 0; border: 1px solid rgba(0,0,0,.07); border-radius: 16px; overflow: hidden; }
.why-item { display: flex; gap: 24px; padding: 36px 32px; border-right: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); background: var(--white); transition: background .3s; }
.why-item:hover { background: rgba(201,164,96,.05); }
.why-num { font-family: "Playfair Display", serif; font-size: 40px; font-weight: 700; color: rgba(201,164,96,.25); line-height: 1; flex-shrink: 0; width: 52px; }
.why-body h3 { font-family: "Playfair Display", serif; font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.why-body p { font-size: 14px; color: var(--gray-mid); line-height: 1.78; }

/* ===========================
   CTA BANDE
=========================== */
.section-cta-band { background: var(--gold); padding: 60px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.cta-band-text h2 { font-family: "Playfair Display", serif; font-size: clamp(22px, 3vw, 34px); color: var(--dark); margin-bottom: 10px; }
.cta-band-text p { font-size: 15px; color: rgba(0,0,0,.6); max-width: 500px; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-tel-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--dark); color: var(--white); text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding: 15px 28px; border-radius: 4px; transition: background var(--tr), transform var(--tr); cursor: none; }
.btn-tel-cta:hover { background: var(--dark-3); transform: translateY(-2px); }
.cta-band-btns .btn-cta { background: var(--dark); color: var(--white); }
.cta-band-btns .btn-cta:hover { background: var(--dark-3); color: var(--white); }

/* ===========================
   FORMULAIRE PRO
=========================== */
.section-contact-pro { background: var(--white); }
.pro-form { max-width: 820px; margin: 50px auto 0; background: var(--gray-light); border-radius: var(--radius); padding: 50px 48px; box-shadow: var(--shadow); }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.form-group.full { width: 100%; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { font-family: "Raleway", sans-serif; font-size: 14px; color: var(--text); background: var(--white); border: 1.5px solid rgba(0,0,0,.08); border-radius: 6px; padding: 13px 16px; outline: none; transition: border-color .25s, box-shadow .25s; cursor: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,96,.13); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.btn-submit-wa { width: 100%; margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; background: #25d366; color: var(--white); border: none; font-family: "Raleway", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; padding: 18px; border-radius: 6px; transition: background var(--tr), transform var(--tr); cursor: pointer; }
.btn-submit-wa:hover { background: #1fb855; transform: translateY(-2px); }
.btn-submit-wa i { font-size: 20px; }

/* ===========================
   SCROLL-TO-TOP & WA FLOAT
=========================== */
.scroll-top { position: fixed; bottom: 90px; right: 28px; width: 48px; height: 48px; background: var(--dark-2); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: var(--white); font-size: 15px; cursor: pointer; z-index: 300; opacity: 0; transform: translateY(20px); transition: opacity .35s, transform .35s, background .25s; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { background: var(--gold); }
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); text-decoration: none; z-index: 300; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: transform .3s; cursor: none; }
.wa-float:hover { transform: scale(1.1); }
.wa-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: waRing 2s ease-out infinite; }
@keyframes waRing { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.5);opacity:0} }

/* ===========================
   FOOTER
=========================== */
footer { background: var(--dark); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 44px; padding: 60px 70px 40px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { width: 90px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.6; }
.footer-social { margin-top: 16px; display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 17px; text-decoration: none; transition: background var(--tr); cursor: none; }
.footer-social a:hover { background: #25d366; color: var(--white); }
.footer-links h4, .footer-contact h4 { font-family: "Playfair Display", serif; font-size: 15px; color: var(--white); margin-bottom: 18px; font-weight: 600; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color var(--tr); cursor: none; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.footer-contact i { color: var(--gold); width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--tr); cursor: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-seo { padding: 16px 70px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-seo p { font-size: 11px; color: rgba(255,255,255,.18); text-align: center; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 18px 70px; text-align: center; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.25); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1000px) {
  header { padding: 12px 24px; }
  .menu { display: none; }
  .btn-tel { display: none; }
  .section { padding: 60px 24px; }
  .intro-inner { flex-direction: column; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; }
  .section-cta-band { padding: 40px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .pro-form { padding: 36px 24px; }
  .footer-content { padding: 40px 28px; flex-direction: column; gap: 32px; }
  .footer-seo, .footer-bottom { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 640px) {
  .form-row { flex-direction: column; }
  .stat { padding: 30px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:last-child { border-bottom: none; }
  .intro-card-stack { grid-template-columns: 1fr; }
}
