/* ============================================================
   GRAVESON STRATÉGIES FINANCIÈRES — Design System
   Forest green + white · premium · advanced
   ============================================================ */

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

:root {
  /* Forest palette */
  --forest-950: #061712;
  --forest-900: #0a201a;
  --forest-800: #0e2a22;
  --forest-700: #12382c;
  --forest-600: #185539;
  --forest-500: #1f7a52;
  --forest-400: #2f9e63;
  --forest-300: #5cbd87;
  --forest-200: #a7ddbf;
  --forest-100: #d8efe1;
  --forest-50:  #eef8f2;
  --mint:       #f3faf6;

  --white: #ffffff;
  --off:   #f6faf8;
  --ink:   #0c1f18;
  --ink-soft: #46584f;
  --ink-faint:#7a8a83;
  --line:  #e2ece7;
  --line-soft: #eef3f0;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-xs: 6px; --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 34px; --r-full: 999px;

  /* Shadow */
  --sh-xs: 0 1px 2px rgba(10,32,26,.06);
  --sh-sm: 0 2px 10px rgba(10,32,26,.06), 0 1px 3px rgba(10,32,26,.05);
  --sh:    0 10px 34px rgba(10,32,26,.09);
  --sh-lg: 0 26px 64px rgba(10,32,26,.16);
  --sh-green: 0 14px 34px rgba(24,85,57,.28);

  /* Motion */
  --e-out: cubic-bezier(.16,1,.3,1);
  --e-spring: cubic-bezier(.34,1.4,.5,1);
  --t: 300ms var(--e-out);

  --maxw: 1200px;
  --nav-h: 80px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; color: inherit; background: none; border: none; }
::selection { background: var(--forest-200); color: var(--forest-900); }

:focus-visible { outline: 3px solid var(--forest-400); outline-offset: 3px; border-radius: 5px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1340px; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 10001;
  background: var(--forest-700); color: #fff; padding: 10px 18px;
  border-radius: var(--r-xs); font-weight: 600; transition: top var(--t);
}
.skip-link:focus { top: 12px; }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--forest-600), var(--forest-300));
  z-index: 10000; transition: width 90ms linear;
}

/* ── Reveal on scroll ── */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--e-out), transform .85s var(--e-out); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.js .reveal.d4 { transition-delay: .32s; }
.js .reveal.d5 { transition-delay: .40s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent; transition: background var(--t), box-shadow var(--t), border-color var(--t), height var(--t);
  border-bottom: 1px solid transparent;
}
header.site-header.solid {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-xs);
  height: 70px;
}
/* dark variant when hero is dark and at top */
header.site-header.on-dark:not(.solid) { color: #fff; }
header.site-header.on-dark:not(.solid) .nav-links a { color: rgba(255,255,255,.82); }
header.site-header.on-dark:not(.solid) .nav-links a:hover { color: #fff; }
header.site-header.on-dark:not(.solid) .lang-toggle { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.3); }
header.site-header.on-dark:not(.solid) .wordmark .gv { color: #fff; }
header.site-header.on-dark:not(.solid) .wordmark .sub { color: var(--forest-300); }
header.site-header.on-dark:not(.solid) .hamburger span { background: #fff; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

/* Wordmark logo */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark .gv {
  font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: .18em;
  color: var(--forest-800); transition: color var(--t);
}
.wordmark .sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--forest-500); margin-top: 5px; padding-left: .18em; transition: color var(--t);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--r-xs); transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--forest-700); }
.nav-links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  border-radius: 2px; background: var(--forest-400); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--forest-700); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700;
  letter-spacing: .04em; color: var(--ink-soft); border: 1px solid var(--line);
  padding: 8px 13px; border-radius: var(--r-full); transition: all var(--t); min-height: 40px;
}
.lang-toggle:hover { border-color: var(--forest-300); color: var(--forest-700); background: var(--forest-50); }
.lang-toggle .globe { width: 15px; height: 15px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--r-xs); font-size: 14.5px; font-weight: 600;
  letter-spacing: .01em; border: 1.5px solid transparent; white-space: nowrap; min-height: 46px;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--forest-600); color: #fff; box-shadow: var(--sh-green); }
.btn-primary:hover { background: var(--forest-700); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(24,85,57,.34); }
.btn-ghost { background: transparent; color: var(--forest-700); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest-300); background: var(--forest-50); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--forest-700); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 15.5px; min-height: 54px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; min-height: 40px; }

/* on-dark nav portail button */
header.site-header.on-dark:not(.solid) .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
header.site-header.on-dark:not(.solid) .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--forest-800); transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999; background: #fff;
  padding: 22px 28px 40px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .42s var(--e-out); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a:not(.btn) { display: block; padding: 17px 0; font-size: 19px; font-weight: 600; color: var(--forest-900); border-bottom: 1px solid var(--line-soft); }
.mobile-nav .btn { margin-top: 24px; width: 100%; }
.mobile-nav .lang-row { margin-top: 18px; display: flex; gap: 10px; }

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--forest-500); margin-bottom: 18px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--forest-400); border-radius: 2px; }
.section-heading {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1; letter-spacing: -.02em; color: var(--forest-900); max-width: 18ch;
}
.section-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.7; max-width: 60ch; margin-top: 18px; }
.section-head { margin-bottom: 64px; }
.center { text-align: center; }
.center .section-heading, .center .section-sub { margin-left: auto; margin-right: auto; }
.center .section-tag { justify-content: center; }

/* ============================================================
   HOME HERO — cinematic / advanced
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 90px; overflow: hidden;
  background: linear-gradient(155deg, var(--forest-950) 0%, var(--forest-800) 45%, var(--forest-700) 100%);
  color: #fff;
}
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-aurora span {
  position: absolute; border-radius: 50%; filter: blur(56px); opacity: .42;
  animation: aurora 22s var(--e-out) infinite alternate; will-change: transform;
}
.hero-aurora .a1 { width: 440px; height: 440px; background: #1f7a52; top: -110px; right: -50px; }
.hero-aurora .a2 { width: 380px; height: 380px; background: #2f9e63; bottom: -140px; left: -70px; animation-delay: -7s; }
.hero-aurora .a3 { width: 300px; height: 300px; background: #0e6b46; top: 32%; left: 42%; animation-delay: -13s; opacity: .3; }
@keyframes aurora {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-30px) scale(1.18); }
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}

.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 60px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
  color: var(--forest-100); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px 8px 12px; border-radius: var(--r-full); margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--forest-300); box-shadow: 0 0 0 4px rgba(92,189,135,.22); animation: pulse 2.6s var(--e-out) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(92,189,135,.22); } 50% { box-shadow: 0 0 0 8px rgba(92,189,135,.05); } }

.hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02; letter-spacing: -.025em; margin-bottom: 26px;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; transform: translateY(110%); }
.js .hero h1 .ln > span { animation: lineUp 1s var(--e-out) forwards; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: .24s; }
.hero h1 .grad {
  background: linear-gradient(100deg, #fff 10%, var(--forest-300) 60%, var(--forest-200));
  -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; font-weight: 500;
}
@keyframes lineUp { to { transform: translateY(0); } }

.hero-sub { font-size: 19px; color: rgba(255,255,255,.78); line-height: 1.65; max-width: 46ch; margin-bottom: 38px; }
.js .hero-sub, .js .hero-actions, .js .hero-meta { opacity: 0; animation: fadeUp .9s var(--e-out) forwards; }
.js .hero-sub { animation-delay: .45s; }
.js .hero-actions { animation-delay: .58s; }
.js .hero-meta { animation-delay: .7s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-meta .item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.72); }
.hero-meta .item svg { width: 18px; height: 18px; color: var(--forest-300); flex-shrink: 0; }

/* hero visual card */
.hero-visual { position: relative; z-index: 2; }
.js .hero-visual { opacity: 0; animation: fadeUp 1s var(--e-out) .5s forwards; }
.glass-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg);
  padding: 26px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--sh-lg);
}
.glass-card .gc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.glass-card .gc-label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.glass-card .gc-illu { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-300); border: 1px solid rgba(92,189,135,.4); padding: 4px 8px; border-radius: var(--r-full); }
.glass-card .gc-value { font-family: var(--font-display); font-size: 34px; font-weight: 600; letter-spacing: -.02em; margin: 2px 0 4px; }
.gc-chart { margin-top: 14px; }
.gc-chart svg { width: 100%; height: auto; overflow: visible; }
.gc-line { fill: none; stroke: url(#hg); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.gc-chart.in .gc-line { animation: draw 2s var(--e-out) .4s forwards; }
.gc-area { fill: url(#ha); opacity: 0; transition: opacity 1.1s ease 1.1s; }
.gc-chart.in .gc-area { opacity: 1; }
.gc-dot { opacity: 0; transition: opacity .4s ease 2s; }
.gc-chart.in .gc-dot { opacity: 1; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.gc-foot { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11.5px; color: rgba(255,255,255,.5); }

.float-pill {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.96); border-radius: 14px; padding: 12px 16px; box-shadow: var(--sh-lg);
  animation: floaty 6s var(--e-out) infinite;
}
.float-pill .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--forest-100); color: var(--forest-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-pill .ic svg { width: 19px; height: 19px; }
.float-pill .t1 { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.float-pill .t2 { font-size: 11px; color: var(--ink-faint); }
.float-pill.fp1 { top: -22px; left: -26px; }
.float-pill.fp2 { bottom: 26px; right: -28px; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px; background: rgba(255,255,255,.7); transform: translateX(-50%); animation: scrolly 1.8s var(--e-out) infinite; }
@keyframes scrolly { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,12px); } 100% { opacity: 0; } }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band { background: var(--forest-900); color: #fff; padding: 30px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 18px 44px; flex-wrap: wrap; }
.trust-inner .ti { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.82); }
.trust-inner .ti svg { width: 19px; height: 19px; color: var(--forest-300); }
.trust-sep { width: 1px; height: 22px; background: rgba(255,255,255,.16); }

/* ============================================================
   ACCORDION — Nos Objectifs
   ============================================================ */
.obj { background: var(--mint); }
.obj-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.obj-aside { position: sticky; top: 110px; }
.obj-aside .num-badge {
  width: 60px; height: 60px; border-radius: var(--r); background: linear-gradient(140deg, var(--forest-600), var(--forest-400));
  display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 24px; box-shadow: var(--sh-green);
}
.obj-aside .num-badge svg { width: 28px; height: 28px; }

.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.acc-item.open { border-color: var(--forest-300); box-shadow: var(--sh); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; gap: 18px; padding: 24px 26px; text-align: left;
}
.acc-trigger .idx { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--forest-400); width: 28px; flex-shrink: 0; }
.acc-trigger .label { flex: 1; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 23px); font-weight: 600; color: var(--forest-900); letter-spacing: -.01em; }
.acc-trigger .chev {
  width: 38px; height: 38px; border-radius: 50%; background: var(--forest-50); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--t), transform var(--t); color: var(--forest-600);
}
.acc-item.open .acc-trigger .chev { background: var(--forest-600); color: #fff; transform: rotate(180deg); }
.acc-trigger .chev svg { width: 18px; height: 18px; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--e-out); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-content { padding: 0 26px 26px 72px; }
.acc-content li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }
.acc-content li:last-child { margin-bottom: 0; }
.acc-content li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--forest-100) 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='%23185539' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ============================================================
   ADVISOR CARDS — Contactez-Nous
   ============================================================ */
.contact-sec { background: #fff; }
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.advisor-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 34px; text-align: center; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.advisor-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 96px; background: linear-gradient(160deg, var(--forest-600), var(--forest-400)); }
.advisor-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--forest-200); }
.advisor-photo {
  position: relative; z-index: 1; width: 132px; height: 132px; margin: 0 auto 20px; border-radius: 50%;
  border: 5px solid #fff; box-shadow: var(--sh); overflow: hidden; background: linear-gradient(140deg, var(--forest-700), var(--forest-500));
  display: flex; align-items: center; justify-content: center;
}
.advisor-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisor-photo .initials { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: rgba(255,255,255,.9); }
.advisor-name { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--forest-900); }
.advisor-titles { margin-top: 8px; }
.advisor-titles span { display: block; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.advisor-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 10px; }
.advisor-contact a { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: var(--forest-700); transition: color var(--t); }
.advisor-contact a:hover { color: var(--forest-500); }
.advisor-contact a svg { width: 16px; height: 16px; color: var(--forest-400); }
.advisor-actions { margin-top: 22px; display: flex; gap: 10px; justify-content: center; }

/* ============================================================
   OFFICE CARDS — Nos Bureaux
   ============================================================ */
.offices-sec { background: var(--off); }
.offices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.office-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px; overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.office-card::after {
  content: ''; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; opacity: .06;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23185539' stroke-width='1.4'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.office-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--forest-200); }
.office-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.office-head .pin { width: 44px; height: 44px; border-radius: 12px; background: var(--forest-50); color: var(--forest-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.office-head .pin svg { width: 22px; height: 22px; }
.office-city { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--forest-900); letter-spacing: .02em; }
.office-addr { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; position: relative; z-index: 1; }
.office-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--forest-600); transition: gap var(--t); position: relative; z-index: 1; }
.office-link:hover { gap: 12px; }
.office-link svg { width: 16px; height: 16px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(150deg, var(--forest-900), var(--forest-700)); color: #fff; overflow: hidden; }
.cta-band { position: relative; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(92,189,135,.18), transparent 60%); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 52px); font-weight: 600; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,.72); margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer { background: var(--forest-950); color: rgba(255,255,255,.6); padding: 76px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 52px; }
.footer-brand .wordmark .gv { color: #fff; }
.footer-brand .wordmark .sub { color: var(--forest-300); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; margin-top: 18px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.footer-social a:hover { background: var(--forest-600); border-color: var(--forest-600); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-col h4 { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; transition: color var(--t); }
.footer-col a:hover { color: var(--forest-300); }
.footer-col .muted { color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-disclaimer { font-size: 11.5px; color: rgba(255,255,255,.32); line-height: 1.7; max-width: 900px; margin-bottom: 22px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; font-size: 13px; }
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--forest-300); }

/* ============================================================
   SUBPAGE HERO
   ============================================================ */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 80px) 0 90px; overflow: hidden; color: #fff;
  background: linear-gradient(155deg, var(--forest-950), var(--forest-800) 60%, var(--forest-700));
}
.page-hero .hero-aurora span { opacity: .35; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 20px; }
.page-hero p { font-size: 19px; color: rgba(255,255,255,.78); max-width: 56ch; line-height: 1.6; }

/* ============================================================
   GENERIC CARDS / GRIDS (services, partners, about)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.feature-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity var(--t); background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(47,158,99,.08), transparent 45%); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--forest-200); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { width: 56px; height: 56px; border-radius: 15px; margin-bottom: 22px; background: linear-gradient(140deg, var(--forest-50), var(--forest-100)); display: flex; align-items: center; justify-content: center; transition: transform var(--t); }
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-icon svg { width: 26px; height: 26px; color: var(--forest-600); }
.feature-title { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--forest-900); margin-bottom: 11px; }
.feature-desc { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }

/* values / list */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.check-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.check-list .ci { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ci .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--forest-100); color: var(--forest-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-list .ci .ck svg { width: 14px; height: 14px; }
.check-list .ci strong { display: block; font-size: 16px; color: var(--forest-900); margin-bottom: 2px; }
.check-list .ci span.tx { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

.visual-block { aspect-ratio: 4/5; border-radius: var(--r-lg); background: linear-gradient(150deg, var(--forest-700), var(--forest-500) 60%, var(--forest-400)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.visual-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.14), transparent 55%); }
.visual-block .mono { font-family: var(--font-display); font-size: 96px; font-weight: 600; color: rgba(255,255,255,.16); letter-spacing: .06em; }

/* timeline (about) */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--forest-300), var(--forest-100)); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -33px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--forest-500); }
.tl-item .yr { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--forest-500); margin-bottom: 4px; }
.tl-item h4 { font-size: 17px; font-weight: 600; color: var(--forest-900); margin-bottom: 6px; }
.tl-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* partner logos */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 24px; display: flex; align-items: center; justify-content: center; min-height: 130px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--forest-200); }
.partner-card .pl { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink-faint); letter-spacing: .02em; transition: color var(--t); text-align: center; }
.partner-card:hover .pl { color: var(--forest-600); }

/* ============================================================
   OUTILS — calculator + risk donut
   ============================================================ */
.calc-shell { display: grid; grid-template-columns: 380px 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.calc-controls { padding: 38px 34px; background: var(--off); border-right: 1px solid var(--line); }
.calc-controls h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--forest-900); margin-bottom: 4px; }
.calc-controls .hint { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 28px; }
.ctrl { margin-bottom: 24px; }
.ctrl-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.ctrl-head label { font-size: 14px; font-weight: 600; color: var(--ink); }
.ctrl-val { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--forest-600); font-variant-numeric: tabular-nums; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: var(--r-full); background: var(--forest-100); cursor: pointer; outline-offset: 6px; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--forest-500); box-shadow: var(--sh-sm); transition: transform 120ms ease, box-shadow 120ms ease; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(47,158,99,.12); }
input[type="range"]:active::-webkit-slider-thumb { box-shadow: 0 0 0 11px rgba(47,158,99,.16); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid var(--forest-500); box-shadow: var(--sh-sm); cursor: pointer; }
input[type="range"]::-moz-range-track { height: 6px; border-radius: var(--r-full); background: var(--forest-100); }
.ctrl-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-faint); margin-top: 8px; }
.calc-display { padding: 38px; display: flex; flex-direction: column; }
.calc-result-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.calc-result-label { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--forest-500); margin-bottom: 6px; }
.calc-result-value { font-family: var(--font-display); font-size: clamp(38px, 5vw, 58px); font-weight: 600; color: var(--forest-800); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.calc-legend { display: flex; gap: 22px; flex-wrap: wrap; }
.calc-legend .k { display: flex; align-items: center; gap: 7px; color: var(--ink-faint); font-weight: 500; margin-bottom: 3px; font-size: 13px; }
.calc-legend .k .sw { width: 11px; height: 11px; border-radius: 3px; }
.calc-legend .v { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-chart-wrap { position: relative; margin-top: 26px; flex: 1; min-height: 240px; }
.calc-chart-wrap svg { width: 100%; height: auto; overflow: visible; display: block; }
.calc-gridline { stroke: var(--line); stroke-width: 1; }
.calc-ylabel, .calc-xlabel { font-size: 11px; fill: var(--ink-faint); font-family: var(--font-sans); font-weight: 500; }
.calc-area { fill: url(#calcArea); }
.calc-line { fill: none; stroke: var(--forest-500); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.calc-contrib { fill: none; stroke: var(--forest-300); stroke-width: 2; stroke-dasharray: 5 5; stroke-linejoin: round; }
.calc-guide { position: absolute; top: 0; width: 1.5px; background: var(--forest-400); pointer-events: none; opacity: 0; transition: opacity 140ms ease; }
.calc-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--forest-600); border: 2.5px solid #fff; box-shadow: var(--sh-sm); transform: translate(-50%,-50%); pointer-events: none; opacity: 0; transition: opacity 140ms ease; }
.calc-tip { position: absolute; pointer-events: none; background: var(--forest-900); color: #fff; padding: 9px 12px; border-radius: 10px; font-size: 12px; box-shadow: var(--sh-lg); transform: translate(-50%,-118%); white-space: nowrap; opacity: 0; transition: opacity 140ms ease; z-index: 5; }
.calc-tip b { font-size: 14px; display: block; font-family: var(--font-display); font-weight: 600; }
.calc-tip .yr { color: var(--forest-300); font-weight: 600; }
.calc-disclaimer { font-size: 11.5px; color: var(--ink-faint); margin-top: 18px; line-height: 1.5; }

.pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pf-toggle { display: inline-flex; background: var(--forest-50); border: 1px solid var(--forest-100); border-radius: var(--r-full); padding: 5px; gap: 4px; margin-bottom: 30px; flex-wrap: wrap; }
.pf-toggle button { padding: 10px 18px; border-radius: var(--r-full); font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: all var(--t); }
.pf-toggle button[aria-pressed="true"] { background: #fff; color: var(--forest-700); box-shadow: var(--sh-sm); }
.pf-alloc { display: flex; flex-direction: column; gap: 16px; }
.pf-row-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pf-row-name { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pf-row-name .sw { width: 13px; height: 13px; border-radius: 4px; }
.pf-row-pct { font-family: var(--font-display); font-size: 16px; font-weight: 600; font-variant-numeric: tabular-nums; }
.pf-bar { height: 8px; border-radius: var(--r-full); background: var(--line-soft); overflow: hidden; }
.pf-bar-fill { height: 100%; border-radius: var(--r-full); width: 0; transition: width .7s var(--e-out); }
.pf-visual { display: flex; flex-direction: column; align-items: center; }
.pf-donut-wrap { position: relative; width: 300px; max-width: 100%; }
.pf-donut-wrap svg { width: 100%; height: auto; transform: rotate(-90deg); }
.pf-donut-wrap svg circle.seg { transition: stroke-dasharray .7s var(--e-out), stroke-dashoffset .7s var(--e-out); }
.pf-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.pf-center .lbl { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.pf-center .ret { font-family: var(--font-display); font-size: 46px; font-weight: 600; color: var(--forest-700); line-height: 1; margin: 4px 0; font-variant-numeric: tabular-nums; }
.pf-center .risk { font-size: 13px; font-weight: 600; color: var(--forest-500); }
.pf-note { margin-top: 22px; font-size: 13px; color: var(--ink-faint); text-align: center; max-width: 320px; line-height: 1.6; }

/* portal login card */
.portal-wrap { max-width: 460px; margin: 0 auto; }
.portal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-lg); }
.portal-card h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--forest-900); margin-bottom: 6px; }
.portal-card p.sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-xs); font-size: 15px; font-family: inherit; transition: border-color var(--t), box-shadow var(--t); }
.field input:focus { outline: none; border-color: var(--forest-400); box-shadow: 0 0 0 4px rgba(47,158,99,.12); }
.portal-note { margin-top: 18px; font-size: 12.5px; color: var(--ink-faint); text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-shell { grid-template-columns: 1fr; }
  .calc-controls { border-right: none; border-bottom: 1px solid var(--line); }
  .obj-grid { grid-template-columns: 1fr; gap: 40px; }
  .obj-aside { position: static; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-right .btn-ghost, .nav-right .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 460px; }
  .scroll-cue { display: none; }
  .pf-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .advisor-grid { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 720px) {
  section { padding: 76px 0; }
  .advisor-grid { grid-template-columns: 1fr; max-width: 440px; }
  .offices-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .float-pill { display: none; }
  .calc-controls, .calc-display { padding: 26px 22px; }
}
@media (max-width: 460px) {
  .container { padding: 0 20px; }
  .partner-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero h1 .ln > span { transform: none !important; }
  .js .hero-sub, .js .hero-actions, .js .hero-meta, .js .hero-visual { opacity: 1 !important; }
}

/* ============================================================
   PREMIUM UPGRADE — signature hero, depth, motion
   ============================================================ */

/* Film grain over everything (very subtle, non-interactive) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 4000; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Hero: canvas + scrim layering ---- */
.hero { isolation: isolate; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(6,23,18,.94) 0%, rgba(6,23,18,.72) 38%, rgba(6,23,18,.20) 64%, rgba(8,28,22,.55) 100%),
    radial-gradient(120% 80% at 100% 0%, rgba(47,158,99,.14), transparent 55%);
}
.hero .hero-grid { position: relative; z-index: 2; }
.hero .scroll-cue { z-index: 3; }

/* ---- Editorial headline ---- */
.hero h1 { font-size: clamp(46px, 6.4vw, 88px); letter-spacing: -.03em; }
.hero h1 .grad {
  background: linear-gradient(100deg, #ffffff 8%, #5cbd87 38%, #a7ddbf 56%, #ffffff 84%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* combine the entrance rise with a looping shimmer (beats base .ln > span rule) */
.js .hero h1 .ln > span.grad { animation: lineUp 1s var(--e-out) .12s forwards, shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* ---- Hero trust chips (replaces plain meta) ---- */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.86); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  padding: 9px 15px; border-radius: var(--r-full); backdrop-filter: blur(8px); transition: border-color var(--t), background var(--t), transform var(--t);
}
.hero-chip:hover { border-color: rgba(92,189,135,.5); background: rgba(92,189,135,.1); transform: translateY(-2px); }
.hero-chip svg { width: 16px; height: 16px; color: var(--forest-300); }

/* ---- Glass "live projection" card ---- */
.live-card {
  position: relative; background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-lg); padding: 28px;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.18);
}
.lc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.lc-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.72); letter-spacing: .02em; }
.lc-illu { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-300); border: 1px solid rgba(92,189,135,.45); padding: 4px 9px; border-radius: var(--r-full); }
.lc-value { font-family: var(--font-display); font-size: clamp(34px, 4vw, 46px); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; color: #fff; font-variant-numeric: tabular-nums; }
.lc-chip { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12.5px; font-weight: 700; color: #0b241c; background: linear-gradient(135deg, var(--forest-300), var(--forest-200)); padding: 5px 11px; border-radius: var(--r-full); }
.lc-spark { margin: 18px 0 14px; }
.lc-spark svg { width: 100%; height: auto; overflow: visible; display: block; }
.lc-area { fill: url(#lcArea); opacity: 0; transition: opacity 1.1s ease 1.1s; }
.lc-spark.in .lc-area { opacity: 1; }
.lc-line { fill: none; stroke: url(#lcLine); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 600; stroke-dashoffset: 600; }
.lc-spark.in .lc-line { animation: draw 2s var(--e-out) .4s forwards; }
.lc-end { opacity: 0; transition: opacity .4s ease 2s; }
.lc-spark.in .lc-end { opacity: 1; }
.lc-rows { display: flex; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.lc-rows > div { flex: 1; }
.lc-rows span { display: block; font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .04em; text-transform: uppercase; }
.lc-rows b { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; }
.lc-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--forest-200); transition: gap var(--t), color var(--t); }
.lc-link:hover { gap: 11px; color: #fff; }
.lc-link svg { width: 16px; height: 16px; }

/* ---- Premium primary button (gradient + glow), no overflow clip ---- */
.btn-primary { background: linear-gradient(135deg, var(--forest-500), var(--forest-600)); }
.btn-primary:hover { background: linear-gradient(135deg, var(--forest-400), var(--forest-500)); box-shadow: 0 18px 44px rgba(47,158,99,.38); }

/* ---- 3D tilt cards ---- */
.advisor-card, .feature-card, .office-card { transform-style: preserve-3d; }

/* ---- Oversized section index accent (optional use) ---- */
.section-heading .hl { color: var(--forest-500); }

@media (max-width: 920px) {
  .live-card { max-width: 460px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .grad { animation: none !important; background-position: 0 center !important; }
  body::after { display: none; }
}

/* ---- Animated credentials marquee ---- */
.trust-band { padding: 22px 0; }
.marquee { overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 11px; padding: 0 30px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.82); }
.marquee-item svg { width: 17px; height: 17px; color: var(--forest-300); flex-shrink: 0; }
.marquee-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--forest-400); opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .trust-inner { justify-content: center; }
}

/* ---- Smooth cross-document page transitions (Chromium) ---- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .32s ease both; }
::view-transition-new(root) { animation: vtIn .5s var(--e-out) both; }
@keyframes vtOut { to { opacity: 0; } }
@keyframes vtIn { from { opacity: 0; } }

/* ---- Cursor follower (desktop only) ---- */
.cursor-ring {
  position: fixed; left: 0; top: 0; width: 32px; height: 32px;
  border: 1.5px solid rgba(92,189,135,.55); border-radius: 50%;
  pointer-events: none; z-index: 9000; opacity: 0;
  transition: width .25s var(--e-out), height .25s var(--e-out), background .25s ease, border-color .25s ease, opacity .3s ease;
}
.cursor-ring.on { opacity: 1; }
.cursor-ring.hover { width: 56px; height: 56px; background: rgba(92,189,135,.12); border-color: rgba(92,189,135,.9); }
.cursor-ring.down { width: 22px; height: 22px; background: rgba(92,189,135,.2); }
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .cursor-ring { display: none !important; }
}

/* ---- Scroll spine: a follow-along progress rail ---- */
.scroll-spine {
  position: fixed; left: 30px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 62vh; z-index: 800; pointer-events: none;
  opacity: 0; transition: opacity .5s var(--e-out);
}
.scroll-spine.visible { opacity: 1; }
.spine-track { position: relative; width: 2px; height: 100%; margin: 0 auto; background: rgba(11,36,28,.13); border-radius: 2px; }
.spine-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; border-radius: 2px; background: linear-gradient(180deg, var(--forest-300), var(--forest-500)); }
.spine-node { position: absolute; left: 50%; top: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--forest-500); transform: translate(-50%,-50%); box-shadow: 0 0 0 4px rgba(47,158,99,.16), 0 0 16px 2px rgba(47,158,99,.55); }
.spine-node::before { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid rgba(47,158,99,.4); animation: spinePulse 2.2s var(--e-out) infinite; }
@keyframes spinePulse { 0% { transform: scale(.55); opacity: .85; } 100% { transform: scale(1.7); opacity: 0; } }
.spine-dot { position: absolute; left: 50%; top: 0; width: 8px; height: 8px; border-radius: 50%; transform: translate(-50%,-50%); background: #fff; border: 2px solid var(--forest-200); transition: background .3s, border-color .3s, transform .3s, box-shadow .3s; }
.spine-dot.passed { background: var(--forest-500); border-color: var(--forest-500); }
.spine-dot.active { background: var(--forest-400); border-color: var(--forest-600); transform: translate(-50%,-50%) scale(1.5); box-shadow: 0 0 0 4px rgba(47,158,99,.16); }
@media (max-width: 1240px) { .scroll-spine { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .spine-node::before { animation: none; } }

/* ---- Photos: make placeholder blocks hold real imagery ---- */
.visual-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .7s var(--e-out); }
.visual-block:hover img { transform: scale(1.05); }
.visual-block .mono { position: relative; z-index: 0; }

/* ---- Home team band ---- */
.team-band { background: var(--off); }
.team-band-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.team-band-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/11; background: linear-gradient(150deg, var(--forest-700), var(--forest-500) 60%, var(--forest-400)); box-shadow: var(--sh-lg); }
.team-band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .8s var(--e-out); }
.team-band:hover .team-band-media img { transform: scale(1.04); }
.team-band-media::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 55%, rgba(6,23,18,.28)); pointer-events: none; }
.team-band-media .mono { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 92px; font-weight: 600; color: rgba(255,255,255,.18); }
.team-band-media .badge { position: absolute; z-index: 3; left: 20px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.92); color: var(--forest-800); font-size: 12.5px; font-weight: 700; padding: 8px 13px; border-radius: var(--r-full); box-shadow: var(--sh); }
.team-band-media .badge svg { width: 15px; height: 15px; color: var(--forest-500); }

/* ---- Candid photo strip ---- */
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.photo-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/2; background: linear-gradient(150deg, var(--forest-600), var(--forest-300)); box-shadow: var(--sh); }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--e-out); }
.photo-card:hover img { transform: scale(1.06); }
.photo-card .mono { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 40px; color: rgba(255,255,255,.22); }

@media (max-width: 920px) {
  .team-band-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* ---- Rich advisor profiles (About) ---- */
.team-profiles { display: flex; flex-direction: column; gap: 56px; }
.profile { display: grid; grid-template-columns: 330px 1fr; gap: 50px; align-items: center; }
.profile-media { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(150deg, var(--forest-700), var(--forest-500)); box-shadow: var(--sh-lg); }
.profile-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .8s var(--e-out); }
.profile:hover .profile-media img { transform: scale(1.04); }
.profile-media .initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 76px; font-weight: 600; color: rgba(255,255,255,.85); z-index: 0; }
.profile-name { font-family: var(--font-display); font-size: clamp(24px, 3vw, 30px); font-weight: 600; color: var(--forest-900); letter-spacing: -.01em; }
.profile-titles { margin-top: 6px; margin-bottom: 4px; }
.profile-titles span { display: block; font-size: 14.5px; font-weight: 500; color: var(--forest-600); }
.profile-bio { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-top: 16px; max-width: 60ch; }
.profile-bio.todo { font-style: italic; color: var(--ink-faint); }
.awards { margin-top: 22px; background: var(--forest-50); border: 1px solid var(--forest-100); border-radius: var(--r); padding: 18px 22px; max-width: 60ch; }
.awards h4 { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--forest-800); margin-bottom: 12px; text-transform: none; }
.awards ul { display: flex; flex-direction: column; gap: 9px; }
.awards li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.awards li svg { width: 18px; height: 18px; color: var(--forest-500); flex-shrink: 0; }
.profile-contact { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; margin-top: 24px; }
.profile-contact .ic-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--forest-700); transition: color var(--t); }
.profile-contact .ic-link:hover { color: var(--forest-500); }
.profile-contact .ic-link svg { width: 16px; height: 16px; color: var(--forest-400); }
@media (max-width: 820px) {
  .profile { grid-template-columns: 1fr; gap: 26px; justify-items: center; text-align: center; }
  .profile-media { width: 100%; max-width: 300px; aspect-ratio: 1; }
  .profile-bio, .awards { max-width: 100%; text-align: left; }
  .profile-titles span { text-align: center; }
  .profile-contact { justify-content: center; }
}

/* ---- Values: four-pillar grid (boxes reveal on scroll via .reveal) ---- */
.feature-grid.four { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid.four .feature-card { padding: 30px 26px; }
@media (max-width: 1080px) { .feature-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .feature-grid.four { grid-template-columns: 1fr; } }

/* ---- Firm-in-action: three-up photo strip ---- */
.photo-strip.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .photo-strip.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .photo-strip.three { grid-template-columns: 1fr; } }

/* ---- Services: segmented tabs + panels ---- */
.seg-wrap { display: flex; justify-content: center; margin-bottom: 50px; }
.seg-tabs { display: inline-flex; background: var(--off); border: 1px solid var(--line); border-radius: var(--r-full); padding: 5px; gap: 4px; max-width: 100%; }
.seg-tab { padding: 12px 30px; border: none; background: transparent; border-radius: var(--r-full); font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--ink-soft); cursor: pointer; white-space: nowrap; transition: color var(--t), background var(--t), box-shadow var(--t); }
.seg-tab:hover { color: var(--forest-700); }
.seg-tab.active { background: #fff; color: var(--forest-700); box-shadow: var(--sh); }
.seg-tab:focus-visible { outline: 2px solid var(--forest-400); outline-offset: 2px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelIn .45s var(--e-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---- Goals list (arrow bullets) ---- */
.goal-list { display: flex; flex-direction: column; gap: 15px; }
.goal-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
.goal-list li svg { width: 18px; height: 18px; color: var(--forest-500); flex-shrink: 0; margin-top: 3px; }

/* ---- Process steps (numbered) ---- */
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; align-items: center; gap: 16px; }
.step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-800); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step p { font-size: 15.5px; color: var(--ink-soft); }

@media (max-width: 520px) {
  .seg-tabs { width: 100%; }
  .seg-tab { flex: 1; padding: 11px 14px; font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) { .tab-panel.active { animation: none; } }

/* ---- Financial partners: auto-scrolling logo strip ---- */
.logo-marquee .marquee-track { gap: 20px; animation-duration: 40s; padding: 8px 0; }
.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 168px; height: 88px; padding: 0 32px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -.01em;
  color: var(--forest-800); white-space: nowrap;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t), color var(--t);
}
.logo-chip:hover { border-color: var(--forest-300); box-shadow: var(--sh); transform: translateY(-3px); color: var(--forest-600); }
@media (prefers-reduced-motion: reduce) { .logo-marquee .marquee-track { flex-wrap: wrap; justify-content: center; } }

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(16px);
  z-index: 1200;
  width: min(680px, calc(100vw - 32px));
  background: var(--forest-900);
  color: var(--forest-100);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 50px rgba(6, 23, 18, 0.45);
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
  font-family: var(--font-sans);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--forest-100);
}
.cookie-banner p strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}
.cookie-banner .btn-cookie {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--r-full);
  padding: 10px 20px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.cookie-banner .btn-cookie.accept {
  background: var(--forest-300);
  color: var(--forest-950);
  border: 1px solid var(--forest-300);
}
.cookie-banner .btn-cookie.accept:hover { background: var(--forest-200); border-color: var(--forest-200); }
.cookie-banner .btn-cookie.decline {
  background: transparent;
  color: var(--forest-100);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cookie-banner .btn-cookie.decline:hover { border-color: var(--forest-200); color: var(--white); }
@media (max-width: 560px) {
  .cookie-banner { padding: 18px; bottom: 12px; }
  .cookie-banner .cookie-actions { width: 100%; margin-left: 0; }
  .cookie-banner .btn-cookie { flex: 1; }
}

/* Landscape visual block — match the photo's natural 3:2 ratio so it isn't cropped */
.visual-block.landscape { aspect-ratio: 1580 / 1053; }
