/* ===========================
   LUXURYGROUP — MAIN STYLESHEET
   =========================== */

:root {
  --gold: #B8922A;
  --gold-light: #D4AF6A;
  --gold-pale: #F5EDD6;
  --black: #030f2b;
  --charcoal: #1C1C1C;
  --dark: #030f2b;
  --mid-dark: #2A2A2A;
  --grey: #888888;
  --light-grey: #C8C8C8;
  --off-white: #f7f5ef;
  --white: #FFFFFF;
  --font-display: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.display-serif {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-serif {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ── LOGO ── */
.luxury-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: var(--transition);
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}
.luxury-logo:hover .logo-mark { background: var(--gold); color: var(--black); }

/* ── NAVBAR ── */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

#mainNav {
  padding: 1.4rem 0;
  background: transparent;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(184, 146, 42, 0.25);
}
#mainNav.scrolled .logo-text { color: var(--white); }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-fast);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}
.nav-search-btn:hover { color: var(--gold); }

.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; cursor: pointer; }
.hamburger-icon span { display: block; height: 1px; background: var(--white); transition: var(--transition); }
.navbar-toggler { border: none; background: none; padding: 0; box-shadow: none !important; }

/* ── MEGA MENU ── */
.mega-dropdown { position: static !important; }
.mega-menu {
  position: fixed !important;
  top: 70px;
  left: 0;
  right: 0;
  width: 100vw;
  background: var(--dark);
  border-top: 1px solid rgba(184,146,42,0.3);
  border-radius: 0 !important;
  padding: 2.5rem 5rem !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mega-menu-inner { display: grid; grid-template-columns: repeat(4, 1fr) 280px; gap: 2rem; }
.mega-col h6 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184,146,42,0.2);
}
.mega-col a {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}
.mega-col a:hover { color: var(--gold-light); }
.mega-editorial { position: relative; overflow: hidden; }
.mega-editorial img { width: 100%; height: 180px; object-fit: cover; opacity: 0.7; transition: opacity var(--transition); }
.mega-editorial:hover img { opacity: 0.9; }
.mega-editorial p { font-family: var(--font-editorial); font-style: italic; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0.8rem 0; }
.mega-cta { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; font-family: var(--font-body); font-weight: 500; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-inner { width: 100%; max-width: 700px; padding: 2rem; }
.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}
.search-close:hover { opacity: 1; }
.search-inner input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  padding: 1rem 0;
  outline: none;
}
.search-inner input::placeholder { color: rgba(255,255,255,0.25); }
.search-suggestions { margin-top: 2rem; }
.search-suggestions span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-right: 1rem; }
.search-suggestions a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; margin-right: 1.5rem; transition: color var(--transition-fast); }
.search-suggestions a:hover { color: var(--gold); }

/* ── MOBILE NAV ── */
.offcanvas { background: var(--dark); }
.offcanvas-header .btn-close { filter: invert(1); }
.mobile-nav { list-style: none; padding: 2rem 0; }
.mobile-nav li a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}
.mobile-nav li a:hover { color: var(--gold-light); }

/* ── LVMH-INSPIRED HERO ── */
.hero-lvmh {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background */
.hero-lvmh-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-lvmh-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-lvmh-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}
.hero-lvmh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.4) 100%
  );
}

/* Brand content — centered */
.hero-lvmh-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-lvmh-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.hero-lvmh-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
}
.hero-lvmh-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 12rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-lvmh-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0.5rem 0 0;
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

/* Scroll indicator */
.hero-lvmh-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-lvmh-scroll-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-lvmh-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: lvmhScrollPulse 2.4s ease-in-out infinite;
}
@keyframes lvmhScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.6); }
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 768px) {
  .hero-lvmh { min-height: 600px; }
  .hero-lvmh-title { font-size: clamp(2.8rem, 15vw, 5rem); }
  .hero-lvmh-tagline { font-size: 0.6rem; letter-spacing: 0.3em; }
  .hero-lvmh-eyebrow { font-size: 0.5rem; }
  .hero-lvmh-scroll { bottom: 2rem; }
}

/* ── BUTTONS (kept from original) ── */
.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}
.btn-luxury-primary:hover { background: transparent; color: var(--gold); }
.btn-luxury-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-luxury-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── KEY FIGURES ── */
.figures-section { background: var(--dark); padding: 6rem 0; }
.figure-item { text-align: center; padding: 2rem; border-right: 1px solid rgba(255,255,255,0.06); }
.figure-item:last-child { border-right: none; }
.figure-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: #f7f5ef;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.figure-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── EDITORIAL SECTIONS ── */
.section-header { margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.12;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── MAISONS GRID ── */
.maisons-section { padding: 8rem 0; background: var(--off-white); }
.maison-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.maison-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.maison-card:hover .maison-card-img { transform: scale(1.06); }
.maison-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  transition: var(--transition);
}
.maison-card:hover .maison-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%); }
.maison-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
.maison-category {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.maison-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.maison-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.maison-card:hover .maison-arrow { opacity: 1; transform: translateY(0); }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--black);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,146,42,0.15);
  border-bottom: 1px solid rgba(184,146,42,0.15);
}
.marquee-inner {
  display: flex;
  gap: 5rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: rgb(255, 255, 255);
  flex-shrink: 0;
}
.marquee-inner span.gold { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── EDITORIAL FEATURE ── */
.editorial-section { padding: 8rem 0; overflow: hidden; }
.editorial-image-wrap {
  position: relative;
  overflow: hidden;
}
.editorial-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 1s ease;
}
.editorial-image-wrap:hover img { transform: scale(1.03); }
.editorial-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,146,42,0.2);
  z-index: 1;
  pointer-events: none;
}
.editorial-label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
}
.editorial-content { display: flex; flex-direction: column; justify-content: center; padding: 3rem; }
.editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 2rem;
  position: relative;
}
.editorial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: -1.5rem;
  line-height: 1;
}

/* ── COMMITMENTS ── */
.commitments-section { background: var(--dark); padding: 8rem 0; }
.commitment-card {
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  height: 100%;
}
.commitment-card:hover { border-color: rgba(184,146,42,0.3); background: rgba(184,146,42,0.04); }
.commitment-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.commitment-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.commitment-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.8; }

/* ── NEWS SECTION ── */
.news-section { padding: 8rem 0; }
.news-card { display: block; text-decoration: none; color: inherit; }
.news-card-img-wrap { overflow: hidden; margin-bottom: 1.5rem; }
.news-card-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-card:hover .news-card-img-wrap img { transform: scale(1.05); }
.news-date { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--grey); text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.news-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}
.news-card:hover .news-title { color: var(--gold); }
.news-excerpt { font-size: 0.82rem; color: var(--grey); line-height: 1.7; }

/* ── CAREERS BAND ── */
.careers-band {
  background: var(--gold);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.careers-band::before {
  content: 'CAREERS';
  position: absolute;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
}
.careers-band .section-title { color: var(--black); }
.careers-band .section-divider { background: var(--black); }
.careers-band p { color: rgba(0,0,0,0.65); }
.btn-luxury-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: var(--transition);
}
.btn-luxury-dark:hover { background: transparent; color: var(--black); }

/* ── INVESTORS STRIP ── */
.investors-strip { background: var(--off-white); padding: 5rem 0; border-top: 1px solid rgba(0,0,0,0.06); }
.investor-stat { text-align: center; }
.investor-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.4rem;
}
.investor-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }

/* ── FOOTER ── */
#site-footer { background: var(--dark); }
.footer-top { padding: 6rem 0 4rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184,146,42,0.2);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold-light); }
.footer-newsletter-text { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; line-height: 1.6; }
.footer-newsletter .input-group { display: flex; }
.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { padding: 1.8rem 0; }
.footer-bottom p, .footer-bottom a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
  letter-spacing: 0.05em;
}
.footer-bottom a { text-decoration: none; margin-left: 1.5rem; transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--off-white);
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(184,146,42,0.03) 0%, transparent 60%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--charcoal);
  position: relative;
}
.page-hero-title em { font-style: italic; color: var(--gold); }

/* ── BREADCRUMB ── */
.luxury-breadcrumb {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.luxury-breadcrumb a { color: rgba(0,0,0,0.3); text-decoration: none; transition: color var(--transition-fast); }
.luxury-breadcrumb a:hover { color: var(--gold); }
.luxury-breadcrumb .sep { color: rgba(0,0,0,0.15); }
.luxury-breadcrumb .current { color: var(--gold); }

/* ── CATEGORY TABS ── */
.luxury-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(0,0,0,0.1); margin-bottom: 4rem; overflow-x: auto; }
.luxury-tab {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  background: none;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: var(--transition-fast);
}
.luxury-tab.active, .luxury-tab:hover { color: var(--charcoal); border-bottom-color: var(--gold); }

/* ── BRAND CARD (Maisons page) ── */
.brand-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}
.brand-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.brand-card-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.brand-card-cat { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; font-weight: 500; }
.brand-card-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; margin-bottom: 1rem; color: var(--charcoal); }
.brand-card-desc { font-size: 0.82rem; color: var(--grey); line-height: 1.8; }

/* ── LEADERSHIP ── */
.leader-card { text-align: center; }
.leader-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter var(--transition);
  margin-bottom: 1.5rem;
}
.leader-card:hover .leader-img { filter: grayscale(0%); }
.leader-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; margin-bottom: 0.3rem; }
.leader-title { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: rgba(184,146,42,0.2); }
.timeline-item { position: relative; padding: 0 0 3rem 3rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.timeline-text { font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); line-height: 1.5; }

/* ── AOS OVERRIDES ── */
[data-aos] { transition-duration: 0.9s !important; }

/* ── UTILITY ── */
.text-gold { color: var(--gold) !important; }
.bg-dark-luxury { background: var(--dark); }
.bg-off-white { background: var(--off-white); }
.section-pad { padding: 8rem 0; }
.separator-gold { width: 50px; height: 1px; background: var(--gold); display: block; margin: 1.5rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .mega-menu { display: none !important; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .figure-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .editorial-content { padding: 2rem 0; }
}
@media (max-width: 767px) {
  .section-pad { padding: 5rem 0; }
  .maisons-section, .editorial-section, .commitments-section, .news-section { padding: 5rem 0; }
  .hero-section { padding-bottom: 5rem; }
}
