/* === COACHING LUXE / CHIC === */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #8a7142;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --light: #f5f0e8;
  --gray: #8a8a8a;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-lux: 0 25px 80px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 40px rgba(201, 169, 110, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

.sans { font-family: 'Montserrat', 'Helvetica Neue', sans-serif; }

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

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

/* === BACKGROUND GRAIN === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 5%;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

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

.nav-logo .accent { color: var(--gold); font-style: italic; }

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-cta {
  padding: 12px 28px !important;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold) !important;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

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

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 1;
}

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

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 15px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

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

.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  font-style: italic;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--white);
}
.btn-glass:hover {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn .arrow {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: all 0.3s ease;
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 25px; }

/* === SECTIONS === */
section {
  padding: 120px 5%;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

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

.section-desc {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.7);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

/* === INTRO / ABOUT SECTION === */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.intro-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.intro-img:hover img { transform: scale(1.05); }
.intro-img::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.intro-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
}
.intro-content h2 .italic { font-style: italic; color: var(--gold); font-weight: 300; }

.intro-content p {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 20px;
  line-height: 1.8;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.intro-stats .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  font-weight: 300;
}
.intro-stats .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 5px;
}

/* === SERVICES (GLASS CARDS 3D) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  perspective: 1500px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 110, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-4deg);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: var(--shadow-lux), 0 0 60px rgba(201, 169, 110, 0.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 70px; height: 70px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  background: var(--gold);
  transform: rotate(360deg) scale(1.1);
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--gold); transition: stroke 0.3s ease; }
.service-card:hover .service-icon svg { stroke: var(--dark); }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
}

.service-card p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  margin-bottom: 25px;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.service-card .service-link .arrow { background: var(--gold); }
.service-card .service-link .arrow::after { border-color: var(--gold); }

.service-number {
  position: absolute;
  top: 25px; right: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(201, 169, 110, 0.1);
  font-style: italic;
  line-height: 1;
}

/* === IMAGE SHOWCASE === */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}
.showcase-img {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}
.showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.showcase-img:hover img { transform: scale(1.1); }
.showcase-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.showcase-img:hover::after { opacity: 1; }

/* === TARIFS === */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tarif-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
}

.tarif-card.featured {
  border: 1px solid var(--gold);
  background: rgba(201, 169, 110, 0.04);
  transform: scale(1.03);
}

.tarif-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: 6px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
}

.tarif-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lux);
}
.tarif-card.featured:hover { transform: translateY(-10px) scale(1.03); }

.tarif-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
}
.tarif-card .tarif-desc {
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tarif-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.tarif-card .price small {
  font-size: 16px;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}
.tarif-card .per {
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.tarif-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}
.tarif-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 240, 232, 0.8);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tarif-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.tarif-features li.unchecked { color: var(--gray); opacity: 0.5; }
.tarif-features li.unchecked::before { background: transparent; border-color: var(--gray); }

/* === GALERIE === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.gallery-item:nth-child(4n+1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(5n+3) { aspect-ratio: 1/1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.gallery-item:hover::after {
  border-color: var(--gold);
  inset: 12px;
}

/* === CONTACT === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-info h3 .italic { font-style: italic; color: var(--gold); font-weight: 300; }

.contact-info > p {
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 16px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.contact-detail:hover {
  border-color: var(--gold);
  transform: translateX(8px);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-detail h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-detail p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  transition: all 0.3s ease;
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-2); color: var(--white); }

.form-message {
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  display: none;
}
.form-message.success {
  display: block;
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
}
.form-message.error {
  display: block;
  border-color: #c94e4e;
  background: rgba(201, 78, 78, 0.1);
  color: #e88787;
}

/* === MAP === */
.map-container {
  margin-top: 40px;
  height: 350px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  filter: grayscale(0.7) contrast(1.1);
  transition: filter 0.4s ease;
}
.map-container:hover { filter: grayscale(0) contrast(1); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* === FOOTER === */
footer {
  background: var(--dark-2);
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  position: relative;
  z-index: 1;
}

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

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-brand h3 .accent { color: var(--gold); font-style: italic; }
.footer-brand p {
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
  font-size: 15px;
  max-width: 350px;
}

footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(245, 240, 232, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--gold); padding-left: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: rgba(245, 240, 232, 0.4);
  font-size: 12px;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom .accent { color: var(--gold); }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealFallback 1s ease 0.5s forwards;
}

/* === PAGE HEADER (sous-pages) === */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}
.page-header .hero-bg { animation: none; transform: scale(1); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  color: var(--white);
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}
.page-header h1 .italic { font-style: italic; color: var(--gold); font-weight: 300; }
.page-header .breadcrumb {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.page-header .breadcrumb a { color: rgba(245, 240, 232, 0.6); }
.page-header .breadcrumb a:hover { color: var(--gold); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
}
.cta-banner-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
}
.cta-banner h2 .italic { font-style: italic; color: var(--gold); font-weight: 300; }
.cta-banner p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 18px;
  margin-bottom: 40px;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro { grid-template-columns: 1fr; gap: 50px; }
  .intro-img { height: 450px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    gap: 30px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 14px; }
  
  section { padding: 80px 5%; }
  .section-header { margin-bottom: 50px; }
  
  .hero { min-height: 90vh; }
  .hero p { font-size: 17px; }
  
  .showcase { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { aspect-ratio: 1/1 !important; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  
  .intro-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .intro-stats .stat-num { font-size: 32px; }
  
  .contact-form { padding: 35px 25px; }
  .tarif-card.featured { transform: scale(1); }
  .tarif-card.featured:hover { transform: translateY(-10px); }
}
