    /* ─────────────────────────────────────────
       RESET / BASE
    ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

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

    :root {
      --bg: #f5ecd7;
      --bg-soft: #ede2c4;
      --bg-elev: #faf2dd;
      --bg-card: #fdf6e3;
      --line: rgba(138, 101, 41, 0.16);
      --line-strong: rgba(138, 101, 41, 0.32);
      --line-gold: rgba(184, 137, 62, 0.55);
      --text: #2a1f0e;
      --text-dim: #574627;
      --text-muted: #8a7855;
      --gold-1: #8a6529;
      --gold-2: #b8893e;
      --gold-3: #a07530;
      --gold-4: #6b4e1f;
      --gold-grad: linear-gradient(135deg, #b8893e 0%, #8a6529 38%, #6b4e1f 72%, #a07530 100%);
      --gold-grad-soft: linear-gradient(135deg, rgba(184,137,62,0.18) 0%, rgba(138,101,41,0.10) 100%);
      --shadow-gold: 0 24px 60px -20px rgba(138, 101, 41, 0.35);
      --shadow-deep: 0 30px 80px -30px rgba(80, 60, 25, 0.28);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #f5ecd7;
      color: var(--text);
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      letter-spacing: -0.005em;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    ::selection {
      background: rgba(212, 175, 105, 0.3);
      color: var(--gold-1);
    }

    /* Smooth scrolling refined */
    html { scroll-padding-top: 100px; }

    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Noise overlay */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.5;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    }

    /* Typography helpers */
    .serif { font-family: 'Fraunces', 'Times New Roman', serif; letter-spacing: -0.015em; }
    .gold-text {
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      background: rgba(85, 65, 40, 0.78);
      border-bottom: 1px solid rgba(184, 137, 62, 0.18);
      transition: all 0.4s var(--ease-out);
    }
    .nav.scrolled {
      border-bottom-color: rgba(184, 137, 62, 0.38);
      box-shadow: 0 14px 44px -18px rgba(0,0,0,0.85);
    }
    .nav.scrolled .nav-inner { padding-top: 12px; padding-bottom: 12px; }
    .nav-inner { transition: padding 0.4s var(--ease-out); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px;
      max-width: 1440px;
      margin: 0 auto;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo img {
      height: 56px;
      width: auto;
      display: block;
      transition: transform 0.3s;
    }
    .nav-logo:hover img { transform: scale(1.05); }
    .nav, .nav * { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
    .brand-wordmark {
      font-family: 'Fraunces', serif !important;
      font-size: 26px;
      font-weight: 500;
      letter-spacing: 0.05em;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variation-settings: "SOFT" 50;
      transition: transform 0.3s;
      display: inline-block;
    }
    .brand-wordmark span {
      font-style: italic;
      font-weight: 400;
      margin-left: 4px;
      font-variation-settings: "SOFT" 100;
    }
    .nav-logo:hover .brand-wordmark { transform: scale(1.05); }
    .hv-wordmark {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: clamp(48px, 8vw, 88px);
      font-weight: 400;
      letter-spacing: 0.04em;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
      filter: drop-shadow(0 30px 60px rgba(212, 175, 105, 0.4));
      animation: float 7s ease-in-out infinite;
      font-variation-settings: "SOFT" 80;
    }
    .hv-wordmark span {
      font-style: italic;
      font-weight: 300;
      margin-left: 6px;
      font-variation-settings: "SOFT" 100;
    }
    .footer-wordmark {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 38px;
      font-weight: 500;
      letter-spacing: 0.05em;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 22px;
      font-variation-settings: "SOFT" 50;
    }
    .footer-wordmark span {
      font-weight: 400;
      margin-left: 0;
      font-variation-settings: "SOFT" 100;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-menu a {
      font-size: 16px;
      color: #f7eed4;
      transition: all 0.35s var(--ease-out);
      font-weight: 500;
      padding: 8px 2px;
      display: block;
      position: relative;
      letter-spacing: 0.005em;
    }
    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      bottom: 2px;
      height: 1px;
      background: var(--gold-grad);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s var(--ease-out);
    }
    .nav-menu a:hover {
      color: var(--gold-2);
    }
    .nav-menu a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      padding: 3px;
      border-radius: 999px;
      background: rgba(212, 175, 105, 0.06);
      border: 1px solid rgba(212, 175, 105, 0.18);
    }
    .lang-btn {
      appearance: none;
      background: transparent;
      border: none;
      padding: 6px 11px;
      border-radius: 999px;
      font: 500 12px/1 inherit;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      cursor: pointer;
      transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
      font-family: inherit;
    }
    .lang-btn:hover { color: var(--gold-1); }
    .lang-btn.is-active {
      color: #fdf6e3;
      background: var(--gold-grad);
    }
    .lang-switch--mobile {
      align-self: center;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      width: 100%;
      justify-content: center;
      background: transparent;
      border: none;
      padding-left: 0;
      padding-right: 0;
    }
    .lang-switch--mobile .lang-btn {
      padding: 8px 18px;
      font-size: 13px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.4s var(--ease-out);
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.005em;
      white-space: nowrap;
      font-family: inherit;
    }
    .btn svg { transition: transform 0.4s var(--ease-out); }
    .btn:hover svg { transform: translateX(3px); }
    .btn-ghost {
      background: linear-gradient(135deg, #8F5E25 0%, #FBF4A1 50%, #8F5E25 100%);
      color: #3a2810;
      font-weight: 600;
      position: relative;
      box-shadow: 0 8px 24px -10px rgba(143, 94, 37, 0.55), inset 0 1px 0 rgba(255,255,255,0.55);
      overflow: hidden;
    }
    .btn-ghost::before {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.6s ease;
    }
    .btn-ghost:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px -10px rgba(212, 175, 105, 0.6), inset 0 1px 0 rgba(255,255,255,0.5);
    }
    .btn-ghost:hover::before { left: 100%; }
    .btn-gold {
      background: linear-gradient(135deg, #8F5E25 0%, #FBF4A1 50%, #8F5E25 100%);
      color: #3a2810;
      font-weight: 600;
      box-shadow: 0 8px 24px -10px rgba(143, 94, 37, 0.55), inset 0 1px 0 rgba(255,255,255,0.55);
    }
    .btn-gold::after {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.6s ease;
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px -10px rgba(143, 94, 37, 0.65), inset 0 1px 0 rgba(255,255,255,0.65);
    }
    .btn-gold:hover::after { left: 100%; }
    .btn-outline {
      background: rgba(253, 246, 227, 0.6);
      color: var(--text);
      border: 1px solid var(--line-strong);
      backdrop-filter: blur(10px);
    }
    .btn-outline::after {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 105, 0.25), transparent);
      transition: left 0.7s ease;
    }
    .btn-outline:hover {
      border-color: var(--gold-2);
      color: var(--gold-1);
      background: rgba(212, 175, 105, 0.08);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px -12px rgba(212, 175, 105, 0.25);
    }
    .btn-outline:hover::after { left: 100%; }

    .mobile-toggle {
      display: none;
      background: rgba(253, 246, 227, 0.6);
      border: 1px solid var(--line);
      color: var(--text);
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      align-items: center;
      justify-content: center;
      transition: all 0.3s var(--ease-out);
    }
    .mobile-toggle:hover {
      border-color: var(--gold-2);
      background: rgba(212, 175, 105, 0.08);
      color: var(--gold-1);
      transform: scale(1.05);
    }
    .mobile-toggle:active { transform: scale(0.95); }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      padding: 160px 0 120px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    /* Background image — architectural, heavily tinted */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("../../images/hero-bg.jpg");
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      filter: grayscale(80%) contrast(0.95) brightness(1.15) sepia(0.25);
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    /* Vignette + tint overlay to fuse image into dark theme */
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(245,236,215,0.65) 0%, transparent 60%),
        linear-gradient(180deg, rgba(245,236,215,0.4) 0%, rgba(245,236,215,0.85) 100%),
        linear-gradient(90deg, rgba(245,236,215,0.5) 0%, transparent 50%, rgba(245,236,215,0.5) 100%);
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 700px;
      height: 700px;
      top: 5%;
      right: -15%;
      background: radial-gradient(circle, rgba(212, 175, 105, 0.14) 0%, transparent 60%);
      filter: blur(40px);
      pointer-events: none;
      animation: pulse 8s ease-in-out infinite;
      z-index: 1;
    }
    @keyframes pulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.1); }
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 72px;
      align-items: center;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      text-align: left;
    }
    .hero-content .hero-cta { justify-content: flex-start; }
    .hero-content .hero-meta { justify-content: flex-start; }
    .meta-item { text-align: left; }
    @media (max-width: 1100px) {
      .hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
      .hero-content { max-width: 100%; }
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px;
      background: rgba(253, 246, 227, 0.5);
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      font-size: 11px;
      color: var(--gold-1);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 36px;
      backdrop-filter: blur(14px) saturate(180%);
      -webkit-backdrop-filter: blur(14px) saturate(180%);
      font-weight: 500;
      position: relative;
      overflow: hidden;
    }
    .hero-tag::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 175, 105, 0.08), transparent 60%);
      pointer-events: none;
    }
    .hero-tag .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 14px var(--gold-2);
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .hero-title {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: clamp(38px, 5.6vw, 82px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
      font-variation-settings: "SOFT" 50, "opsz" 144;
    }
    .hero-title em {
      font-style: italic;
      font-weight: 400;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variation-settings: "SOFT" 100;
      position: relative;
      display: inline-block;
      padding: 0 0.08em;
      margin: 0 -0.08em;
    }
    .hero-sub {
      font-size: 19px;
      color: var(--text-dim);
      max-width: 560px;
      margin-bottom: 44px;
      line-height: 1.7;
      font-weight: 300;
      letter-spacing: 0.005em;
    }
    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }
    .hero-meta {
      display: flex;
      gap: 56px;
      margin-top: 72px;
      padding-top: 44px;
      border-top: 1px solid var(--line);
    }
    .meta-item .num {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 44px;
      font-weight: 400;
      font-variation-settings: "opsz" 144;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
    }
    .meta-item .lab {
      font-size: 10.5px;
      color: var(--text-muted);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-top: 12px;
      font-weight: 600;
    }

    /* Hero Visual — Architectural */
    .hero-visual {
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: 28px;
      overflow: hidden;
      isolation: isolate;
      background: var(--bg-elev);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .hv-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(250, 242, 221, 0.16), rgba(250, 242, 221, 0.16)),
        linear-gradient(180deg, rgba(245,236,215,0.05) 0%, rgba(245,236,215,0.0) 35%, rgba(245,236,215,0.35) 100%),
        linear-gradient(135deg, rgba(212, 175, 105, 0.08), transparent 60%),
        url("../../images/hero-frame.jpg") center center/cover no-repeat;
      filter: contrast(1.05) saturate(1.02) brightness(1.08);
    }
    .hv-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 25%, rgba(212, 175, 105, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 95%, rgba(0,0,0,0.45) 0%, transparent 55%);
      pointer-events: none;
    }
    /* Architectural lines decoration */
    .hv-arch {
      position: absolute;
      inset: 0;
      opacity: 0.14;
      mix-blend-mode: screen;
      pointer-events: none;
      mask-image: linear-gradient(180deg, #000 0%, #000 35%, transparent 70%);
      -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 35%, transparent 70%);
    }
    .hv-arch svg { width: 100%; height: 100%; }
    .hv-logo-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      padding: 0 36px 40px;
      text-align: center;
      align-items: center;
    }
    .hv-logo-wrap::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 55%;
      background: linear-gradient(180deg, transparent 0%, rgba(245,236,215,0.75) 60%, rgba(245,236,215,0.95) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .hv-logo-wrap > * { position: relative; z-index: 1; }
    .hv-logo-wrap img {
      width: 55%;
      max-width: 320px;
      filter: drop-shadow(0 30px 80px rgba(212, 175, 105, 0.45));
      animation: float 7s ease-in-out infinite;
    }
    .hv-wordmark {
      filter: drop-shadow(0 14px 40px rgba(0,0,0,0.55)) drop-shadow(0 0 30px rgba(212, 175, 105, 0.25));
    }
    .hv-tagline {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-style: italic;
      font-size: 17px;
      color: var(--gold-1);
      letter-spacing: 0.04em;
      opacity: 0.92;
      font-variation-settings: "SOFT" 100;
      text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-14px) rotate(-1.5deg); }
    }
    /* Floating chips on hero visual */
    .hv-chip {
      position: absolute;
      padding: 10px 16px;
      background: rgba(245, 236, 215, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid var(--line-strong);
      border-radius: 14px;
      font-size: 12px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 14px 40px -10px rgba(0,0,0,0.6);
      animation: chipFloat 6s ease-in-out infinite;
    }
    .hv-chip .ic {
      width: 28px; height: 28px;
      border-radius: 8px;
      background: var(--gold-grad-soft);
      border: 1px solid var(--line-strong);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-1);
    }
    .hv-chip-1 { top: 8%; left: 5%; animation-delay: 0s; }
    .hv-chip-2 { top: 8%; right: 5%; animation-delay: 2s; }
    .hv-chip-3 { bottom: 8%; left: 5%; animation-delay: 4s; }
    @keyframes chipFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* ─────────────────────────────────────────
       SECTION COMMON
    ───────────────────────────────────────── */
    section { padding: 140px 0; position: relative; }
    .sec-head { margin-bottom: 80px; max-width: 760px; }
    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      color: var(--gold-2);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 24px;
      font-weight: 600;
    }
    .sec-title {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
      font-variation-settings: "SOFT" 50, "opsz" 144;
    }
    .sec-title em {
      font-style: italic;
      font-weight: 400;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variation-settings: "SOFT" 100;
      padding: 0 0.08em;
      margin: 0 -0.08em;
    }
    .sec-lead {
      font-size: 18px;
      color: var(--text-dim);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────────
       ABOUT
    ───────────────────────────────────────── */
    .about { border-top: 1px solid var(--line); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 80px;
      align-items: center;
    }
    /* Real photo — client accompaniment */
    .about-img {
      aspect-ratio: 4 / 5;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      background: #fbf2d8 url("../../images/about-photo.jpg") center/cover no-repeat;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-deep);
      filter: contrast(1.04) saturate(1.02) brightness(1.08);
    }
    .about-img::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(250, 242, 221, 0.16), rgba(250, 242, 221, 0.16)),
        linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.65) 100%),
        linear-gradient(135deg, rgba(212, 175, 105, 0.06), transparent 60%);
      pointer-events: none;
    }
    .about-img-overlay {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      padding: 20px;
      background: rgba(245, 236, 215, 0.7);
      backdrop-filter: blur(20px);
      border: 1px solid var(--line-strong);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .about-img-overlay .ic {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--gold-grad);
      display: flex; align-items: center; justify-content: center;
      color: #1a1408;
      flex-shrink: 0;
    }
    .about-img-overlay .txt small {
      display: block;
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .about-img-overlay .txt strong {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 17px;
      color: var(--text);
      font-weight: 500;
      letter-spacing: -0.01em;
    }
    .about-text p {
      color: var(--text-dim);
      font-size: 16.5px;
      line-height: 1.85;
      margin-bottom: 22px;
    }
    .about-text strong { color: var(--gold-1); font-weight: 500; }
    .about-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 36px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: var(--bg-card);
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      font-size: 13px;
      color: var(--text);
      transition: all 0.25s;
    }
    .badge:hover {
      border-color: var(--gold-2);
      transform: translateY(-2px);
    }
    .badge svg { color: var(--gold-2); }

    /* ─────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────── */
    .services {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    .services::before {
      content: "";
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 80%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
      opacity: 0.4;
    }
    .services-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }
    .tab {
      padding: 11px 22px;
      border-radius: 999px;
      border: 1px solid var(--line-strong);
      font-size: 13px;
      color: var(--text);
      background: rgba(253, 246, 227, 0.5);
      cursor: pointer;
      transition: all 0.4s var(--ease-out);
      font-weight: 500;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }
    .tab::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--gold-grad-soft);
      opacity: 0;
      transition: opacity 0.4s var(--ease-out);
    }
    .tab > * { position: relative; z-index: 1; }
    .tab:hover {
      border-color: var(--gold-2);
      color: var(--gold-1);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px -10px rgba(212, 175, 105, 0.3);
    }
    .tab:hover::before { opacity: 1; }
    .tab.active {
      background: linear-gradient(135deg, #8F5E25 0%, #FBF4A1 50%, #8F5E25 100%);
      color: #3a2810;
      border-color: transparent;
      font-weight: 600;
      box-shadow: 0 8px 24px -10px rgba(143, 94, 37, 0.55), inset 0 1px 0 rgba(255,255,255,0.55);
    }
    .tab.active::before { display: none; }
    .tab.active:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 16px 36px -10px rgba(143, 94, 37, 0.65), inset 0 1px 0 rgba(255,255,255,0.65);
      color: #3a2810;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .service-card {
      padding: 42px 32px 36px;
      background: linear-gradient(145deg, var(--bg-card), rgba(250, 244, 224, 0.7));
      border: 1px solid var(--line);
      border-radius: 24px;
      transition: all 0.5s var(--ease-out);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      isolation: isolate;
    }
    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 105, 0.08), transparent 40%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }
    .service-card::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover {
      transform: translateY(-8px);
      border-color: var(--line-strong);
      background: linear-gradient(145deg, #f0e4c3, #f8efd6);
      box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(212, 175, 105, 0.06);
    }
    .service-card:hover::before { opacity: 1; }
    .service-card:hover::after { opacity: 1; }
    .service-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: var(--gold-grad-soft);
      border: 1px solid var(--line-strong);
      margin-bottom: 28px;
      color: var(--gold-1);
      position: relative;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      background: var(--gold-grad);
      color: #1a1408;
      transform: scale(1.05) rotate(-5deg);
    }
    .service-card h3 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
      font-variation-settings: "SOFT" 50, "opsz" 144;
      line-height: 1.15;
    }
    .service-card p {
      color: var(--text-dim);
      font-size: 14.5px;
      line-height: 1.7;
    }
    .service-card .arrow {
      position: absolute;
      top: 36px;
      right: 32px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(212, 175, 105, 0.08);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-2);
      opacity: 0;
      transform: translate(-8px, 8px);
      transition: all 0.3s;
    }
    .service-card:hover .arrow {
      opacity: 1;
      transform: translate(0, 0);
    }
    .service-card.is-hidden {
      opacity: 0;
      transform: scale(0.96) translateY(8px);
      pointer-events: none;
      max-height: 0;
      padding-top: 0;
      padding-bottom: 0;
      margin: 0;
      border-width: 0;
      overflow: hidden;
      transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out), border-width 0.3s ease;
    }
    .service-card {
      max-height: 800px;
      transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), opacity 0.35s var(--ease-out), max-height 0.45s var(--ease-out);
    }

    /* ─────────────────────────────────────────
       MISSION
    ───────────────────────────────────────── */
    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 60px;
    }
    .mv-card {
      padding: 56px 48px;
      border-radius: 24px;
      background:
        linear-gradient(145deg, rgba(212, 175, 105, 0.04), transparent),
        linear-gradient(145deg, var(--bg-elev), var(--bg-soft));
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      transition: all 0.4s;
    }
    .mv-card::before {
      content: "";
      position: absolute;
      top: -50%; right: -30%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(212, 175, 105, 0.08), transparent 70%);
      pointer-events: none;
    }
    .mv-card:hover {
      border-color: var(--line-strong);
      transform: translateY(-4px);
    }
    .mv-num {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 104px;
      font-weight: 300;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
      margin-bottom: 14px;
      opacity: 0.85;
      font-variation-settings: "SOFT" 100, "opsz" 144;
      font-style: italic;
      letter-spacing: -0.04em;
    }
    .mv-card h3 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 36px;
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      font-variation-settings: "SOFT" 50, "opsz" 144;
    }
    .mv-card p {
      color: var(--text-dim);
      font-size: 16px;
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    /* ─────────────────────────────────────────
       TEAM
    ───────────────────────────────────────── */
    .team {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }
    .team-card {
      text-align: center;
      padding: 40px 24px 32px;
      border-radius: 22px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }
    .team-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 80px;
      background: linear-gradient(180deg, rgba(212, 175, 105, 0.05), transparent);
    }
    .team-card:hover {
      transform: translateY(-6px);
      border-color: var(--line-strong);
      background: #f0e4c3;
    }
    .team-avatar {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      margin: 0 auto 22px;
      background: linear-gradient(135deg, #fdf7e9 0%, #f4e6c6 55%, #ead9a8 100%);
      border: 1px solid var(--line-strong);
      position: relative;
      transition: all 0.5s var(--ease-out);
      box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), 0 14px 40px -14px rgba(0,0,0,0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-style: italic;
      font-weight: 500;
      font-size: 54px;
      line-height: 1;
      letter-spacing: 0.01em;
      font-variation-settings: "SOFT" 100, "opsz" 144;
      background-clip: padding-box;
      color: var(--gold-1);
    }
    .team-avatar::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      box-shadow: inset 0 0 0 2px rgba(212, 175, 105, 0.25);
      transition: box-shadow 0.5s var(--ease-out);
      pointer-events: none;
    }
    .team-card:hover .team-avatar {
      transform: scale(1.04) translateY(-2px);
      box-shadow: 0 22px 50px -12px rgba(212, 175, 105, 0.35), inset 0 2px 0 rgba(255,255,255,0.08);
    }
    .team-card:hover .team-avatar::after {
      box-shadow: inset 0 0 0 2px rgba(212, 175, 105, 0.55);
    }
    .team-card h4 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 21px;
      font-weight: 500;
      font-variation-settings: "SOFT" 100, "opsz" 144;
      font-style: italic;
      margin: 0 0 6px;
      letter-spacing: -0.02em;
      line-height: 1.2;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      transition: transform 0.4s var(--ease-out);
      white-space: nowrap;
      text-align: center;
    }
    .team-card:hover h4 {
      transform: translateY(-2px);
    }
    .team-card .role {
      font-size: 12.5px;
      color: var(--gold-2);
      letter-spacing: 0.08em;
      font-weight: 500;
      text-transform: uppercase;
    }
    .team-card .role--plain {
      color: var(--text);
      letter-spacing: 0;
      text-transform: none;
    }
    .team-card .team-exp {
      margin: 10px auto 0;
      font-size: 13.5px;
      line-height: 1.45;
      max-width: 24ch;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .team-card .divider {
      width: 28px;
      height: 1px;
      background: var(--line-strong);
      margin: 16px auto;
      transition: width 0.4s var(--ease-out), background 0.4s ease;
    }
    .team-card:hover .divider {
      width: 56px;
      background: var(--gold-2);
    }
    .team-avatar--clickable { cursor: pointer; }
    .team-card--has-bubble { overflow: visible; z-index: 5; }
    .team-bubble {
      position: absolute;
      left: 50%;
      top: 6px;
      transform: translate(-50%, -100%) translateY(8px) scale(0.96);
      transform-origin: center bottom;
      width: max-content;
      max-width: 230px;
      padding: 14px 18px;
      border-radius: 16px;
      background: linear-gradient(135deg, #fdf7e9, #f4e6c6);
      color: #2a1f0c;
      font-size: 13.5px;
      line-height: 1.5;
      font-weight: 500;
      text-align: center;
      box-shadow: 0 18px 44px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(184, 137, 62, 0.4);
      opacity: 0;
      pointer-events: none;
      z-index: 20;
      transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    }
    .team-bubble::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -8px;
      transform: translateX(-50%) rotate(45deg);
      width: 16px;
      height: 16px;
      background: #f4e6c6;
      border-radius: 0 0 4px 0;
    }
    .team-bubble.show {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -100%) translateY(0) scale(1);
    }

    /* ─────────────────────────────────────────
       ENERGY SOLUTIONS
    ───────────────────────────────────────── */
    .energy { position: relative; }
    .energy-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 80px;
      align-items: center;
    }
    .energy-visual {
      aspect-ratio: 1 / 1;
      border-radius: 28px;
      background: #fbf2d8 url("../../images/bulb.jpg") center/cover no-repeat;
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-deep);
      filter: contrast(1.04) saturate(1.05) brightness(1.1);
    }
    .energy-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 40%, transparent 40%, rgba(0,0,0,0.28) 95%),
        linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.3) 100%);
      pointer-events: none;
    }
    .energy-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 175, 105, 0.06), transparent 60%);
      pointer-events: none;
    }
    .energy-text p {
      color: var(--text-dim);
      font-size: 16px;
      line-height: 1.85;
      margin-bottom: 22px;
    }
    .energy-text strong { color: var(--gold-1); font-weight: 500; }
    .energy-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 90px;
      padding-top: 60px;
      border-top: 1px solid var(--line);
      counter-reset: step;
    }
    .step {
      padding: 32px 22px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 18px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .step::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold-grad);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.4s;
    }
    .step:hover {
      border-color: var(--line-strong);
      transform: translateY(-4px);
      background: #f0e4c3;
    }
    .step:hover::before { transform: scaleY(1); }
    .step-num {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 42px;
      font-weight: 400;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
      margin-bottom: 20px;
      font-style: italic;
      opacity: 0.85;
      font-variation-settings: "SOFT" 100, "opsz" 144;
      letter-spacing: -0.03em;
    }
    .step h5 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 19px;
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--text);
      letter-spacing: -0.015em;
      font-variation-settings: "opsz" 144;
    }
    .step p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─────────────────────────────────────────
       REFERENCES
    ───────────────────────────────────────── */
    .references {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .ref-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ref-card {
      padding: 0;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 22px;
      position: relative;
      overflow: hidden;
      transition: all 0.5s var(--ease-out);
    }
    .ref-card:hover {
      border-color: var(--line-strong);
      transform: translateY(-8px);
      box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(212, 175, 105, 0.08);
    }
    .ref-card .ref-img svg { transition: transform 0.7s var(--ease-out), opacity 0.5s ease; }
    .ref-card:hover .ref-img svg { transform: scale(1.05); opacity: 0.75; }
    .ref-img {
      aspect-ratio: 16 / 10;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 105, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(184, 137, 62, 0.14), transparent 60%),
        linear-gradient(145deg, #ece1bf 0%, #f7eed8 50%, #fbf2d8 100%);
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      isolation: isolate;
    }
    .ref-img::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent 0, transparent 22px, rgba(212, 175, 105, 0.04) 22px, rgba(212, 175, 105, 0.04) 23px),
        repeating-linear-gradient(90deg, transparent 0, transparent 22px, rgba(212, 175, 105, 0.04) 22px, rgba(212, 175, 105, 0.04) 23px);
      pointer-events: none;
      opacity: 0.6;
      z-index: 0;
    }
    .ref-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(20, 14, 5, 0.28) 100%);
      pointer-events: none;
      z-index: 2;
    }
    .ref-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: saturate(1.05) brightness(1.08) contrast(1.02);
      transition: transform 0.7s var(--ease-out);
    }
    .ref-card:hover .ref-img img { transform: scale(1.06); }
    .ref-img svg {
      width: 100%; height: 100%;
      opacity: 0.95;
      color: var(--gold-1);
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 4px 14px rgba(138, 101, 41, 0.25));
    }
    .ref-metric {
      position: absolute;
      bottom: 14px;
      right: 18px;
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-style: italic;
      font-size: 52px;
      font-weight: 300;
      line-height: 1;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: 0.85;
      letter-spacing: -0.03em;
      font-variation-settings: "SOFT" 100, "opsz" 144;
      z-index: 3;
      pointer-events: none;
      text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    .ref-metric small {
      display: block;
      font-style: normal;
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-2);
      -webkit-text-fill-color: var(--gold-2);
      margin-top: 2px;
      font-weight: 600;
      opacity: 0.7;
    }
    .ref-img-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      padding: 6px 12px;
      background: rgba(245, 236, 215, 0.75);
      backdrop-filter: blur(10px);
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      font-size: 10px;
      color: var(--gold-1);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .ref-body {
      padding: 30px 30px 32px;
    }
    .ref-card .ref-loc {
      font-size: 11px;
      color: var(--gold-2);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .ref-card h4 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 14px;
      line-height: 1.15;
      letter-spacing: -0.02em;
      font-variation-settings: "SOFT" 50, "opsz" 144;
    }
    .ref-card p {
      color: var(--text-dim);
      font-size: 14.5px;
      line-height: 1.65;
    }
    .ref-spec {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px dashed var(--line);
      font-size: 13.5px;
      color: var(--gold-1);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* ── Carte clickable + badge "Avant / Après" ── */
    body.ba-locked { overflow: hidden; }

    /* ── Modale pages légales (mentions / confidentialité) ── */
    .legal-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s var(--ease-out);
    }
    .legal-modal.open { opacity: 1; pointer-events: auto; }
    .legal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(42, 31, 14, 0.78);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      cursor: pointer;
    }
    .legal-dialog {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1080px;
      height: calc(100vh - 64px);
      max-height: 920px;
      background: var(--bg-card);
      border-radius: 22px;
      box-shadow: 0 60px 120px -40px rgba(42, 31, 14, 0.6);
      transform: scale(0.96) translateY(20px);
      transition: transform 0.4s var(--ease-out);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .legal-modal.open .legal-dialog { transform: scale(1) translateY(0); }
    .legal-close {
      position: absolute;
      top: 18px; right: 18px;
      z-index: 10;
      width: 42px; height: 42px;
      border: 1px solid var(--line);
      background: rgba(253, 246, 227, 0.95);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 50%;
      color: var(--text);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.35s var(--ease-out);
    }
    .legal-close:hover {
      border-color: var(--line-gold);
      transform: rotate(90deg);
      color: var(--gold-1);
    }
    .legal-iframe {
      flex: 1;
      width: 100%;
      border: none;
      background: var(--bg);
      display: block;
    }
    .legal-loading {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-1);
      background: var(--bg);
      opacity: 1;
      transition: opacity 0.3s var(--ease-out);
    }
    .legal-modal.loaded .legal-loading { opacity: 0; }

    @media (max-width: 720px) {
      .legal-modal { padding: 12px; }
      .legal-dialog { border-radius: 16px; height: calc(100vh - 24px); }
      .legal-close { top: 12px; right: 12px; width: 36px; height: 36px; }
    }

    /* ─────────────────────────────────────────
       CONTACT
    ───────────────────────────────────────── */
    .contact { padding-bottom: 100px; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: stretch;
    }
    .contact-info h2 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: clamp(38px, 5.5vw, 72px);
      font-weight: 300;
      line-height: 1.02;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
      font-variation-settings: "SOFT" 50, "opsz" 144;
    }
    .contact-info h2 em {
      font-style: italic;
      font-weight: 400;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variation-settings: "SOFT" 100;
      padding: 0 0.08em;
      margin: 0 -0.08em;
    }
    .info-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 50px;
    }
    .info-item {
      display: flex;
      gap: 20px;
      align-items: center;
      padding: 24px;
      background: linear-gradient(145deg, var(--bg-card), rgba(250,244,224,0.7));
      border: 1px solid var(--line);
      border-radius: 18px;
      transition: all 0.4s var(--ease-out);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .info-item::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: var(--gold-grad);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.45s var(--ease-out);
    }
    .info-item:hover {
      border-color: var(--line-strong);
      transform: translateX(4px);
      background: linear-gradient(145deg, #f0e4c3, #f8efd6);
      box-shadow: 0 20px 40px -16px rgba(0,0,0,0.6);
    }
    .info-item:hover::before { transform: scaleY(1); }
    .info-item:hover .info-icon {
      background: var(--gold-grad);
      color: #1a1408;
      transform: scale(1.05) rotate(-4deg);
    }
    .info-icon {
      flex: 0 0 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--gold-grad-soft);
      border: 1px solid var(--line-strong);
      color: var(--gold-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s var(--ease-out);
    }
    .info-label {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      margin-bottom: 6px;
      font-weight: 600;
    }
    .info-value {
      font-size: 16px;
      color: var(--text);
      line-height: 1.45;
    }
    .info-value a {
      color: inherit;
      transition: color 0.2s;
    }
    .info-value a:hover { color: var(--gold-1); }
    .contact-form {
      padding: 52px 48px 44px;
      background:
        linear-gradient(145deg, rgba(212, 175, 105, 0.06), transparent 60%),
        linear-gradient(145deg, rgba(253, 246, 227, 0.85), rgba(247, 240, 222, 0.92));
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid var(--line-strong);
      border-radius: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .contact-form::before {
      content: "";
      position: absolute;
      top: -40%; right: -30%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(212, 175, 105, 0.1), transparent 70%);
      pointer-events: none;
      animation: pulse 9s ease-in-out infinite;
    }
    .contact-form::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 64px; height: 64px;
      border-top: 1px solid var(--gold-2);
      border-left: 1px solid var(--gold-2);
      border-top-left-radius: 28px;
      opacity: 0.55;
      pointer-events: none;
    }
    .form-corner-br {
      position: absolute;
      bottom: 0; right: 0;
      width: 64px; height: 64px;
      border-bottom: 1px solid var(--gold-2);
      border-right: 1px solid var(--gold-2);
      border-bottom-right-radius: 28px;
      opacity: 0.55;
      pointer-events: none;
    }
    .form-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      color: var(--gold-2);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-bottom: 18px;
      font-weight: 600;
      position: relative;
    }
    .form-eyebrow .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 10px var(--gold-2);
      animation: blink 2s ease-in-out infinite;
    }
    .contact-form h3 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-size: 36px;
      font-weight: 400;
      margin-bottom: 12px;
      letter-spacing: -0.025em;
      position: relative;
      font-variation-settings: "SOFT" 50, "opsz" 144;
      line-height: 1.1;
    }
    .contact-form h3 em {
      font-style: italic;
      font-weight: 400;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variation-settings: "SOFT" 100;
      padding: 0 0.08em;
      margin: 0 -0.08em;
    }
    .contact-form > p {
      color: var(--text-dim);
      font-size: 14.5px;
      margin-bottom: 36px;
      position: relative;
      line-height: 1.65;
    }

    /* Floating labels */
    .field {
      margin-bottom: 16px;
      position: relative;
    }
    .field input, .field select, .field textarea {
      width: 100%;
      padding: 24px 18px 10px;
      background: rgba(253, 246, 227, 0.55);
      border: 1px solid var(--line-strong);
      border-radius: 12px;
      color: var(--text);
      font-size: 15px;
      font-family: inherit;
      transition: all 0.3s var(--ease-out);
      position: relative;
      z-index: 1;
    }
    .field textarea { padding-top: 28px; padding-bottom: 14px; }
    .field input::placeholder, .field textarea::placeholder {
      color: transparent;
      transition: color 0.2s ease;
    }
    .field input:focus::placeholder, .field textarea:focus::placeholder {
      color: var(--text-muted);
      opacity: 0.5;
    }
    .field label {
      position: absolute;
      left: 19px;
      top: 18px;
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      text-transform: none;
      font-weight: 400;
      pointer-events: none;
      transition: all 0.25s var(--ease-out);
      transform-origin: left center;
      z-index: 2;
      background: transparent;
    }
    .field input:focus ~ label,
    .field input:not(:placeholder-shown) ~ label,
    .field textarea:focus ~ label,
    .field textarea:not(:placeholder-shown) ~ label,
    .field select:focus ~ label,
    .field.has-value label {
      top: 7px;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-2);
      font-weight: 600;
    }
    .field.field-select label,
    .field-select label {
      top: 7px;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-2);
      font-weight: 600;
    }
    .field-required {
      color: var(--gold-2);
      margin-left: 4px;
      font-size: 10px;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      outline: none;
      border-color: var(--gold-2);
      background: rgba(253, 246, 227, 0.85);
      box-shadow: 0 0 0 4px rgba(212, 175, 105, 0.08);
      transform: translateY(-1px);
    }
    .field textarea { resize: vertical; min-height: 130px; }
    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .field select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af69' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      padding-right: 44px;
      cursor: pointer;
    }
    .field select:focus { background-position: right 18px center; }
    .field select option { background: #f7eed8; color: var(--text); }

    .form-submit {
      width: 100%;
      justify-content: center;
      padding: 18px 24px;
      margin-top: 8px;
      font-size: 15px;
      letter-spacing: 0.02em;
    }
    .form-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px dashed var(--line);
      flex-wrap: wrap;
    }
    .form-trust span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11.5px;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }
    .form-trust svg {
      color: var(--gold-2);
      flex-shrink: 0;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      border-top: 1px solid rgba(184, 137, 62, 0.30);
      padding: 80px 0 40px;
      background: linear-gradient(180deg, #4d3c25 0%, #3a2c1c 100%);
      position: relative;
      overflow: hidden;
    }
    footer::before {
      content: "";
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 60%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
      opacity: 0.6;
    }
    footer::after {
      content: "";
      position: absolute;
      bottom: -200px; right: -140px;
      width: 460px; height: 460px;
      background: radial-gradient(circle, rgba(184, 137, 62, 0.18), transparent 70%);
      pointer-events: none;
    }
    footer .container { position: relative; z-index: 1; }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand img { height: 56px; margin-bottom: 22px; }
    .footer-brand p {
      color: #f0e3bd;
      font-size: 14px;
      line-height: 1.75;
      max-width: 340px;
      margin-bottom: 28px;
    }
    .footer-social {
      display: flex;
      gap: 10px;
    }
    .footer-social a {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(184, 137, 62, 0.35);
      color: var(--gold-2);
      background: rgba(255, 255, 255, 0.04);
      transition: all 0.35s var(--ease-out);
    }
    .footer-social a:hover {
      color: #1a1408;
      background: var(--gold-grad);
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 10px 22px -8px rgba(212, 175, 105, 0.55);
    }
    .footer-social svg { width: 16px; height: 16px; }

    .footer-col h5 {
      font-size: 11px;
      color: var(--gold-2);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 22px;
      font-weight: 600;
      position: relative;
      padding-bottom: 14px;
    }
    .footer-col h5::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 1px;
      background: var(--gold-grad);
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a, .footer-col li {
      color: #f0e3bd;
      font-size: 14px;
      transition: color 0.2s, transform 0.3s var(--ease-out);
      line-height: 1.6;
    }
    .footer-col ul a {
      display: inline-flex;
      align-items: center;
      position: relative;
    }
    .footer-col a:hover { color: #fff4d4; }

    .footer-contact ul { gap: 14px; }
    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #f0e3bd;
    }
    .footer-contact li svg {
      flex-shrink: 0;
      color: var(--gold-2);
      margin-top: 3px;
    }
    .footer-contact a { color: #f0e3bd; transition: color 0.2s; }
    .footer-contact a:hover { color: #fff4d4; }

    .footer-bot {
      padding-top: 36px;
      border-top: 1px solid rgba(184, 137, 62, 0.18);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #c4ad7d;
    }
    .footer-bot .legal { display: flex; gap: 22px; align-items: center; }
    .footer-bot .legal a { position: relative; }
    .footer-bot .legal a + a::before {
      content: "";
      position: absolute;
      left: -13px; top: 50%;
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--gold-2);
      opacity: 0.55;
      transform: translateY(-50%);
    }
    .footer-bot a:hover { color: #fff4d4; }

    /* ─────────────────────────────────────────
       MOBILE MENU
    ───────────────────────────────────────── */
    .mobile-menu {
      display: block;
      position: fixed;
      top: 84px;
      left: 16px;
      right: 16px;
      background: rgba(245, 236, 215, 0.96);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid var(--line-strong);
      border-radius: 20px;
      padding: 16px 24px;
      z-index: 99;
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
    }
    .mobile-menu a {
      display: block;
      padding: 16px 0;
      color: var(--text);
      font-size: 16px;
      border-bottom: 1px solid var(--line);
      font-weight: 500;
      transition: color 0.3s ease, padding-left 0.3s var(--ease-out);
    }
    .mobile-menu a:hover { color: var(--gold-1); padding-left: 8px; }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu .mobile-cta {
      display: block;
      margin-top: 14px;
      padding: 14px 20px;
      background: var(--gold-grad);
      color: #1a1408 !important;
      text-align: center;
      border-radius: 999px;
      border-bottom: none !important;
      font-weight: 600;
      box-shadow: 0 8px 24px -10px rgba(212, 175, 105, 0.5);
      transition: all 0.4s var(--ease-out);
    }
    .mobile-menu .mobile-cta:hover {
      padding-left: 20px;
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -10px rgba(212, 175, 105, 0.65);
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — Refined breakpoints
    ───────────────────────────────────────── */
    @media (max-width: 1200px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .ref-grid { grid-template-columns: repeat(2, 1fr); }
      .energy-steps { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 980px) {
      .nav-menu { display: none; }
      .nav-actions .btn-ghost { display: none; }
      .nav-actions .btn-gold { display: none; }
      .nav-actions .lang-switch:not(.lang-switch--mobile) { display: none; }
      .mobile-toggle { display: flex; }
      .nav-inner { padding: 14px 20px; }
      .nav-logo img { height: 46px; }

      .hero { padding: 130px 0 80px; min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; gap: 50px; }
      .hero-meta { gap: 32px 40px; flex-wrap: wrap; margin-top: 56px; padding-top: 36px; }
      .hero-cta { width: 100%; }
      .hero-cta .btn { flex: 1; justify-content: center; min-width: 0; }

      .about-grid, .energy-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
      .mission-grid { grid-template-columns: 1fr; gap: 18px; }
      .services-grid, .ref-grid { grid-template-columns: 1fr; gap: 16px; }
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .energy-steps { grid-template-columns: repeat(2, 1fr); margin-top: 56px; padding-top: 44px; gap: 14px; }

      section { padding: 90px 0; }
      .sec-head { margin-bottom: 50px; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
      .footer-bot { flex-direction: column; gap: 14px; text-align: center; }
      .contact-form { padding: 36px 28px; }

      .mv-card { padding: 48px 36px; }
      .mv-num { font-size: 88px; }
      .mv-card h3 { font-size: 30px; }
    }
    @media (max-width: 980px) {
      .hv-chip-1 { left: 4%; }
      .hv-chip-2 { right: 4%; }
      .hv-chip-3 { left: 6%; }
    }
    @media (max-width: 640px) {
      .hv-chip { display: none; }
      .container { padding: 0 22px; }
      .nav-inner { padding: 12px 18px; }
      .nav-logo img { height: 40px; }
      .mobile-toggle { width: 40px; height: 40px; }

      .hero { padding: 120px 0 70px; }
      .hero-tag { font-size: 10px; padding: 8px 14px; }
      .hero-title { font-size: clamp(38px, 11vw, 56px); margin-bottom: 24px; }
      .hero-sub { font-size: 16.5px; margin-bottom: 36px; }
      .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
      .hero-cta .btn { width: 100%; }
      .hero-meta { gap: 24px 32px; }
      .meta-item .num { font-size: 36px; }

      .sec-head { margin-bottom: 44px; }
      .sec-eyebrow { font-size: 10px; }

      section { padding: 72px 0; }

      .team-grid { grid-template-columns: 1fr; gap: 16px; }
      .team-card { padding: 36px 24px 30px; }

      .field-row { grid-template-columns: 1fr; gap: 0; }
      .energy-steps { grid-template-columns: 1fr; gap: 12px; }

      .mv-card { padding: 40px 28px; }
      .mv-num { font-size: 72px; }
      .mv-card h3 { font-size: 26px; }
      .mv-card p { font-size: 15px; }

      .service-card { padding: 36px 28px 28px; }
      .service-card h3 { font-size: 22px; }
      .service-icon { width: 46px; height: 46px; margin-bottom: 22px; }

      .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 44px; }
      .footer-wordmark { font-size: 32px; }
      .contact-form { padding: 28px 22px; border-radius: 22px; }
      .contact-form h3 { font-size: 26px; }

      .about-img { aspect-ratio: 4 / 4.5; border-radius: 20px; }
      .about-img-overlay { bottom: 18px; left: 18px; right: 18px; padding: 16px; }
      .about-img-overlay .ic { width: 40px; height: 40px; }
      .about-img-overlay .txt strong { font-size: 15px; }

      .info-item { padding: 18px; gap: 16px; }
      .info-icon { flex: 0 0 42px; height: 42px; }
      .info-value { font-size: 15px; }

      .ref-body { padding: 24px 24px 26px; }
      .ref-card h4 { font-size: 22px; }

      .step { padding: 28px 22px; }
      .step-num { font-size: 36px; margin-bottom: 16px; }

      footer { padding: 64px 0 32px; }
    }
    @media (max-width: 380px) {
      .container { padding: 0 18px; }
      .hero-title { font-size: clamp(34px, 12vw, 46px); letter-spacing: -0.03em; }
      .meta-item .num { font-size: 32px; }
      .hero-meta { padding-top: 32px; margin-top: 48px; }
    }

    /* ─────────────────────────────────────────
       ANIMATIONS — Reveals, Stagger, Decorations
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
      will-change: opacity, transform;
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered children reveal */
    .stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
    .stagger.in > * { opacity: 1; transform: translateY(0); }
    .stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger.in > *:nth-child(2) { transition-delay: 0.13s; }
    .stagger.in > *:nth-child(3) { transition-delay: 0.21s; }
    .stagger.in > *:nth-child(4) { transition-delay: 0.29s; }
    .stagger.in > *:nth-child(5) { transition-delay: 0.37s; }
    .stagger.in > *:nth-child(6) { transition-delay: 0.45s; }
    .stagger.in > *:nth-child(7) { transition-delay: 0.53s; }
    .stagger.in > *:nth-child(8) { transition-delay: 0.61s; }
    .stagger.in > *:nth-child(9) { transition-delay: 0.69s; }

    /* Hero entrance — refined timing */
    .hero-tag, .hero-title, .hero-sub, .hero-cta, .hero-meta {
      opacity: 0;
      transform: translateY(28px);
      animation: heroFadeUp 1.1s var(--ease-out) forwards;
    }
    .hero-title { animation-delay: 0.18s; }
    .hero-sub { animation-delay: 0.34s; }
    .hero-cta { animation-delay: 0.48s; }
    .hero-meta { animation-delay: 0.62s; }
    @keyframes heroFadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Subtle gold underline accent for hero italic */
    .hero-title em::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 1px;
      background: var(--gold-grad);
      transform: scaleX(0);
      transform-origin: left;
      animation: drawLine 1.4s var(--ease-out) 1.2s forwards;
      opacity: 0.5;
    }
    @keyframes drawLine { to { transform: scaleX(0.85); } }

    /* Magnetic-feel CTA */
    .btn-gold, .btn-outline { will-change: transform; }

    /* Counter animation helper */
    .num-anim { display: inline-block; }

    /* Image entrance — soft scale */
    .about-img, .energy-visual, .hero-visual {
      transition: transform 0.7s var(--ease-out), box-shadow 0.7s var(--ease-out);
    }
    .about-img:hover, .energy-visual:hover {
      transform: scale(1.01) translateY(-4px);
      box-shadow: var(--shadow-deep), 0 0 0 1px rgba(212, 175, 105, 0.18);
    }

    /* Smooth focus ring on inputs */
    .field input:focus, .field select:focus, .field textarea:focus {
      transform: translateY(-1px);
    }

    /* Mobile menu animation */
    .mobile-menu {
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-toggle svg { transition: transform 0.4s var(--ease-out); }
    .mobile-toggle.active svg { transform: rotate(90deg); }

    /* Reduce motion preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ─────────────────────────────────────────
       CHATBOT
    ───────────────────────────────────────── */
    .cb-toggle {
      position: fixed;
      bottom: 72px; right: 24px;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 20px 0 16px;
      height: 58px;
      border: none;
      border-radius: 30px;
      background: var(--gold-grad);
      color: #fdf6e3;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: var(--shadow-gold);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), opacity 0.25s ease;
    }
    .cb-toggle:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 28px 70px -20px rgba(138,101,41,0.5); }
    .cb-toggle svg { flex: none; }
    .cb-toggle.hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
    .cb-toggle .cb-dot {
      position: absolute;
      top: 10px; right: 14px;
      width: 9px; height: 9px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
    }

    .cb-panel {
      position: fixed;
      bottom: 72px; right: 24px;
      z-index: 1001;
      width: 370px;
      max-width: calc(100vw - 32px);
      height: 560px;
      max-height: calc(100vh - 96px);
      display: flex;
      flex-direction: column;
      background: var(--bg-card);
      border: 1px solid var(--line-strong);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-deep);
      opacity: 0;
      transform: translateY(20px) scale(0.96);
      transform-origin: bottom right;
      pointer-events: none;
      transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
      font-family: 'Inter', sans-serif;
    }
    .cb-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

    .cb-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      background: var(--gold-grad);
      color: #fdf6e3;
    }
    .cb-header .cb-ava {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(253,246,227,0.16);
      display: flex; align-items: center; justify-content: center;
      flex: none;
    }
    .cb-header h4 {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .cb-header p {
      margin: 2px 0 0;
      font-size: 12px;
      opacity: 0.85;
      display: flex; align-items: center; gap: 6px;
    }
    .cb-header p::before {
      content: "";
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4ade80;
    }
    .cb-header .cb-close {
      margin-left: auto;
      background: rgba(253,246,227,0.14);
      border: none;
      color: #fdf6e3;
      width: 30px; height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s ease;
    }
    .cb-header .cb-close:hover { background: rgba(253,246,227,0.28); }

    .cb-body {
      flex: 1;
      overflow-y: auto;
      padding: 18px 16px 8px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background:
        radial-gradient(circle at 100% 0%, rgba(184,137,62,0.06), transparent 60%),
        var(--bg-soft);
    }
    .cb-body::-webkit-scrollbar { width: 8px; }
    .cb-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }

    .cb-msg {
      max-width: 82%;
      padding: 11px 14px;
      font-size: 14px;
      line-height: 1.5;
      border-radius: 16px;
      animation: cbIn 0.3s var(--ease-out) both;
    }
    @keyframes cbIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    .cb-msg.bot {
      align-self: flex-start;
      background: var(--bg-card);
      color: #3a2c12;
      border: 1px solid var(--line);
      border-bottom-left-radius: 5px;
    }
    .cb-msg.user {
      align-self: flex-end;
      background: var(--gold-grad);
      color: #fdf6e3;
      border-bottom-right-radius: 5px;
    }
    .cb-msg a { color: var(--gold-1); font-weight: 600; text-decoration: underline; }
    .cb-msg.user a { color: #fdf6e3; }
    .cb-msg strong { font-weight: 600; }
    .cb-msg.cb-msg-success {
      background: #ecf6e8;
      border-color: #bcd9a8;
      color: #2f4a1f;
    }
    .cb-msg.cb-msg-error {
      background: #fbecec;
      border-color: #e3b8b8;
      color: #5b1d1d;
    }

    .cb-progress {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 6px 10px;
      margin: 2px 0 0;
      font-size: 11px;
      color: var(--gold-1);
      opacity: 0.85;
      animation: cbIn 0.3s var(--ease-out) both;
    }
    .cb-progress-label {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .cb-progress-bar {
      display: block;
      height: 3px;
      width: 100%;
      background: var(--line);
      border-radius: 2px;
      overflow: hidden;
    }
    .cb-progress-bar > span {
      display: block;
      height: 100%;
      background: var(--gold-grad);
      border-radius: 2px;
      transition: width 0.4s var(--ease-out);
    }

    .cb-typing { display: inline-flex; gap: 4px; align-items: center; }
    .cb-typing span {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--gold-2);
      animation: cbBlink 1.2s infinite ease-in-out;
    }
    .cb-typing span:nth-child(2) { animation-delay: 0.2s; }
    .cb-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes cbBlink { 0%, 60%, 100% { opacity: 0.25; } 30% { opacity: 1; } }

    .cb-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 4px 16px 12px;
      background: var(--bg-soft);
    }
    .cb-chip {
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      color: var(--gold-1);
      background: var(--bg-card);
      border: 1px solid var(--line-gold);
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.25s var(--ease-out);
    }
    .cb-chip:hover { background: var(--gold-grad); color: #fdf6e3; border-color: transparent; transform: translateY(-1px); }
    .cb-chip.cb-chip-back,
    .cb-chip.cb-chip-skip {
      color: var(--text-soft, #6b5430);
      background: transparent;
      border-style: dashed;
      border-color: var(--line-strong);
      font-weight: 400;
    }
    .cb-chip.cb-chip-back:hover,
    .cb-chip.cb-chip-skip:hover {
      background: var(--bg-card);
      color: var(--gold-1);
      border-style: solid;
      border-color: var(--line-gold);
    }

    .cb-input {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      border-top: 1px solid var(--line);
      background: var(--bg-card);
    }
    .cb-input input {
      flex: 1;
      border: 1px solid var(--line-strong);
      background: var(--bg-elev);
      border-radius: 22px;
      padding: 11px 16px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #3a2c12;
      outline: none;
      transition: border-color 0.25s ease;
    }
    .cb-input input:focus { border-color: var(--gold-2); }
    .cb-input button {
      flex: none;
      width: 42px; height: 42px;
      border: none;
      border-radius: 50%;
      background: var(--gold-grad);
      color: #fdf6e3;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.25s var(--ease-out);
    }
    .cb-input button:hover { transform: scale(1.08); }

    @media (max-width: 480px) {
      .cb-panel { bottom: 56px; right: 12px; height: calc(100vh - 68px); }
      .cb-toggle { bottom: 60px; right: 16px; }
      .cb-toggle .cb-label { display: none; }
      .cb-toggle { padding: 0; width: 56px; height: 56px; justify-content: center; border-radius: 50%; }
    }

    /* ─────────────────────────────────────────
       UTILITAIRES — classes extraites des inline styles
       (refactor 2026-06-13 — CSP stricte, retrait de 'unsafe-inline')
    ───────────────────────────────────────── */
    .link-gold { color: var(--gold-1); }

    .contact-info-lead {
      color: var(--text-dim);
      font-size: 16px;
      max-width: 440px;
      line-height: 1.7;
    }

    .honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }


    /* ─────────────────────────────────────────────────────────────
       ANIMATIONS GSAP — Surcouche (premium/sobre)
       Active uniquement quand GSAP a pris la main (.gsap-ready)
    ───────────────────────────────────────────────────────────── */

    /* Neutralise les fallbacks CSS quand GSAP gère */
    .gsap-ready .hero-tag,
    .gsap-ready .hero-title,
    .gsap-ready .hero-sub,
    .gsap-ready .hero-cta,
    .gsap-ready .hero-meta {
      animation: none !important;
    }
    .gsap-ready .hero-title em::after {
      animation: none !important;
      opacity: 0;
    }
    .gsap-ready .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .gsap-ready .stagger > * {
      opacity: 1;
      transform: none;
      transition: none;
    }

    /* Split chars : caractères individuels du titre Hero
       Réapplique le gradient sur chaque .char — le background-clip:text de
       l'em parent ne propage pas aux enfants display:inline-block.
       padding+margin compensent les débords italiques (l, d, swashes Fraunces)
       qui dépassent l'advance-width du glyphe et seraient sinon clippés. */
    .hero-title em .char {
      display: inline-block;
      transform-origin: 50% 100%;
      will-change: transform, opacity;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      padding: 0 0.08em;
      margin: 0 -0.08em;
    }

    /* Mask reveal des titres de section : valeur initiale safe
       (si JS off ou GSAP ne se charge pas, titre reste pleinement visible) */
    .gsap-ready .sec-title {
      will-change: clip-path;
    }

    /* Cartes services : préparation 3D */
    .gsap-ready .services-grid {
      perspective: 1200px;
    }
    .gsap-ready .service-card {
      transform-style: preserve-3d;
      will-change: transform;
    }
    /* Note : le lift hover (-8px) est géré par GSAP (y: -8) dans animations.js
       car GSAP applique un transform inline qui surcharge le :hover CSS. */

    /* Cartes Références : enrichissement hover ─────── */
    .ref-card .ref-body {
      transition: transform 0.5s var(--ease-out);
    }
    .ref-card:hover .ref-body {
      transform: translateY(-4px);
    }
    /* Overlay doré qui glisse depuis le bas au hover */
    .ref-img .ref-gold-overlay {
      position: absolute;
      inset: auto 0 0 0;
      height: 60%;
      background: linear-gradient(180deg, transparent 0%, rgba(138, 101, 41, 0.32) 60%, rgba(107, 78, 31, 0.55) 100%);
      transform: translateY(100%);
      transition: transform 0.6s var(--ease-out);
      pointer-events: none;
      z-index: 2;
    }
    .ref-card:hover .ref-img .ref-gold-overlay {
      transform: translateY(0);
    }
    .ref-card h4 {
      transition: color 0.4s var(--ease-out);
    }
    .ref-card:hover h4 {
      color: var(--gold-1);
    }

    /* Ripple effect sur boutons dorés ─────── */
    .btn-gold, .btn-outline {
      position: relative;
      overflow: hidden;
    }
    .ripple {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.55);
      animation: yembtp-ripple 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      z-index: 2;
    }
    .btn-outline .ripple {
      background: rgba(184, 137, 62, 0.45);
    }
    @keyframes yembtp-ripple {
      0%   { width: 8px; height: 8px; opacity: 0.55; }
      100% { width: 400px; height: 400px; opacity: 0; }
    }

    /* prefers-reduced-motion : neutralise les effets lourds */
    @media (prefers-reduced-motion: reduce) {
      .gsap-ready .service-card {
        transform: none !important;
      }
      .ripple { display: none; }
    }
