/* =========================================================
   Lending Australia — CLEAN FULL DROP-IN
   File: css/style.css
   ✅ Removes duplicates (ONE nav system, ONE of each section)
   ✅ Matches your CURRENT HTML classnames
   ✅ Nav: transparent on hero → glass on scroll (via .is-glass)
========================================================= */

/* -------------------------
   TOKENS + RESET
------------------------- */
:root{
  --bg: #000000;
  --bg2: #0A0A0A;
  --white: #ffffff;
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.75);
  --line: rgba(255,255,255,0.08);
  --accent: #0F3A8C;
  --glass: rgba(10, 14, 26, 0.72);

  --max: 1220px;

  /* Section Padding */
  --section-padding-v: clamp(110px, 10vw, 140px);
  --section-padding-v-tablet: clamp(80px, 8vw, 100px);
  --section-padding-v-mobile: clamp(60px, 6vw, 80px);

  /* Typography Scale */
  --h1-size: clamp(48px, 7vw, 76px);
  --h2-size: clamp(34px, 5vw, 54px);
  --h3-size: clamp(24px, 3vw, 32px);
  
  /* Readability */
  --line-height-body: 1.7;
  --max-width-readable: 65ch;

  /* Internal Spacing gaps */
  --gap-small: clamp(16px, 2vw, 24px);
  --gap-major: clamp(32px, 4vw, 48px);

  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Manrope", "Inter", system-ui, sans-serif;
  --tracking-tight: -0.02em;
  --tracking-base: 0em;
  --tracking-wide: 0.02em;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
body{
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  line-height: var(--line-height-body);
}
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }
img,video{ display:block; max-width:100%; }

/* Utility */
.container{
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}
@media (max-width: 700px){
  .container{ width: calc(100% - 40px); }
}

/* -------------------------
   NAV (your HTML)
   header.la-nav.la-nav--entourage#siteNav
------------------------- */
.la-nav.la-nav--entourage{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;

  /* default: transparent */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition: background-color .6s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter .6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .6s cubic-bezier(0.16, 1, 0.3, 1), border-color .6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* glass after scroll (JS toggles .is-scrolled) */
.la-nav.la-nav--entourage.is-scrolled{
  background: rgba(10,10,10,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* inner layout: logo left, links center, phone right */
.la-nav.la-nav--entourage .la-nav__inner{
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  padding: 14px 0 12px;

  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  gap: 18px;
}

/* logo */
.la-nav.la-nav--entourage .la-nav__brand{
  justify-self: start;
  display: inline-flex;
  align-items: center;
}
.la-nav.la-nav--entourage .la-nav__brandText{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(255,255,255,.08);
  -webkit-text-stroke: 1px rgba(255,255,255,.78);
  line-height: 1;
}

@supports (text-stroke: 1px rgba(255,255,255,.78)) {
  .la-nav.la-nav--entourage .la-nav__brandText {
    text-stroke: 1px rgba(255,255,255,.78);
  }
}

/* links */
.la-nav.la-nav--entourage .la-nav__links{
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
}
.la-nav.la-nav--entourage .la-nav__link{
  color: rgba(255,255,255,.80);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 12px 0;
  white-space: nowrap;
  transition: opacity .2s ease, transform .2s ease;
}
.la-nav.la-nav--entourage .la-nav__link:hover{
  color: var(--accent);
  transform: translateY(-1px);
}
.la-nav.la-nav--entourage .la-nav__link .chev{
  font-size: 12px;
  opacity: .7;
  margin-left: 4px;
}

/* phone */
.la-nav.la-nav--entourage .la-nav__phone{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .02em;
}
.la-nav.la-nav--entourage .la-nav__phoneIcon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
}
.la-nav.la-nav--entourage .la-nav__phoneIcon svg{
  width: 18px;
  height: 18px;
}
.la-nav.la-nav--entourage .la-nav__phoneNum{
  font-size: 14px;
  opacity: .95;
}

/* divider (Legacy/Generic) */
.la-nav.la-nav--entourage .la-nav__rule{
  display: none;
}

/* burger (mobile) */
.la-nav.la-nav--entourage .la-nav__burger{
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  padding: 10px;
}
.la-nav.la-nav--entourage .la-nav__burger span{
  display: block;
  height: 2px;
  margin: 6px 0;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
}

/* responsive nav */
@media (max-width: 1100px){
  .la-nav.la-nav--entourage .la-nav__inner{
    width: calc(100% - 44px);
    grid-template-columns: 1fr 44px;
  }
  .la-nav.la-nav--entourage .la-nav__links,
  .la-nav.la-nav--entourage .la-nav__phone{ display: none; }
  .la-nav.la-nav--entourage .la-nav__burger{ display: inline-block; }
}

/* -------------------------
   GLOBAL LIGHT THEME UTILITY
------------------------- */
.la-section--light {
  background: #ffffff !important;
  color: #0b1220 !important;
}
.la-section--light h1,
.la-section--light h2,
.la-section--light h3,
.la-section--light h4 {
  color: #0b1220 !important;
}
.la-section--light p,
.la-section--light li {
  color: rgba(11, 18, 32, 0.8) !important;
}
.la-section--light .la-reveal-line { background: rgba(11, 42, 85, 0.15); }

/* -------------------------
   HERO
------------------------- */
.la-hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.la-hero__bg{
  position: absolute;
  inset: 0;
}
.la-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) contrast(1.05);
  transform: scale(1.02);
}
.la-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.65) 100%
  );
}

.la-hero__inner{
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  min-height: 100vh;

  /* vertical centering & premium airiness */
  padding: 300px 60px 100px;

  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 30px;
}

.la-hero__content{
  max-width: 800px;
  padding-bottom: 60px;
}
.la-hero__title{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--h1-size);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  color: var(--text);
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.la-hero__sub{
  margin-top: var(--gap-major);
  max-width: var(--max-width-readable);
  font-size: 20px;
  line-height: var(--line-height-body);
  color: #fff;
  opacity: 0.95;
}
.la-hero__actions{
  margin-top: var(--gap-major);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.la-btn-white{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-btn-white:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 58, 140, 0.3);
  filter: brightness(1.15);
}
.la-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 14px 28px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:1.3px;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.20);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s ease, opacity .3s ease;
}
.la-btn:hover{ transform: translateY(-1px); }
.la-btn--primary{
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.la-btn--primary:hover{
  filter: brightness(1.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 58, 140, 0.35);
}
.la-btn--ghost{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.la-btn--ghost:hover{
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.la-play{
  width:32px;
  height:32px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.16);
  font-size:11px;
}

/* stats bottom-right */
.la-stats{
  position: absolute;
  right: 28px;
  bottom: 42px;
  display: flex;
  gap: 56px;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 3;
}

.la-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  color: var(--text-muted);
  min-width: 140px;
}
.la-stat__icon{
  width: 72px;
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.68);
  margin-bottom:10px;
}
.la-ico{ width:56px; height:56px; opacity:.9; }

.la-stat__text{
  font-size: 13px;
  line-height: 1.25;
}
.la-stat__text span{ opacity:.78; font-size: 12px; }

/* scroll hint */
.la-scroll{
  position:absolute;
  left:28px;
  bottom:18px;
  z-index:3;
  color:rgba(255,255,255,.55);
  font-size:18px;
}

/* hero responsive */
@media (max-width: 980px){
  .la-hero__inner{
    padding: 160px 32px 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .la-hero__content{ padding-bottom: 18px; }
  .la-hero__title{ font-size: 48px; }
  .la-stats{
    position: relative;
    right: auto; bottom: auto;
    margin-top: 18px;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .la-stat{ min-width: 120px; }
}
@media (max-width: 420px){
  .la-hero__title{ font-size: 40px; }
}

/* -------------------------
   SERVICES (your HTML: .la-services.la-services--text)
------------------------- */
.la-services{
  padding: var(--section-padding-v) 0;
  background: var(--bg2);
  color: var(--text);
}

.la-services--text .la-services__inner{
  width: min(1300px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px){
  .la-services--text .la-services__inner{
    width: calc(100% - 44px);
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.la-services__topline{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.la-services__kicker{
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .75;
  white-space: nowrap;
}
.la-services--text .la-services__rule{
  height: 1px;
  flex: 1;
  background: var(--line);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}
.la-services__topline.is-inview .la-services__rule {
  transform: scaleX(1);
}

.la-services--text .la-services__title{
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  line-height: 1.1;
  margin-bottom: var(--gap-major);
}
.la-services--text .la-services__copy p{
  margin-bottom: var(--gap-small);
  line-height: var(--line-height-body);
  opacity: 0.85;
  max-width: var(--max-width-readable);
}
.la-section--light .la-services--text .la-services__copy p { color: #0b1220 !important; opacity: 0.8; }

.la-services__actions{
  margin-top: 26px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* buttons used in your HTML */
.la-btn-primary, .la-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s ease, border-color .3s ease, opacity .3s ease;
}
.la-btn-primary{
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.la-btn-primary:hover{ 
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 58, 140, 0.3);
}
.la-btn-outline{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.la-btn-outline:hover{
  transform: translateY(-1px);
  background: var(--accent);
  border-color: var(--accent);
}

/* right side */
.la-services--text .la-services__right{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* feature card */
.la-services--text .la-service-feature{
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s ease, border-color .4s ease, box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-services--text .la-service-feature:hover{
  transform: translateY(-6px) scale(1.02);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
/* === LIGHT THEME: feature card === */
.la-section--light .la-services--text .la-service-feature {
  background: #ffffff;
  border: 1px solid rgba(11, 42, 85, 0.12);
  box-shadow: 0 4px 20px rgba(11, 42, 85, 0.06);
}
.la-section--light .la-services--text .la-service-feature:hover {
  background: #f4f7ff;
  border-color: rgba(15, 58, 140, 0.25);
  box-shadow: 0 12px 40px rgba(15, 58, 140, 0.12);
}
.la-services--text .la-service-feature h3{
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 6px;
}
.la-services--text .la-service-feature p{
  font-size: 13px;
  opacity: 0.72;
}

/* list rows */
.la-services--text .la-service-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px;
  margin: 0 -16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 12px;
}
/* === LIGHT THEME: service rows === */
.la-section--light .la-services--text .la-service-row {
  border: 1px solid rgba(11, 42, 85, 0.1);
  border-radius: 14px;
  margin: 0 0 8px;
  padding: 16px 20px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(11, 42, 85, 0.04);
}
.la-section--light .la-services--text .la-service-row:hover {
  background: #f4f7ff;
  border-color: rgba(15, 58, 140, 0.22);
  box-shadow: 0 6px 20px rgba(15, 58, 140, 0.08);
}
.la-services--text .la-service-row:hover{
  padding-left: 24px;
  background: rgba(255,255,255,0.04);
}
.la-services--text .la-service-title{
  font-family: var(--font-heading);
  font-size: 20px;
}
.la-services--text .la-service-meta{
  font-size: 13px;
  opacity: 0.72;
}

/* circle arrow */
@keyframes circlePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255, 0.2); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255, 0); }
}

.la-services--text .la-circle{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  animation: circlePulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  transition: background .4s ease, color .4s ease, transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease;
}
.la-section--light .la-services--text .la-service-feature .la-circle,
.la-section--light .la-services--text .la-service-row .la-circle {
  background: rgba(15, 58, 140, 0.08);
  color: var(--accent);
}
.la-services--text .la-service-feature:hover .la-circle,
.la-services--text .la-service-row:hover .la-circle {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1) rotate(-45deg);
}

/* -------------------------
   WHY (your HTML: .la-why)
------------------------- */
.la-why{
  padding: var(--section-padding-v) 0;
  background: var(--bg);
  color: var(--text);
}
.la-why__inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}
.la-why__eyebrow{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}
.la-why__title{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-weight: 700;
  font-size: var(--h2-size);
  line-height: 1.1;
  margin: 0 auto var(--gap-major);
  max-width: 25ch;
}
.la-why__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  align-items: stretch;
  margin-top: 26px;
  background: var(--line); /* Soften lines between cards */
}
@media (max-width: 1100px){
  .la-why__inner{ padding: 0 22px; }
  .la-why__grid{ grid-template-columns: repeat(2, 1fr); gap: 2px; }
}
@media (max-width: 620px){
  .la-why__grid{ grid-template-columns: 1fr; gap: 2px; }
}

.la-why__card{
  background: var(--bg2);
  padding: 60px 40px;
  text-align: left;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.la-why__card:hover{
  background: #141414;
  transform: translateY(-4px);
}

.la-why__icon{
  width: 44px;
  height: 44px;
  color: var(--text);
  margin-bottom: 32px;
  transition: color 0.3s ease;
}
.la-why__card:hover .la-why__icon{
  color: #fff;
}
.la-why__icon svg{
  width: 100%;
  height: 100%;
  stroke-width: 1.2px !important;
  vector-effect: non-scaling-stroke;
}

.la-why__cardTitle{
  font-family: var(--font-heading) !important;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.la-why__card:hover .la-why__cardTitle{
  color: #fff;
}
.la-why__cardText{
  font-family: Georgia, serif;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  color: #444;
  transition: color 0.3s ease;
}
.la-why__card:hover .la-why__cardText{
  color: rgba(255,255,255,.8);
}

.la-why__cta{
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.la-why__ctaBtn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--accent);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-why__ctaBtn:hover{
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 58, 140, 0.12);
}
.la-why__ctaArrow{ transform: translateY(-1px); }

/* -------------------------
   TESTIMONIALS (your HTML: .la-testi.la-testi--blue)
------------------------- */
.la-testi{
  padding: var(--section-padding-v) 0;
  background: var(--bg2);
  color: var(--text);
}
.la-testi__inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 60px;
}
.la-testi__head{
  max-width: 800px;
  margin-bottom: 64px;
}
.la-testi__eyebrow{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: normal;
  color: #757471;
  margin: 0 0 24px 0;
  line-height: 1.3;
}
.la-testi__title{
  font-family: var(--font-heading) !important;
  font-weight: 700;
  font-size: var(--h2-size);
  line-height: 1.1;
  letter-spacing: normal;
  color: var(--text);
  margin: 0;
  max-width: var(--max-width-readable);
}

.la-testi__wrap{ margin-top: 24px; }
.la-testi__track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .la-testi__track{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
  }
}

.la-testi__track::-webkit-scrollbar{ display:none; }

.la-testiCard{
  display: flex;
  flex-direction: column;
  position: relative;
  background: none;
  min-height: 500px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 980px) {
  .la-testiCard{
    flex: 0 0 clamp(320px, 80vw, 400px);
    scroll-snap-align: start;
  }
}
.la-testiCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(10, 30, 60, .15);
}

.la-testiCard__media{
  position: relative;
  display: block;
  height: 380px;
}
.la-testiCard__imgWrap{
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}
.la-testiCard__imgWrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: transform .4s ease, filter .4s ease;
}
.la-testiCard:hover .la-testiCard__imgWrap img{ 
  transform: scale(1.03); 
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}

.la-testiCard__play{
  position: absolute;
  right: 40px;
  top: 380px;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(5, 18, 40, .15);
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-testiCard:hover .la-testiCard__play {
  transform: translateY(-50%) scale(1.15);
}
.la-testiCard__play svg{
  width: 24px;
  height: 24px;
  transform: translateX(2px);
}

.la-testiCard__body{
  flex: 1;
  padding: 40px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}
.la-section--light .la-testiCard__body { 
  background: #f8f9fb; 
  border: 1px solid rgba(11, 42, 85, 0.05);
  border-top: none; 
}
.la-section--light .la-testiCard:hover .la-testiCard__body {
  background: #ffffff;
  border-color: rgba(15, 58, 140, 0.15);
  box-shadow: 0 12px 30px rgba(11, 42, 85, 0.06);
}
  color: #fff;
  transition: background 0.5s ease;
}
.la-testi--blue .la-testiCard:hover .la-testiCard__body{
  background: #111;
}
.la-testi--blue .la-testiCard__play{
  color: var(--accent);
}
.la-testiCard__tag{
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 14px;
}
.la-testiCard__name{
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.3;
}
.la-testiCard__text{
  margin: 0 0 20px;
  opacity: .85;
  line-height: 1.6;
  font-size: 14px;
}
.la-testiCard__meta{
  font-size: 13px;
  opacity: .7;
}

.la-testi__nav{
  display: none;
  gap: 12px;
  margin-top: 22px;
}
.la-section--light .la-testi__btn { border-color: rgba(11, 42, 85, 0.2); color: #0b1220; }
.la-section--light .la-testi__btn:hover { border-color: var(--accent); color: #fff; }
.la-testi__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s ease, opacity .3s ease;
}
.la-testi__btn:hover{ transform: translateY(-1px); background: var(--accent); border-color: var(--accent); }
.la-testi__btn:disabled{ opacity: .35; cursor: default; transform: none; }

@media (max-width: 980px){
  .la-testi__inner{ padding: 0 22px; }
  .la-testi__track{ justify-content: flex-start; }
  .la-testi__nav{ display: flex; }
}

/* -------------------------
   FINAL CTA (your HTML: .la-finalcta2)
------------------------- */
.la-finalcta2{
  padding: var(--section-padding-v) 0;
  background: var(--bg);
  color: var(--text);
}
.la-finalcta2__inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.la-finalcta2__card{
  border-radius: 22px;
  padding: clamp(32px, 5vw, 48px);
  background: var(--bg2);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .4);
  display: grid;
  grid-template-columns: .85fr 1.35fr; /* Flipped ratio: stats left, text right */
  gap: 28px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* New Left Column (Stats) - anchored to bottom */
.la-finalcta2__stats-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Push stats to the bottom */
  gap: 16px;
}

/* New Right Column (Text) */
.la-finalcta2__text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 980px){
  .la-finalcta2__card{ grid-template-columns: 1fr; }
  .la-finalcta2__stats-block { order: 2; align-items: flex-start; } /* Stats move below text on mobile */
  .la-finalcta2__text-content { order: 1; }
}

.la-finalcta2__kicker{
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}
.la-finalcta2__title{
  font-family: var(--font-heading) !important;
  font-weight: 700;
  font-size: var(--h2-size);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 var(--gap-small);
}
.la-finalcta2__sub{
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: var(--line-height-body);
  margin: 0 0 var(--gap-major);
  max-width: var(--max-width-readable);
}

.la-finalcta2__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.la-finalcta2__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s ease, border-color .3s ease, opacity .3s ease;
}
.la-finalcta2__btn:hover{ transform: translateY(-1px); }
.la-finalcta2__btn--primary{
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.la-finalcta2__btn--primary:hover{
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 58, 140, 0.3);
}
.la-finalcta2__btn--ghost{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.la-finalcta2__btn--ghost:hover{
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.la-finalcta2__meta{
  color: rgba(255,255,255,.60);
  font-size: 12px;
  line-height: 1.5;
}

/* Individual Stat Box Styling */
.la-finalcta2__stat {
  background: rgba(255, 255, 255, 0.08); /* Dark translucent box */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.la-finalcta2__statBig{
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.la-finalcta2__statSmall{
  font-size: 13px;
  color: rgba(255,255,255,.76);
}

/* -------------------------
   CONTACT (your HTML: .la-contactBlue)
------------------------- */
.la-contactBlue{
  background: var(--bg2);
  color: var(--text);
  padding: var(--section-padding-v) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.la-contactBlue__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  align-items: start;
}

/* Mouse Tracking Spotlight */
.la-contactBlue__spotlight {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 40%
  );
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.la-contactBlue:hover .la-contactBlue__spotlight {
  opacity: 1;
}

/* Ensure foreground content overlaps the spotlight */
.la-contactBlue__inner > *:not(.la-contactBlue__spotlight) {
  position: relative;
  z-index: 1;
}

.la-contactBlue__eyebrow{
  font-size: 14px;
  color: rgba(255,255,255,.76);
  margin-bottom: 16px;
}
.la-footerBlue__title{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-weight: 700;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.la-contactBlue__title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h2-size);
  line-height: 1.1;
  margin: 0 0 var(--gap-major);
  max-width: 15ch;
}
.la-contactBlue__cta{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 220px;
  padding: 14px 18px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.la-contactBlue__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.la-contactBlue__social{
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.la-contactBlue__socBtn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: #111;
  font-weight: 700;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s ease;
}
.la-contactBlue__socBtn:hover{ 
  transform: translateY(-2px) scale(1.08); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 1; 
}

/* right rows */
.la-contactBlue__row{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 6px 0;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.la-contactBlue__row:hover {
  transform: translateX(4px);
}
.la-contactBlue__icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.la-contactBlue__row:hover .la-contactBlue__icon {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.12);
}
.la-contactBlue__rowTop{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}
.la-contactBlue__rowTop a{ color: rgba(255,255,255,.92); }
.la-contactBlue__rowSub{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.la-contactBlue__line{
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

/* newsletter panel */
.la-contactBlue__newsletter{
  grid-column: 2 / 3;
  margin-top: 40px;
  width: 100%;
  background: var(--bg);
  color: #fff;
  border-radius: 18px;
  padding: 30px 30px 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
  border: 1px solid var(--line);
}
.la-contactBlue__newsTitle{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 18px;
}
.la-contactBlue__form{
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.la-contactBlue__label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  display: grid;
  gap: 8px;
}
.la-contactBlue__input{
  height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  outline: none;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.la-contactBlue__input:focus {
  border-color: var(--laInk);
  box-shadow: 0 0 0 3px rgba(5, 18, 40, 0.08);
}
.la-contactBlue__submit{
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.la-contactBlue__submit:hover{ 
  transform: translateY(-1px);
  filter: brightness(1.15);
  box-shadow: 0 6px 16px rgba(15, 58, 140, 0.3);
}

.la-hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.la-formMessage {
  display: none;
  margin-top: 18px;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  grid-column: 1 / -1;
}

.la-formMessage.is-success {
  display: block;
  background: rgba(22, 163, 74, 0.14);
  color: #d7ffe6;
  border: 1px solid rgba(34, 197, 94, 0.32);
}

.la-formMessage.is-error {
  display: block;
  background: rgba(220, 38, 38, 0.14);
  color: #ffe1df;
  border: 1px solid rgba(248, 113, 113, 0.34);
}

@media (max-width: 980px){
  .la-contactBlue__inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .la-contactBlue__newsletter{
    grid-column: auto;
    justify-self: stretch;
  }
  .la-contactBlue__form{ grid-template-columns: 1fr; }
}

/* -------------------------
   FOOTER (your HTML: .la-footerBlue)
------------------------- */
.la-footerBlue{
  background: var(--bg);
  color: var(--text-muted);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

/* Mouse Tracking Spotlight */
.la-footerBlue__spotlight {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 40%
  );
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.la-footerBlue:hover .la-footerBlue__spotlight {
  opacity: 1;
}

.la-footerBlue__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.la-footerBlue__inner > *:not(.la-footerBlue__spotlight) {
  position: relative;
  z-index: 1;
}
.la-footerBlue__top{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.la-footerBlue__brand{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #fff;
  transition: text-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.la-footerBlue__brand:hover{
  text-shadow: 0 0 16px rgba(255,255,255,0.4);
  transform: translateY(-1px);
}
.la-footerBlue__muted{
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 6px;
}
.la-footerBlue__nav{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.la-footerBlue__nav a{
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-footerBlue__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-footerBlue__nav a:hover{
  color: var(--accent);
  transform: translateY(-2px);
}
.la-footerBlue__nav a:hover::after {
  width: 100%;
}

.la-footerBlue__rule{
  margin: 18px 0 16px;
  height: 1px;
  background: var(--line);
}
.la-footerBlue__disclaimer{
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,.50);
  margin-bottom: 24px;
}
.la-footerBlue__bottom{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.la-footerBlue__bottomLinks{
  display: flex;
  gap: 16px;
  font-size: 11px;
}
.la-footerBlue__bottomLinks a{
  color: rgba(255,255,255,.62);
  transition: color 0.3s ease;
}
.la-footerBlue__bottomLinks a:hover{
  color: var(--accent);
}

/* -------------------------
   REVEAL ANIMATION (optional)
------------------------- */
/* =========================
   ULTRA SMOOTH REVEAL
========================= */

/* Only reveal elements we mark (less work = smoother) */
.la-reveal{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 700ms cubic-bezier(.16,1,.3,1),
    transform 700ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.la-reveal-scaleX{
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  transition:
    opacity 800ms cubic-bezier(.16,1,.3,1),
    transform 800ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}

.la-reveal.is-active{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.la-reveal-scaleX.is-active{
  opacity: 1;
  transform: scaleX(1);
}

.la-reveal.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Smaller stagger but smoother */
.la-reveal[data-la-delay="1"]{ transition-delay: 60ms; }
.la-reveal[data-la-delay="2"]{ transition-delay: 120ms; }
.la-reveal[data-la-delay="3"]{ transition-delay: 180ms; }
.la-reveal[data-la-delay="4"]{ transition-delay: 240ms; }

/* Reduce jank on mobile */
@media (max-width: 900px){
  .la-reveal{ transition-duration: 520ms; }
}

/* =========================================================
   ✅ GLOBAL FONT SYSTEM (Option B)
   Inter = everything
   Playfair Display = headings / section titles only

   Paste this at the VERY END of css/style.css
========================================================= */

:root{
  --fontBody: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fontHead: var(--font-heading);
}

/* 1) Force Inter everywhere (kills random font switches) */
html, body{
  font-family: var(--fontBody) !important;
}
*, *::before, *::after{
  font-family: inherit !important;
}

/* 2) Forms (browsers love to override these) */
input, textarea, select, button, option{
  font-family: var(--fontBody) !important;
}

/* 3) Headings + your “title” components use Playfair */
h1, h2, h3, h4, h5, h6{
  font-family: var(--fontHead) !important;
}

/* Your specific headline/title classes across sections */
.la-hero__title,
.la-services__title,
.la-services__feature h3,
.la-service-feature h3,
.la-service-title,
.la-why__title,
.la-why__cardTitle,
.la-testi__title,
.la-testiCard__name,
.la-finalcta2__title,
.la-contactBlue__title,
.la-contactBlue__newsTitle,
.la-footerBlue__brand{
  font-family: var(--fontHead) !important;
}

/* 4) Keep nav/menu/phone always Inter (even if other rules exist) */
.la-nav,
.la-nav__brandText,
.la-nav__links,
.la-nav__link,
.la-nav__phone,
.la-nav__phoneNum{
  font-family: var(--fontBody) !important;
}

/* =========================================================
   NAV — Containerized, logo hard-left, links hard-right
   Works with your HTML:
   <header id="siteNav" class="la-nav la-nav--entourage">...
========================================================= */

#siteNav{
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* container stays centered (NOT full width) */
#siteNav .la-nav__inner{
  max-width: 1220px !important;              /* container width */
  width: calc(100% - 56px) !important;       /* responsive side padding */
  margin: 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important; /* ✅ hard left + hard right */
  gap: 0 !important;

  padding: 14px 0 12px !important;
}

/* logo hard-left */
#siteNav .la-nav__brand{
  flex: 0 0 auto !important;
  margin: 0 !important;
}

/* links hard-right */
#siteNav .la-nav__links{
  flex: 1 1 auto !important;
  display: flex !important;
  justify-content: flex-end !important;      /* ✅ push links to the right edge */
  align-items: center !important;
  gap: 26px !important;
  margin: 0 !important;
}

/* phone sits at the far right after links */
#siteNav .la-nav__phone{
  flex: 0 0 auto !important;
  margin-left: 26px !important;
}

/* thin divider full width under nav */
#siteNav .la-nav__rule{
  height: 1px !important;
  width: 100% !important;
  background: rgba(255,255,255,.16) !important;
  margin-top: 10px !important;
}

/* prevent any huge svg in nav */
#siteNav svg,
#siteNav img{
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

/* Glass on scroll (your JS adds nav-scrolled) */
#siteNav.nav-scrolled{
  background-color: rgba(10, 14, 26, 0.72) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.28) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

/* Mobile */
@media (max-width: 1100px){
  #siteNav .la-nav__inner{
    width: calc(100% - 40px) !important;
    padding: 12px 0 !important;
  }
  #siteNav .la-nav__links,
  #siteNav .la-nav__phone{
    display: none !important;
  }
  #siteNav .la-nav__burger{
    display: inline-block !important;
    margin-left: auto !important;
  }}
  /* =========================================================
   CONTACT PAGE (.la-cHero / .la-cBody)
========================================================= */

.la-cHero{
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
}

.la-cHero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.la-cHero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.la-cHero__shade{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 20% 45%, rgba(0,0,0,.55), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.78) 45%, var(--bg) 100%);
}

.la-cHero__inner{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  padding: 140px 0 90px;
  text-align: center;
}

.la-cHero__kicker{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  opacity: .9;
}

.la-cHero__kText{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.la-cHero__kRule{
  height: 1px;
  width: clamp(140px, 22vw, 360px);
  background: rgba(255,255,255,.22);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: transform;
}

.la-cHero__title{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 6vw, 86px);
  color: rgba(255,255,255,.96);
  margin: 0 auto 18px;
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.la-cHero__spotlight {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.la-cHero:hover .la-cHero__spotlight {
  opacity: 1;
}

@media (max-width: 768px){
  .la-cHero__inner{ padding: 120px 0 70px; }
}

.la-cBody{
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--bg2);
  color: #fff;
}
.la-cBody__bg{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg2);
}
@keyframes blobFloat {
  0% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.05) translate(2%, -2%); }
  66% { transform: scale(0.95) translate(-2%, 2%); }
  100% { transform: scale(1) translate(0, 0); }
}

.la-cBody__inner{
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.la-cLeft__kicker{
  color: var(--brand-accent);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}
.la-cLeft__title{
  font-family: var(--font-domaine, "Domaine Display", serif) !important;
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  color: #fff;
}
.la-cLeft__text{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.la-cContact{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.la-cContact__row{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
}
.la-cContact__row:hover{
  color: var(--brand-accent);
  transform: translateX(8px);
}
.la-cContact__icon{
  width: 48px;
  height: 48px;
  background: rgba(11,18,32,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
}
.la-cContact__icon svg{
  width: 20px;
  height: 20px;
}

.la-cFormPanel{
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.la-cFormPanel__title{
  font-family: var(--font-domaine, "Domaine Display", serif) !important;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  color: #fff;
}

.la-cGrid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.la-cField{
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.la-cField__label{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  color: #fff;
}
.la-cField__input{
  width: 100%;
  background: #111;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.la-cField__input:focus, .la-cField__input:hover{
  background: #1a1a1a;
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  outline: none;
}

/* =========================
   CONTACT MAP SECTION
========================= */
.la-cMapSection{
  padding: 100px 0;
  background: var(--bg);
  color: var(--text);
}
.la-cMapSection__inner{
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 980px){
  .la-cMapSection__inner{
    grid-template-columns: 1fr;
  }
}

.la-cMapLeft{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  min-height: 400px;
}
.la-cMapEmbed iframe{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.la-cMapRight{
  display: flex;
}
.la-cMapCard{
  background: var(--bg2);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.la-cMapCard__title{
  font-family: var(--font-heading) !important;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.la-cMapCard__sub{
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.la-cMapCard__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 600px){
  .la-cMapCard__grid{ grid-template-columns: 1fr; }
}
.la-cMapBox{
  background: #111;
  border-radius: 12px;
  padding: 20px;
}
.la-cMapBox__label{
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.la-cMapBox__value{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.la-cMapCard__actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.la-cMapCard__actions .la-btn--dark{
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  border-radius: 99px;
  padding: 14px 28px;
}
.la-cMapCard__actions .la-btn--dark:hover{
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 58, 140, 0.3);
}

.la-cMapCard__actions .la-btn--outline{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  border-radius: 99px;
  padding: 14px 28px;
}
.la-cMapCard__actions .la-btn--outline:hover{
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 58, 140, 0.3);
}
.la-cField__textarea{
  resize: vertical;
  min-height: 120px;
}

.la-cSubmit{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 36px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.la-cSubmit:hover{
  filter: brightness(1.15);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 58, 140, 0.3);
}

.la-cFineprint{
  margin-top: 16px;
  font-size: 13px;
  color: rgba(11,18,32,0.5);
}

@media (max-width: 992px){
  .la-cBody__inner{
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .la-cFormPanel{
    padding: 32px;
  }
}

@media (max-width: 600px){
  .la-cGrid2{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .la-cLeft__title{ font-size: 38px; }
}

/* =========================================================
   UTILITIES
========================================================= */

/* =========================================================
   NAV FONT SIZE INCREASE
========================================================= */

.la-nav__link{
  font-size: 22px !important;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.la-nav__brandText{
  font-size: 22px !important;
  font-weight: 700;
}

.la-nav__phoneNum{
  font-size: 22px !important;
  font-weight: 600;
}

/* =========================================================
   FULL WIDTH NAV (Edge to Edge)
========================================================= */

#siteNav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}

/* REMOVE CONTAINER LIMIT */
#siteNav .la-nav__inner{
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: space-between;

  padding: 18px 50px; /* controls side spacing */
}

/* Logo full left */
#siteNav .la-nav__brand{
  margin: 0;
}

/* Nav pushed right */
#siteNav .la-nav__links{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

/* Phone far right */
#siteNav .la-nav__phone{
  margin-left: 30px;
}

/* Scroll dark effect */
#siteNav.nav-scrolled{
  background-color: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* =========================================================
   FULL WIDTH NAV — 20px SIDE SPACING
========================================================= */

#siteNav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}

/* 20px spacing from edges */
#siteNav .la-nav__inner{
  width: 100% !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: space-between;

  padding: 18px 20px !important; /* ← THIS creates 20px left & right */
}

/* Logo left */
#siteNav .la-nav__brand{
  margin: 0;
}

/* Nav pushed right */
#siteNav .la-nav__links{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

/* Phone far right */
#siteNav .la-nav__phone{
  margin-left: 30px;
}

/* Scroll dark glass */
#siteNav.nav-scrolled{
  background: rgba(8, 12, 20, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
/* =========================================================
   HERO TEXT MOVE UP 10%
========================================================= */

.la-hero__content{
  transform: translateY(-20%);
}

/* =========================================================
   INCREASE ICON SIZE 20%
========================================================= */

/* Stats icons */
.la-stat__icon svg{
  width: 150%;
  height: 150%;
}

/* Why section icons */
.la-why__icon svg{
  width: 150%;
  height: 150%;
}

/* Testimonial play icon */
.la-testiCard__play svg{
  width: 150%;
  height: 150%;
}

/* Nav phone icon */
.la-nav__phoneIcon svg{
  width: 150%;
  height: 150%;
}
/* =========================================================
   MOVE ICONS UP SLIGHTLY
========================================================= */

/* If you want slightly more lift */
@media (min-width: 768px){
  .la-stat{
    transform: translateY(-70px);
  }
}

/* =========================================================
   ABOUT PAGE — ENTOURAGE THEME (ADD ONLY)
   Paste at END of css/style.css
========================================================= */

/* ✅ same font across site (Inter body, Playfair headings) */
:root{
  --la-body-font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --la-head-font: var(--font-heading);
}
body{ font-family: var(--la-body-font) !important; }
h1,h2,h3,h4{ font-family: var(--la-head-font); }

/* ---------------------------------------------------------
   About Hero
--------------------------------------------------------- */
.la-aboutHero{
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  color: rgba(255,255,255,.92);
  background: #050814;
  min-height: 2vh; /* smaller but still premium */

}
.la-aboutHero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 650px at 70% 30%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 520px at 18% 10%, rgba(255,255,255,.06), transparent 65%),
    linear-gradient(135deg, #050505 0%, #0A0A0A 55%, #111111 100%);
}
.la-aboutHero__inner{
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.la-aboutHero__kicker{
  display:flex;
  align-items:center;
  gap:16px;
  width: min(980px, 100%);
  margin: 0 auto 18px;
  color: rgba(255,255,255,.72);
}
.la-aboutHero__kText{
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.la-aboutHero__kRule{
  height:1px;
  flex:1;
  background: rgba(255,255,255,.18);
}
.la-aboutHero__title{
  width: min(980px, 100%);
  margin: 0 auto 14px;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.la-aboutHero__sub{
  width: min(980px, 100%);
  margin: 0 auto 22px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.75;
  max-width: 68ch;
}
.la-aboutHero__chips{
  width: min(980px, 100%);
  margin: 0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.la-chip{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              color 0.3s ease, 
              box-shadow 0.3s ease;
}
.la-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ---------------------------------------------------------
   Simon Intro (image + copy)
--------------------------------------------------------- */
.la-simon{
  background: var(--laBlue1);
  color: #fff;
  padding: 110px 0;
}
.la-simon__inner{
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px){
  .la-simon__inner{ grid-template-columns: 1fr; gap: 32px; }
}

.la-simon__media{
  position: relative;
}
.la-simon__frame{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 4 / 4.6;
}
.la-simon__img{
  width: 100%;
  height: 100%;
  display:block;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}
.la-simon__frame:hover .la-simon__img {
  transform: scale(1.06);
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}
.la-simon__glow{
  position:absolute;
  inset: -20px;
  background: radial-gradient(circle at 40% 35%, rgba(11,42,85,.22), transparent 60%);
  filter: blur(18px);
  opacity: .9;
  pointer-events:none;
}

.la-simon__eyebrow{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  font-weight: 700;
}
.la-simon__title{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-weight: 700;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
}
.la-simon__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  font-size: 15px;
  max-width: 70ch;
}
.la-simon__stats{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.la-miniStat{
  min-width: 160px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.la-miniStat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(11, 42, 85, 0.2);
}
.la-miniStat__big{
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.la-miniStat__small{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.la-btn--white {
  background-color: var(--accent) !important;
  color: #fff !important;
  border: 1px solid var(--accent) !important;
}
.la-btn--white:hover {
  filter: brightness(1.15) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 58, 140, 0.3);
}

.la-simon__actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   Values section
--------------------------------------------------------- */
.la-aboutValues{
  padding: 110px 0;
  background: #ffffff;
  color: #0b1220;
}
.la-aboutValues__inner{
  width: calc(100% - 40px);
  margin: 0 auto;
}
.la-aboutValues__head{
  width: min(800px, 100%);
  margin: 0 auto 26px;
}
.la-aboutValues__eyebrow{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(11,42,85,.70);
  font-weight: 800;
  margin-bottom: 10px;
}
.la-aboutValues__title{
  margin: 0;
  font-family: var(--font-domaine, "Domaine Display", "Playfair Display", Georgia, serif) !important;
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.08;
}

.la-aboutValues__grid{
  width: min(1200px, 100%);
  margin: 26px auto 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px){
  .la-aboutValues__grid{ grid-template-columns: 1fr; }
}
.la-aboutCard{
  background: #f2f4f8;
  border: 1px solid rgba(0,0,0,.06);
  padding: 26px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(10, 30, 60, .06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.la-aboutCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(10, 30, 60, 0.12);
}
.la-aboutCard__title{
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 22px;
}
.la-aboutCard__text{
  margin: 0;
  color: rgba(11,18,32,.72);
  line-height: 1.8;
  font-size: 14px;
}
/* =========================================================
   FIX ABOUT HERO SPACING UNDER FIXED NAV
========================================================= */

.la-aboutHero{
  padding-top: 110px !important; /* was too large */
}

/* Adjust based on your navbar height */

/* =========================================================
   HOW WE WORK — Process (Entourage-like)
========================================================= */

.la-process{
  padding: 96px 0;
  background: #f6f7fb;
}

.la-process__inner{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.la-process__head{
  text-align: center;
  margin-bottom: 34px;
}

.la-process__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 18, 26, .12);
  background: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(15,18,26,.62);
  margin-bottom: 18px;
}

.la-process__title{
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b1020;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  margin: 0 0 12px;
}

.la-process__sub{
  max-width: 680px;
  margin: 0 auto;
  color: rgba(15,18,26,.66);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

/* steps grid */
.la-process__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.la-step{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,18,26,.10);
  border-radius: 16px;
  padding: 20px 18px 18px;
  box-shadow: 0 16px 40px rgba(15, 18, 26, .08);
  min-height: 150px;
}

.la-step__num{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0b1020;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.la-footerBlue__brandTitle{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.la-step__title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #0b1020;
  margin: 0 0 8px;
}

.la-step__text{
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(15,18,26,.62);
}

/* CTA bar */
.la-processCta{
  margin-top: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,18,26,.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 20px 60px rgba(15, 18, 26, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.la-processCta__title{
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0b1020;
  font-size: 16px;
  margin-bottom: 6px;
}

.la-processCta__sub{
  font-family: var(--font-body);
  color: rgba(15,18,26,.62);
  font-size: 13px;
  line-height: 1.6;
}

.la-processCta__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.la-processCta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.la-processCta__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15,18,26,.12);
}

.la-processCta__btn--dark{
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.la-processCta__btn--light{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* responsive */
@media (max-width: 980px){
  .la-process__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
  .la-process{
    padding: 72px 0;
  }
  .la-process__inner{
    width: min(1100px, calc(100% - 28px));
  }
  .la-process__grid{ grid-template-columns: 1fr; }
  .la-processCta{
    flex-direction: column;
    align-items: flex-start;
  }
  .la-processCta__actions{
    width: 100%;
    justify-content: flex-start;
  }
  .la-processCta__btn{
    width: 100%;
  }
}

/* =========================================================
   FLOATING LET'S CHAT (Entourage style)
========================================================= */

.la-chatBubble{
  position: fixed;
  right: 28px;
  bottom: 120px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  z-index: 999;
  transition: transform .25s ease;
}

.la-chatBubble:hover{
  transform: translateY(-6px);
}

.la-chatBubble__text{
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.1;
  color: #0b1020;
  text-align: right;
}

.la-chatBubble__avatar{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,18,26,.25);
  border: 4px solid #fff;
  background: #fff;
}

.la-chatBubble__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle floating animation */
@keyframes floatChat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.la-chatBubble{
  animation: floatChat 4s ease-in-out infinite;
}

/* mobile adjust */
@media (max-width: 768px){
  .la-chatBubble{
    right: 18px;
    bottom: 90px;
  }

  .la-chatBubble__text{
    font-size: 15px;
  }

  .la-chatBubble__avatar{
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   PREMIUM FLOATING "LET'S CHAT" (Simon)
========================================================= */

.la-chatBubble{
  position: fixed;
  right: 32px;
  bottom: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  z-index: 999;
  animation: slideInChat .8s ease forwards;
  opacity: 0;
  transform: translateX(30px);
}

@keyframes slideInChat{
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

/* Text */
.la-chatBubble__text{
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
  color: #0b1020;
  text-align: right;
  transition: transform .3s ease;
}

/* Avatar wrapper */
.la-chatBubble__avatar{
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 25px 60px rgba(15,18,26,.35);
  transition: transform .3s ease;
}

/* Image */
.la-chatBubble__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}

/* Glow ring */
.la-chatBubble__avatar::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
  z-index:-1;
  filter: blur(6px);
}

/* Pulse ring */
.la-chatBubble__avatar::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:50%;
  border: 2px solid rgba(255,255,255,.15);
  animation: pulseRing 2.5s ease-out infinite;
  z-index:-1;
}

@keyframes pulseRing{
  0%{
    transform: scale(.95);
    opacity:.7;
  }
  70%{
    transform: scale(1.25);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}

/* Hover effect */
.la-chatBubble:hover .la-chatBubble__avatar{
  transform: scale(1.08);
}

.la-chatBubble:hover .la-chatBubble__text{
  transform: translateX(-4px);
}

/* Mobile adjust */
@media (max-width: 768px){
  .la-chatBubble{
    right: 18px;
    bottom: 90px;
  }

  .la-chatBubble__avatar{
    width: 64px;
    height: 64px;
  }

  .la-chatBubble__text{
    font-size: 18px;
  }
}

/* =========================================================
   ABOUT HERO – VIDEO BACKGROUND (Entourage style)
========================================================= */

.la-aboutHero{
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050814; /* fallback */
}

/* Video wrapper */
.la-aboutHero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video */
.la-aboutHero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03); /* tiny upscale = premium */
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

/* Overlay: dark + soft vignette + subtle blue */
.la-aboutHero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 600px at 55% 55%, rgba(0,0,0,.15), transparent 60%),
    radial-gradient(900px 520px at 20% 45%, rgba(0,0,0,.55), transparent 62%),
    linear-gradient(180deg, rgba(5,8,20,.65) 0%, rgba(5,8,20,.78) 45%, rgba(5,8,20,.92) 100%);
}

/* Content */
.la-aboutHero__inner{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  padding: 140px 0 90px;
  text-align: center;
}

/* Kicker line */
.la-aboutHero__kicker{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  opacity: .9;
}

.la-aboutHero__kText{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.la-aboutHero__kRule{
  height: 1px;
  width: clamp(140px, 22vw, 360px);
  background: rgba(255,255,255,.22);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: transform;
}

/* Title + sub */
.la-aboutHero__title{
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 6vw, 86px);
  color: rgba(255,255,255,.96);
  margin: 0 auto 18px;
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.la-aboutHero__sub{
  max-width: 760px;
  margin: 0 auto 26px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.74);
}

/* Chips */
.la-aboutHero__chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.la-aboutHero__spotlight {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.la-aboutHero:hover .la-aboutHero__spotlight {
  opacity: 1;
}

/* Prefer reduced motion (disables video) */
@media (prefers-reduced-motion: reduce){
  .la-aboutHero__video{ display: none; }
  .la-aboutHero__media{
    background: url("assets/about-poster.jpg") center/cover no-repeat;
  }
}

/* Mobile spacing */
@media (max-width: 768px){
  .la-aboutHero__inner{ padding: 120px 0 70px; }
}

/* =========================================================
   PREMIUM MOTION PACK (Entourage-style)
   Drop-in at END of css/style.css
========================================================= */

/* --- Global easing + perf --- */
:root{
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.2,.8,.2,1);
  --dur-fast: 180ms;
  --dur: 420ms;
  --dur-slow: 900ms;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior:auto !important; }
}

/* ---------------------------------
   Scroll reveal (UPGRADED)
---------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(6px);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    filter var(--dur) var(--ease-out);
  will-change: opacity, transform, filter;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal.delay-1{ transition-delay: 80ms; }
.reveal.delay-2{ transition-delay: 140ms; }
.reveal.delay-3{ transition-delay: 200ms; }
.reveal.delay-4{ transition-delay: 260ms; }

/* ---------------------------------
   About hero entrance
---------------------------------- */
.la-aboutHero__kicker,
.la-cHero__kicker,
.la-aboutHero__title,
.la-cHero__title,
.la-aboutHero__sub,
.la-cHero__sub,
.la-aboutHero__chips{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}

body.is-loaded .la-aboutHero__kicker, body.is-loaded .la-cHero__kicker{ transition-delay: 120ms; opacity:1; transform:none; }
body.is-loaded .la-aboutHero__kRule, body.is-loaded .la-cHero__kRule{ transform: scaleX(1); }
body.is-loaded .la-aboutHero__title, body.is-loaded .la-cHero__title{  transition-delay: 180ms; opacity:1; transform:none; }
body.is-loaded .la-aboutHero__sub, body.is-loaded .la-cHero__sub{    transition-delay: 260ms; opacity:1; transform:none; }
body.is-loaded .la-aboutHero__chips{  transition-delay: 340ms; opacity:1; transform:none; }

/* Subtle breathing glow behind hero */
.la-aboutHero__bg{
  transform: translateZ(0);
  animation: laHeroGlow 9s var(--ease-soft) infinite alternate;
  will-change: filter, opacity, transform;
}
@keyframes laHeroGlow{
  0%{ filter: blur(0px); opacity: 1; transform: scale(1); }
  100%{ filter: blur(1.5px); opacity: .98; transform: scale(1.012); }
}

/* ---------------------------------
   Premium card hover (process cards / values / etc.)
---------------------------------- */
.la-aboutCard,
.la-stepCard,
.la-simon__frame,
.la-miniStat{
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  will-change: transform;
}

.la-aboutCard:hover,
.la-stepCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  border-color: rgba(255,255,255,.20);
}

/* ---------------------------------
   Let’s Chat box: slide-in + pulse
---------------------------------- */
.la-chatFloat{
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: transform, opacity;
}

.la-chatFloat.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.la-chatFloat__btn{
  position: relative;
  overflow: hidden;
}

.la-chatFloat__btn:after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 55%);
  transform: translateX(-40%) translateY(-10%) rotate(18deg);
  opacity: 0;
  transition: opacity 500ms var(--ease-out), transform 900ms var(--ease-out);
}

.la-chatFloat__btn:hover:after{
  background: var(--accent);
  opacity: 1;
  transform: scale(1.1);
}

/* Soft pulsing ring to make it visible */
.la-chatFloat__ring{
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  animation: laPulse 2.8s var(--ease-soft) infinite;
  pointer-events:none;
}
@keyframes laPulse{
  0%{ transform: scale(1); opacity: .75; }
  70%{ transform: scale(1.06); opacity: 0; }
  100%{ transform: scale(1.06); opacity: 0; }
}

/* ---------------------------------
   Smooth anchor scrolling
---------------------------------- */
html{ scroll-behavior: smooth; } 

/* =========================================================
   LET’S CHAT (white boxed, bigger, premium, super visible)
   Works with your existing HTML:
   <a class="la-chatBubble"> ... </a>
========================================================= */

.la-chatBubble{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 14px 14px 16px;
  border-radius: 999px;

  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);

  color: #0b1220;
  text-decoration: none;

  transform: translateY(16px) scale(.98);
  opacity: 0;

  transition:
    transform 700ms cubic-bezier(.16,1,.3,1),
    opacity 700ms cubic-bezier(.16,1,.3,1),
    box-shadow 220ms cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity;
}

/* show animation trigger */
.la-chatBubble.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Text */
.la-chatBubble__text{
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: 18px;               /* bigger */
  text-transform: none;
}

/* Avatar */
.la-chatBubble__avatar{
  width: 52px;                   /* bigger */
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.la-chatBubble__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Premium hover */
.la-chatBubble:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 52px rgba(0,0,0,.22);
}

/* Subtle “breathing” ring so it never disappears */
.la-chatBubble::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.04) inset;
  opacity: .75;
  pointer-events:none;

  animation: laChatPulse 2.8s cubic-bezier(.2,.8,.2,1) infinite;
}

@keyframes laChatPulse{
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.06); opacity: 0; }
  100% { transform: scale(1.06); opacity: 0; }
}

/* Small screens: keep it clean */
@media (max-width: 480px){
  .la-chatBubble{
    right: 14px;
    bottom: 14px;
    padding: 12px 12px 12px 14px;
    gap: 10px;
  }
  .la-chatBubble__text{ font-size: 16px; }
  .la-chatBubble__avatar{ width: 46px; height: 46px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .la-chatBubble{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .la-chatBubble::before{ animation: none !important; }
}

/* =========================================================
   FAQ (Entourage-like)
========================================================= */

.la-faq{
  padding: 110px 0;
  background: #ffffff;
  color: #0b1220;
}

.la-faq__inner{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.la-faq__head{
  text-align: center;
  margin-bottom: 26px;
}

.la-faq__kicker{
  display: inline-block;
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(11,18,32,.58);
  margin-bottom: 10px;
}

.la-faq__title{
  font-family: var(--font-domaine, "Domaine Display", "Playfair Display", Georgia, serif) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.05;
  margin: 0;
}

.la-faq__sub{
  margin: 10px auto 0;
  max-width: 560px;
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,18,32,.62);
}

.la-faq__list{
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.la-faqItem{
  border-radius: 16px;
  background: rgba(245,246,248,.92);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.la-faqSummary{
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.la-faqSummary::-webkit-details-marker{ display:none; }

.la-faqQ{
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: #0b1220;
}

.la-faqPlus{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,18,32,.12);
  color: rgba(11,18,32,.78);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);

  font-size: 18px;
  font-weight: 700;

  transition: transform 300ms cubic-bezier(.16,1,.3,1);
  flex: 0 0 auto;
}

.la-faqItem[open] .la-faqPlus{
  transform: rotate(45deg);
}

.la-faqA{
  padding: 0 18px 18px;
  color: rgba(11,18,32,.72);
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 14px;
  line-height: 1.65;
}

.la-faqA p{ margin: 0; }

.la-faq__footer{
  margin-top: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.la-faq__link{
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: rgba(11,18,32,.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* nicer hover */
.la-faqItem:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .la-faqItem{ transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* =========================================================
   Lending Australia — PREMIUM MOTION (SAFE)
   ✅ No hero overlays
   ✅ No z-index changes
   ✅ Won’t affect video
========================================================= */

:root{
  --la-ease: cubic-bezier(.2,.9,.2,1);
  --la-ease2: cubic-bezier(.16,1,.3,1);
  --la-d1: .22s;
  --la-d2: .55s;
  --la-d3: .9s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

/* Smooth feel */
html{ scroll-behavior:smooth; }
body{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ---------- Scroll reveal base ---------- */
.la-reveal{
  opacity:0;
  transform: translateY(18px);
  transition:
    opacity var(--la-d2) var(--la-ease2),
    transform var(--la-d2) var(--la-ease2);
  will-change: opacity, transform;
}
.la-reveal.is-inview{
  opacity:1;
  transform: translateY(0);
}

/* Stagger support */
.la-reveal[data-la-delay="1"]{ transition-delay: .06s; }
.la-reveal[data-la-delay="2"]{ transition-delay: .12s; }
.la-reveal[data-la-delay="3"]{ transition-delay: .18s; }
.la-reveal[data-la-delay="4"]{ transition-delay: .24s; }

/* ---------- Premium hover micro-interactions ---------- */

/* Buttons */
.la-btn,
.la-btn-primary,
.la-btn-outline,
.la-finalcta2__btn,
.la-contactBlue__submit{
  transform: translateZ(0);
  transition: transform var(--la-d1) var(--la-ease), filter var(--la-d1) var(--la-ease), box-shadow var(--la-d2) var(--la-ease2);
}
.la-btn:hover,
.la-btn-primary:hover,
.la-btn-outline:hover,
.la-finalcta2__btn:hover,
.la-contactBlue__submit:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.la-btn:active,
.la-btn-primary:active,
.la-btn-outline:active,
.la-finalcta2__btn:active,
.la-contactBlue__submit:active{
  transform: translateY(1px) scale(.99);
}

/* Soft highlight sweep (only on .la-btn) */
.la-btn{ position:relative; overflow:hidden; }
.la-btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 18%, transparent 36%);
  transform: translateX(-130%);
  transition: transform var(--la-d3) var(--la-ease2);
  pointer-events:none;
}
.la-btn:hover::before{ transform: translateX(130%); }

/* Cards */
.la-why__card,
.la-testiCard,
.la-service-row,
.la-service-feature,
.la-finalcta2__card,
.la-contactBlue__newsletter{
  transition: transform var(--la-d2) var(--la-ease2), box-shadow var(--la-d2) var(--la-ease2);
  will-change: transform;
}
.la-why__card:hover,
.la-testiCard:hover,
.la-service-row:hover,
.la-service-feature:hover,
.la-finalcta2__card:hover,
.la-contactBlue__newsletter:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

/* Images subtle zoom */
.la-testiCard img{
  transition: transform var(--la-d3) var(--la-ease2);
  transform: scale(1);
}
.la-testiCard:hover img{ transform: scale(1.03); }

/* Nav underline sweep (safe) */
.la-nav__link{
  position:relative;
}
.la-nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background: currentColor;
  opacity:.7;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform var(--la-d2) var(--la-ease2);
}
.la-nav__link:hover::after,
.la-nav__link:focus-visible::after{
  transform: scaleX(1);
}

/* Tiny “float” for scroll hint */
.la-scroll{
  animation: laFloat 2.6s var(--la-ease2) infinite;
}
@keyframes laFloat{
  0%,100%{ transform: translateY(0); opacity:.55; }
  50%{ transform: translateY(8px); opacity:.9; }
}

/* smoother hovers */
.la-why__card,
.la-testiCard,
.la-service-row,
.la-service-feature{
  transition: transform 420ms cubic-bezier(.16,1,.3,1),
              box-shadow 520ms cubic-bezier(.16,1,.3,1);
}

/* =========================
   Services Slow Reveal (only)
========================= */

/* base */
.la-services .la-slowReveal{
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1100ms cubic-bezier(.16,1,.3,1),
    transform 1100ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* in view */
.la-services .la-slowReveal.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* nice slow stagger */
.la-services .la-slowReveal[data-delay="1"]{ transition-delay: 120ms; }
.la-services .la-slowReveal[data-delay="2"]{ transition-delay: 240ms; }
.la-services .la-slowReveal[data-delay="3"]{ transition-delay: 360ms; }
.la-services .la-slowReveal[data-delay="4"]{ transition-delay: 480ms; }
.la-services .la-slowReveal[data-delay="5"]{ transition-delay: 600ms; }

/* =========================================================
   SERVICES — PREMIUM REVEAL (REPLAY)
   Left column -> from left
   Right column -> from right
========================================================= */

.la-services .la-svcReveal{
  opacity: 0;
  transform: translate3d(0, 0, 0);
  filter: blur(2px);
  transition:
    opacity 1200ms cubic-bezier(.16,1,.3,1),
    transform 1200ms cubic-bezier(.16,1,.3,1),
    filter 1200ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* directions */
.la-services .la-svcReveal--left{
  transform: translate3d(-44px, 10px, 0);
}
.la-services .la-svcReveal--right{
  transform: translate3d(44px, 10px, 0);
}

/* in view */
.la-services .la-svcReveal.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* premium stagger */
.la-services .la-svcReveal[data-delay="1"]{ transition-delay: 160ms; }
.la-services .la-svcReveal[data-delay="2"]{ transition-delay: 240ms; }
.la-services .la-svcReveal[data-delay="3"]{ transition-delay: 320ms; }
.la-services .la-svcReveal[data-delay="4"]{ transition-delay: 420ms; }
.la-services .la-svcReveal[data-delay="5"]{ transition-delay: 600ms; }
.la-services .la-svcReveal[data-delay="6"]{ transition-delay: 700ms; }

/* =========================================================
   SERVICES — ULTRA PREMIUM SLOW REVEAL
   Cinematic, smooth, luxury feel
========================================================= */

.la-services .la-svcReveal{
  opacity: 0;
  transform: translate3d(0, 0, 0);
  filter: blur(1.5px);
  transition:
    opacity 2000ms cubic-bezier(.19,1,.22,1),
    transform 2000ms cubic-bezier(.19,1,.22,1),
    filter 1600ms cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* LEFT side enters from left */
.la-services .la-svcReveal--left{
  transform: translate3d(-60px, 0, 0);
}

/* RIGHT side enters from right */
.la-services .la-svcReveal--right{
  transform: translate3d(60px, 0, 0);
}

/* When visible */
.la-services .la-svcReveal.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* slower stagger for luxury feel */
.la-services .la-svcReveal[data-delay="1"]{ transition-delay: 150ms; }
.la-services .la-svcReveal[data-delay="2"]{ transition-delay: 300ms; }
.la-services .la-svcReveal[data-delay="3"]{ transition-delay: 450ms; }
.la-services .la-svcReveal[data-delay="4"]{ transition-delay: 600ms; }
.la-services .la-svcReveal[data-delay="5"]{ transition-delay: 750ms; }
.la-services .la-svcReveal[data-delay="6"]{ transition-delay: 900ms; }

/* =========================================================
   SERVICES — CINEMATIC REVEAL (REPLAY)
   Phase 1: Left column (slow)
   Phase 2: Right rows cascade (slower)
========================================================= */

.la-services .la-svcReveal{
  opacity: 0;
  transform: translate3d(0,0,0);
  filter: blur(1.2px);
  transition:
    opacity 2100ms cubic-bezier(.19,1,.22,1),
    transform 2100ms cubic-bezier(.19,1,.22,1),
    filter 1700ms cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* directions */
.la-services .la-svcReveal--left{  transform: translate3d(-64px, 0, 0); }
.la-services .la-svcReveal--right{ transform: translate3d( 64px, 0, 0); }

/* visible */
.la-services .la-svcReveal.is-inview{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* Phase delays
   - left elements use delay 1..4
   - right elements use delay 10..15 (starts later)
*/
.la-services .la-svcReveal[data-delay="1"]{  transition-delay: 120ms; }
.la-services .la-svcReveal[data-delay="2"]{  transition-delay: 280ms; }
.la-services .la-svcReveal[data-delay="3"]{  transition-delay: 440ms; }
.la-services .la-svcReveal[data-delay="4"]{  transition-delay: 600ms; }

/* cinematic pause + cascade */
.la-services .la-svcReveal[data-delay="10"]{ transition-delay: 1050ms; }
.la-services .la-svcReveal[data-delay="11"]{ transition-delay: 1230ms; }
.la-services .la-svcReveal[data-delay="12"]{ transition-delay: 1410ms; }
.la-services .la-svcReveal[data-delay="13"]{ transition-delay: 1590ms; }
.la-services .la-svcReveal[data-delay="14"]{ transition-delay: 1770ms; }
.la-services .la-svcReveal[data-delay="15"]{ transition-delay: 1950ms; }


/* =========================================================
   SERVICES — FINAL PREMIUM REVEAL (FAST SCROLL SAFE)
   ✅ Works with your JS that adds:
      .la-svcReveal, .la-svcReveal--left/.--right, .is-inview
   ✅ Overrides ALL previous svc reveal blocks
   ✅ Smooth + premium + replay-friendly + no fast scroll bugs
========================================================= */

/* Ensure Services doesn't inherit older reveal blur/scale junk */
.la-services .la-svcReveal{
  /* hard reset to avoid old conflicting rules */
  opacity: 0 !important;
  filter: blur(.8px) !important;

  transform: translate3d(0,0,0) !important;

  /* Premium but safe timings (not 2s+ slow = less glitch) */
  transition:
    opacity 900ms cubic-bezier(.16,1,.3,1),
    transform 1100ms cubic-bezier(.16,1,.3,1),
    filter 900ms cubic-bezier(.16,1,.3,1) !important;

  will-change: opacity, transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Directions */
.la-services .la-svcReveal.la-svcReveal--left{
  transform: translate3d(-56px, 0, 0) !important;
}
.la-services .la-svcReveal.la-svcReveal--right{
  transform: translate3d(56px, 0, 0) !important;
}

/* Visible */
.la-services .la-svcReveal.is-inview{
  opacity: 1 !important;
  transform: translate3d(0,0,0) !important;
  filter: blur(0) !important;
}

/* Phase 1: Left column delays (1..4) */
.la-services .la-svcReveal[data-delay="1"]{ transition-delay: 80ms !important; }
.la-services .la-svcReveal[data-delay="2"]{ transition-delay: 160ms !important; }
.la-services .la-svcReveal[data-delay="3"]{ transition-delay: 240ms !important; }
.la-services .la-svcReveal[data-delay="4"]{ transition-delay: 320ms !important; }

/* Phase 2: Right cascade (10..15) */
.la-services .la-svcReveal[data-delay="10"]{ transition-delay: 520ms !important; }
.la-services .la-svcReveal[data-delay="11"]{ transition-delay: 620ms !important; }
.la-services .la-svcReveal[data-delay="12"]{ transition-delay: 720ms !important; }
.la-services .la-svcReveal[data-delay="13"]{ transition-delay: 820ms !important; }
.la-services .la-svcReveal[data-delay="14"]{ transition-delay: 920ms !important; }
.la-services .la-svcReveal[data-delay="15"]{ transition-delay: 1020ms !important; }

/* Mobile: slightly faster (less jank on low-end devices) */
@media (max-width: 900px){
  .la-services .la-svcReveal{
    transition-duration: 720ms, 820ms, 720ms !important;
    filter: blur(.6px) !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .la-services .la-svcReveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
   ONE REVEAL SYSTEM (SMOOTH + PREMIUM)
   Uses: .la-reveal + .is-inview
========================================================= */

.la-reveal{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(.16,1,.3,1),
    transform 760ms cubic-bezier(.16,1,.3,1),
    filter 760ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.la-reveal.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* directions */
.la-reveal[data-la-anim="left"]{ transform: translate3d(-22px, 0, 0); }
.la-reveal[data-la-anim="right"]{ transform: translate3d(22px, 0, 0); }
.la-reveal[data-la-anim="fade"]{ transform: none; filter: blur(10px); }
.la-reveal[data-la-anim="zoom"]{ transform: translate3d(0, 10px, 0) scale(.985); }

/* stagger (1..8) */
.la-reveal[data-la-delay="1"]{ transition-delay: 70ms; }
.la-reveal[data-la-delay="2"]{ transition-delay: 140ms; }
.la-reveal[data-la-delay="3"]{ transition-delay: 210ms; }
.la-reveal[data-la-delay="4"]{ transition-delay: 280ms; }
.la-reveal[data-la-delay="5"]{ transition-delay: 350ms; }
.la-reveal[data-la-delay="6"]{ transition-delay: 420ms; }
.la-reveal[data-la-delay="7"]{ transition-delay: 490ms; }
.la-reveal[data-la-delay="8"]{ transition-delay: 560ms; }

/* mobile = slightly faster */
@media (max-width: 900px){
  .la-reveal{
    transition-duration: 560ms;
    filter: blur(6px);
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .la-reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Reveal only when JS is active (prevents flash) */
html.la-js .la-reveal{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(.16,1,.3,1),
    transform 760ms cubic-bezier(.16,1,.3,1),
    filter 760ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}

html.la-js .la-reveal.is-inview{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}



/* Video fade-in */
@keyframes videoFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.la-hero__video {
  animation: videoFadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered text reveal (Entourage feel) */
@keyframes entourageFadeUp {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
.la-hero__title {
  opacity: 0;
  animation: entourageFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}
.la-hero__sub {
  opacity: 0;
  animation: entourageFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}
.la-hero__actions {
  opacity: 0;
  animation: entourageFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}
.la-stats {
  opacity: 0;
  animation: entourageFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  .la-hero__title, .la-hero__sub, .la-hero__actions, .la-stats, .la-hero__video {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* Unified Reveal System */
.la-reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-reveal[data-la-anim="up"] {
  transform: translateY(24px);
}
.la-reveal[data-la-anim="left"] {
  transform: translateX(-24px);
}
.la-reveal[data-la-anim="right"] {
  transform: translateX(24px);
}

.la-reveal.is-inview {
  opacity: 1;
  transform: none !important;
}

/* Delays based on JS mappings */
.la-reveal[data-la-delay="1"] { transition-delay: 0.1s; }
.la-reveal[data-la-delay="2"] { transition-delay: 0.2s; }
.la-reveal[data-la-delay="3"] { transition-delay: 0.3s; }
.la-reveal[data-la-delay="4"] { transition-delay: 0.4s; }
.la-reveal[data-la-delay="5"] { transition-delay: 0.5s; }
.la-reveal[data-la-delay="6"] { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .la-reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Focus outlines for accessibility */
*:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

/* Nav links subtle hover (opacity + line) */
.la-nav.la-nav--entourage .la-nav__link {
  position: relative;
}
.la-nav.la-nav--entourage .la-nav__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-nav.la-nav--entourage .la-nav__link:hover::after {
  width: 100%;
}


.la-btn:hover, .la-btn-primary:hover, .la-why__ctaBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.la-why__card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-why__card:hover {
  transform: translateY(-4px);
}
.la-why__card--dark:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.la-finalcta2 { padding: clamp(100px, 10vw, 160px) 0; }


@media (max-width: 980px){
  .la-services{ padding: 80px 0; }
  .la-why{ padding: 80px 0; }
  .la-testi{ padding: 80px 0; }
  .la-finalcta2{ padding: 80px 0; }
}
@media (max-width: 420px){
  .la-hero__inner{
    padding: 140px 24px 24px;
  }
}

/* =========================================================
   ENTOURAGE HEADER OVERRIDE (PIXEL-PERFECT)
========================================================= */

/* 1. Base Header & Normalization */
#siteNav {
  height: 109px !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
  transition: background-color 0.3s ease, height 0.3s ease, box-shadow 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
}

/* 2. Scrolled State (is-scrolled) */
#siteNav.is-scrolled {
  height: 92px !important;
  background-color: rgba(10,10,10,0.35) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* 3. Inner Layout matching precise Entourage spacing */
#siteNav .la-nav__inner {
  height: 100% !important;
  max-width: 1500px !important;
  width: calc(100% - 120px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: padding 0.3s ease, border-color 0.3s ease !important;
}
#siteNav.is-scrolled .la-nav__inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* 4. Logo Styling */
#siteNav .la-nav__brand {
  justify-self: start !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}
#siteNav .la-nav__brandText {
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95) !important;
}

/* 5. Nav Links */
#siteNav .la-nav__links {
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  gap: 25px !important;
  height: 100% !important;
}
#siteNav .la-nav__link {
  font-family: "Domaine", helvetica, roboto, arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.4px !important;
  line-height: 16px !important;
  color: #fff !important;
  padding: 0 !important; /* Handled by container flex */
  text-transform: none !important;
  transition: color 0.3s ease !important;
}
#siteNav .la-nav__link:hover {
  color: var(--laBlue3, #0f3a73) !important;
  opacity: 1 !important;
  transform: none !important;
}
#siteNav .la-nav__link::after {
  display: none !important;
}
#siteNav .la-nav__link .chev {
  opacity: 0.8 !important;
  margin-left: 4px !important;
  font-size: 11px !important;
  transition: color 0.3s ease !important;
}
#siteNav .la-nav__link:hover .chev {
  transform: none !important;
  color: var(--laBlue3, #0f3a73) !important;
}

/* 6. Phone / Right align */
#siteNav .la-nav__phone {
  justify-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #fff !important;
  text-transform: none !important;
  transition: color 0.3s ease !important;
}

#siteNav .la-nav__phoneNum {
  font-family: "Domaine", helvetica, roboto, arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.4px !important;
  line-height: 16px !important;
}
#siteNav .la-nav__phoneIcon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  background: transparent !important;
  transition: border-color 0.3s ease, background-color 0.3s ease !important;
}
#siteNav .la-nav__phoneIcon svg {
  width: 18px !important;
  height: 18px !important;
  transition: all 0.3s ease !important;
}
#siteNav .la-nav__phone:hover .la-nav__phoneIcon {
  background-color: var(--laBlue3, #0f3a73) !important;
  border-color: var(--laBlue3, #0f3a73) !important;
  transform: scale(1.1) !important;
}
#siteNav .la-nav__phone:hover .la-nav__phoneIcon svg {
  fill: #fff !important;
  stroke: #fff !important;
}

/* 7. Focus-visible for Accessibility */
#siteNav a:focus-visible, 
#siteNav button:focus-visible {
  outline: 2px solid var(--laBlue3, #0f3a73) !important;
  outline-offset: 4px !important;
  border-radius: 4px !important;
}

/* 8. Safety: Hide the old rule line/shadows completely */
#siteNav .la-nav__rule {
  display: none !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #siteNav, #siteNav .la-nav__inner, #siteNav .la-nav__link, 
  #siteNav .la-nav__phone, #siteNav .la-nav__phoneIcon {
    transition: none !important;
  }
}

/* 9. Mobile Responsiveness */
@media (max-width: 1100px) {
  #siteNav .la-nav__inner {
    padding: 0 !important;
    width: calc(100% - 44px) !important;
    grid-template-columns: 1fr auto !important;
  }
  #siteNav .la-nav__links, 
  #siteNav .la-nav__phone {
    display: none !important;
  }
  #siteNav .la-nav__burger {
    display: inline-block !important;
    justify-self: end !important;
  }
}

/* =========================================================
   TYPOGRAPHY CONSISTENCY & GLOBAL REVEAL ANIMATIONS
========================================================= */

/* Use Domaine for all major titles missing it */
.la-services__title,
.la-service-title,
.la-service-feature h3 {
  font-family: "Domaine Display", "Playfair Display", Georgia, serif !important;
}

/* Ensure links don't get default blue styling */
a.la-service-feature,
a.la-service-row {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

/* Global Reveal System exactly as app.js expects */
.la-reveal {
  opacity: 0;
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

.la-reveal[data-la-anim="up"] {
  transform: translateY(40px);
}
/* =========================================================
   HOME LOANS PAGE STYLES (.la-page--homeloans)
========================================================= */
.la-hlHero{
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050814;
}
.la-hlHero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.la-hlHero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.03);
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}
.la-hlHero__shade{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 600px at 55% 55%, rgba(0,0,0,.15), transparent 60%),
    radial-gradient(900px 520px at 20% 45%, rgba(0,0,0,.55), transparent 62%),
    linear-gradient(180deg, rgba(5,8,20,.65) 0%, rgba(5,8,20,.78) 45%, rgba(5,8,20,.92) 100%);
}
.la-hlHero__spotlight {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,255,255,0.06),
    transparent 40%
  );
  pointer-events: none;
  z-index: 1;
}
.la-hlHero__inner{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  padding: 140px 0 90px;
  text-align: center;
}
.la-hlHero__kicker{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  opacity: .9;
}
.la-hlHero__kText{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.la-hlHero__kRule{
  height: 1px;
  width: clamp(140px, 22vw, 360px);
  background: rgba(255,255,255,.22);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: transform;
}
/* Trigger kicker underline animation when in view */
.la-hlHero__kicker.is-inview .la-hlHero__kRule{
  transform: scaleX(1);
}

.la-hlHero__title{
  font-family: var(--font-domaine, "Domaine Display", serif) !important;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
  margin: 0 auto 18px;
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
}


.la-hlWrap{
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}
.la-hlSection{
  padding: 120px 0;
  background: #fff;
  color: #111;
}
.la-hlSection:nth-of-type(even){
  background: #f7f8fa;
}

.la-hlTwoCol{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px){
  .la-hlTwoCol{
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.la-hlTwoCol--swap .la-hlMedia{
  order: 2;
}
@media (max-width: 980px){
  .la-hlTwoCol--swap .la-hlMedia{
    order: -1;
  }
}

.la-hlMedia{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-hlMedia:hover{
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.15);
}
.la-hlMedia img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}
.la-hlMedia:hover img{
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}
.la-hlCopy{
  max-width: 560px;
}
.la-hlH2{
  font-family: var(--font-domaine, "Domaine Display", serif) !important;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #061a33;
  margin-bottom: 24px;
}
.la-hlH2 + p{
  margin-top: -6px;
}
.la-hlCopy p{
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 17px;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 24px;
}

.la-hlList{
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.la-hlList li{
  position: relative;
  padding-left: 32px;
  font-size: 17px;
  line-height: 1.5;
  color: #444;
}
.la-hlList li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d376b;
  font-weight: 800;
}
.la-hlList li strong{
  color: #111;
}

.la-hlCta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #061a33;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}
.la-hlCta:hover{
  border-bottom-color: #061a33;
  transform: translateX(4px);
}

.la-hlTiles{
  padding: 120px 0;
  background: var(--c-base); /* Match the dark theme background */
  color: #fff;
  text-align: center;
}
.la-hlH3{
  font-family: var(--font-domaine, "Domaine Display", serif) !important;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 auto 60px;
  max-width: 700px;
}
.la-hlTileGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
@media (max-width: 1024px){
  .la-hlTileGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .la-hlTileGrid{ grid-template-columns: 1fr; }
}

.la-hlTile{
  background: #111a28;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.la-hlTile:hover{
  background: #152233;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.la-hlTile__icon{
  width: 36px;
  height: 36px;
  color: #4A90E2;
  margin-bottom: 28px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.la-hlTile:hover .la-hlTile__icon{
  transform: scale(1.1);
}
.la-hlTile__icon svg{
  width: 100%; height: 100%;
}
.la-hlTile__title{
  font-family: var(--font-domaine, "Domaine Display", serif) !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.la-hlTile__text{
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.6;
  color: #9ba4b5;
}
.la-reveal[data-la-anim="left"] {
  transform: translateX(-40px);
}
.la-reveal[data-la-anim="right"] {
  transform: translateX(40px);
}

.la-reveal.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

.la-reveal[data-la-delay="1"] { transition-delay: 100ms; }
.la-reveal[data-la-delay="2"] { transition-delay: 200ms; }
.la-reveal[data-la-delay="3"] { transition-delay: 300ms; }
.la-reveal[data-la-delay="4"] { transition-delay: 400ms; }
.la-reveal[data-la-delay="5"] { transition-delay: 500ms; }
.la-reveal[data-la-delay="6"] { transition-delay: 600ms; }
.la-reveal[data-la-delay="7"] { transition-delay: 700ms; }
.la-reveal[data-la-delay="8"] { transition-delay: 800ms; }

/* Persistent Mobile Override for Testimonials */
@media (max-width: 980px) {
  .la-testi__nav { display: flex !important; }
}

/* ===========================================================
   SERVICES SECTION — LIGHT THEME: DEFINITIVE CARD OVERRIDES
   (placed last to guarantee specificity wins)
=========================================================== */
.la-section--light .la-services--text .la-services__right {
  gap: 12px;
}

/* Featured card */
.la-section--light .la-services--text .la-service-feature {
  background: #ffffff !important;
  border: 1.5px solid rgba(15, 58, 140, 0.14) !important;
  box-shadow: 0 2px 12px rgba(15, 58, 140, 0.07), 0 8px 32px rgba(15, 58, 140, 0.05) !important;
  border-radius: 18px !important;
}
.la-section--light .la-services--text .la-service-feature:hover {
  background: #f5f8ff !important;
  border-color: rgba(15, 58, 140, 0.28) !important;
  box-shadow: 0 8px 30px rgba(15, 58, 140, 0.14) !important;
}

/* List rows — give each a full card appearance */
.la-section--light .la-services--text .la-service-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 18px 22px !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(15, 58, 140, 0.12) !important;
  border-radius: 14px !important;
  box-shadow: 0 1px 6px rgba(15, 58, 140, 0.06) !important;
  text-decoration: none !important;
}
.la-section--light .la-services--text .la-service-row:hover {
  background: #f5f8ff !important;
  border-color: rgba(15, 58, 140, 0.25) !important;
  box-shadow: 0 6px 24px rgba(15, 58, 140, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* Service title and meta colours on white */
.la-section--light .la-services--text .la-service-title {
  color: #0b1220 !important;
}
.la-section--light .la-services--text .la-service-meta {
  color: rgba(11, 18, 32, 0.55) !important;
}

/* Arrow circle: accent-tinted on white, solid on hover */
.la-section--light .la-services--text .la-circle {
  background: rgba(15, 58, 140, 0.08) !important;
  color: var(--accent) !important;
}
.la-section--light .la-services--text .la-service-feature:hover .la-circle,
.la-section--light .la-services--text .la-service-row:hover .la-circle {
  background: var(--accent) !important;
  color: #fff !important;
}

/* ===========================================================
   SERVICES LIGHT THEME — FINAL CARD FIX (highest priority)
=========================================================== */

/* Featured card: strong visible card */
.la-section--light .la-service-feature {
  background: #eef2ff !important;
  border: 2px solid rgba(15, 58, 140, 0.18) !important;
  box-shadow: 0 4px 24px rgba(15, 58, 140, 0.10) !important;
  border-radius: 18px !important;
  padding: 28px !important;
  margin: 0 !important;
}
.la-section--light .la-service-feature:hover {
  background: #dde7ff !important;
  border-color: rgba(15, 58, 140, 0.35) !important;
  box-shadow: 0 10px 36px rgba(15, 58, 140, 0.16) !important;
  transform: translateY(-4px) scale(1.01) !important;
}

/* List rows: each is a proper card, NOT a line item */
.la-section--light .la-service-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #f5f8ff !important;
  border: 2px solid rgba(15, 58, 140, 0.12) !important;
  border-radius: 14px !important;
  padding: 20px 24px !important;
  margin: 0 !important;
  box-shadow: 0 2px 10px rgba(15, 58, 140, 0.06) !important;
}
.la-section--light .la-service-row:hover {
  background: #dde7ff !important;
  border-color: rgba(15, 58, 140, 0.30) !important;
  box-shadow: 0 8px 28px rgba(15, 58, 140, 0.14) !important;
  transform: translateY(-3px) !important;
  padding-left: 24px !important;
}

/* Title and meta text */
.la-section--light .la-service-title {
  color: #0b1220 !important;
  font-weight: 600 !important;
}
.la-section--light .la-service-meta {
  color: rgba(11, 18, 32, 0.55) !important;
  font-size: 13px !important;
}

/* Right-column gap for card spacing */
.la-section--light .la-services__right {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

/* Arrow circle: accent-blue at rest, solid on hover */
.la-section--light .la-circle {
  background: rgba(15, 58, 140, 0.12) !important;
  color: #0f3a8c !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  min-width: 44px !important;
  font-size: 18px !important;
}
.la-section--light .la-service-feature:hover .la-circle,
.la-section--light .la-service-row:hover .la-circle {
  background: #0f3a8c !important;
  color: #fff !important;
  transform: scale(1.1) rotate(-45deg) !important;
}

/* ===========================================================
   PHASE 4 — WARM PALETTE ROLLOUT
   Keep hero/video treatments intact while warming the content
   sections, cards, forms, footer and CTA surfaces site-wide.
=========================================================== */
:root{
  --accent: #3D6EBF;
  --la-warm-bg: #FDFBF7;
  --la-warm-bg-2: #F7F4ED;
  --la-warm-bg-3: #F4F0E8;
  --la-warm-ink: #0A0A0A;
  --la-warm-copy: #5A5A66;
  --la-warm-border: #E8E2D6;
  --la-warm-hover: #2E579E;
  --line: #E8E2D6;
}

body{
  background: var(--la-warm-bg);
  color: var(--la-warm-ink);
}

.la-nav.la-nav--entourage.is-scrolled{
  background: rgba(253, 251, 247, 0.92);
  border-bottom: 1px solid var(--la-warm-border);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.la-nav.la-nav--entourage.is-scrolled .la-nav__brandText,
.la-nav.la-nav--entourage.is-scrolled .la-nav__links a,
.la-nav.la-nav--entourage.is-scrolled .la-nav__phoneText,
.la-nav.la-nav--entourage.is-scrolled .la-nav__phoneBtn,
.la-nav.la-nav--entourage.is-scrolled .la-nav__phoneNum{
  color: var(--la-warm-ink);
}

.la-services,
.la-finalcta2,
.la-cMapSection,
.la-aboutValues,
.la-hlSection{
  background: var(--la-warm-bg) !important;
  color: var(--la-warm-ink) !important;
}

.la-why,
.la-contactBlue,
.la-cBody,
.la-process,
.la-hlTiles,
.la-simon,
.la-footerBlue,
.la-testi,
.la-hlSection:nth-of-type(even){
  background: var(--la-warm-bg-2) !important;
  color: var(--la-warm-ink) !important;
  border-color: var(--la-warm-border) !important;
}

.la-contactBlue__spotlight,
.la-footerBlue__spotlight,
.la-cBody__bg{
  background: transparent !important;
}

.la-services__kicker,
.la-why__eyebrow,
.la-testi__eyebrow,
.la-finalcta2__kicker,
.la-contactBlue__eyebrow,
.la-footerBlue__muted,
.la-footerBlue__disclaimer,
.la-cLeft__kicker,
.la-cLeft__text,
.la-cMapCard__sub,
.la-aboutValues__eyebrow,
.la-aboutCard__text,
.la-process__pill,
.la-process__sub,
.la-step__text,
.la-processCta__sub,
.la-simon__eyebrow,
.la-simon__text,
.la-miniStat__small,
.la-finalcta2__sub,
.la-finalcta2__meta,
.la-finalcta2__statSmall,
.la-contactBlue__rowSub,
.la-hlCopy p,
.la-hlList li,
.la-services--text .la-service-meta,
.la-services--text .la-service-feature p,
.la-testiCard__text,
.la-testiCard__meta{
  color: var(--la-warm-copy) !important;
}

.la-services__title,
.la-service-feature h3,
.la-service-title,
.la-why__title,
.la-why__cardTitle,
.la-testi__title,
.la-testiCard__name,
.la-finalcta2__title,
.la-contactBlue__title,
.la-contactBlue__newsTitle,
.la-footerBlue__brand,
.la-footerBlue__brandTitle,
.la-cLeft__title,
.la-cFormPanel__title,
.la-cMapCard__title,
.la-aboutValues__title,
.la-process__title,
.la-processCta__title,
.la-step__title,
.la-simon__title,
.la-miniStat__big,
.la-hlH2,
.la-hlH3,
.la-hlTile__title,
.la-cMapBox__value,
.la-contactBlue__rowTop,
.la-contactBlue__rowTop a,
.la-cContact__row,
.la-hlList li strong{
  color: var(--la-warm-ink) !important;
}

.la-services--text .la-service-feature,
.la-services--text .la-service-row,
.la-why__card,
.la-testiCard,
.la-testiCard__body,
.la-finalcta2__card,
.la-finalcta2__stat,
.la-contactBlue__newsletter,
.la-cFormPanel,
.la-cMapCard,
.la-cMapBox,
.la-aboutCard,
.la-step,
.la-processCta,
.la-hlTile,
.la-miniStat{
  background: var(--la-warm-bg-3) !important;
  color: var(--la-warm-ink) !important;
  border: 1px solid var(--la-warm-border) !important;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06) !important;
}

.la-why__card:hover,
.la-testiCard:hover,
.la-finalcta2__card:hover,
.la-aboutCard:hover,
.la-hlTile:hover,
.la-miniStat:hover{
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.10) !important;
}

.la-contactBlue__icon,
.la-cContact__icon,
.la-testi__btn{
  background: #ffffff !important;
  color: var(--accent) !important;
  border-color: var(--la-warm-border) !important;
}

.la-contactBlue__row:hover .la-contactBlue__icon,
.la-cContact__row:hover .la-cContact__icon,
.la-testi__btn:hover{
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
}

.la-contactBlue__line,
.la-footerBlue__rule{
  background: var(--la-warm-border) !important;
}

.la-contactBlue__input,
.la-cField__input,
.la-cField__textarea{
  background: #ffffff !important;
  color: var(--la-warm-ink) !important;
  border: 1px solid var(--la-warm-border) !important;
  box-shadow: none !important;
}

.la-contactBlue__input::placeholder,
.la-cField__input::placeholder,
.la-cField__textarea::placeholder{
  color: #8a8a95 !important;
}

.la-contactBlue__label,
.la-cField__label,
.la-cMapBox__label{
  color: var(--la-warm-copy) !important;
}

.la-contactBlue__input:focus,
.la-cField__input:focus,
.la-cField__textarea:focus,
.la-cField__input:hover{
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(61, 110, 191, 0.14) !important;
  background: #ffffff !important;
}

.la-btn-primary,
.la-btn--dark,
.la-btn--white,
.la-finalcta2__btn--primary,
.la-processCta__btn--dark,
.la-contactBlue__cta,
.la-contactBlue__submit,
.la-cMapCard__actions .la-btn--dark{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

.la-btn-primary:hover,
.la-btn--dark:hover,
.la-btn--white:hover,
.la-finalcta2__btn--primary:hover,
.la-processCta__btn--dark:hover,
.la-contactBlue__cta:hover,
.la-contactBlue__submit:hover,
.la-cMapCard__actions .la-btn--dark:hover{
  background: var(--la-warm-hover) !important;
  border-color: var(--la-warm-hover) !important;
  color: #ffffff !important;
  filter: none !important;
}

.la-finalcta2__btn--ghost,
.la-processCta__btn--light,
.la-cMapCard__actions .la-btn--outline{
  background: transparent !important;
  color: var(--la-warm-ink) !important;
  border-color: var(--la-warm-border) !important;
}

.la-finalcta2__btn--ghost:hover,
.la-processCta__btn--light:hover,
.la-cMapCard__actions .la-btn--outline:hover{
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
}

.la-footerBlue__nav a,
.la-footerBlue__bottomLinks a{
  color: var(--la-warm-copy) !important;
}

.la-footerBlue__nav a:hover,
.la-footerBlue__bottomLinks a:hover{
  color: var(--accent) !important;
}

.la-hlList li::before,
.la-hlTile__icon,
.la-services--text .la-circle,
.la-step__num{
  color: var(--accent) !important;
}

.la-services--text .la-circle,
.la-step__num{
  background: rgba(61, 110, 191, 0.10) !important;
  border-color: rgba(61, 110, 191, 0.18) !important;
}

.la-process__pill{
  background: rgba(255,255,255,0.7) !important;
  border-color: var(--la-warm-border) !important;
}

/* ===========================================================
   MOBILE HOTFIXES
   1. Prevent homepage logo/title overlap on small screens
=========================================================== */
@media (max-width: 640px) {
  #siteNav .la-nav__inner {
    width: calc(100% - 32px) !important;
    padding: 10px 0 !important;
    align-items: start !important;
  }

  #siteNav .la-nav__brand {
    max-width: 220px;
  }

  #siteNav .la-nav__brandText {
    display: block;
    font-size: 14px !important;
    line-height: 1.04 !important;
    letter-spacing: 0.1em !important;
    -webkit-text-stroke: 0.8px rgba(255,255,255,.78);
  }

  #siteNav .la-nav__burger {
    margin-top: 4px;
  }

  .la-hero__inner {
    padding: 240px 20px 40px !important;
  }

  .la-hero__content {
    max-width: 100%;
    padding-bottom: 8px;
  }

  .la-hero__title {
    font-size: 32px !important;
    line-height: 1.06 !important;
    max-width: 8.5ch;
  }

  .la-hero__sub {
    margin-top: 24px !important;
    font-size: 17px !important;
  }

  .la-hero__actions {
    width: 100%;
    gap: 12px;
  }

  .la-hero__actions .la-btn {
    width: 100%;
    justify-content: center;
  }
}
