:root {
  --rouge:      #C0272D;
  --rouge-dark: #8B1A1E;
  --sable:      #F5F0E8;
  --sable-mid:  #EDE6D6;
  --sable-dark: #D9CFBA;
  --ocean:      #5B8FA8;
  --texte:      #2A2520;
  --texte-mid:  #5A5048;
  --texte-light:#9A8E82;
  --blanc:      #FDFCF9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(253,252,249,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42,37,32,0.08);
  padding: 15px 60px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 0.12em;
  color: #fff; text-decoration: none; transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--texte); }
.nav-logo span { color: var(--rouge); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.81rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--texte-mid); }
.nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--rouge); }
.nav-cta {
  background: var(--rouge) !important;
  color: #fff !important; padding: 10px 22px; border-radius: 3px;
}
.nav-cta:hover { background: var(--rouge-dark) !important; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; justify-content: flex-start; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('drone.jpg') center 40%/cover no-repeat;
  transform: scale(1.0);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(42,37,32,0.88) 0%, rgba(42,37,32,0.28) 45%, rgba(42,37,32,0.08) 100%),
    linear-gradient(110deg, rgba(192,39,45,0.14) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 70px 60px; max-width: 760px; width: 100%;
  animation: fadeUp 1.1s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.4s;
  align-self: flex-end;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05; letter-spacing: 0.02em;
  color: #fff; margin-bottom: 22px;
}
.hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; color: #E8C9A2;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(253,252,249,0.72); line-height: 1.8;
  max-width: 480px; margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-rouge {
  background: var(--rouge); color: #fff;
  padding: 15px 34px; border: none; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
.btn-rouge:hover { background: var(--rouge-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(192,39,45,0.35); }
.btn-ghost {
  background: transparent; color: #fff;
  padding: 15px 34px; border: 1px solid rgba(255,255,255,0.35); border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

/* ===== STATS ===== */
.stats-bar {
  background: var(--rouge); padding: 26px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 0 16px; color: #fff;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; letter-spacing: 0.05em; line-height: 1; }
.stat-label { font-size: 0.71rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; margin-top: 5px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 70px; }
.section-sable  { background: var(--sable); }
.section-blanc  { background: var(--blanc); }
.section-mid    { background: var(--sable-mid); }

.eyebrow {
  font-size: 0.69rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rouge); font-weight: 500; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--rouge); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.04em; line-height: 1; color: var(--texte);
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--rouge); font-weight: 400;
}

/* ===== OFFRES ===== */
.offres-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.offre-card {
  background: var(--blanc); border: 1px solid var(--sable-dark);
  border-radius: 4px; padding: 44px 36px;
  position: relative; overflow: hidden; transition: all 0.4s;
}
.offre-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--rouge); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.offre-card:hover { box-shadow: 0 16px 48px rgba(42,37,32,0.1); transform: translateY(-4px); }
.offre-card:hover::after { transform: scaleX(1); }
.offre-etage { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rouge); font-weight: 500; margin-bottom: 10px; }
.offre-type { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.07em; color: var(--texte); margin-bottom: 10px; }
.offre-surface { font-family: 'Bebas Neue', sans-serif; font-size: 3.8rem; color: var(--rouge); letter-spacing: 0.01em; line-height: 1; margin-bottom: 6px; }
.offre-surface span { font-size: 1.3rem; color: var(--texte-light); }
.offre-prix { font-size: 0.9rem; color: var(--texte-mid); margin-bottom: 26px; font-weight: 300; }
.offre-prix strong { color: var(--texte); font-weight: 600; font-size: 1.1rem; }
.offre-sep { height: 1px; background: var(--sable-dark); margin-bottom: 22px; }
.offre-features { list-style: none; }
.offre-features li {
  font-size: 0.84rem; color: var(--texte-mid); padding: 7px 0;
  border-bottom: 1px solid var(--sable); display: flex; align-items: center; gap: 10px; line-height: 1.5;
}
.offre-features li:last-child { border-bottom: none; }
.offre-features li::before { content: '✓'; color: var(--rouge); font-size: 0.75rem; flex-shrink: 0; font-weight: 600; }
.offre-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--rouge); color: #fff;
  font-size: 0.61rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 11px; border-radius: 2px; font-weight: 500;
}

.offre-cube-wrap {
  position: absolute; bottom: 18px; right: 18px;
  width: 72px; height: 72px;
  overflow: hidden;
  pointer-events: none;
}
.cube3d-canvas { display: block; }


.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 200;
  width: 44px; height: 44px;
  background: var(--blanc); border: 1px solid var(--sable-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(42,37,32,0.12);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--rouge); border-color: var(--rouge); }
.scroll-top:hover svg { stroke: #fff; }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--texte); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.seo-intro {
  font-size: 0.93rem; color: var(--texte-mid); line-height: 1.85;
  max-width: 820px; margin-bottom: 40px; font-weight: 300;
}
.seo-intro strong { color: var(--texte); font-weight: 500; }

/* ===== INCLUS ===== */
.inclus-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  margin-top: 60px; border: 1px solid var(--sable-dark); border-radius: 4px; overflow: hidden;
}
.inclus-item {
  padding: 34px 24px; border-right: 1px solid var(--sable-dark);
  border-bottom: 1px solid var(--sable-dark); background: var(--blanc);
  text-align: center; transition: background 0.3s;
}
.inclus-item:hover { background: var(--sable); }
.inclus-item:nth-child(4n) { border-right: none; }
.inclus-item:nth-last-child(-n+4) { border-bottom: none; }
.inclus-icon { font-size: 1.55rem; margin-bottom: 13px; display: block; line-height: 1; }
.inclus-label { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--texte); margin-bottom: 7px; }
.inclus-desc { font-size: 0.77rem; color: var(--texte-light); line-height: 1.65; font-weight: 300; }

/* ===== GALERIE ===== */
.gallery-section { background: var(--sable-mid); padding-top: 80px; }
.gallery-intro { padding: 0 70px 50px; }
.gallery-full { display: flex; flex-direction: column; gap: 6px; }
.gallery-img-wrap {
  overflow: hidden; background: var(--sable-dark); position: relative;
  line-height: 0;
}
.gallery-img-wrap img {
  width: 100%; height: auto; display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.gallery-img-wrap:hover img { transform: scale(1.025); }

/* ===== AVANTAGES ===== */
.avantages-section {
  padding: 100px 70px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 90px; align-items: stretch;
  background: var(--blanc);
}
.avantages-visual {
  position: relative; min-height: 100%; overflow: hidden; border-radius: 2px;
}
.avantages-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: 2px;
}
.avantages-visual::before {
  content: ''; position: absolute; top: -16px; right: -16px;
  width: 60%; height: 60%; border: 2px solid var(--sable-dark); z-index: -1; border-radius: 2px;
}
.avantage-list { margin-top: 44px; }
.avantage-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--sable-dark);
  opacity: 0; transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.avantage-item:last-child { border-bottom: none; }
.avantage-item.visible { opacity: 1; transform: translateX(0); }
.avantage-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  color: var(--rouge); opacity: 0.35; min-width: 44px; line-height: 1; padding-top: 3px;
}
.avantage-content h4 {
  font-size: 0.87rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 7px; color: var(--texte);
}
.avantage-content p { font-size: 0.88rem; color: var(--texte-mid); line-height: 1.75; font-weight: 300; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 100px 70px; background: var(--sable);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px; font-size: 0.9rem; color: var(--texte-mid); line-height: 1.7;
}
.contact-detail-icon {
  width: 38px; height: 38px; min-width: 38px;
  border: 1px solid var(--sable-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; background: var(--blanc); flex-shrink: 0;
}
.contact-detail strong { color: var(--texte); }
.contact-detail a { color: var(--texte-mid); text-decoration: none; }
.contact-detail a:hover { color: var(--rouge); }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff; padding: 15px 26px;
  border-radius: 4px; text-decoration: none; font-weight: 500;
  font-size: 0.87rem; margin-top: 28px; transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }
.whatsapp-btn svg { width: 19px; height: 19px; fill: #fff; flex-shrink: 0; }

.contact-form-block {
  background: var(--blanc); border: 1px solid var(--sable-dark);
  border-radius: 4px; padding: 48px 42px;
}
.contact-form-block h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.07em; color: var(--texte); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.69rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--texte-light); margin-bottom: 8px; font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--sable); border: 1px solid var(--sable-dark);
  border-radius: 3px; padding: 13px 16px; color: var(--texte);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rouge); background: var(--blanc); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  background: var(--rouge); color: #fff; border: none;
  padding: 15px 32px; font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border-radius: 3px; width: 100%; transition: all 0.3s; margin-top: 8px;
}
.form-submit:hover { background: var(--rouge-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,39,45,0.22); }
.form-success {
  display: none; text-align: center; padding: 40px 24px;
  background: rgba(192,39,45,0.05); border: 1px solid rgba(192,39,45,0.18); border-radius: 3px;
}
.form-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--rouge); letter-spacing: 0.06em; margin-bottom: 12px; }
.form-success p { color: var(--texte-mid); font-size: 0.9rem; line-height: 1.7; }

/* ===== MAP ===== */
.map-section { position: relative; height: 480px; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: saturate(0.65) brightness(1.05); display: block; }
.map-overlay {
  position: absolute; top: 40px; right: 70px;
  background: var(--blanc); padding: 28px 30px;
  border-top: 3px solid var(--rouge);
  box-shadow: 0 8px 32px rgba(42,37,32,0.12); border-radius: 0 0 4px 4px; min-width: 250px;
}
.map-overlay h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.08em; color: var(--texte); margin-bottom: 12px; }
.map-overlay p { font-size: 0.84rem; color: var(--texte-mid); line-height: 1.8; }
.map-overlay a { color: var(--rouge); text-decoration: none; font-size: 0.78rem; }
.map-overlay a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  background: var(--texte);
  padding: 32px 70px 24px;
  display: flex; flex-direction: column;
  gap: 0;
}
.footer-top {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 10px 24px;
  padding-bottom: 18px;
}
.footer-sign {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(245,240,232,0.08);
  font-size: 0.77rem;
  color: rgba(245,240,232,0.3);
}
.footer-sign a { color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-sign a:hover { color: var(--rouge); }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.12em; color: var(--sable); }
.footer-logo span { color: var(--rouge); }
.footer-text { font-size: 0.77rem; color: rgba(245,240,232,0.42); }
.footer-text a { color: inherit; text-decoration: none; }

/* ===== WA FLOTTANT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.8s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.wa-float svg { width: 27px; height: 27px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 18px 26px; }
  .nav-links { display: none; }
  .section { padding: 70px 26px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 22px 26px; }
  .offres-grid { grid-template-columns: 1fr; }
  .inclus-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-intro { padding: 0 26px 40px; }
  .avantages-section { grid-template-columns: 1fr; gap: 40px; padding: 70px 26px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; padding: 70px 26px; }
  .contact-form-block { padding: 30px 22px; }
  .map-overlay { right: 14px; top: 14px; }
  footer { flex-direction: column; gap: 14px; text-align: center; padding: 28px; }
  .hero-content { padding: 0 26px 60px; }
  .burger { display: flex; }
}

/* ===== BURGER ===== */
.burger {
  display: none;
  background: none; border: 1px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 1.3rem;
  width: 42px; height: 42px; border-radius: 3px;
  cursor: pointer; align-items: center; justify-content: center;
  transition: all 0.3s; line-height: 1;
  position: relative; z-index: 500; flex-shrink: 0;
}
nav.scrolled .burger { border-color: rgba(42,37,32,0.3); color: var(--texte); }
.burger:hover { background: var(--rouge); border-color: var(--rouge); color: #fff !important; }

/* Overlay menu mobile */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(42,37,32,0.97);
  backdrop-filter: blur(18px);
  z-index: 400;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: rgba(245,240,232,0.85);
  text-decoration: none; letter-spacing: 0.12em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--rouge); }
.mobile-menu .menu-cta {
  background: var(--rouge); color: #fff !important;
  padding: 14px 40px; border-radius: 3px; margin-top: 10px;
}
.mobile-menu-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none;
  color: rgba(245,240,232,0.6); font-size: 1.8rem;
  cursor: pointer; line-height: 1; padding: 4px 10px;
  transition: color 0.3s;
}
.mobile-menu-close:hover { color: var(--rouge); }

@media (max-width: 600px) {
  .hero {
    min-height: unset; height: auto; flex-direction: column; align-items: stretch; position: relative;
  }
  .hero-img {
    position: relative !important; inset: unset !important; width: 100% !important; height: auto !important; background: none !important; animation: none !important; transform: none !important;
  }
  .hero-img-mobile { display: block; }
  .hero-overlay { display: none !important; }
  .hero-content {
    position: relative !important; background: var(--texte); padding: 32px 22px 36px !important; max-width: 100% !important; align-self: stretch; z-index: 1;
  }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); line-height: 1.0; margin-bottom: 12px; color: #fff; }
  .hero-sub { font-size: 0.88rem; line-height: 1.65; margin-bottom: 24px; color: rgba(245,240,232,0.75); }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-rouge, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .btn-ghost { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
  .nav-logo { font-size: 1.1rem; letter-spacing: 0.07em; }
  nav { padding: 14px 18px; }
  nav.scrolled { padding: 12px 18px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 18px 20px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.62rem; }
  .section { padding: 50px 20px; }
  .offres-grid { grid-template-columns: 1fr; }
  .inclus-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-intro { padding: 0 20px 30px; }
  .avantages-section { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px; }
  .contact-section { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px; }
  .contact-form-block { padding: 28px 18px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .map-section { height: auto; display: flex; flex-direction: column; }
  .map-section iframe { height: 300px; position: relative; }
  .map-overlay {
    position: relative; top: auto; right: auto;
    border-top: 3px solid var(--rouge); border-radius: 0;
    box-shadow: none; padding: 20px; min-width: unset; width: 100%;
  }
}

.hero-img-mobile {
  display: none;
  width: 100%; height: auto;
  object-fit: cover; object-position: center center;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-img-mobile { display: block; }
  .hero { position: relative; }
}

@media (max-height: 500px) and (orientation: landscape) {
  nav { padding: 10px 20px; }
  nav.scrolled { padding: 8px 20px; }
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; background: url('drone.jpg') center 40%/cover no-repeat !important; animation: none !important; transform: none !important; }
  .hero-img-mobile { display: none !important; }
  .hero-overlay { display: block !important; background: linear-gradient(to top, rgba(42,37,32,0.92) 0%, rgba(42,37,32,0.4) 55%, transparent 100%) !important; }
  .hero-content { position: relative !important; background: transparent !important; padding: 0 30px 24px !important; max-width: 600px !important; }
  .hero h1 { font-size: 2.2rem !important; margin-bottom: 8px !important; line-height: 1 !important; }
  .hero-sub { font-size: 0.82rem !important; margin-bottom: 16px !important; line-height: 1.5 !important; }
  .hero-actions { flex-direction: row !important; gap: 10px !important; }
  .btn-rouge, .btn-ghost { width: auto !important; padding: 10px 20px !important; font-size: 0.78rem !important; }
}

/* ===========================
   BARRE COOKIES
=========================== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--texte);
  border-top: 3px solid var(--rouge);
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; z-index: 800;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-text {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(245,240,232,0.75); font-size: 0.85rem; line-height: 1.6;
  flex: 1;
}
.cookie-text svg { flex-shrink: 0; margin-top: 2px; color: var(--rouge); }
.cookie-link {
  background: none; border: none; padding: 0;
  color: var(--rouge); text-decoration: underline;
  cursor: pointer; font-size: inherit; font-family: inherit;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 22px; border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.08em;
  font-size: 0.95rem; cursor: pointer; transition: all 0.2s;
  border: 1px solid transparent;
}
.cookie-accept {
  background: var(--rouge); color: #fff; border-color: var(--rouge);
}
.cookie-accept:hover { background: #a82025; }
.cookie-refuse {
  background: transparent; color: rgba(245,240,232,0.5);
  border-color: rgba(245,240,232,0.2);
}
.cookie-refuse:hover { border-color: rgba(245,240,232,0.5); color: rgba(245,240,232,0.8); }

/* ===========================
   POPUPS LÉGALES
=========================== */
.legal-overlay {
  position: fixed; inset: 0;
  background: rgba(42,37,32,0.7);
  backdrop-filter: blur(6px);
  z-index: 900;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease;
}
.legal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.legal-popup {
  display: flex; flex-direction: column;
  position: fixed;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.96);
  width: min(680px, 92vw); max-height: 82vh;
  background: #FDFCF9; border-radius: 4px;
  box-shadow: 0 24px 80px rgba(42,37,32,0.45);
  z-index: 901; overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0; visibility: hidden; pointer-events: none;
}
.legal-popup.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.legal-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; border-bottom: 1px solid rgba(42,37,32,0.1);
  background: #fff; flex-shrink: 0;
}
.legal-popup-header h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.06em; color: var(--texte); margin: 0;
}
.legal-close {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: rgba(42,37,32,0.4); padding: 4px 8px;
  transition: color 0.2s; line-height: 1;
}
.legal-close:hover { color: var(--rouge); }
.legal-popup-body {
  padding: 28px 32px; overflow-y: auto; line-height: 1.75;
  color: var(--texte); font-size: 0.9rem;
  background: #FDFCF9;
}
.legal-popup-body h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  letter-spacing: 0.06em; color: var(--rouge);
  margin: 24px 0 8px; border-bottom: 1px solid rgba(192,39,45,0.15);
  padding-bottom: 6px;
}
.legal-popup-body h3:first-child { margin-top: 0; }
.legal-popup-body p { margin: 0 0 12px; }
.legal-popup-body ul { margin: 0 0 12px; padding-left: 20px; }
.legal-popup-body ul li { margin-bottom: 6px; }
.legal-popup-body a { color: var(--rouge); }

/* Footer liens légaux */
.footer-legal {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.footer-legal button, .footer-legal-link {
  background: none; border: none; padding: 0;
  color: rgba(245,240,232,0.35); font-size: 0.78rem;
  cursor: pointer; font-family: inherit; transition: color 0.2s;
  text-decoration: underline;
}
.footer-legal button:hover, .footer-legal-link:hover { color: rgba(245,240,232,0.7); }
.footer-legal-link { text-decoration: underline; }

@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; padding: 18px 20px; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
  .legal-popup-header { padding: 18px 20px; }
  .legal-popup-body { padding: 20px; }
}
