/* ============================================
   THE VIP — Luxe / Chic Glassmorphism
   ============================================ */
:root {
  --bg-dark: #fffdfe;
  --bg-deep: #fffafd;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(240, 215, 245, 0.4);
  --gold: #e8b8f0;          /* rose-violet très clair */
  --gold-light: #fbe4f5;    /* rose pastel ultra pâle */
  --gold-dark: #d4a5e0;     /* violet doux clair */
  --gold-shine: #ffe8f4;    /* rose pastel lumineux */
  --text: #7a5f8a;
  --text-soft: #a896b5;
  --text-mute: #cbb8d4;
  --shadow-gold: 0 8px 32px rgba(232, 184, 240, 0.2);
  --shadow-deep: 0 24px 60px rgba(212, 165, 224, 0.12);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 232, 244, 0.7), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(251, 228, 245, 0.6), transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(232, 184, 240, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

p { font-family: 'Inter', 'Helvetica Neue', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.8; color: var(--text-soft); }

a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.4s var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 250, 253, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 5%;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.logo::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 30px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* Sous le hero clair, la navbar non-scrollée doit garder texte lisible */
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .logo { color: #ffffff; }
.navbar:not(.scrolled) .logo span { color: var(--gold-shine); }
.navbar:not(.scrolled) .hamburger span { background: #ffffff; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) saturate(1.05);
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(120,60,150,0.55) 0%, rgba(180,110,200,0.55) 50%, rgba(253,245,250,0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 10px 26px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: rgba(212, 175, 122, 0.08);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 200;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(80, 40, 110, 0.35);
}

.hero h1 span {
  display: block;
  font-style: italic;
  color: var(--gold-shine);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 50px;
  text-shadow: 0 2px 12px rgba(80, 40, 110, 0.3);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-shine), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-cta span { position: relative; z-index: 1; }
.hero-cta:hover { color: #ffffff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(180, 120, 214, 0.4); }
.hero-cta:hover::before { opacity: 1; }

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBob 2.5s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, #000000, transparent);
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 130px 5%;
  position: relative;
}

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-left: 50px;
  position: relative;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 38px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  margin-bottom: 24px;
  color: var(--text);
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-desc {
  max-width: 640px;
  margin-bottom: 70px;
  font-size: 16px;
}

.section-head { text-align: center; margin-bottom: 80px; }
.section-head .section-desc { margin-left: auto; margin-right: auto; }
.section-head .section-tag { padding-left: 0; padding-right: 0; padding-bottom: 4px; }
.section-head .section-tag::before { display: none; }

/* ============ GLASS CARDS ============ */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  perspective: 1200px;
}

.service-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 50px 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--transition), box-shadow 0.6s var(--transition), border-color 0.4s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 122, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 30px 70px rgba(180, 120, 214, 0.25), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.15), rgba(212, 175, 122, 0.05));
  border: 1px solid rgba(212, 175, 122, 0.3);
  border-radius: 18px;
  margin-bottom: 30px;
  transition: all 0.5s var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  transform: scale(1.08) rotate(-6deg);
}

.service-icon svg { width: 32px; height: 32px; stroke: var(--gold); transition: stroke 0.4s; }
.service-card:hover .service-icon svg { stroke: #ffffff; }

.service-card h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}

.service-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.85;
}

.service-card .service-num {
  position: absolute;
  top: 30px; right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 122, 0.3);
  font-style: italic;
  line-height: 1;
}

.service-card .service-img {
  width: calc(100% + 76px);
  height: 200px;
  margin: -50px -38px 30px;
  overflow: hidden;
  position: relative;
}

.service-card .service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
  filter: brightness(0.85);
}

.service-card:hover .service-img img { transform: scale(1.1); filter: brightness(1); }

.service-card .service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(245, 238, 247, 0.55));
}

/* ============ ABOUT SECTION ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.about-img:hover img { transform: scale(1.05); }

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 24px;
  pointer-events: none;
  transform: translate(20px, 20px);
  opacity: 0.5;
}

.about-content p { margin-bottom: 22px; }

.about-features {
  list-style: none;
  margin-top: 30px;
}

.about-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-glass);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-features li::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-glass);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(142, 88, 184, 0.45));
  opacity: 0.6;
  transition: opacity 0.4s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 0.3; }

.gallery-item .zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px; height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s var(--transition);
  z-index: 2;
}

.gallery-item:hover .zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-item .zoom svg { width: 20px; height: 20px; stroke: #ffffff; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(245, 238, 247, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 16px; }
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  width: 50px; height: 50px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 44px 38px;
  position: relative;
  transition: transform 0.5s var(--transition);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.testimonial:hover { transform: translateY(-6px); border-color: var(--gold); }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
  margin-top: 24px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
}

.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.testimonial-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }

/* ============ CTA SECTION ============ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&q=80') center/cover;
  filter: brightness(0.75) saturate(1.1);
  z-index: -1;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180,120,214,0.55), rgba(243,196,232,0.55));
  z-index: -1;
}

.cta-section .section-title { color: #ffffff; text-shadow: 0 4px 24px rgba(80, 40, 110, 0.35); }
.cta-section .section-desc { color: rgba(255,255,255,0.92); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px 40px;
}

.contact-info h3 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 30px;
}

.contact-info h3 span { color: var(--gold); font-style: italic; }

.contact-info-list { list-style: none; margin-top: 30px; }

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-glass);
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212, 175, 122, 0.1);
  border: 1px solid rgba(212, 175, 122, 0.3);
  border-radius: 12px;
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text);
}

.contact-form {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px 40px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(180, 120, 214, 0.15);
}

.form-group textarea { resize: vertical; min-height: 140px; font-family: 'Inter', sans-serif; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.btn-submit {
  width: 100%;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(180, 120, 214, 0.4);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-msg {
  padding: 14px 18px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin-top: 16px;
  display: none;
}
.form-msg.success { background: rgba(76, 175, 80, 0.15); border: 1px solid #4caf50; color: #a8e0aa; display: block; }
.form-msg.error { background: rgba(244, 67, 54, 0.15); border: 1px solid #f44336; color: #f5a5a0; display: block; }

/* ============ MAP ============ */
.map-wrapper {
  margin-top: 50px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 400px;
  position: relative;
}

.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  padding: 80px 5% 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto 50px;
}

.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p { font-size: 14px; max-width: 320px; }

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer ul { list-style: none; }
.footer ul li { padding: 7px 0; }
.footer ul a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-soft);
}
.footer ul a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-mute);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--transition), transform 1s var(--transition);
  animation: revealFallback 0.9s var(--transition) 0.3s forwards;
}

.reveal.visible { opacity: 1; transform: translateY(0); animation: none; }

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-delay-1 { transition-delay: 0.1s; animation-delay: 0.4s; }
.reveal-delay-2 { transition-delay: 0.2s; animation-delay: 0.5s; }
.reveal-delay-3 { transition-delay: 0.3s; animation-delay: 0.6s; }

/* ============ PAGE HERO (sous-pages) ============ */
.page-hero {
  min-height: 60vh;
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) saturate(1.05);
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(180,120,214,0.5), rgba(245,238,247,0.9));
  z-index: 1;
}

.page-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 5%; }

.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 200;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(80, 40, 110, 0.35);
}

.page-hero h1 span { color: var(--gold-shine); font-style: italic; }

.page-hero .breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255, 250, 253, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--border-glass);
    transform: translateY(-150%);
    transition: transform 0.4s var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 14px; padding: 10px 0; color: var(--text) !important; }
  .hamburger { display: flex; }

  .section { padding: 80px 5%; }
  .section-head { margin-bottom: 50px; }
  .hero h1 { font-size: 50px; }
  .hero-subtitle { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item.tall { grid-row: span 1; }
  .service-card { padding: 40px 28px; }
  .service-card .service-img { width: calc(100% + 56px); margin: -40px -28px 24px; }
  .logo { font-size: 20px; letter-spacing: 0.3em; }
  .logo::before { width: 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .hero-tag { font-size: 10px; padding: 8px 18px; }
  .hero-cta { padding: 16px 32px; font-size: 11px; }
  .section-title { font-size: 32px; }
}
