/* ============================================================
   WEALTHACCESS INVESTMENT MANAGERS — world-class redesign (v3)
   Same multi-page + 3D system as Rulethu, re-skinned to a brighter
   emerald green so the two sites read as a family, not clones.
   ============================================================ */

:root {
  /* ----- Brand palette: WealthAccess emerald green + gold ----- */
  --ink:        #07211A;
  --forest:     #0B5E43;
  --forest-2:   #073D2C;
  --forest-3:   #04201A;
  --emerald:    #16A06A;
  --emerald-2:  #2CC489;
  --gold:       #C9A961;
  --gold-soft:  #E6D199;
  --gold-deep:  #A8863F;
  --paper:      #F4F6F2;
  --paper-2:    #E9EEE8;
  --paper-3:    #DDE5DA;
  --white:      #FFFFFF;
  --grey:       #54635B;
  --grey-2:     #93A099;
  --line:       rgba(11,94,67,.15);
  --line-soft:  rgba(11,94,67,.08);

  --maxw: 1320px;
  --gutter: clamp(22px, 5vw, 88px);
  --header-h: 92px;
  --logo-h: 52px;       /* WealthAccess is a stacked mark + wordmark */
  --logo-foot-h: 64px;

  --f-sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-lg: 0 40px 90px -30px rgba(4,32,26,.55);
  --shadow-md: 0 24px 60px -24px rgba(4,32,26,.42);
  --shadow-sm: 0 14px 34px -18px rgba(4,32,26,.4);
}

:root {
  --mesh:
    radial-gradient(120% 130% at 12% -10%, rgba(44,196,137,.42) 0%, transparent 55%),
    radial-gradient(100% 120% at 100% 110%, rgba(22,160,106,.45) 0%, transparent 55%),
    linear-gradient(155deg, #0B5E43 0%, #073D2C 50%, #04201A 100%);
}

/* ----------  reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0; font-family: var(--f-sans); font-weight: 400; color: var(--ink);
  background: var(--paper); line-height: 1.7; font-size: 16px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.04; font-style: normal; }
::selection { background: var(--emerald); color: #fff; }

/* film-grain overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ----------  eyebrow + tick motif  ---------- */
.eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 24px; display: inline-flex; align-items: center; gap: 16px;
}
.ticks { display: inline-flex; gap: 5px; }
.ticks i { width: 2px; height: 16px; background: var(--gold); display: block; transform-origin: bottom; animation: tickPulse 2.6s var(--ease) infinite; }
.ticks i:nth-child(2) { animation-delay: .18s; }
.ticks i:nth-child(3) { animation-delay: .36s; }
@keyframes tickPulse { 0%,100%{ transform: scaleY(.6); opacity:.55 } 45%{ transform: scaleY(1); opacity:1 } }

/* ----------  type scale (upright serif display)  ---------- */
.display { font-family: var(--f-serif); font-weight: 600; font-size: clamp(2.9rem, 7vw, 6rem); letter-spacing: -0.015em; line-height: 1.0; }
.display .accent { color: var(--gold); font-style: normal; }
.h-xl  { font-family: var(--f-serif); font-weight: 600; font-size: clamp(2.1rem, 4.6vw, 3.7rem); letter-spacing: -0.01em; line-height: 1.05; }
.h-xl .accent { color: var(--gold-deep); }
.h-lg  { font-family: var(--f-serif); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.lede  { font-size: clamp(1.08rem, 1.5vw, 1.4rem); font-weight: 300; color: var(--grey); line-height: 1.62; }

/* ----------  buttons  ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid currentColor; border-radius: 100px;
  transition: color .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), transform .35s var(--ease);
  cursor: pointer; background: transparent; overflow: hidden; isolation: isolate;
}
.btn .arr { transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(7px); }
.btn--gold { background: var(--gold); color: var(--forest-3); border-color: var(--gold); }
.btn--gold::before { content:""; position:absolute; inset:0; z-index:-1; background: var(--gold-soft); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn--gold:hover::before { transform: translateY(0); }
.btn--ghost-light { color: var(--white); border-color: rgba(255,255,255,.42); }
.btn--ghost-light:hover { background: var(--white); color: var(--forest); border-color:#fff; }
.btn--ghost-dark { color: var(--forest); }
.btn--ghost-dark:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

.tlink { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.tlink .arr { transition: transform .4s var(--ease); }
.tlink:hover .arr { transform: translateX(6px); }

/* ============================================================
   STATIC HEADER (sticky, consistent across all pages)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(247,245,238,.9);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); height: var(--header-h);
  transition: height .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled { height: 66px; box-shadow: 0 14px 40px -30px rgba(4,32,26,.55); }

.brand { display: flex; align-items: center; gap: 13px; line-height: 1; }
.brand-logo { display: block; height: var(--logo-h); width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand-logo { height: calc(var(--logo-h) - 8px); }
.site-footer .brand-logo { height: var(--logo-foot-h); filter: brightness(0) invert(1); opacity: .95; }
.brand .mark { width: 32px; height: 32px; flex: none; transition: transform .6s var(--ease); }
.brand:hover .mark { transform: rotate(-8deg); }
.brand .mark .leaf { fill: var(--emerald-2); }
.brand .mark .tick { stroke: var(--gold); }
.brand .wm { display: flex; align-items: baseline; gap: 9px; }
.brand .name { font-weight: 700; font-size: 20px; letter-spacing: 0.22em; color: var(--ink); }
.brand .amp { font-family: var(--f-serif); font-weight: 500; font-size: 21px; color: var(--gold); }
.brand .co  { font-size: 10.5px; letter-spacing: 0.3em; color: var(--gold-deep); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--grey); position: relative; padding: 6px 0; transition: color .35s var(--ease); white-space: nowrap;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .4s var(--ease); }
.nav a:hover { color: var(--forest); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--forest); }
.nav a.active::after { width: 100%; }

.nav .login { border: 1px solid var(--line); padding: 10px 20px; border-radius: 100px; font-size: 11px; letter-spacing: 0.14em; color: var(--forest); }
.nav .login::after { display: none; }
.nav .login:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-3); }

/* nav dropdowns */
.nav-item { position: relative; display: flex; align-items: center; }
.nav .caret { width: 9px; height: 6px; margin-left: 7px; opacity: .65; transition: transform .3s var(--ease); }
.nav-item.has-sub:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 230px; background: rgba(244,246,242,.98); backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .26s var(--ease), transform .26s var(--ease); z-index: 60;
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav-item.has-sub:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--grey); white-space: nowrap; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--paper-2); color: var(--forest); }

/* offset anchored sections below the sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: .4s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* ============================================================
   HOME HERO — green gradient + 3D globe + serif headline
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: var(--white); background: var(--forest-3);
  min-height: calc(100svh - var(--header-h)); display: flex; align-items: center;
}
.hero::before { content:""; position:absolute; inset:0; background: var(--mesh); }
/* dynamic cross-fading background (home) */
.hero--slides::before { content: none; }
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--forest-3); }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s var(--ease); will-change: opacity, transform; }
.hero__slide.active { opacity: 1; }
.has-js .hero__slide.active { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.17); } }
.hero__grade { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  radial-gradient(120% 90% at 80% 6%, rgba(44,196,137,.34) 0%, transparent 52%),
  linear-gradient(180deg, rgba(4,32,26,.60) 0%, rgba(4,32,26,.28) 38%, rgba(4,32,26,.88) 100%),
  linear-gradient(90deg, rgba(4,32,26,.86) 0%, rgba(4,32,26,.42) 50%, rgba(4,32,26,.16) 85%); }
.hero__globe { position: absolute; inset: 0 -8% 0 auto; width: 64%; z-index: 1; pointer-events: none; }
.hero__globe canvas { width: 100%; height: 100%; display: block; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(60px, 9vh, 120px); }
.hero__col { max-width: 640px; }
.hero .display { max-width: 15ch; }
.hero .display .accent { color: var(--gold-soft); }
.hero .lede { color: rgba(255,255,255,.84); max-width: 48ch; margin-top: 28px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero__cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero__panels { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); background: rgba(4,32,26,.4); }
.hero__panels a { padding: 24px 26px; border-left: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 6px; transition: background .45s var(--ease); position: relative; }
.hero__panels a::before { content:""; position:absolute; left:0; top:0; height:2px; width:0; background: var(--gold); transition: width .5s var(--ease); }
.hero__panels a:first-child { border-left: 0; }
.hero__panels a:hover { background: rgba(255,255,255,.06); }
.hero__panels a:hover::before { width:100%; }
.hero__panels .n { font-family: var(--f-serif); color: var(--gold-soft); font-size: 16px; font-weight: 600; }
.hero__panels .t { font-size: 13.5px; letter-spacing: 0.03em; color: var(--white); font-weight: 600; }
.hero__panels .s { font-size: 12px; color: rgba(255,255,255,.6); }

/* ============================================================
   PAGE BANNER (subpage hero)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--forest-3); padding-block: clamp(70px, 13vh, 150px); display: flex; align-items: center; min-height: 46vh; }
.page-hero::before { content:""; position:absolute; inset:0; background: var(--mesh); }
.page-hero__globe { position: absolute; inset: -20% -12% -20% auto; width: 46%; z-index: 1; opacity: .9; pointer-events: none; }
.page-hero__globe canvas { width: 100%; height: 100%; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.015em; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 56ch; margin-top: 22px; font-weight: 300; font-size: clamp(1.02rem,1.4vw,1.3rem); }
.crumbs { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 26px; }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span { color: var(--gold-soft); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--forest-3); color: rgba(255,255,255,.8); overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.marquee__row { display: flex; width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 26px; padding-inline: 26px; font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.1rem, 2vw, 1.7rem); white-space: nowrap; }
.marquee span::after { content: "✦"; font-size: .6em; color: var(--gold); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SCAFFOLD + reveal
   ============================================================ */
section { position: relative; }
.section { padding-block: clamp(84px, 12vh, 150px); }
.section--paper  { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section-head { max-width: 62ch; margin-bottom: 60px; }
.section-num { font-family: var(--f-serif); color: var(--gold-deep); font-size: 16px; font-weight: 600; display: block; margin-bottom: 16px; }

.has-js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.has-js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }

/* ----------  ABOUT split  ---------- */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.about__text p { color: var(--grey); max-width: 54ch; margin-top: 22px; }
.about__media { position: relative; }
.about__media .frame { position: relative; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about__media .frame::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(7,61,44,.35)); }
.about__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; transition: transform 1.4s var(--ease); }
.about__media:hover img { transform: scale(1.05); }
.about__media .badge { position: absolute; left: -30px; bottom: 40px; background: var(--forest); color: var(--white); padding: 26px 32px; border-radius: 4px; max-width: 240px; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.1); }
.about__media .badge .big { font-family: var(--f-serif); font-size: 3rem; font-weight: 600; line-height: 1; }
.about__media .badge .lab { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-top: 10px; }

.vm { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.vm .card { border-top: 2px solid var(--gold); padding-top: 24px; }
.vm .card h4 { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--forest); font-weight: 700; margin-bottom: 14px; }
.vm .card p { font-size: 15px; color: var(--grey); margin: 0; }

/* ----------  SECTORS / cards with 3D tilt  ---------- */
.grid-3d { perspective: 1400px; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.sector { background: var(--paper); padding: 42px 32px 46px; min-height: 300px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .5s var(--ease), color .5s var(--ease), transform .3s var(--ease), box-shadow .5s var(--ease); transform-style: preserve-3d; }
.sector::before { content:""; position:absolute; inset:0; background: var(--mesh); opacity:0; transition: opacity .5s var(--ease); z-index:0; }
.sector > * { position: relative; z-index: 1; }
.sector:hover { color: var(--white); z-index: 2; box-shadow: var(--shadow-md); }
.sector:hover::before { opacity: 1; }
.sector .ico { width: 42px; height: 42px; color: var(--gold); margin-bottom: 28px; transition: transform .5s var(--ease), color .5s var(--ease); }
.sector:hover .ico { transform: translateY(-4px) scale(1.06); color: var(--gold-soft); }
.sector h3 { font-family: var(--f-serif); font-size: 1.55rem; font-weight: 600; margin-bottom: 14px; }
.sector p { font-size: 14px; color: var(--grey); margin: 0; transition: color .5s var(--ease); }
.sector:hover p { color: rgba(255,255,255,.8); }
.sector .num { margin-top: auto; padding-top: 26px; font-family: var(--f-serif); font-weight: 600; font-size: 15px; color: var(--gold-deep); transition: color .5s var(--ease); }
.sector:hover .num { color: var(--gold-soft); }

/* ============================================================
   PHOTO BAND
   ============================================================ */
.band { position: relative; min-height: 88vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); }
.band__scrim { position: absolute; inset: 0; }
.band--left .band__scrim  { background: radial-gradient(90% 120% at 0% 50%, rgba(44,196,137,.22) 0%, transparent 55%), linear-gradient(90deg, rgba(4,32,26,.9) 0%, rgba(4,32,26,.55) 46%, rgba(4,32,26,.1) 100%); }
.band--right .band__scrim { background: radial-gradient(90% 120% at 100% 50%, rgba(44,196,137,.22) 0%, transparent 55%), linear-gradient(270deg, rgba(4,32,26,.9) 0%, rgba(4,32,26,.55) 46%, rgba(4,32,26,.08) 100%); }
.band__inner { position: relative; z-index: 2; width: 100%; }
.band__content { max-width: 560px; }
.band--right .band__content { margin-left: auto; }
.band .eyebrow { color: var(--gold-soft); }
.band p { color: rgba(255,255,255,.84); }

.principles { margin-top: 40px; display: grid; gap: 0; }
.principles .p { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.16); transition: padding-left .4s var(--ease); }
.principles .p:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.principles .p:hover { padding-left: 10px; }
.principles .p .k { font-family: var(--f-serif); font-weight: 600; color: var(--gold-soft); font-size: 22px; }
.principles .p h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 5px; }
.principles .p span { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; }

/* ============================================================
   THE GROUP (dark)
   ============================================================ */
.group { background: var(--forest-3); color: var(--white); position: relative; overflow: hidden; }
.group::before { content:""; position:absolute; inset:0; background: var(--mesh); opacity:.5; }
.group .wrap { position: relative; z-index: 1; }
.group .lede { color: rgba(255,255,255,.72); }
.group .eyebrow, .group .section-num { color: var(--gold-soft); }
.group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); margin-top: 54px; }
.company { background: rgba(7,61,44,.72); padding: 38px 32px; min-height: 230px; display: flex; flex-direction: column; transition: background .5s var(--ease); position: relative; overflow: hidden; }
.company:hover { background: rgba(31,122,85,.32); }
.company .tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.company h3 { font-family: var(--f-serif); font-size: 1.55rem; font-weight: 600; margin-bottom: 12px; }
.company p { font-size: 13.5px; color: rgba(255,255,255,.66); margin: 0; }
.company .arrow { margin-top: auto; padding-top: 24px; color: var(--gold); font-size: 20px; transition: transform .45s var(--ease); }
.company:hover .arrow { transform: translateX(8px); }

/* ============================================================
   INSIGHTS / cards
   ============================================================ */
.insights { background: var(--paper); }
.insights__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 54px; }
.insights__head .section-head { margin-bottom: 0; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.article { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); transform-style: preserve-3d; }
.article:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.article__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.article__img::after { content:""; position:absolute; inset:0; background: linear-gradient(160deg, rgba(14,59,44,.12), rgba(4,32,26,.32)); }
.article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.article:hover .article__img img { transform: scale(1.07); }
.article__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.article .meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; display: flex; gap: 12px; }
.article .meta .dot { color: var(--grey-2); }
.article h3 { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 600; line-height: 1.15; margin-bottom: 12px; }
.article p { font-size: 14px; color: var(--grey); margin: 0 0 22px; }
.article .tlink { margin-top: auto; }

/* ----------  generic list rows (news / events)  ---------- */
.rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
.row-item { display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease), background .4s var(--ease); }
.row-item:hover { padding-left: 14px; }
.row-item .date { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.row-item .body h3 { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.row-item .body p { font-size: 14px; color: var(--grey); margin: 0; max-width: 70ch; }
.row-item .go { color: var(--gold-deep); font-size: 20px; transition: transform .4s var(--ease); }
.row-item:hover .go { transform: translateX(8px); }
.tagpill { display: inline-block; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--line); border-radius: 100px; padding: 5px 14px; margin-bottom: 12px; }

/* ----------  team grid  ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.member { }
.member .ph { aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: var(--paper-2); position: relative; }
.member .ph::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(7,61,44,.4)); }
.member .ph img { width:100%; height:100%; object-fit: cover; }
.member h4 { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 600; margin-top: 18px; }
.member .role { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }

/* team bios (About > Our Team) */
.team-list { display: grid; gap: 26px; margin-top: 8px; }
.bio { display: grid; grid-template-columns: 200px 1fr; gap: 34px; align-items: stretch;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: box-shadow .5s var(--ease); }
.bio:hover { box-shadow: var(--shadow-md); }
.bio__photo { position: relative; background: var(--forest-2); }
.bio__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio__body { padding: 30px 32px 30px 0; }
.bio h3 { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 600; }
.bio .role { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin: 8px 0 16px; }
.bio p { font-size: 14.5px; color: var(--grey); margin: 0 0 12px; line-height: 1.7; }
@media (max-width: 680px){
  .bio { grid-template-columns: 1fr; }
  .bio__photo { aspect-ratio: 16/10; }
  .bio__body { padding: 0 24px 26px; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--forest); color: var(--white); position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: var(--mesh); opacity:.6; }
.stats .wrap { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: left; border-left: 1px solid rgba(255,255,255,.22); padding-left: 26px; }
.stat .num { font-family: var(--f-serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.stat .num .pre, .stat .num .suf { font-size: 1.4rem; color: var(--gold-soft); }
.stat .lab { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.74); margin-top: 16px; }
.stats--soft .num { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 600; line-height: 1.12; }
.stats--soft .stat .lab { margin-top: 14px; }

/* ----------  CTA strip  ---------- */
.cta-strip { background: var(--forest); color: var(--white); position: relative; overflow: hidden; text-align: center; }
.cta-strip::before { content:""; position:absolute; inset:0; background: var(--mesh); opacity:.6; }
.cta-strip .wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-strip h2 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(2rem, 4vw, 3.2rem); max-width: 20ch; }
.cta-strip p { color: rgba(255,255,255,.78); max-width: 56ch; margin-top: 18px; }
.cta-strip .hero__cta { justify-content: center; margin-top: 34px; }

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); }
.contact .lede { max-width: 42ch; }
.office { margin-top: 36px; }
.office .city { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest); font-weight: 700; margin-bottom: 12px; }
.office p { color: var(--grey); margin: 0; font-size: 15px; line-height: 1.9; }

.form { display: grid; gap: 20px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form input, .form textarea { width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 15px 16px; font-family: var(--f-sans); font-size: 15px; color: var(--ink); transition: border-color .35s var(--ease); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form input::placeholder, .form textarea::placeholder { color: var(--grey-2); }
.form textarea { resize: vertical; min-height: 120px; }

.site-footer { background: var(--forest-3); color: rgba(255,255,255,.62); padding-block: 70px 32px; position: relative; overflow: hidden; }
.site-footer::before { content:""; position:absolute; inset:0; background: var(--mesh); opacity:.4; }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-top .brand .name { color: var(--white); }
.footer-top .brand .co { color: var(--gold); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-cols h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; font-weight: 700; }
.footer-cols a { display: block; font-size: 14px; color: rgba(255,255,255,.62); padding: 6px 0; transition: color .35s var(--ease); }
.footer-cols a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 12px; letter-spacing: 0.04em; }
.footer-bottom .social { display: flex; gap: 24px; }
.footer-bottom .social a:hover { color: var(--gold); }

/* sandbox ribbon */
.sandbox-flag { position: fixed; right: -44px; top: 28px; transform: rotate(45deg); z-index: 200; background: var(--gold); color: var(--forest-3); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 52px; box-shadow: 0 6px 20px rgba(0,0,0,.25); }

/* ============================================================
   FLOATING MESSAGE BUTTON (fixed, with wave pulse)
   ============================================================ */
.fab { position: fixed; right: clamp(18px,3vw,30px); bottom: clamp(18px,3vw,30px); z-index: 130;
  width: 62px; height: 62px; border-radius: 50%; background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 36px -10px rgba(4,32,26,.55);
  transition: transform .35s var(--ease), background .35s var(--ease); }
.fab:hover { transform: scale(1.08); background: var(--emerald); }
.fab svg { width: 26px; height: 26px; position: relative; z-index: 2; }
.fab__wave { position: absolute; inset: 0; border-radius: 50%; background: var(--emerald-2); z-index: 1; opacity: .55; animation: fabwave 2.8s ease-out infinite; }
.fab__wave:nth-child(2) { animation-delay: 1.4s; }
@keyframes fabwave { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.2); opacity: 0; } }
.fab__tip { position: absolute; right: 74px; white-space: nowrap; background: var(--forest-3); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 8px 14px; border-radius: 8px;
  opacity: 0; transform: translateX(8px); transition: .3s var(--ease); pointer-events: none; box-shadow: var(--shadow-sm); }
.fab:hover .fab__tip { opacity: 1; transform: none; }

/* ============================================================
   BIO MODAL (Our Team "View more")
   ============================================================ */
.bio__full { display: none; }
.bio__more { margin-top: 14px; align-self: flex-start; }
.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal.open { display: flex; }
.modal__scrim { position: absolute; inset: 0; background: rgba(4,32,26,.6); backdrop-filter: blur(3px); }
.modal__card { position: relative; z-index: 1; background: #fff; border-radius: 14px; max-width: 720px; width: 100%;
  max-height: 88vh; overflow: auto; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 220px 1fr; }
.modal__photo { background: var(--forest-2); }
.modal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal__body { padding: 34px 36px 38px; }
.modal__body h3 { font-family: var(--f-serif); font-size: 1.8rem; font-weight: 600; }
.modal__body .role { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin: 8px 0 18px; }
.modal__body p { font-size: 14.5px; color: var(--grey); line-height: 1.75; margin-bottom: 12px; }
.modal__close { position: absolute; top: 14px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--forest); font-size: 20px; cursor: pointer; line-height: 1; }
.modal__close:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-3); }
@media (max-width: 600px){ .modal__card { grid-template-columns: 1fr; } .modal__photo { aspect-ratio: 16/10; } }

/* ============================================================
   IN-PAGE SECTION STEPPER (Previous / Next)
   ============================================================ */
.secnav { margin-top: clamp(40px, 6vh, 72px); }
.secnav__row { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 22px; }
.secnav__btn { display: inline-flex; align-items: center; gap: 14px; padding: 8px 4px; max-width: 49%; }
.secnav__btn .arr { font-size: 20px; color: var(--gold-deep); transition: transform .35s var(--ease); }
.secnav__prev:hover .arr { transform: translateX(-6px); }
.secnav__next:hover .arr { transform: translateX(6px); }
.secnav__btn .txt { display: flex; flex-direction: column; }
.secnav__next .txt { text-align: right; align-items: flex-end; }
.secnav .lab { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-2); font-weight: 700; }
.secnav .ttl { font-family: var(--f-serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.secnav__btn:hover .ttl { color: var(--forest); }
.secnav--dark .secnav__row { border-color: rgba(255,255,255,.18); }
.secnav--dark .ttl { color: #fff; }
.secnav--dark .secnav__btn:hover .ttl { color: var(--gold-soft); }
.secnav--dark .lab { color: rgba(255,255,255,.55); }
.secnav--dark .arr { color: var(--gold-soft); }
.secnav__btn-empty { flex: 1; }
@media (max-width: 600px){ .secnav .ttl { font-size: 1rem; } .secnav .lab { font-size: 9.5px; } }

@media (prefers-reduced-motion: reduce){ .fab__wave { animation: none; opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { gap: 20px; }
  .nav a { font-size: 11px; }
  .hero__globe { width: 80%; opacity: .5; }
}
@media (max-width: 1024px) {
  .hero__panels { grid-template-columns: repeat(2, 1fr); }
  .hero__panels a:nth-child(odd) { border-left: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .group-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; max-width: 560px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
}
@media (max-width: 760px) {
  :root { --header-h: 66px; }
  .nav { position: fixed; inset: 0 0 0 26%; background: var(--forest-2); flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 0 44px; transform: translateX(100%); transition: transform .55s var(--ease); box-shadow: var(--shadow-lg); }
  .nav.open { transform: none; }
  .nav a { color: rgba(255,255,255,.9); font-size: 16px; }
  .nav a.active { color: var(--gold-soft); }
  .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav .caret { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border: 0; box-shadow: none; padding: 2px 0 6px 14px; }
  .dropdown::before { display: none; }
  .dropdown a { padding: 8px 0; text-transform: none; letter-spacing: .03em; font-size: 14px; color: rgba(255,255,255,.66); }
  .dropdown a:hover { background: transparent; color: var(--gold-soft); }
  .nav .login { color: #fff; border-color: rgba(255,255,255,.4); }
  .nav-toggle { display: block; }
  .nav.open ~ .nav-toggle span { background: #fff; }
  .about { grid-template-columns: 1fr; }
  .about__media .badge { left: 20px; bottom: 20px; }
  .vm, .contact-grid, .form .row { grid-template-columns: 1fr; }
  .sectors-grid, .group-grid, .stats-grid, .team-grid { grid-template-columns: 1fr; }
  .band { min-height: auto; padding-block: 100px; }
  .band--right .band__content { margin-left: 0; }
  .hero__panels { display: none; }
  .hero__globe, .page-hero__globe { opacity: .35; }
  .insights__head { flex-direction: column; align-items: flex-start; }
  .row-item { grid-template-columns: 1fr; gap: 8px; }
  .row-item .go { display: none; }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); padding-left: 0; padding-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
