
    /* ═══════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════ */
    :root {
      --gold: #BFA06A;
      --gold-light: #D4B882;
      --gold-pale: #EDE0C8;
      --charcoal: #2A2725;
      --charcoal-soft: #3D3A36;
      --cream: #F9F5EE;
      --cream-warm: #F3EDE1;
      --white: #FDFAF5;
      --text: #3D3A36;
      --text-light: #7A7468;
      --border: rgba(191, 160, 106, 0.25);
      --serif: 'EB Garamond', Georgia, serif;
      --sans: 'Inter', sans-serif;
      --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--sans);
      font-weight: 300;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

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

    /* ═══════════════════════════════════════════════════
   ORNAMENT DIVIDER
═══════════════════════════════════════════════════ */
    .ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 0 auto;
    }

    .ornament::before,
    .ornament::after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }

    .ornament-diamond {
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 48px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background var(--transition), box-shadow var(--transition), height var(--transition);
      background: transparent;
    }

    #navbar.scrolled {
      height: 90px;
      background: rgba(253, 250, 245, 0.97);
      box-shadow: 0 1px 0 var(--border);
      backdrop-filter: blur(10px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      height: 100%;
      cursor: pointer;
    }

    .nav-logo img {
      width: auto !important;
      height: 48px !important;
      object-fit: contain !important;
      transition: transform var(--transition), width var(--transition), height var(--transition);
      z-index: 1001;
      position: relative;
    }

    #navbar.scrolled .nav-logo img {
      height: 40px !important;
    }

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

    .nav-center li {
      position: relative;
    }

    .nav-link {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8);
      padding: 4px 0;
      cursor: pointer;
      transition: color var(--transition);
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform var(--transition);
      transform-origin: left;
    }

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

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    /* Dropdown */
    .has-dropdown {
      position: relative;
    }

    .has-dropdown::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 30px;
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 20px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--white);
      border: 1px solid var(--border);
      min-width: 240px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
      transform: translateX(-50%) translateY(-6px);
      box-shadow: 0 12px 40px rgba(42, 39, 37, 0.1);
    }

    .has-dropdown:hover .dropdown-menu {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu li {
      border-bottom: 1px solid var(--border);
    }

    .dropdown-menu li:last-child {
      border-bottom: none;
    }

    .dropdown-link {
      display: block;
      padding: 14px 24px;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
    }

    .dropdown-link:hover {
      background: var(--cream);
      color: var(--gold);
    }

    /* Language switcher */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 2px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 5px 2px;
      transition: border-color var(--transition);
    }

    .lang-btn {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      padding: 4px 10px;
      color: rgba(255, 255, 255, 0.8);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
      border-radius: 1px;
    }

    .lang-btn.active {
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: var(--transition);
    }

    /* SCROLLED STATES FOR NAVBAR */
    #navbar.scrolled .nav-logo {
      color: var(--charcoal);
    }

    #navbar.scrolled .nav-link {
      color: var(--charcoal-soft);
    }

    #navbar.scrolled .lang-switcher {
      border-color: var(--border);
    }

    #navbar.scrolled .lang-btn {
      color: var(--text-light);
    }

    #navbar.scrolled .lang-btn.active {
      background: var(--gold);
      color: var(--white);
    }

    #navbar.scrolled .hamburger span {
      background: var(--charcoal);
    }

    /* INNER PAGE NAVBAR OVERRIDES */
    #navbar.inner-page:not(.scrolled) .nav-logo {
      color: #3d3a36;
    }

    #navbar.inner-page:not(.scrolled) .nav-link {
      color: #3d3a36;
    }

    #navbar.inner-page:not(.scrolled) .lang-switcher {
      border-color: rgba(61, 58, 54, 0.3);
    }

    #navbar.inner-page:not(.scrolled) .lang-btn {
      color: rgba(61, 58, 54, 0.8);
    }

    #navbar.inner-page:not(.scrolled) .lang-btn.active {
      background: rgba(61, 58, 54, 0.1);
      color: #3d3a36;
    }

    #navbar.inner-page:not(.scrolled) .hamburger span {
      background: #3d3a36;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 100px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--white);
      z-index: 999;
      padding: 40px 32px;
      flex-direction: column;
      gap: 0;
      overflow-y: auto;
      transition: top var(--transition);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-nav-item {
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      font-family: var(--sans);
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text);
      cursor: pointer;
      transition: color var(--transition);
    }

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

    .mobile-nav-sub {
      padding: 12px 0 12px 20px;
      font-size: 0.72rem;
      color: var(--text-light);
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: color var(--transition);
    }

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

    /* ═══════════════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════════════ */
    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    /* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
    #page-home .hero {
      min-height: 100vh;
      background: var(--charcoal);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(191, 160, 106, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 60%, rgba(191, 160, 106, 0.05) 0%, transparent 60%);
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(90deg,
          rgba(191, 160, 106, 0.04) 0px,
          rgba(191, 160, 106, 0.04) 1px,
          transparent 1px,
          transparent 120px);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 0 32px;
      padding-top: 120px;
    }

    .hero-eyebrow {
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 8vw, 5.5rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-family: var(--sans);
      font-size: 0.9rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: rgba(253, 250, 245, 0.6);
      margin-bottom: 52px;
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }

    .hero-ctas {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    }

    .btn-primary {
      display: inline-block;
      padding: 15px 40px;
      background: var(--gold);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: background var(--transition), transform var(--transition);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-outline {
      display: inline-block;
      padding: 14px 40px;
      border: 1px solid rgba(191, 160, 106, 0.5);
      color: rgba(253, 250, 245, 0.8);
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color var(--transition), color var(--transition), background var(--transition);
    }

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

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
    }

    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(253, 250, 245, 0.4);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(191, 160, 106, 0.6), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.4;
        transform: scaleY(1);
      }

      50% {
        opacity: 1;
        transform: scaleY(0.7);
      }
    }

    /* ═══════════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════════ */
    section {
      padding: 100px 48px;
    }

    .section-label {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 6vw, 3.5rem);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.15;
    }

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

    .section-subtitle {
      font-family: var(--sans);
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 560px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .text-center {
      text-align: center;
    }

    .text-center .section-subtitle {
      margin: 0 auto;
    }

    .section-compact {
      padding: 80px 48px;
    }

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

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    /* ═══════════════════════════════════════════════════
   HOME — PROCESS SECTION
═══════════════════════════════════════════════════ */
    .process-section {
      background: var(--cream);
    }

    .process-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .process-header .ornament {
      margin-top: 24px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      position: relative;
    }

    .process-step {
      background: var(--white);
      padding: 40px 28px;
      position: relative;
      transition: background var(--transition), transform var(--transition);
    }

    .process-step:hover {
      background: var(--charcoal);
      transform: translateY(-4px);
    }

    .process-step:hover .step-num,
    .process-step:hover .step-title,
    .process-step:hover .step-body {
      color: var(--white);
    }

    .process-step:hover .step-line {
      background: var(--gold);
    }

    .step-num {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--gold-pale);
      line-height: 1;
      margin-bottom: 20px;
      transition: color var(--transition);
    }

    .step-line {
      width: 30px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 18px;
      transition: background var(--transition);
    }

    .step-title {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 12px;
      transition: color var(--transition);
    }

    .step-body {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.7;
      transition: color var(--transition);
    }

    /* ═══════════════════════════════════════════════════
   HOME — TESTIMONIALS
═══════════════════════════════════════════════════ */
    .testimonials-section {
      background: var(--white);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial-card {
      background: var(--cream);
      padding: 44px 36px;
      border-top: 2px solid var(--gold);
      position: relative;
    }

    .testimonial-quote {
      font-family: var(--serif);
      font-size: 3rem;
      line-height: 1;
      color: var(--gold-pale);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-text {
      font-family: var(--serif);
      font-size: 1.08rem;
      font-weight: 300;
      font-style: italic;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .testimonial-author {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ═══════════════════════════════════════════════════
   HOME — ABOUT TEASER
═══════════════════════════════════════════════════ */
    .about-teaser {
      background: var(--charcoal);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 0;
    }

    .about-teaser-text {
      padding: 100px 80px 100px 80px;
    }

    .about-teaser .section-title {
      color: var(--white);
    }

    .about-teaser .section-title em {
      color: var(--gold-light);
    }

    .about-teaser p {
      font-size: 0.88rem;
      color: rgba(253, 250, 245, 0.65);
      line-height: 1.85;
      margin: 28px 0 40px;
    }

    .about-teaser .btn-outline {
      color: rgba(253, 250, 245, 0.8);
    }

    .about-teaser-visual {
      background:
        linear-gradient(135deg, rgba(42, 39, 37, 0.8) 0%, transparent 60%),
        linear-gradient(to bottom, transparent 40%, var(--charcoal) 100%);
      position: relative;
      overflow: hidden;
      min-height: 480px;
    }

    .about-teaser-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(45deg,
          rgba(191, 160, 106, 0.06) 0px,
          rgba(191, 160, 106, 0.06) 1px,
          transparent 1px,
          transparent 40px);
    }

    .about-teaser-visual-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .founder-frame {
      border: 1px solid rgba(191, 160, 106, 0.3);
      padding: 40px;
      text-align: center;
    }

    .founder-name {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      margin-bottom: 8px;
    }

    .founder-role {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .founder-monogram {
      width: 280px;
      height: 280px;
      border: 1px solid rgba(191, 160, 106, 0.4);
      border-radius: 0%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-family: var(--serif);
      font-size: 2rem;
      font-style: italic;
      color: var(--gold);
    }

    /* ═══════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════ */
    .page-hero {
      position: relative;
      background: var(--charcoal);
      color: var(--white);
      padding: 140px 48px 100px;
      text-align: center;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(42, 39, 37, 0.65);
      z-index: 1;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      padding: 40px;
    }

    .page-hero-label {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .page-hero-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 7vw, 4.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
    }

    .page-hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    /* Services grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .service-card {
      background: var(--cream);
      padding: 56px 52px;
      position: relative;
      overflow: hidden;
      transition: background var(--transition);
    }

    .service-card:hover {
      background: var(--charcoal);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 100%;
      background: var(--gold);
      opacity: 0;
      transition: opacity var(--transition);
    }

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

    .service-icon {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-style: italic;
      color: var(--gold-pale);
      margin-bottom: 24px;
      transition: color var(--transition);
    }

    .service-card:hover .service-icon {
      color: var(--gold);
    }

    .service-title {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 16px;
      transition: color var(--transition);
    }

    .service-card:hover .service-title {
      color: var(--white);
    }

    .service-desc {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.8;
      transition: color var(--transition);
    }

    .service-card:hover .service-desc {
      color: rgba(253, 250, 245, 0.65);
    }

    /* Methodology */
    .methodology-section {
      background: var(--cream);
      padding: 100px 48px;
    }

    .methodology-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
      margin-top: 60px;
    }

    .methodology-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .method-step {
      display: flex;
      gap: 28px;
      padding: 36px 0;
      border-bottom: 1px solid var(--border);
    }

    .method-step:first-child {
      border-top: 1px solid var(--border);
    }

    .method-step-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--gold-pale);
      min-width: 40px;
      line-height: 1;
    }

    .method-step-content h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 10px;
    }

    .method-step-content p {
      font-size: 0.83rem;
      color: var(--text-light);
      line-height: 1.75;
    }

    /* Formules */
    .formules-section {
      padding: 100px 48px;
    }

    .formules-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 60px;
    }

    .formule-card {
      padding: 52px 44px;
      border: 1px solid var(--border);
      position: relative;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .formule-card:hover {
      border-color: var(--gold);
      box-shadow: 0 20px 60px rgba(191, 160, 106, 0.1);
    }

    .formule-card.featured {
      background: var(--charcoal);
      border-color: var(--gold);
    }

    .formule-badge {
      position: absolute;
      top: 24px;
      right: 24px;
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--white);
      padding: 5px 12px;
    }

    .formule-name {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .formule-card.featured .formule-name {
      color: var(--white);
    }

    .formule-tagline {
      font-size: 0.78rem;
      color: var(--gold);
      letter-spacing: 0.1em;
      margin-bottom: 28px;
    }

    .formule-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .formule-features li {
      font-size: 0.83rem;
      color: var(--text-light);
      padding-left: 20px;
      position: relative;
      line-height: 1.5;
    }

    .formule-card.featured .formule-features li {
      color: rgba(253, 250, 245, 0.65);
    }

    .formule-features li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 0.8rem;
    }

    /* ═══════════════════════════════════════════════════
   ABOUT (L'AGENCE)
═══════════════════════════════════════════════════ */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    .value-card {
      padding: 44px 36px;
      border-top: 1px solid var(--border);
    }

    .value-number {
      font-family: var(--serif);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .value-title {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 14px;
    }

    .value-desc {
      font-size: 0.83rem;
      color: var(--text-light);
      line-height: 1.8;
    }

    /* Founder section */
    .founder-section {
      background: var(--charcoal);
      padding: 100px 48px;
    }

    .founder-section .section-label {
      color: var(--gold);
    }

    .founder-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }

    .founder-portrait {
      aspect-ratio: 3/4;
      background: var(--charcoal-soft);
      position: relative;
      border: 1px solid rgba(191, 160, 106, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .founder-portrait::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg,
          rgba(191, 160, 106, 0.04) 0px,
          rgba(191, 160, 106, 0.04) 1px,
          transparent 1px,
          transparent 30px);
    }

    .portrait-initials {
      font-family: var(--serif);
      font-size: 5rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(191, 160, 106, 0.25);
      position: relative;
      z-index: 1;
    }

    .founder-bio h2 {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 300;
      margin-bottom: 8px;
    }

    .founder-bio .role {
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
    }

    .founder-bio p {
      font-size: 0.88rem;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    /* ═══════════════════════════════════════════════════
   CHARTE ÉTHIQUE
═══════════════════════════════════════════════════ */
    .charte-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 80px 48px;
    }

    .charte-intro {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 300;
      font-style: italic;
      color: var(--charcoal);
      line-height: 1.7;
      margin-bottom: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--border);
    }

    .charte-article {
      margin-bottom: 52px;
      padding-bottom: 52px;
      border-bottom: 1px solid var(--border);
    }

    .charte-article:last-child {
      border-bottom: none;
    }

    .charte-article-num {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .charte-article h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 16px;
    }

    .charte-article p {
      font-size: 0.87rem;
      color: var(--text);
      line-height: 1.85;
    }

    /* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
    .faq-section {
      padding: 80px 48px;
    }

    .faq-container {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-section-label {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--charcoal);
      margin-top: 48px;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 16px;
    }

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

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

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 24px 0;
      cursor: pointer;
      gap: 20px;
    }

    .faq-q-text {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.4;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      transition: background var(--transition), border-color var(--transition);
    }

    .faq-icon::before {
      content: '+';
      font-size: 0.85rem;
      color: var(--gold);
      line-height: 1;
      transition: transform var(--transition);
    }

    .faq-item.open .faq-icon {
      background: var(--gold);
      border-color: var(--gold);
    }

    .faq-item.open .faq-icon::before {
      content: '−';
      color: var(--white);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 400px;
    }

    .faq-answer p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.85;
      padding-bottom: 24px;
    }

    /* ═══════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 60px;
    }

    .blog-card {
      border: 1px solid var(--border);
      overflow: hidden;
      transition: box-shadow var(--transition), border-color var(--transition);
      cursor: pointer;
    }

    .blog-card:hover {
      box-shadow: 0 12px 40px rgba(42, 39, 37, 0.08);
      border-color: var(--gold);
    }

    .blog-card-thumb {
      height: 200px;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    .blog-card-thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg,
          rgba(191, 160, 106, 0.08) 0px, rgba(191, 160, 106, 0.08) 1px,
          transparent 1px, transparent 25px);
      transition: opacity var(--transition);
    }

    .blog-card-thumb-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .blog-card-cat {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      background: rgba(191, 160, 106, 0.15);
      padding: 5px 12px;
      border: 1px solid rgba(191, 160, 106, 0.2);
    }

    .blog-card-body {
      padding: 28px 28px 32px;
    }

    .blog-card-date {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .blog-card-title {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .blog-card-more {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .blog-card-more::after {
      content: '→';
      transition: transform var(--transition);
    }

    .blog-card:hover .blog-card-more::after {
      transform: translateX(4px);
    }

    /* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      margin-top: 60px;
    }

    .contact-info h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.85;
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .contact-item-icon {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.8rem;
      color: var(--gold);
    }

    .contact-item-text {
      display: flex;
      flex-direction: column;
    }

    .contact-item-text span:first-child {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .contact-item-text span:last-child {
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--charcoal);
    }

    /* Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-label {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    .form-input {
      padding: 14px 16px;
      border: 1px solid var(--border);
      background: var(--cream);
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--text);
      outline: none;
      transition: border-color var(--transition);
      -webkit-appearance: none;
      appearance: none;
    }

    .form-input:focus {
      border-color: var(--gold);
      background: var(--white);
    }

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

    .form-note {
      font-size: 0.75rem;
      color: var(--text-light);
      line-height: 1.6;
      padding: 16px;
      background: var(--cream);
      border-left: 2px solid var(--gold);
    }

    .btn-submit {
      display: inline-block;
      padding: 16px 48px;
      background: var(--charcoal);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background var(--transition);
      align-self: flex-start;
    }

    .btn-submit:hover {
      background: var(--gold);
    }

    /* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
    footer {
      background: var(--charcoal);
      padding: 80px 48px 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(191, 160, 106, 0.15);
      margin-bottom: 40px;
    }

    .footer-brand-name {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-brand-name img {
      width: 160px !important;
      height: 160px !important;
      object-fit: contain !important;
      border-radius: 6px !important;
      display: inline-block;
    }

    .footer-brand-name span {
      color: var(--gold);
    }

    .footer-tagline {
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.95rem;
      color: rgba(253, 250, 245, 0.45);
      margin-bottom: 28px;
      line-height: 1.5;
    }

    .footer-col-title {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-link {
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(253, 250, 245, 0.5);
      cursor: pointer;
      transition: color var(--transition);
    }

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(253, 250, 245, 0.3);
      letter-spacing: 0.08em;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    /* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
      z-index: 1000;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
    }

    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
      background-color: #1ebe57;
    }

    .whatsapp-float svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    /* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .nav-center,
      .lang-switcher {
        display: none !important;
      }

      .hamburger {
        display: flex !important;
      }

      #navbar {
        padding: 0 24px;
        height: 80px;
      }

      .nav-logo img {
        width: auto !important;
        height: 40px !important;
        transform: none !important;
        box-shadow: none !important;
      }

      .mobile-menu {
        top: 80px;
      }

      .process-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .process-grid .process-step:nth-child(4),
      .process-grid .process-step:nth-child(5) {
        grid-column: span 1;
      }

      .about-teaser {
        grid-template-columns: 1fr;
      }

      .about-teaser-visual {
        min-height: 300px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 64px 24px;
      }

      .section-compact {
        padding: 60px 24px !important;
      }

      .mission-grid,
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-content {
        padding: 100px 24px 0;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
      }

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

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

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

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

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

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

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

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

      .form-row {
        grid-template-columns: 1fr;
      }

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

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .page-hero {
        height: 280px;
        padding: 0 24px 40px;
      }

      #navbar {
        padding: 0 24px;
      }

      .charte-content {
        padding: 48px 24px;
      }

      .faq-section {
        padding: 60px 24px;
      }
    }
  