/* ═══════════════════════════════════════════════════════════════
   BCA NOTAIRES — Design System Ultra-Premium PRESTIGE
   Palette : Or #a48b5b · Bleu-gris #505f6d · Argent #a8a9ad
   Typo   : Cormorant Garamond (titres) · Inter (corps)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Couleurs principales */
  --gold:         #a48b5b;
  --gold-light:   #c4a96e;
  --gold-dark:    #8a7349;
  --gold-50:      #f9f5ed;
  --gold-100:     #f0e8d4;
  --navy:         #505f6d;
  --navy-dark:    #3a4652;
  --navy-deeper:  #1a2634;
  --navy-900:     #0f1923;
  --silver:       #a8a9ad;
  --silver-light: #d4d5d9;
  --cream:        #FAFAF7;
  --cream-warm:   #F5F3EE;
  --white:        #ffffff;
  --black:        #111111;
  --text:         #3a3a3a;
  --text-light:   #6b6b6b;
  --border:       rgba(164, 139, 91, 0.15);
  --border-light: rgba(0, 0, 0, 0.06);

  /* Typographie */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espacements */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Rayons */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-gold:  0 8px 32px rgba(164, 139, 91, 0.18);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 500ms cubic-bezier(0.25, 0.1, 0.25, 1);

  /* Header */
  --header-height: 5rem;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-dark);
  line-height: 1.15;
  font-weight: 700;
}

/* ─── Utilities ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 960px;
}

.container--wide {
  max-width: 1440px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
}

/* ─── Gold Separator Between Sections ─── */
.gold-separator {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold-light) 50%, var(--gold-dark) 80%, transparent 100%);
  border: none;
  margin: 0;
  opacity: 0.6;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ─── Glass Panels ─── */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.glass-panel--dark {
  background: rgba(15, 25, 35, 0.85);
  border: 1px solid rgba(164, 139, 91, 0.12);
  color: var(--cream);
}

/* ═══════════════════════════════════════════════
   INTRO / SPLASH SCREEN ANIMATION
   ═══════════════════════════════════════════════ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(244, 239, 230, 0.05) 0%, rgba(15, 25, 35, 0.25) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              backdrop-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              -webkit-backdrop-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.intro-frame {
  position: relative;
  padding: 4.5rem;
  border: none;
  background: radial-gradient(circle, rgba(244, 239, 230, 0.85) 0%, rgba(244, 239, 230, 0) 70%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.intro-logo {
  width: 130px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 10px 25px rgba(15, 25, 35, 0.18));
  animation: intro-logo-reveal 1.4s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  /* Displays in its premium native gold/navy colors on top of the soft warm aura */
}

@keyframes intro-logo-reveal {
  0% { 
    opacity: 0; 
    transform: scale(0.8); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
  height: 4rem;
  box-shadow: var(--shadow-md);
  background: rgba(250, 250, 247, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header__logo-bca {
  height: 48px;
  width: auto;
  transition: height var(--transition-base);
}

.header.scrolled .header__logo-bca {
  height: 38px;
}

.header__logo-marianne {
  height: 36px;
  width: auto;
  transition: height var(--transition-base);
}

.header.scrolled .header__logo-marianne {
  height: 28px;
}

/* ─── Navigation Desktop ─── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: var(--gold);
  background: var(--gold-50);
}

.nav-link.active {
  color: var(--gold);
}

.nav-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.nav-link:hover .nav-link__icon {
  opacity: 1;
}

/* ─── Dropdown Menu ─── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav-dropdown__toggle:hover {
  color: var(--gold);
  background: var(--gold-50);
}

.nav-dropdown__toggle .nav-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.nav-dropdown__toggle:hover .nav-link__icon {
  opacity: 1;
}

.nav-dropdown__chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  overflow: visible !important;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-dropdown__item:hover {
  background: var(--gold-50);
  color: var(--gold);
}

.nav-dropdown__item-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0.7;
}

/* ─── Header Actions ─── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ─── RDV Link in Nav — Discret, intégré à la nav ─── */
.nav-link--rdv {
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-left: 0.25rem;
}

.nav-link--rdv:hover {
  background: var(--gold);
  color: var(--white);
}

.nav-link--rdv .nav-link__icon {
  opacity: 0.8;
}

.nav-link--rdv:hover .nav-link__icon {
  opacity: 1;
}

/* ─── RDV Button — Inline (dans les blocs d'info) ─── */
.btn--rdv-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.6rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
  border-radius: var(--radius-full);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(164, 139, 91, 0.3);
  transition: all var(--transition-base);
}

.btn--rdv-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.btn--rdv-inline:hover::before {
  left: 100%;
}

.btn--rdv-inline:hover {
  box-shadow: 0 4px 20px rgba(164, 139, 91, 0.5);
  transform: translateY(-1px);
  color: var(--white);
}

.btn--rdv-inline svg {
  flex-shrink: 0;
}

/* ─── RDV CTA button pulse animation ─── */
.btn--rdv-cta {
  animation: rdv-pulse 3s ease-in-out infinite;
}

@keyframes rdv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164, 139, 91, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(164, 139, 91, 0); }
}

/* ─── Footer RDV link ─── */
.footer__link--rdv {
  color: var(--gold-light) !important;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer__link--rdv:hover {
  color: var(--white) !important;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--gold);
  background: var(--gold-50);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ─── Mobile Menu Toggle ─── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: rgba(0,0,0,0.04);
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* ─── Mobile Navigation ─── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 247, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  padding: calc(var(--header-height) + 2rem) 2rem 2rem;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--gold);
}

.mobile-nav__link svg {
  width: 22px;
  height: 22px;
  opacity: 0.5;
}

.mobile-nav__cta {
  display: block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO — Split Layout: Text Left + Photo Right
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
  background: var(--navy-deeper);
  color: var(--cream);
}

/* Left panel — text content */
.hero__text-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 3rem) 4rem 4rem 4rem;
  position: relative;
  z-index: 2;
}

/* Subtle decorative border on the right of text panel */
.hero__text-panel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(164, 139, 91, 0.3), transparent);
}

.hero__content {
  max-width: 560px;
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(164, 139, 91, 0.35);
  background: rgba(164, 139, 91, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(250, 250, 247, 0.7);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}

.hero__info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(164, 139, 91, 0.2);
}

.hero__info-item {
  text-align: left;
}

.hero__info-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero__info-label {
  font-size: 0.72rem;
  color: rgba(250, 250, 247, 0.45);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* Right panel — full Bellecour photo */
.hero__photo-panel {
  position: relative;
  overflow: hidden;
}

.hero__photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease;
}

.hero__photo-panel .hero-day {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo-panel .hero-night {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Soft vignette on the photo's left edge for seamless join */
.hero__photo-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, var(--navy-deeper), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Mobile: stack vertically */
@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__text-panel {
    padding: calc(var(--header-height) + 2rem) 2rem 3rem;
    text-align: center;
  }
  .hero__text-panel::after {
    display: none;
  }
  .hero__content {
    text-align: center;
    max-width: 100%;
  }
  .hero__cta-group {
    justify-content: center;
  }
  .hero__info-bar {
    justify-content: center;
  }
  .hero__info-item {
    text-align: center;
  }
  .hero__photo-panel {
    height: 50vh;
    min-height: 300px;
  }
  .hero__photo-panel::before {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(164, 139, 91, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(164, 139, 91, 0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(164, 139, 91, 0.1);
  color: var(--gold-light);
}

.btn--outline-dark {
  color: var(--navy);
  border: 2px solid var(--border);
  background: var(--white);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  overflow: visible !important;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.section {
  padding: 6rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--navy-deeper);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

#cta-contact {
  position: relative;
  background-color: var(--navy-deeper);
  background-image: linear-gradient(180deg, rgba(26, 38, 52, 0.93) 0%, rgba(26, 38, 52, 0.88) 50%, rgba(26, 38, 52, 0.94) 100%),
                    url('../assets/images/arriereplan-bellecour.png');
  background-attachment: scroll, scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover, 100% auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 !important; /* Elegant default/mobile padding */
}

@media (min-width: 992px) {
  #cta-contact {
    padding: 7.5rem 0 !important; /* Premium responsive desktop padding */
  }
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section--dark .section__subtitle {
  color: rgba(250, 250, 247, 0.6);
}

/* ─── Editorial Section Headers & Depth ─── */
.editorial-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 2;
  text-align: left;
}

@media (min-width: 1024px) {
  .editorial-header {
    grid-template-columns: 1.2fr 3fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.editorial-header__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .editorial-header__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-top: 0.25rem;
    padding-left: 2rem;
    position: relative;
  }
  .editorial-header__meta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 100px;
    width: 1.5px;
    background: var(--gold);
  }
  .editorial-header__meta::after {
    content: "";
    position: absolute;
    left: -3.25px;
    top: 105px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
  }
}

.editorial-header__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 200;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0.65;
  line-height: 0.8;
  letter-spacing: -0.04em;
  transition: color 0.6s var(--transition-smooth), -webkit-text-stroke 0.6s var(--transition-smooth), opacity 0.6s var(--transition-smooth);
}

.editorial-header:hover .editorial-header__number {
  color: var(--gold);
  -webkit-text-stroke-color: transparent;
  opacity: 1;
}

.editorial-header__line {
  display: none !important; /* Replaced by meta vertical line with dot */
}

.editorial-header__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--navy);
}

.section--dark .editorial-header__label {
  color: var(--gold-light);
}

.editorial-header__content {
  text-align: left;
}

@media (min-width: 1024px) {
  .editorial-header__content {
    border-left: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(164, 139, 91, 0.25), transparent) 1 100%;
    padding-left: 3.5rem;
  }
}

.editorial-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.editorial-header__separator {
  width: 45px;
  height: 1.5px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0;
}

.section--dark .editorial-header__title {
  color: var(--white);
}

.section--dark .editorial-header__separator {
  background: var(--gold-light);
}

.editorial-header__subtitle {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 750px;
}

.section--dark .editorial-header__subtitle {
  color: rgba(250, 250, 247, 0.7);
}

/* Background Watermarks for depth (parallax outline effect) */
.bg-watermark {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 16vw;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(164, 139, 91, 0.05);
  color: transparent;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: watermark-float 12s ease-in-out infinite alternate;
}

.section--dark .bg-watermark {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
}

@keyframes watermark-float {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(18px); }
}


/* ═══════════════════════════════════════════════
   EXPERTISE SECTION — Premium Redesign
   Split layout per notaire
   ═══════════════════════════════════════════════ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.expertise-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.expertise-card:hover .expertise-card__icon {
  background: var(--gold);
}

.expertise-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  transition: color var(--transition-base);
}

.expertise-card:hover .expertise-card__icon svg {
  color: var(--white);
}

.expertise-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.expertise-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expertise-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--transition-fast);
}

.expertise-card__link:hover {
  gap: 0.75rem;
}

.expertise-card__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  overflow: visible !important;
}



/* ═══════════════════════════════════════════════
   NOTAIRE PROFILES — with logo overlay
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   NOTAIRE PROFILES — with logo overlay
   ═══════════════════════════════════════════════ */
/* #etude-expertises custom background removed to allow clean class alternating */

.notaires-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .notaires-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.notaire-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(164, 139, 91, 0.12);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  transition: all var(--transition-base);
}

.notaire-card:hover {
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(164, 139, 91, 0.05);
  transform: translateY(-4px);
  border-color: rgba(164, 139, 91, 0.3);
}

.notaire-card__top-split {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}

@media (min-width: 640px) {
  .notaire-card__top-split {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
}

.notaire-card__left-content {
  flex: 1;
}

.notaire-card__maitre-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}

.notaire-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.notaire-card__specialty {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.notaire-card__bio-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.notaire-card__right-photo {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1 / 1.2;
  border-radius: 16px;
  overflow: hidden;
  align-self: center;
  border: none;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .notaire-card__right-photo {
    align-self: flex-start;
    flex-shrink: 0;
  }
}

.notaire-card__right-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-smooth);
}

.notaire-card:hover .notaire-card__right-photo img {
  transform: scale(1.04);
}

/* Centered section divider with lines on both sides */
.notaire-card__section-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.notaire-card__section-divider::before,
.notaire-card__section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(164, 139, 91, 0.18);
}

.notaire-card__section-divider span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.notaire-card__divider-line {
  display: none; /* Hide old right-only line */
}

/* Expertises Grid inside Card */
.notaire-card__expertises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.notaire-card__expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.notaire-card__expertise-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.notaire-card__expertise-icon svg {
  width: 28px;
  height: 28px;
}

.notaire-card__expertise-item:hover .notaire-card__expertise-icon {
  transform: translateY(-2px);
  color: var(--gold-light);
}

.notaire-card__expertise-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .notaire-card__expertises-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .notaire-card__expertise-item {
    position: relative;
  }
  .notaire-card__expertise-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(164, 139, 91, 0.15);
  }
}

/* Quote Section */
.notaire-card__quote-section {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: auto;
}

.notaire-card__quote-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--gold-light);
  font-weight: 700;
  align-self: flex-start;
}

.notaire-card__quote-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy-dark);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   INFO BAR / STATS
   ═══════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   HORAIRES & INFOS PRATIQUES
   ═══════════════════════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.info-block__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.info-block__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.info-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.info-block__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}

.horaires-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.horaires-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.horaires-table td:last-child {
  text-align: right;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════
   GOOGLE MAP
   ═══════════════════════════════════════════════ */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

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

/* ═══════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(164, 139, 91, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-light);
  letter-spacing: 0.5px;
}

.faq-category-title:first-of-type {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer__inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   FOOTER — Premium with frames and depth
   ═══════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--navy-900);
  color: rgba(250, 250, 247, 0.7);
  overflow: hidden;
}

/* Gold bar at top of footer */
.footer__gold-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
}

/* Centered logo badge at top of footer */
.footer__logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 0;
  position: relative;
  z-index: 2;
}

.footer__logo-badge::before,
.footer__logo-badge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(164, 139, 91, 0.3));
  max-width: 300px;
}

.footer__logo-badge::after {
  background: linear-gradient(90deg, rgba(164, 139, 91, 0.3), transparent);
}

.footer__logo-badge img {
  height: 75px;
  width: auto;
  opacity: 0.9;
}

/* Background decorative frames */
.footer__bg-frames {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer__bg-frames::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  bottom: 60px;
  border: 1px solid rgba(164, 139, 91, 0.06);
  border-radius: 4px;
}

.footer__bg-frames::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 60px;
  right: 60px;
  bottom: 80px;
  border: 1px solid rgba(164, 139, 91, 0.04);
  border-radius: 4px;
}

.footer__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(250, 250, 247, 0.5);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer__marianne {
  height: 32px;
  width: auto;
  margin-top: 1rem;
  opacity: 0.7;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  color: rgba(250, 250, 247, 0.5);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(250, 250, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 247, 0.5);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(164, 139, 91, 0.1);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

/* Footer map */
.footer__map {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(164, 139, 91, 0.15);
  aspect-ratio: 21/6;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) brightness(0.85);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(250, 250, 247, 0.35);
}

.footer__bottom a {
  color: rgba(250, 250, 247, 0.35);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--gold-light);
}


/* ═══════════════════════════════════════════════
   ACTUALITES / BLOG SECTION (homepage preview)
   ═══════════════════════════════════════════════ */
/* ─── LinkedIn Feed Integration (Homepage) ─── */
.linkedin-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 1023px) {
  .linkedin-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .linkedin-feed {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.linkedin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.linkedin-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.linkedin-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}

.linkedin-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--cream-warm);
  padding: 4px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.linkedin-card__author-info {
  flex-grow: 1;
}

.linkedin-card__author-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.linkedin-card__author-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.2;
}

.linkedin-card__time {
  font-size: 0.7rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.15rem;
}

.linkedin-card__follow-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.linkedin-card:hover .linkedin-card__follow-btn {
  background: var(--gold-50);
}

.linkedin-card__body {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.linkedin-card__text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Custom CSS Graphic mockups for premium look */
.linkedin-card__graphic {
  position: relative;
  border-radius: var(--radius-md);
  height: 180px;
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.linkedin-card__graphic--post1 {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-deeper));
  border: 1px solid rgba(164, 139, 91, 0.2);
}

.linkedin-card__graphic--post2 {
  background: linear-gradient(135deg, var(--navy-deeper), #253344);
  border: 1px solid rgba(164, 139, 91, 0.2);
}

.linkedin-card__graphic--post3 {
  background: linear-gradient(135deg, #253344, var(--navy-dark));
  border: 1px solid rgba(164, 139, 91, 0.2);
}

.graphic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(164, 139, 91, 0.15), transparent 70%);
  z-index: 1;
}

.graphic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.graphic-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

.graphic-quote {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  margin: auto 0;
}

.graphic-brand {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

.linkedin-card__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.linkedin-card__reactions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.reaction-icons {
  letter-spacing: -0.1em;
}

.reaction-count {
  font-weight: 600;
}

.linkedin-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.linkedin-card__action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.linkedin-card:hover .linkedin-card__action-btn {
  color: var(--navy);
}

.linkedin-card__action-btn:hover {
  color: var(--gold) !important;
}

.linkedin-card__action-btn svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 3rem);
  max-width: 600px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transition: transform var(--transition-smooth);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-banner__text a {
  color: var(--gold);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }

/* Gold shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #d4c08f, var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ═══════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 1rem 0;
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb__sep {
  color: var(--silver-light);
  font-size: 0.65rem;
}

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  background: var(--navy-deeper);
  padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
  text-align: center;
  color: var(--cream);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(250, 250, 247, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   BLOG / ACTUALITES
   ═══════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 1.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .header__actions .social-link {
    display: none;
  }

  .notaires-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 4rem;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__info-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn--lg {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Contact page two-column layout */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: 1fr 1fr"] > .form-group {
    grid-column: span 1;
  }


  .footer__bg-frames::before,
  .footer__bg-frames::after {
    display: none;
  }

  .footer__map {
    aspect-ratio: 16/9;
  }

  .intro-frame {
    padding: 3rem;
    background: radial-gradient(circle, rgba(244, 239, 230, 0.85) 0%, rgba(244, 239, 230, 0) 70%);
  }

  .intro-logo {
    width: 90px;
  }
}

/* ─── Print ─── */
@media print {
  .header, .footer, .cookie-banner, .mobile-nav, .intro-overlay {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
}

/* ═══════════════════════════════════════════════
   PRICING TABS & DOT LEADERS (tarifs.html)
   ═══════════════════════════════════════════════ */
.tarif-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.tarif-tab-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.tarif-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(164, 139, 91, 0.03);
}

.tarif-tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.tarif-tab-content {
  animation: tabFadeIn 0.5s ease forwards;
}

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

.pricing-card {
  background: var(--cream-warm); /* Same warm cream as homepage alternating sections */
  border: 1px solid rgba(164, 139, 91, 0.22); /* Subtle gold-tinted paper edge */
  border-top: 4px solid var(--gold); /* Gold header band typical of professional notary folders */
  border-radius: 2px; /* Crisp, clean paper cut corners */
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 15px 35px rgba(164, 139, 91, 0.05), /* Warm ambient glow */
    /* Stacked paper sheets effect underneath */
    0 4px 0 -2px var(--cream-warm),
    0 4px 0 -1px rgba(164, 139, 91, 0.15),
    0 8px 0 -4px var(--cream-warm),
    0 8px 0 -3px rgba(164, 139, 91, 0.1),
    0 1px 0px rgba(255, 255, 255, 0.8) inset;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-6px); /* Lift the main sheet */
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.03),
    0 30px 60px rgba(164, 139, 91, 0.08), /* Soft warm shadow below the lifted stack */
    /* Stacked sheets spread out slightly as they float */
    0 10px 0 -2px var(--cream-warm),
    0 10px 0 -1px rgba(164, 139, 91, 0.12),
    0 16px 0 -4px var(--cream-warm),
    0 16px 0 -3px rgba(164, 139, 91, 0.08),
    0 1px 0px rgba(255, 255, 255, 0.8) inset;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pricing-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}

.pricing-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-dark);
  max-width: 70%;
  line-height: 1.5;
}

.pricing-name small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 0.25rem;
}

.pricing-dots {
  flex-grow: 1;
  border-bottom: 1.5px dotted rgba(164, 139, 91, 0.25);
  margin: 0 1rem;
  align-self: stretch;
  position: relative;
  top: -4px;
}

.pricing-price {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
  line-height: 1.4;
}

.pricing-price small {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 767px) {
  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .pricing-dots {
    display: none;
  }
  .pricing-name {
    max-width: 100%;
  }
  .pricing-price {
    text-align: left;
    margin-top: 0.25rem;
  }
}

/* ═══════════════════════════════════════════════
   GOOGLE REVIEWS SECTION (#reviews)
   ═══════════════════════════════════════════════ */
.reviews-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .reviews-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Dashboard left card */
.reviews-dashboard {
  flex: 1;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(164, 139, 91, 0.12);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .reviews-dashboard {
    max-width: 300px;
    flex-shrink: 0;
  }
}

.reviews-dashboard__google-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-dashboard__google-icon svg {
  width: 32px;
  height: 32px;
}

.reviews-dashboard__rating {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.reviews-dashboard__rating span {
  font-size: 1.25rem;
  color: var(--gold);
  margin-left: 0.5rem;
  font-weight: 500;
}

.reviews-dashboard__stars {
  display: inline-flex;
  gap: 4px;
}

.reviews-dashboard__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.reviews-dashboard__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reviews-dashboard__count {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: -0.75rem;
}

.reviews-dashboard__divider {
  width: 60px;
  height: 1px;
  background: rgba(164, 139, 91, 0.18);
  border: none;
}

.reviews-dashboard__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.reviews-dashboard__stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.reviews-dashboard__stat-value svg {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.reviews-dashboard__stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Slider column right */
.reviews-slider-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0; /* Important for flex child with scroll */
}

/* Header summary centered */
.reviews-slider-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.reviews-slider-header__stars {
  display: inline-flex;
  gap: 4px;
}

.reviews-slider-header__stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.reviews-slider-header__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.reviews-slider-header__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* Carousel container layout */
.reviews-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.reviews-slider-btn {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 10;
}

.reviews-slider-btn:hover {
  color: var(--gold);
  transform: scale(1.15);
}

.reviews-slider-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: visible !important;
}

/* Horizontal scroll snap track */
.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide Firefox scrollbar */
  width: 100%;
  padding: 0.5rem 0.25rem;
}

.reviews-slider-track::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

/* Card Wrapper responsive sizes */
.review-card-wrapper {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 600px) {
  .review-card-wrapper {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

/* Review Card premium design */
.review-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(164, 139, 91, 0.1);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(164, 139, 91, 0.25);
}

.review-card__quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.5;
  color: rgba(164, 139, 91, 0.15);
  font-weight: 700;
  margin-bottom: -0.5rem;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy-dark);
  flex-grow: 1;
}

.review-card__user-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-50);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(164, 139, 91, 0.15);
  flex-shrink: 0;
}

.review-card__user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.review-card__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.review-card__project {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.review-card__footer-line {
  border-top: 1px solid rgba(164, 139, 91, 0.08);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-card__verified {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #2e7d32;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-card__verified svg {
  width: 14px;
  height: 14px;
}


/* ═══════════════════════════════════════════════
   WELCOME & ENGAGEMENTS SECTION (#welcome-section)
   ═══════════════════════════════════════════════ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .welcome-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 5rem;
  }
}

.welcome-text {
  display: flex;
  flex-direction: column;
}

.welcome-title {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 2.15rem;
  color: var(--navy-dark);
  margin-bottom: 2.25rem;
  position: relative;
  font-weight: 700;
  padding: 0.5rem 2.25rem;
  border-top: 1.5px solid rgba(164, 139, 91, 0.25);
  border-bottom: 1.5px solid rgba(164, 139, 91, 0.25);
  letter-spacing: 0.01em;
}

.welcome-title::before, .welcome-title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

.welcome-title::before {
  left: 0.75rem;
}

.welcome-title::after {
  right: 0.75rem;
}

.welcome-paragraph {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0;
  padding-left: 0.25rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.pillar-item strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.welcome-paragraph--highlight {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--navy-dark);
  font-size: 0.98rem;
  line-height: 1.7;
}

.welcome-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.welcome-visual__card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--navy-deeper);
  border: 1.5px solid rgba(164, 139, 91, 0.35);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.welcome-visual__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
}

.welcome-visual__logo-wrap {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.welcome-visual__logo {
  width: 100%;
  height: auto;
  transition: transform var(--transition-base);
}

.welcome-visual__logo .cls-1 {
  fill: #ffffff !important; /* Make the letters and main frame clean white */
}

.welcome-visual__logo .cls-2 {
  fill: #a48b5b !important; /* Keep circles gold */
  stroke: #a48b5b !important;
}

.welcome-visual__card:hover .welcome-visual__logo {
  transform: scale(1.05);
}

.welcome-visual__location {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.welcome-visual__location span {
  font-weight: 500;
  color: var(--gold-light);
}

.location-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Subtle luxury card geometric background pattern */
.welcome-visual__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  z-index: 1;
  pointer-events: none;
}

/* Engagements Blocks */
.engagements-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  color: var(--navy-dark);
  margin-bottom: 3rem;
  font-weight: 700;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
}

.engagement-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(164, 139, 91, 0.35);
}

.engagement-card__icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1.5px solid rgba(164, 139, 91, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--gold);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.engagement-card:hover .engagement-card__icon-wrap {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.engagement-card__icon-wrap svg {
  width: 24px;
  height: 24px;
}

.engagement-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.engagement-card__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
}


/* ═══════════════════════════════════════════════
   STATS INFOGRAPHIC SECTION (#key-figures-section)
   ═══════════════════════════════════════════════ */
.stats-infographic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .stats-infographic {
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 3.5rem;
  }
}

/* Left Panel: Solid Navy Box */
.stats-hero-box {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  border-right: 4.5px solid var(--gold);
  padding: 3.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .stats-hero-box {
    border-right: none;
    border-bottom: 4.5px solid var(--gold);
    padding: 3rem 2rem;
  }
}

.stats-hero-box__content {
  position: relative;
  z-index: 2;
}

.stats-hero-box__title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: var(--cream);
}

.stats-hero-box__decor {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
                    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
                    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
                    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
                    linear-gradient(60deg, rgba(164, 139, 91, 0.5) 25%, transparent 25.5%, transparent 75%, rgba(164, 139, 91, 0.5) 75.5%, rgba(164, 139, 91, 0.5)),
                    linear-gradient(60deg, rgba(164, 139, 91, 0.5) 25%, transparent 25.5%, transparent 75%, rgba(164, 139, 91, 0.5) 75.5%, rgba(164, 139, 91, 0.5));
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
  pointer-events: none;
}

/* Middle Panel: Key Numbers List */
.stats-numbers-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}

.stats-number-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.stats-number-item__num-wrap {
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.stats-number-item__num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 0.9;
  font-weight: 700;
  font-style: italic;
}

.stats-number-item__text-wrap {
  display: flex;
  flex-direction: column;
}

.stats-number-item__title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.stats-number-item__desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Right Panel: Satisfaction Meters */
.stats-satisfaction {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-satisfaction__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy-dark);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1.5px solid var(--gold-50);
  padding-bottom: 1.25rem;
}

.stats-satisfaction__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.stats-satisfaction__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stats-satisfaction__value-box {
  width: 68px;
  height: 56px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gold);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.stats-satisfaction__item:hover .stats-satisfaction__value-box {
  transform: scale(1.05);
}

.stats-satisfaction__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-dark);
  line-height: 1.45;
}


\n
/* ═══════════════════ NOTAIRES GRID (EDITORIAL) ═══════════════════ */
.notaires-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 4rem auto 0;
  max-width: 1200px;
  border-top: 1px solid rgba(164, 139, 91, 0.2);
}

.notaires-grid > .notaire-card:first-child {
  border-right: 1px solid rgba(164, 139, 91, 0.22) !important;
  padding-right: 3rem !important;
  padding-top: 4rem !important;
  padding-bottom: 3rem !important;
  padding-left: 0 !important;
}

.notaires-grid > .notaire-card:last-child {
  border-right: none !important;
  padding-left: 3rem !important;
  padding-top: 4rem !important;
  padding-bottom: 3rem !important;
  padding-right: 0 !important;
}

.notaire-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.notaires-grid > .notaire-card,
.notaires-grid > .notaire-card:hover {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.notaire-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  height: 220px;
  position: relative;
}

.notaire-card__header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
}

.notaire-card__maitre-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.notaire-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  color: var(--navy-dark);
  line-height: 1.1;
  margin-bottom: 0;
  font-weight: 500;
}

.notaire-card__photo-container {
  position: relative;
  width: 170px;
  height: 215px;
  flex-shrink: 0;
  margin-bottom: -1px;
  z-index: 2;
  overflow: visible;
}

.notaire-card__photo-cutout {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 12px rgba(26, 38, 52, 0.22));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.notaire-card:hover .notaire-card__photo-cutout {
  transform: translateY(-6px);
  filter: drop-shadow(0 15px 20px rgba(26, 38, 52, 0.35));
}

.notaire-card__line-separator {
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.notaire-card__details {
  display: flex;
  flex-direction: column;
}

.notaire-card__specialty {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.notaire-card__bio-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.notaire-card__expertises-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.notaire-card__expertises-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
}

.notaire-card__expertise-item {
  flex: 1 1 0%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--navy-dark);
  line-height: 1.35;
  padding: 0 0.5rem;
  position: relative;
  word-wrap: break-word;
}

.notaire-card__expertise-item:first-child {
  padding-left: 0;
}

.notaire-card__expertise-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: rgba(164, 139, 91, 0.22);
}

.notaire-card__quote-section {
  margin-top: 3rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.notaire-card__quote-mark {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 0.8;
  margin-top: 2px;
  font-weight: 600;
}

.notaire-card__quote-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 992px) {
  .notaires-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 600px;
  }
  .notaires-grid > .notaire-card:first-child {
    border-right: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(164, 139, 91, 0.2) !important;
    padding-bottom: 4rem !important;
  }
  .notaires-grid > .notaire-card:last-child {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .notaire-card__top {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    height: 150px !important;
    gap: 1rem !important;
  }
  .notaire-card__header-text {
    align-items: flex-start !important;
    padding-bottom: 0.25rem !important;
    order: unset !important;
  }
  .notaire-card__photo-container {
    align-self: flex-end !important;
    width: 105px !important;
    height: 145px !important;
    margin-bottom: -1px !important;
    order: unset !important;
  }
  .notaire-card__name {
    font-size: clamp(1.3rem, 5.5vw, 1.75rem) !important;
    line-height: 1.15 !important;
  }
  .notaire-card__expertises-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .notaire-card__expertise-item {
    padding: 0;
  }
  .notaire-card__expertise-item:not(:last-child)::after {
    display: none !important;
  }
}

/* ─── Editorial Key Figures (Modern Stats on Left) ─── */
.editorial-stats {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 3.5rem;
  width: 100%;
}

.editorial-stat {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 0;
  transition: transform var(--transition-base);
}

.editorial-stat:hover {
  transform: translateX(4px);
}

.editorial-stat__number {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 4px 10px rgba(164, 139, 91, 0.08);
  margin-bottom: 0.35rem;
  display: block;
}

.editorial-stat__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.editorial-stat__desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 250px;
}

@media (max-width: 1023px) {
  .editorial-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    background: var(--cream-warm);
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
  }
  .editorial-stat {
    flex: 1 1 220px;
  }
  .editorial-stat__desc {
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   EXPERTISES PAGE — Premium Showcase Design
   ═══════════════════════════════════════════════════════════ */

/* --- Expertise Grid (Bento/Magazine) --- */
.expertise-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expertise-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.expertise-showcase-item:nth-child(even) {
  direction: rtl;
}

.expertise-showcase-item:nth-child(even) > * {
  direction: ltr;
}

/* --- Visual Panel (icon side) --- */
.expertise-showcase-item__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem;
}

/* Alternating backgrounds */
.expertise-showcase-item:nth-child(odd) .expertise-showcase-item__visual {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
}
.expertise-showcase-item:nth-child(even) .expertise-showcase-item__visual {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
}

/* Decorative grain overlay */
.expertise-showcase-item__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Decorative corner lines */
.expertise-showcase-item__visual::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255,255,255,0.12);
  top: 2rem;
  left: 2rem;
  border-right: none;
  border-bottom: none;
  z-index: 1;
}

.expertise-showcase-item__icon-wrapper {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}

.expertise-showcase-item:hover .expertise-showcase-item__icon-wrapper {
  transform: scale(1.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.expertise-showcase-item__icon-wrapper svg {
  width: 56px;
  height: 56px;
  stroke: var(--white);
  stroke-width: 1.4;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.expertise-showcase-item:nth-child(even) .expertise-showcase-item__icon-wrapper svg {
  stroke: var(--navy-deeper);
}

/* --- Number floating --- */
.expertise-showcase-item__number {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.08;
  color: var(--white);
  z-index: 1;
  user-select: none;
}

.expertise-showcase-item:nth-child(even) .expertise-showcase-item__number {
  right: auto;
  left: 2rem;
}

/* --- Content Panel --- */
.expertise-showcase-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4.5rem;
  position: relative;
}

.expertise-showcase-item:nth-child(odd) .expertise-showcase-item__content {
  background: var(--white);
}
.expertise-showcase-item:nth-child(even) .expertise-showcase-item__content {
  background: var(--cream-warm);
}

.expertise-showcase-item__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.expertise-showcase-item__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.expertise-showcase-item__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.expertise-showcase-item__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}

.expertise-showcase-item__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.expertise-showcase-item__keyword {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--gold-50);
  color: var(--gold-dark);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.expertise-showcase-item:hover .expertise-showcase-item__keyword {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.expertise-showcase-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  padding: 0.65rem 0;
  border-bottom: 1.5px solid transparent;
}

.expertise-showcase-item__cta:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.expertise-showcase-item__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  overflow: visible;
  flex-shrink: 0;
}

.expertise-showcase-item__cta:hover svg {
  transform: translateX(4px);
}

/* --- Separator line between items --- */
.expertise-showcase-item + .expertise-showcase-item {
  border-top: 1px solid var(--border);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .expertise-showcase-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .expertise-showcase-item:nth-child(even) {
    direction: ltr;
  }
  .expertise-showcase-item__visual {
    min-height: 240px;
  }
  .expertise-showcase-item__content {
    padding: 2.5rem 2rem;
  }
  .expertise-showcase-item__title {
    font-size: 2rem;
  }
  .expertise-showcase-item__number {
    font-size: 4rem;
    bottom: 1rem;
    right: 1.5rem;
  }
  .expertise-showcase-item:nth-child(even) .expertise-showcase-item__number {
    left: 1.5rem;
    right: auto;
  }
}

@media (max-width: 576px) {
  .expertise-showcase-item__visual {
    min-height: 180px;
    padding: 2rem;
  }
  .expertise-showcase-item__icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .expertise-showcase-item__icon-wrapper svg {
    width: 40px;
    height: 40px;
  }
  .expertise-showcase-item__content {
    padding: 2rem 1.5rem;
  }
  .expertise-showcase-item__title {
    font-size: 1.65rem;
  }
  .expertise-showcase-item__visual::after {
    width: 50px;
    height: 50px;
    top: 1rem;
    left: 1rem;
  }
}

/* --- Intro paragraph for expertises --- */
.expertise-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.expertise-intro__line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border: none;
}

.expertise-intro__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
}


/* ------------------- BLOG & LATEST ARTICLES STYLES ------------------- */
.latest-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 0 auto;
}

.latest-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.latest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(164, 139, 91, 0.08);
}

.latest-card-image {
  position: relative;
  height: 200px;
  background: var(--cream-warm);
  overflow: hidden;
}

.latest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.latest-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.latest-card-category {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latest-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.latest-card-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.latest-card-title a:hover {
  color: var(--gold);
}

.latest-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.latest-card-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.latest-card-link:hover {
  color: var(--gold);
}
