:root{
  --primary:#08111F;
  --secondary:#10233D;
  --accent:#1E88FF;
  --accent-light:#64B5FF;
  --white:#FFFFFF;
  --silver:#D5D9E0;
  --muted:#667085;
  --bg:#F5F7FA;
  --border:#E5EAF0;
  --shadow:0 22px 60px rgba(8,17,31,.16);
}

*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--primary);background:var(--white);line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.top-bar{
  background:var(--primary);
  color:var(--silver);
  padding:9px 32px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:13px;
}

.navbar{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:14px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{display:flex;align-items:center;gap:14px}
.brand-logo{width:68px;height:68px;object-fit:contain}
.brand-mark{
  width:58px;height:58px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:var(--white);font-size:28px;font-weight:900;
}
.brand strong{display:block;font-size:20px;color:var(--primary);letter-spacing:.03em}
.brand small{display:block;font-size:12px;color:var(--muted);margin-top:-2px}

.nav-links{display:flex;align-items:center;gap:22px;font-size:14px;font-weight:800;color:var(--primary)}
.nav-links a:hover{color:var(--accent)}
.nav-cta{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:var(--white)!important;
  padding:12px 19px;border-radius:999px;
  box-shadow:0 10px 28px rgba(30,136,255,.25);
}
.menu-toggle{display:none;border:0;background:var(--primary);color:var(--white);padding:9px 12px;border-radius:10px;font-size:20px}

.hero{
  min-height:700px;
  background:
    linear-gradient(120deg,rgba(8,17,31,.96),rgba(16,35,61,.74)),
    url("../images/hero-law.jpg");
  background-size:cover;
  background-position:center;
  color:var(--white);
  display:flex;
  align-items:center;
}
.hero-content{width:min(1180px,calc(100% - 32px));margin:0 auto;padding:94px 0}
.eyebrow,.section-kicker{
  color:var(--accent-light);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  font-weight:900;
}
.hero h1{
  font-size:clamp(42px,6.4vw,82px);
  line-height:1.02;
  margin:20px 0;
  max-width:1000px;
  letter-spacing:-.05em;
}
.hero p{max-width:780px;font-size:20px;color:rgba(255,255,255,.86)}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:999px;
  font-weight:900;border:1px solid transparent;
}
.btn-gold,.btn-blue{background:var(--accent);color:var(--white)}
.btn-green{background:var(--primary);color:var(--white)}
.btn-outline{border-color:rgba(255,255,255,.7);color:var(--white)}
.btn-outline-dark{border-color:var(--accent);color:var(--accent);background:var(--white)}

.section{padding:88px 0}
.light{background:var(--bg)}
.split{display:grid;grid-template-columns:1.15fr .85fr;gap:42px;align-items:center}

.section h2,.cta-band h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1.1;
  margin:12px 0;
  color:var(--primary);
  letter-spacing:-.035em;
}
.section-heading{max-width:760px;margin-bottom:36px}
.section-heading p,.section p{color:var(--muted)}

.mission-card,.empty-card,.property-feature{
  background:var(--white);
  border:1px solid var(--border);
  border-top:5px solid var(--accent);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:30px;
}
.mission-card a{color:var(--accent);font-weight:900}

.card-grid,.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  min-height:240px;
  transition:.2s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:var(--accent-light);
  box-shadow:var(--shadow);
}
.icon-circle{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:rgba(30,136,255,.12);
  color:var(--accent);
  font-size:24px;
}
.service-card p{color:var(--muted)}
.service-card span,.team-card span{color:var(--accent);font-weight:900}

.property-desk{background:linear-gradient(135deg,#fff,var(--bg))}
.mini-property{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:14px;
  padding:12px;
  border-radius:18px;
  border:1px solid var(--border);
  margin-bottom:12px;
}
.mini-property img,.image-placeholder{
  width:96px;height:78px;object-fit:cover;border-radius:14px;
  background:var(--bg);display:grid;place-items:center;color:var(--muted);
}
.mini-property small,.mini-property span{display:block}
.mini-property small{color:var(--muted)}
.mini-property span{color:var(--accent);font-weight:900}

.team-card{
  border-radius:26px;
  overflow:hidden;
  background:var(--white);
  border:1px solid var(--border);
  box-shadow:0 8px 24px rgba(8,17,31,.07);
}
.team-card img,.profile-placeholder{height:310px;width:100%;object-fit:cover}
.profile-placeholder{
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:var(--white);
  font-size:72px;font-weight:900;
}
.team-body{padding:24px}
.team-body h3{margin:0;color:var(--primary)}
.team-body p{margin:4px 0 14px;color:var(--muted)}

.cta-band{
  background:linear-gradient(135deg,var(--primary),var(--secondary),var(--accent));
  color:var(--white);
  padding:56px 0;
}
.cta-band h2{color:var(--white)}
.cta-inner{display:flex;justify-content:space-between;gap:24px;align-items:center}
.cta-inner p{color:rgba(255,255,255,.78)}

.site-footer{
  background:#050B14;
  color:var(--white);
  padding-top:56px;
}
.footer-grid{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-grid a{display:block;color:rgba(255,255,255,.75);margin-bottom:8px}
.footer-grid a:hover{color:var(--accent-light)}
.footer-grid p{color:rgba(255,255,255,.75)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:36px;
  padding:18px 32px;
  text-align:center;
  color:rgba(255,255,255,.65);
}

.messages{width:min(1180px,calc(100% - 32px));margin:18px auto}
.message{padding:12px 16px;border-radius:14px;background:#EFF6FF;color:#1D4ED8;border:1px solid #BFDBFE}

@media(max-width:900px){
  .top-bar{display:none}
  .menu-toggle{display:inline-block}
  .nav-links{
    display:none;position:absolute;left:16px;right:16px;top:88px;
    flex-direction:column;align-items:stretch;background:var(--white);
    padding:18px;border-radius:18px;box-shadow:var(--shadow);
  }
  .nav-links.is-open{display:flex}
  .split,.card-grid,.team-grid,.footer-grid{grid-template-columns:1fr}
  .hero{min-height:590px}
  .navbar{padding:14px 16px}
  .cta-inner{flex-direction:column;align-items:flex-start}
}

.kg-hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(8,17,31,.96) 0%, rgba(8,17,31,.82) 42%, rgba(8,17,31,.22) 100%),
    url("../images/hero-kangaragn.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.kg-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 0 34px;
}

.kg-hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kg-hero-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.kg-hero-brand strong {
  display: block;
  font-size: 28px;
  letter-spacing: .08em;
}

.kg-hero-brand small {
  color: #d5d9e0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kg-hero-copy {
  max-width: 620px;
}

.kg-hero-copy span {
  color: #1e88ff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 900;
}

.kg-hero-copy h1 {
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: 1.02;
  margin: 18px 0;
  letter-spacing: -0.05em;
}

.kg-hero-copy p {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}

.kg-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.kg-btn-primary,
.kg-btn-outline {
  padding: 16px 26px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 13px;
}

.kg-btn-primary {
  background: #1e88ff;
  color: #fff;
  box-shadow: 0 15px 35px rgba(30,136,255,.35);
}

.kg-btn-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.04);
}

.kg-hero-services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 24px;
  gap: 0;
}

.kg-hero-services a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 18px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.kg-hero-services a:hover {
  color: #64b5ff;
}

@media (max-width: 900px) {
  .kg-hero,
  .kg-hero-inner {
    min-height: auto;
  }

  .kg-hero-inner {
    padding: 36px 0;
    gap: 54px;
  }

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

  .kg-hero-services a {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
  }
}

/* Final clickable hero service links with left-side icons */

.kg-hero-services{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:45px;
  padding-top:20px;
}

.kg-service-link{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start;
  gap:14px;
  padding:18px 16px;
  color:#fff;
  text-decoration:none;
  border-right:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
  min-height:86px;
}

.kg-service-link:last-child{
  border-right:none;
}

.kg-service-link:hover{
  background:rgba(30,136,255,.08);
  color:#fff;
}

.kg-service-link:hover .kg-service-icon{
  color:#64B5FF;
  transform:scale(1.08);
}

.kg-service-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  line-height:1;
  color:#1E88FF;
  min-width:42px;
  transition:.25s ease;
}

.kg-service-link span{
  display:block;
  font-size:13px;
  line-height:1.35;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
}

@media(max-width:1100px){
  .kg-hero-services{
    grid-template-columns:repeat(3,1fr);
  }

  .kg-service-link{
    border-bottom:1px solid rgba(255,255,255,.08);
  }
}

@media(max-width:700px){
  .kg-hero-services{
    grid-template-columns:1fr;
  }

  .kg-service-link{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.10);
    min-height:auto;
    padding:16px 0;
  }
}


.practice-showcase{
    padding:90px 0;
}

.practice-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    margin-bottom:80px;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(8,17,31,.08);
}

.practice-item.reverse .practice-image{
    order:2;
}

.practice-item.reverse .practice-content{
    order:1;
}

.practice-image{
    min-height:480px;
    background-size:cover;
    background-position:center;
}

.practice-content{
    padding:70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.practice-content span{
    color:#1E88FF;
    text-transform:uppercase;
    letter-spacing:.15em;
    font-weight:800;
}

.practice-content h2{
    color:#08111F;
    font-size:48px;
    line-height:1.08;
    margin:20px 0;
}

.practice-content p{
    color:#5A6472;
    font-size:18px;
    line-height:1.8;
}

.practice-link{
    margin-top:24px;
    color:#1E88FF;
    font-weight:800;
    font-size:15px;
}

.practice-link:hover{
    color:#0A5DD9;
}

@media(max-width:900px){

    .practice-item,
    .practice-item.reverse{
        grid-template-columns:1fr;
    }

    .practice-item.reverse .practice-image,
    .practice-item.reverse .practice-content{
        order:unset;
    }

    .practice-content{
        padding:40px;
    }

    .practice-content h2{
        font-size:34px;
    }
}


/* TEAM PAGES */

.team-hero,
.team-profile-hero{
    background:
    linear-gradient(120deg,rgba(8,17,31,.96),rgba(16,35,61,.82)),
    url("../images/hero-kangaragn.png");

    background-size:cover;
    background-position:center;
    color:#fff;
    padding:110px 0 90px;
}

.team-hero h1{
    font-size:clamp(42px,6vw,78px);
    line-height:1.05;
    margin:18px 0;
}

.team-hero p{
    max-width:760px;
    color:rgba(255,255,255,.78);
}

.team-intro{
    background:#050b14;
    padding:60px 0;
}

.team-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    color:#fff;
}

.mp-card{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:center;
    background:#fff;
    border-radius:32px;
    padding:40px;
    margin-top:-40px;
    box-shadow:0 25px 70px rgba(8,17,31,.12);
}

.mp-photo img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:24px;
}

.mp-content h2{
    font-size:52px;
    margin:10px 0;
    color:#08111f;
}

.mp-role{
    color:#1e88ff;
    font-weight:800;
    margin-bottom:20px;
}

.team-section{
    padding:90px 0;
    background:#f5f7fa;
}

.team-professionals-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.team-professional-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(8,17,31,.08);
    transition:.25s;
}

.team-professional-card:hover{
    transform:translateY(-8px);
}

.team-professional-image img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.team-professional-body{
    padding:24px;
}

.team-professional-body h3{
    margin:0;
    color:#08111f;
}

.team-role{
    display:block;
    color:#1e88ff;
    font-weight:700;
    margin:8px 0 16px;
}

.team-link{
    color:#1e88ff;
    font-weight:800;
    margin-top:18px;
}

.profile-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    align-items:center;
}

.profile-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:28px;
}

.profile-content h1{
    font-size:64px;
    color:#fff;
    margin:14px 0;
}

.profile-designation{
    color:#64b5ff;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.profile-practice{
    color:#d5d9e0;
    margin-bottom:28px;
}

.profile-content-body{
    max-width:1000px;
}

.professional-bio{
    font-size:18px;
    line-height:1.9;
    color:#5f6b7a;
}

@media(max-width:950px){

    .mp-card,
    .profile-layout,
    .team-intro-grid{
        grid-template-columns:1fr;
    }

    .team-professionals-grid{
        grid-template-columns:1fr;
    }

    .profile-content h1{
        font-size:42px;
    }
}
/* Premium Kangaragn Team & Profile Pages */

.ka-team-hero,
.ka-profile-hero{
  background:
    linear-gradient(120deg,rgba(8,17,31,.97),rgba(16,35,61,.78)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
}

.ka-team-hero{
  padding:105px 0 82px;
}

.ka-team-hero h1{
  color:#fff;
  font-size:clamp(38px,5vw,66px);
  line-height:1.04;
  max-width:900px;
  margin:16px 0;
  letter-spacing:-.045em;
}

.ka-team-hero p{
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:18px;
}

.ka-team-intro{
  background:#050b14;
  color:#fff;
  padding:48px 0;
  border-top:1px solid rgba(100,181,255,.14);
}

.ka-team-intro-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:38px;
  align-items:center;
}

.ka-team-intro h2{
  color:#fff;
  font-size:clamp(28px,3vw,40px);
  line-height:1.1;
  margin:12px 0 0;
}

.ka-team-intro p{
  color:rgba(255,255,255,.72);
  font-size:16px;
}

.ka-mp-section{
  background:#f5f7fa;
  padding:64px 0 20px;
}

.ka-mp-card{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:42px;
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 24px 65px rgba(8,17,31,.10);
}

.ka-mp-photo img,
.ka-mp-photo .ka-profile-placeholder{
  width:100%;
  height:460px;
  object-fit:cover;
}

.ka-mp-content{
  padding:44px 44px 44px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ka-mp-content h2{
  color:#08111f;
  font-size:clamp(34px,4vw,50px);
  line-height:1.08;
  margin:14px 0 6px;
}

.ka-mp-content strong,
.ka-profile-summary strong{
  color:#1e88ff;
  font-weight:900;
}

.ka-mp-content p,
.ka-team-body p{
  color:#5f6b7a;
}

.ka-profile-chips,
.ka-mini-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0;
}

.ka-profile-chips span,
.ka-mini-chips span{
  border:1px solid rgba(30,136,255,.24);
  color:#1e88ff;
  background:rgba(30,136,255,.08);
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.ka-profile-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.ka-team-section{
  background:#f5f7fa;
  padding:70px 0;
}

.ka-section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:32px;
}

.ka-section-head h2{
  font-size:clamp(32px,4vw,48px);
  margin:10px 0 0;
  color:#08111f;
}

.ka-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.ka-team-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 16px 42px rgba(8,17,31,.08);
  transition:.25s ease;
}

.ka-team-card:hover{
  transform:translateY(-7px);
  border-color:#64b5ff;
  box-shadow:0 24px 65px rgba(8,17,31,.13);
}

.ka-team-image{
  position:relative;
  height:310px;
  background:#08111f;
}

.ka-team-image img,
.ka-team-image .ka-profile-placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ka-team-role{
  position:absolute;
  left:18px;
  bottom:18px;
  background:rgba(8,17,31,.86);
  color:#64b5ff;
  border:1px solid rgba(100,181,255,.35);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.ka-team-body{
  padding:24px;
}

.ka-team-body h3{
  color:#08111f;
  margin:0;
  font-size:24px;
}

.ka-team-body strong{
  color:#1e88ff;
}

.ka-profile-placeholder{
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#08111f,#1e88ff);
  color:#fff;
  font-size:72px;
  font-weight:900;
}

/* Profile detail */

.ka-profile-hero{
  padding:88px 0;
}

.ka-profile-hero-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:54px;
  align-items:center;
}

.ka-profile-photo img,
.ka-profile-photo .ka-profile-placeholder{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.24);
}

.ka-profile-summary h1{
  color:#fff;
  font-size:clamp(42px,6vw,72px);
  line-height:1.04;
  margin:14px 0;
}

.ka-profile-summary p{
  max-width:720px;
  color:rgba(255,255,255,.78);
  font-size:18px;
}

.ka-profile-main{
  background:#f5f7fa;
  padding:76px 0;
}

.ka-profile-main-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:34px;
  align-items:start;
}

.ka-profile-article,
.ka-side-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:26px;
  padding:34px;
  box-shadow:0 14px 40px rgba(8,17,31,.07);
}

.ka-profile-article h2{
  color:#08111f;
  font-size:32px;
  margin:18px 0 12px;
}

.ka-rich-text{
  color:#5f6b7a;
  font-size:17px;
  line-height:1.85;
}

.ka-profile-sidebar{
  display:grid;
  gap:22px;
  position:sticky;
  top:110px;
}

.ka-side-card h3{
  color:#08111f;
  margin-top:0;
}

.ka-side-card p{
  color:#5f6b7a;
}

.ka-side-card i{
  color:#1e88ff;
  margin-right:8px;
}

.ka-side-card .btn{
  width:100%;
  margin-top:12px;
}

.ka-profile-chips.dark span{
  background:#08111f;
  color:#64b5ff;
}

@media(max-width:1000px){
  .ka-team-intro-grid,
  .ka-mp-card,
  .ka-profile-hero-grid,
  .ka-profile-main-grid{
    grid-template-columns:1fr;
  }

  .ka-mp-content{
    padding:34px;
  }

  .ka-team-grid{
    grid-template-columns:1fr 1fr;
  }

  .ka-profile-sidebar{
    position:static;
  }
}

@media(max-width:650px){
  .ka-team-grid{
    grid-template-columns:1fr;
  }

  .ka-section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .ka-profile-photo img,
  .ka-profile-photo .ka-profile-placeholder,
  .ka-mp-photo img,
  .ka-mp-photo .ka-profile-placeholder{
    height:360px;
  }
}

/* Premium Kangaragn About Page */

.ka-about-hero{
  background:
    linear-gradient(120deg,rgba(8,17,31,.98),rgba(16,35,61,.82)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:92px 0 70px;
}

.ka-about-hero-grid{
  display:grid;
  grid-template-columns:390px 1fr;
  gap:54px;
  align-items:center;
}

.ka-about-photo{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
  border:1px solid rgba(100,181,255,.2);
  background:#071529;
}

.ka-about-photo img{
  width:100%;
  height:470px;
  object-fit:cover;
}

.ka-about-hero-content h1{
  color:#fff;
  font-size:clamp(42px,6vw,74px);
  line-height:1.04;
  margin:14px 0 8px;
  letter-spacing:-.045em;
}

.ka-hero-line{
  color:#f0c86a;
  font-size:18px;
  font-weight:700;
  margin-bottom:24px;
}

.ka-about-hero-content p{
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.75;
}

.ka-about-contact-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:26px 0;
}

.ka-about-contact-row span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#d5d9e0;
  font-size:14px;
}

.ka-about-contact-row i{
  color:#64b5ff;
}

.ka-about-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.ka-about-practice-strip{
  background:#fff;
  border-bottom:1px solid #e5eaf0;
}

.ka-about-strip-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
}

.ka-about-strip-grid a{
  min-height:126px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  border-right:1px solid #e5eaf0;
  color:#08111f;
  padding:22px;
  transition:.25s ease;
}

.ka-about-strip-grid a:hover{
  background:#f5f7fa;
  color:#1e88ff;
}

.ka-about-strip-grid a:last-child{
  border-right:none;
}

.ka-about-strip-grid i{
  color:#1e88ff;
  font-size:30px;
}

.ka-about-strip-grid span{
  font-weight:800;
  font-size:14px;
  line-height:1.35;
}

.ka-about-main{
  background:#f5f7fa;
  padding:78px 0;
}

.ka-about-main-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:28px;
  align-items:start;
}

.ka-about-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:26px;
  padding:34px;
  box-shadow:0 16px 42px rgba(8,17,31,.07);
}

.ka-about-wide h2{
  color:#08111f;
  font-size:clamp(30px,4vw,48px);
  line-height:1.1;
  margin:14px 0 20px;
}

.ka-about-card p{
  color:#5f6b7a;
  font-size:16px;
  line-height:1.8;
}

.ka-about-divider{
  height:1px;
  background:#e5eaf0;
  margin:30px 0;
}

.ka-about-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.ka-about-columns h3,
.ka-about-card h3{
  color:#08111f;
  margin-top:0;
}

.ka-about-side{
  display:grid;
  gap:22px;
}

.ka-check-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.ka-check-list li{
  position:relative;
  padding:11px 0 11px 30px;
  border-bottom:1px solid #e5eaf0;
  color:#5f6b7a;
  font-weight:600;
}

.ka-check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#1e88ff;
  font-weight:900;
}

.ka-quote-card{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  border-radius:26px;
  padding:32px;
  box-shadow:0 20px 54px rgba(8,17,31,.18);
}

.ka-quote-card i{
  color:#f0c86a;
  font-size:34px;
}

.ka-quote-card p{
  color:rgba(255,255,255,.86);
  font-size:17px;
  line-height:1.75;
}

.ka-quote-card span{
  color:#64b5ff;
  font-weight:800;
}

.ka-about-values{
  background:#fff;
  padding:76px 0;
}

.ka-values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.ka-value-card{
  border:1px solid #e5eaf0;
  border-radius:24px;
  padding:28px;
  transition:.25s ease;
}

.ka-value-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 46px rgba(8,17,31,.08);
  border-color:#64b5ff;
}

.ka-value-card i{
  color:#1e88ff;
  font-size:34px;
}

.ka-value-card h3{
  color:#08111f;
  margin:18px 0 10px;
}

.ka-value-card p{
  color:#5f6b7a;
}

.ka-featured-matters{
  background:#f5f7fa;
  padding:76px 0;
}

.ka-matter-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.ka-matter-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:24px;
  padding:30px;
  box-shadow:0 14px 38px rgba(8,17,31,.06);
}

.ka-matter-card i{
  color:#1e88ff;
  font-size:36px;
}

.ka-matter-card h3{
  color:#08111f;
}

.ka-matter-card p{
  color:#5f6b7a;
}

.ka-about-cta{
  background:#f5f7fa;
  padding:0 0 86px;
}

.ka-about-cta-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.92)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:32px;
  padding:46px;
  display:grid;
  grid-template-columns:90px 1fr 1fr;
  gap:28px;
  align-items:center;
  box-shadow:0 28px 78px rgba(8,17,31,.18);
}

.ka-cta-icon{
  width:86px;
  height:86px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:rgba(30,136,255,.12);
  border:1px solid rgba(100,181,255,.35);
}

.ka-cta-icon i{
  font-size:40px;
  color:#64b5ff;
}

.ka-about-cta h2{
  color:#fff;
  font-size:36px;
  margin:0 0 8px;
}

.ka-about-cta p{
  color:rgba(255,255,255,.76);
}

.ka-cta-points{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.ka-cta-points span{
  color:#d5d9e0;
  display:flex;
  gap:10px;
  align-items:center;
}

.ka-cta-points i{
  color:#64b5ff;
}

@media(max-width:1000px){
  .ka-about-hero-grid,
  .ka-about-main-grid,
  .ka-about-cta-card{
    grid-template-columns:1fr;
  }

  .ka-about-strip-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

@media(max-width:650px){
  .ka-about-hero{
    padding:70px 0 54px;
  }

  .ka-about-photo img{
    height:340px;
  }

  .ka-about-strip-grid,
  .ka-about-columns,
  .ka-values-grid,
  .ka-matter-grid{
    grid-template-columns:1fr;
  }

  .ka-about-cta-card{
    padding:32px;
  }
}

/* Final International Practice Areas Page */

.kg-practice-hero{
  background:
    linear-gradient(90deg,rgba(8,17,31,.96),rgba(8,17,31,.82),rgba(8,17,31,.35)),
    url("../images/practice-hero.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:112px 0 92px;
}

.kg-practice-hero-grid{
  max-width:1180px;
}

.kg-page-kicker{
  color:#d8a437;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:13px;
  font-weight:900;
}

.kg-practice-hero h1{
  color:#fff;
  font-size:clamp(42px,5.4vw,76px);
  line-height:1.05;
  max-width:780px;
  margin:16px 0;
  letter-spacing:-.045em;
}

.kg-practice-hero p{
  max-width:680px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.75;
}

.kg-page-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.kg-trust-strip{
  background:#fff;
  border-bottom:1px solid #e5eaf0;
}

.kg-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.kg-trust-grid div{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:10px 16px;
  padding:32px 24px;
  border-right:1px solid #e5eaf0;
  align-items:center;
}

.kg-trust-grid div:last-child{
  border-right:none;
}

.kg-trust-grid i{
  grid-row:span 2;
  color:#1e88ff;
  font-size:36px;
}

.kg-trust-grid strong{
  color:#08111f;
}

.kg-trust-grid span{
  color:#5f6b7a;
  font-size:14px;
}

.kg-practice-page{
  background:#f5f7fa;
  padding:72px 0;
}

.kg-section-title{
  margin-bottom:34px;
}

.kg-section-title h2{
  color:#08111f;
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  margin:12px 0;
  letter-spacing:-.035em;
}

.kg-section-title p{
  color:#5f6b7a;
}

.kg-practice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.kg-practice-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(8,17,31,.07);
  transition:.25s ease;
}

.kg-practice-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 65px rgba(8,17,31,.12);
  border-color:#64b5ff;
}

.kg-practice-img{
  height:210px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.kg-practice-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,17,31,.05),rgba(8,17,31,.25));
}

.kg-practice-body{
  position:relative;
  padding:28px;
  min-height:270px;
}

.kg-practice-body i{
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(30,136,255,.09);
  color:#1e88ff;
  display:grid;
  place-items:center;
  font-size:30px;
  margin-bottom:18px;
}

.kg-practice-body h3{
  color:#08111f;
  font-size:24px;
  line-height:1.18;
  margin:0 0 14px;
}

.kg-practice-body p{
  color:#5f6b7a;
  font-size:15px;
  line-height:1.65;
}

.kg-practice-body span{
  color:#1e88ff;
  font-weight:900;
}

.kg-practice-body em{
  position:absolute;
  right:24px;
  bottom:16px;
  font-style:normal;
  color:rgba(8,17,31,.06);
  font-size:54px;
  font-weight:900;
}

.kg-expertise-section{
  background:#fff;
  padding:72px 0;
}

.kg-expertise-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.kg-expertise-card{
  border:1px solid #e5eaf0;
  border-radius:24px;
  padding:30px;
  box-shadow:0 12px 34px rgba(8,17,31,.06);
}

.kg-expertise-card i{
  color:#1e88ff;
  font-size:36px;
}

.kg-expertise-card h3{
  color:#08111f;
}

.kg-expertise-card p{
  color:#5f6b7a;
}

.kg-industries{
  background:#f5f7fa;
  padding:72px 0;
}

.kg-industry-chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.kg-industry-chips span{
  background:#fff;
  border:1px solid #dbe5f0;
  color:#08111f;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 8px 24px rgba(8,17,31,.04);
}

.kg-practice-cta{
  background:#f5f7fa;
  padding:0 0 86px;
}

.kg-practice-cta-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.88)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:32px;
  padding:52px;
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:34px;
  align-items:center;
  box-shadow:0 28px 78px rgba(8,17,31,.18);
}

.kg-practice-cta-card h2{
  color:#fff;
  font-size:clamp(32px,4vw,50px);
  margin:12px 0;
}

.kg-practice-cta-card p{
  color:rgba(255,255,255,.78);
}

.kg-cta-points{
  display:grid;
  gap:16px;
}

.kg-cta-points span{
  display:flex;
  align-items:center;
  gap:12px;
  color:#d5d9e0;
  font-weight:800;
}

.kg-cta-points i{
  color:#64b5ff;
  font-size:26px;
}

@media(max-width:1000px){
  .kg-trust-grid,
  .kg-practice-grid,
  .kg-expertise-grid,
  .kg-practice-cta-card{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .kg-practice-hero{
    padding:82px 0 68px;
  }

  .kg-trust-grid,
  .kg-practice-grid,
  .kg-expertise-grid,
  .kg-practice-cta-card{
    grid-template-columns:1fr;
  }

  .kg-trust-grid div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
  }

  .kg-practice-cta-card{
    padding:34px;
  }
}

/* Final Professional Team Page - no banner */

.kg-team-page{
  background:#fff;
  padding:70px 0 90px;
}

.kg-team-top{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:end;
  margin-bottom:54px;
}

.kg-team-title h1{
  color:#08111f;
  font-size:clamp(42px,5vw,70px);
  line-height:1.04;
  letter-spacing:-.05em;
  margin:14px 0 20px;
}

.kg-team-title p{
  max-width:650px;
  color:#5f6b7a;
  font-size:17px;
  line-height:1.8;
}

.kg-team-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}

.kg-team-highlights div{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:8px 16px;
  padding:12px 22px;
  border-right:1px solid #e5eaf0;
  align-items:center;
}

.kg-team-highlights div:last-child{
  border-right:none;
}

.kg-team-highlights i{
  grid-row:span 2;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid #dbe5f0;
  color:#1e88ff;
  font-size:28px;
}

.kg-team-highlights strong{
  color:#08111f;
  font-size:18px;
}

.kg-team-highlights span{
  color:#5f6b7a;
  font-size:14px;
  line-height:1.6;
}

.kg-team-content-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
  align-items:start;
}

.kg-team-tabs{
  display:flex;
  gap:24px;
  border-bottom:1px solid #e5eaf0;
  margin-bottom:24px;
  overflow:auto;
}

.kg-team-tabs button{
  border:0;
  background:transparent;
  color:#08111f;
  font-weight:800;
  padding:0 4px 16px;
  cursor:pointer;
  white-space:nowrap;
}

.kg-team-tabs button.active{
  color:#1e88ff;
  border-bottom:3px solid #1e88ff;
}

.kg-team-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.kg-team-member-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(8,17,31,.06);
  transition:.25s ease;
}

.kg-team-member-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 58px rgba(8,17,31,.12);
  border-color:#64b5ff;
}

.kg-team-member-photo{
  position:relative;
  height:285px;
  background:#08111f;
}

.kg-team-member-photo img,
.kg-team-placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
}

.kg-team-placeholder{
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#08111f,#1e88ff);
  font-size:70px;
  font-weight:900;
}

.kg-linkedin-badge{
  position:absolute;
  right:14px;
  bottom:14px;
  width:34px;
  height:34px;
  border-radius:6px;
  background:#fff;
  color:#1e88ff;
  display:grid;
  place-items:center;
  box-shadow:0 8px 20px rgba(8,17,31,.2);
}

.kg-team-member-body{
  padding:22px;
}

.kg-team-member-body h3{
  color:#08111f;
  font-size:23px;
  line-height:1.2;
  margin:0;
}

.kg-member-role{
  display:block;
  color:#d8a437;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin:8px 0 12px;
}

.kg-team-member-body p{
  color:#344054;
  min-height:52px;
  margin-bottom:18px;
}

.kg-team-member-body strong{
  color:#1e88ff;
}

.kg-team-side-panel{
  position:sticky;
  top:105px;
  background:
    linear-gradient(135deg,rgba(8,17,31,.98),rgba(16,35,61,.95)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  border-radius:14px;
  color:#fff;
  padding:36px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kg-team-side-panel h2{
  color:#fff;
  font-size:clamp(30px,3vw,42px);
  line-height:1.08;
  margin:14px 0 22px;
}

.kg-team-side-panel p{
  color:rgba(255,255,255,.78);
  line-height:1.75;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.kg-side-feature{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  margin:24px 0;
}

.kg-side-feature i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(30,136,255,.12);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
}

.kg-side-feature strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}

.kg-side-feature span{
  display:block;
  color:rgba(255,255,255,.74);
  font-size:14px;
  line-height:1.6;
}

.kg-side-btn{
  margin-top:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:16px 20px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:6px;
  color:#fff;
  font-weight:900;
}

.kg-side-btn:hover{
  background:#1e88ff;
  border-color:#1e88ff;
}

.kg-team-inline-cta{
  margin-top:28px;
  background:#f5f7fa;
  border:1px solid #e5eaf0;
  border-radius:12px;
  padding:24px;
  display:grid;
  grid-template-columns:70px 1fr auto;
  gap:20px;
  align-items:center;
}

.kg-inline-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#1e88ff;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
}

.kg-team-inline-cta h3{
  margin:0 0 6px;
  color:#08111f;
}

.kg-team-inline-cta p{
  margin:0;
  color:#5f6b7a;
}

@media(max-width:1150px){
  .kg-team-top,
  .kg-team-content-grid{
    grid-template-columns:1fr;
  }

  .kg-team-side-panel{
    position:static;
  }

  .kg-team-card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .kg-team-page{
    padding:52px 0 70px;
  }

  .kg-team-highlights,
  .kg-team-card-grid,
  .kg-team-inline-cta{
    grid-template-columns:1fr;
  }

  .kg-team-highlights div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
    padding:18px 0;
  }

  .kg-team-member-photo{
    height:340px;
  }

  .kg-team-inline-cta .btn{
    width:100%;
  }
}

/* Final Professional Team Page - no banner */

.kg-team-page{
  background:#fff;
  padding:70px 0 90px;
}

.kg-team-top{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:end;
  margin-bottom:54px;
}

.kg-team-title h1{
    color:#08111f;
    font-size:clamp(48px,5vw,78px);
    line-height:1.02;
    letter-spacing:-0.05em;
    margin:14px 0 22px;
    max-width:760px;
}

.kg-team-intro{
    max-width:720px;
    color:#5f6b7a;
    font-size:18px;
    line-height:1.9;
}

.kg-team-divider{
    width:120px;
    height:4px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        #1E88FF,
        #64B5FF
    );
    margin-top:30px;
}
.kg-team-title p{
  max-width:650px;
  color:#5f6b7a;
  font-size:17px;
  line-height:1.8;
}

.kg-team-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}

.kg-team-highlights div{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:8px 16px;
  padding:12px 22px;
  border-right:1px solid #e5eaf0;
  align-items:center;
}

.kg-team-highlights div:last-child{
  border-right:none;
}

.kg-team-highlights i{
  grid-row:span 2;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid #dbe5f0;
  color:#1e88ff;
  font-size:28px;
}

.kg-team-highlights strong{
  color:#08111f;
  font-size:18px;
}

.kg-team-highlights span{
  color:#5f6b7a;
  font-size:14px;
  line-height:1.6;
}

.kg-team-content-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
  align-items:start;
}

.kg-team-tabs{
  display:flex;
  gap:24px;
  border-bottom:1px solid #e5eaf0;
  margin-bottom:24px;
  overflow:auto;
}

.kg-team-tabs button{
  border:0;
  background:transparent;
  color:#08111f;
  font-weight:800;
  padding:0 4px 16px;
  cursor:pointer;
  white-space:nowrap;
}

.kg-team-tabs button.active{
  color:#1e88ff;
  border-bottom:3px solid #1e88ff;
}

.kg-team-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.kg-team-member-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(8,17,31,.06);
  transition:.25s ease;
}

.kg-team-member-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 58px rgba(8,17,31,.12);
  border-color:#64b5ff;
}

.kg-team-member-photo{
  position:relative;
  height:285px;
  background:#08111f;
}

.kg-team-member-photo img,
.kg-team-placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
}

.kg-team-placeholder{
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#08111f,#1e88ff);
  font-size:70px;
  font-weight:900;
}

.kg-linkedin-badge{
  position:absolute;
  right:14px;
  bottom:14px;
  width:34px;
  height:34px;
  border-radius:6px;
  background:#fff;
  color:#1e88ff;
  display:grid;
  place-items:center;
  box-shadow:0 8px 20px rgba(8,17,31,.2);
}

.kg-team-member-body{
  padding:22px;
}

.kg-team-member-body h3{
  color:#08111f;
  font-size:23px;
  line-height:1.2;
  margin:0;
}

.kg-member-role{
  display:block;
  color:#d8a437;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin:8px 0 12px;
}

.kg-team-member-body p{
  color:#344054;
  min-height:52px;
  margin-bottom:18px;
}

.kg-team-member-body strong{
  color:#1e88ff;
}

.kg-team-side-panel{
  position:sticky;
  top:105px;
  background:
    linear-gradient(135deg,rgba(8,17,31,.98),rgba(16,35,61,.95)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  border-radius:14px;
  color:#fff;
  padding:36px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kg-team-side-panel h2{
  color:#fff;
  font-size:clamp(30px,3vw,42px);
  line-height:1.08;
  margin:14px 0 22px;
}

.kg-team-side-panel p{
  color:rgba(255,255,255,.78);
  line-height:1.75;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.kg-side-feature{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  margin:24px 0;
}

.kg-side-feature i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(30,136,255,.12);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
}

.kg-side-feature strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}

.kg-side-feature span{
  display:block;
  color:rgba(255,255,255,.74);
  font-size:14px;
  line-height:1.6;
}

.kg-side-btn{
  margin-top:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:16px 20px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:6px;
  color:#fff;
  font-weight:900;
}

.kg-side-btn:hover{
  background:#1e88ff;
  border-color:#1e88ff;
}

.kg-team-inline-cta{
  margin-top:28px;
  background:#f5f7fa;
  border:1px solid #e5eaf0;
  border-radius:12px;
  padding:24px;
  display:grid;
  grid-template-columns:70px 1fr auto;
  gap:20px;
  align-items:center;
}

.kg-inline-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#1e88ff;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
}

.kg-team-inline-cta h3{
  margin:0 0 6px;
  color:#08111f;
}

.kg-team-inline-cta p{
  margin:0;
  color:#5f6b7a;
}

@media(max-width:1150px){
  .kg-team-top,
  .kg-team-content-grid{
    grid-template-columns:1fr;
  }

  .kg-team-side-panel{
    position:static;
  }

  .kg-team-card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .kg-team-page{
    padding:52px 0 70px;
  }

  .kg-team-highlights,
  .kg-team-card-grid,
  .kg-team-inline-cta{
    grid-template-columns:1fr;
  }

  .kg-team-highlights div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
    padding:18px 0;
  }

  .kg-team-member-photo{
    height:340px;
  }

  .kg-team-inline-cta .btn{
    width:100%;
  }
}

/* Team heading refinement override */

.kg-team-title h1{
  color:#08111f !important;
  font-size:clamp(48px,5vw,78px) !important;
  line-height:1.02 !important;
  letter-spacing:-0.05em !important;
  margin:14px 0 22px !important;
  max-width:760px !important;
}

.kg-team-intro-text{
  max-width:720px !important;
  color:#5f6b7a !important;
  font-size:18px !important;
  line-height:1.9 !important;
}

.kg-team-divider{
  width:120px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#1E88FF,#64B5FF);
  margin-top:30px;
}

/* Premium Properties / Conveyancing Page */

.kp-hero{
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.92) 42%,rgba(255,255,255,.2) 100%),
    url("../images/property-hero.jpg");
  background-size:cover;
  background-position:center right;
  padding:86px 0 54px;
  border-bottom:1px solid #e5eaf0;
}

.kp-hero-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:center;
}

.kp-hero-copy h1{
  color:#08111f;
  font-size:clamp(42px,5vw,72px);
  line-height:1.04;
  letter-spacing:-.05em;
  margin:14px 0 18px;
  max-width:760px;
}

.kp-hero-copy p{
  color:#344054;
  max-width:700px;
  font-size:17px;
  line-height:1.75;
}

.kp-lead{
  color:#08111f !important;
  font-weight:900;
}

.kp-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.kp-priority-card{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  border-radius:18px;
  padding:28px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kp-priority-head{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.15);
  padding-bottom:18px;
  margin-bottom:18px;
}

.kp-priority-head i{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(216,164,55,.4);
  color:#d8a437;
  font-size:30px;
}

.kp-priority-head strong{
  display:block;
}

.kp-priority-head span{
  color:#f0c86a;
  font-size:13px;
  font-weight:800;
}

.kp-priority-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.kp-priority-card li{
  display:flex;
  gap:10px;
  align-items:center;
  color:#d5d9e0;
  padding:9px 0;
  font-size:14px;
}

.kp-priority-card li i{
  color:#d8a437;
}

.kp-strip{
  background:#fff;
  border-bottom:1px solid #e5eaf0;
}

.kp-strip-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
}

.kp-strip-grid div{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:4px 12px;
  padding:24px 16px;
  border-right:1px solid #e5eaf0;
  align-items:center;
}

.kp-strip-grid div:last-child{
  border-right:none;
}

.kp-strip-grid i{
  grid-row:span 2;
  color:#d8a437;
  border:1px solid #e8d6a7;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
}

.kp-strip-grid strong{
  color:#08111f;
  font-size:13px;
}

.kp-strip-grid span{
  color:#5f6b7a;
  font-size:12px;
  line-height:1.35;
}

.kp-main{
  background:#f5f7fa;
  padding:58px 0 86px;
}

.kp-main-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
  align-items:start;
}

.kp-service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.kp-service-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(8,17,31,.06);
  transition:.25s ease;
}

.kp-service-card:hover{
  transform:translateY(-5px);
  border-color:#d8a437;
  box-shadow:0 20px 50px rgba(8,17,31,.10);
}

.kp-service-img{
  height:120px;
  background-size:cover;
  background-position:center;
}

.kp-service-body{
  position:relative;
  padding:28px 18px 20px;
}

.kp-service-body i{
  position:absolute;
  top:-28px;
  left:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#d8a437;
  background:#fff;
  border:1px solid #e8d6a7;
  font-size:25px;
  box-shadow:0 8px 20px rgba(8,17,31,.10);
}

.kp-service-body h3{
  color:#08111f;
  margin:4px 0 8px;
  font-size:19px;
  line-height:1.2;
}

.kp-service-body p{
  color:#5f6b7a;
  font-size:14px;
  line-height:1.55;
}

.kp-side-panel{
  position:sticky;
  top:105px;
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  border-radius:16px;
  padding:34px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kp-side-panel h2{
  color:#fff;
  font-size:clamp(28px,3vw,42px);
  line-height:1.08;
  margin:14px 0 18px;
}

.kp-side-panel p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.kp-side-feature{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  margin:22px 0;
}

.kp-side-feature i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(216,164,55,.10);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
}

.kp-side-feature strong{
  display:block;
  color:#fff;
}

.kp-side-feature span{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.55;
}

.kp-side-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:24px;
  padding:15px 18px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:6px;
  color:#fff;
  font-weight:900;
}

.kp-inline-cta{
  margin:28px 0 58px;
  background:#fff7eb;
  border:1px solid #f0dec2;
  border-radius:12px;
  padding:24px;
  display:grid;
  grid-template-columns:66px 1fr auto;
  gap:20px;
  align-items:center;
}

.kp-inline-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#071529;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
}

.kp-inline-cta h3{
  color:#08111f;
  margin:0 0 6px;
}

.kp-inline-cta p{
  color:#5f6b7a;
  margin:0;
}

.kp-filter-form{
  display:grid;
  grid-template-columns:2fr 1fr 1fr auto;
  gap:12px;
  margin-bottom:22px;
}

.kp-filter-form input,
.kp-filter-form select{
  border:1px solid #dbe5f0;
  border-radius:8px;
  padding:13px 14px;
  background:#fff;
}

.kp-filter-form button{
  border:0;
  background:#08111f;
  color:#fff;
  padding:13px 20px;
  border-radius:8px;
  font-weight:900;
}

.kp-listing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.kp-listing-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(8,17,31,.06);
}

.kp-listing-card img,
.kp-listing-placeholder{
  width:100%;
  height:190px;
  object-fit:cover;
}

.kp-listing-placeholder{
  display:grid;
  place-items:center;
  background:#dbe5f0;
  color:#5f6b7a;
}

.kp-listing-card div{
  padding:18px;
}

.kp-status,
.kp-verified{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  margin-right:6px;
}

.kp-status{
  background:#eef6ff;
  color:#1e88ff;
}

.kp-verified{
  background:#fff7eb;
  color:#d8a437;
}

.kp-listing-card h3{
  color:#08111f;
  margin:12px 0 4px;
}

.kp-listing-card p{
  color:#5f6b7a;
}

.kp-listing-card strong{
  color:#08111f;
}

@media(max-width:1100px){
  .kp-hero-grid,
  .kp-main-grid{
    grid-template-columns:1fr;
  }

  .kp-side-panel{
    position:static;
  }

  .kp-service-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

@media(max-width:700px){
  .kp-hero{
    padding:68px 0 42px;
  }

  .kp-strip-grid,
  .kp-service-grid,
  .kp-inline-cta,
  .kp-filter-form,
  .kp-listing-grid{
    grid-template-columns:1fr;
  }

  .kp-strip-grid div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
  }
}

/* Premium Drafting Services Page */

.kd-hero{
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.88) 43%,rgba(255,255,255,.08) 100%),
    url("../images/drafting-hero.jpg");
  background-size:cover;
  background-position:center right;
  padding:96px 0 68px;
  border-bottom:1px solid #e5eaf0;
}

.kd-hero-grid{
  max-width:1180px;
}

.kd-hero h1{
  color:#08111f;
  font-size:clamp(42px,5.4vw,76px);
  line-height:1.04;
  max-width:720px;
  margin:14px 0 22px;
  letter-spacing:-.05em;
}

.kd-hero p{
  max-width:720px;
  color:#344054;
  font-size:17px;
  line-height:1.8;
}

.kd-trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:760px;
  margin-top:34px;
}

.kd-trust-row div{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:4px 12px;
  padding:8px 22px 8px 0;
  border-right:1px solid #dbe5f0;
}

.kd-trust-row div:last-child{
  border-right:none;
  padding-left:22px;
}

.kd-trust-row i{
  grid-row:span 2;
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#d8a437;
  border:1px solid #e8d6a7;
}

.kd-trust-row strong{
  color:#08111f;
}

.kd-trust-row span{
  color:#5f6b7a;
  font-size:13px;
}

.kd-stats{
  background:#fff;
  border-bottom:1px solid #e5eaf0;
}

.kd-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.kd-stats-grid div{
  padding:28px;
  border-right:1px solid #e5eaf0;
}

.kd-stats-grid div:last-child{
  border-right:none;
}

.kd-stats-grid strong{
  display:block;
  color:#1e88ff;
  font-size:34px;
  line-height:1;
}

.kd-stats-grid span{
  display:block;
  margin-top:8px;
  color:#08111f;
  font-weight:800;
}

.kd-main{
  background:#f5f7fa;
  padding:62px 0 86px;
}

.kd-main-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
  align-items:start;
}

.kd-doc-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.kd-doc-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(8,17,31,.06);
  transition:.25s ease;
}

.kd-doc-card:hover{
  transform:translateY(-5px);
  border-color:#d8a437;
  box-shadow:0 20px 50px rgba(8,17,31,.10);
}

.kd-doc-img{
  height:120px;
  background-size:cover;
  background-position:center;
}

.kd-doc-body{
  position:relative;
  padding:32px 18px 22px;
  min-height:225px;
}

.kd-doc-body i{
  position:absolute;
  top:-28px;
  left:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#071529;
  color:#d8a437;
  border:1px solid rgba(216,164,55,.4);
  font-size:25px;
}

.kd-doc-body h3{
  color:#08111f;
  font-size:19px;
  line-height:1.2;
  margin:4px 0 10px;
}

.kd-doc-body p{
  color:#5f6b7a;
  font-size:14px;
  line-height:1.58;
}

.kd-doc-body span{
  color:#d8a437;
  font-weight:900;
}

.kd-side-panel{
  position:sticky;
  top:105px;
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  border-radius:16px;
  padding:34px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kd-side-panel h2{
  color:#fff;
  font-size:clamp(28px,3vw,42px);
  line-height:1.08;
  margin:14px 0 18px;
}

.kd-side-panel p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.kd-side-feature{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  margin:22px 0;
}

.kd-side-feature i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(216,164,55,.10);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
}

.kd-side-feature strong{
  display:block;
  color:#fff;
}

.kd-side-feature span{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.55;
}

.kd-side-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:24px;
  padding:15px 18px;
  border:1px solid rgba(216,164,55,.55);
  border-radius:6px;
  color:#d8a437;
  font-weight:900;
}

.kd-process{
  margin-top:60px;
}

.kd-process-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(8,17,31,.05);
}

.kd-process-grid div{
  padding:24px 18px;
  border-right:1px solid #e5eaf0;
}

.kd-process-grid div:last-child{
  border-right:none;
}

.kd-process-grid strong{
  display:block;
  color:#d8a437;
  font-size:24px;
}

.kd-process-grid span{
  display:block;
  color:#08111f;
  font-weight:900;
}

.kd-inline-cta{
  margin-top:34px;
  background:#fff7eb;
  border:1px solid #f0dec2;
  border-radius:12px;
  padding:24px;
  display:grid;
  grid-template-columns:66px 1fr auto;
  gap:20px;
  align-items:center;
}

.kd-inline-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#071529;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
}

.kd-inline-cta h3{
  color:#08111f;
  margin:0 0 6px;
}

.kd-inline-cta p{
  color:#5f6b7a;
  margin:0;
}

@media(max-width:1100px){
  .kd-main-grid{
    grid-template-columns:1fr;
  }

  .kd-side-panel{
    position:static;
  }

  .kd-doc-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .kd-hero{
    padding:70px 0 48px;
  }

  .kd-trust-row,
  .kd-stats-grid,
  .kd-doc-grid,
  .kd-process-grid,
  .kd-inline-cta{
    grid-template-columns:1fr;
  }

  .kd-trust-row div,
  .kd-stats-grid div,
  .kd-process-grid div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
  }
}

/* Final Premium Team Page */

.kt-hero{
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 42%,rgba(255,255,255,.08) 100%),
    url("../images/team-hero.jpg");
  background-size:cover;
  background-position:center right;
  padding:88px 0 62px;
  border-bottom:1px solid #e5eaf0;
}

.kt-hero-copy h1{
  color:#08111f;
  font-size:clamp(42px,5vw,72px);
  line-height:1.04;
  letter-spacing:-.05em;
  max-width:760px;
  margin:14px 0 20px;
}

.kt-hero-copy p{
  color:#344054;
  max-width:650px;
  font-size:17px;
  line-height:1.75;
}

.kt-hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:760px;
  margin-top:34px;
}

.kt-hero-points div{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:4px 12px;
  padding:8px 20px 8px 0;
  border-right:1px solid #dbe5f0;
}

.kt-hero-points div:last-child{
  border-right:none;
  padding-left:20px;
}

.kt-hero-points i{
  grid-row:span 2;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid #e8d6a7;
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
}

.kt-hero-points strong{
  color:#08111f;
  font-size:14px;
}

.kt-hero-points span{
  color:#5f6b7a;
  font-size:13px;
}

.kt-stats{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
}

.kt-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.kt-stats-grid div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:4px 18px;
  padding:34px 24px;
  border-right:1px solid rgba(255,255,255,.12);
}

.kt-stats-grid div:last-child{
  border-right:none;
}

.kt-stats-grid i{
  grid-row:span 2;
  width:58px;
  height:58px;
  border-radius:50%;
  background:rgba(216,164,55,.1);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:30px;
}

.kt-stats-grid strong{
  color:#fff;
  font-size:42px;
  line-height:1;
}

.kt-stats-grid span{
  color:#d5d9e0;
  font-size:14px;
}

.kt-main{
  background:#f5f7fa;
  padding:72px 0;
}

.kt-main-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:34px;
  align-items:start;
}

.kt-section-head{
  text-align:center;
  margin-bottom:34px;
}

.kt-section-head h2{
  color:#08111f;
  font-size:clamp(34px,4vw,52px);
  margin:12px 0 0;
}

.kt-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.kt-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(8,17,31,.06);
  transition:.25s ease;
}

.kt-card:hover{
  transform:translateY(-6px);
  border-color:#d8a437;
  box-shadow:0 22px 58px rgba(8,17,31,.12);
}

.kt-photo{
  position:relative;
  height:290px;
  background:#071529;
}

.kt-photo img,
.kt-placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
}

.kt-placeholder{
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#071529,#1e88ff);
  font-size:72px;
  font-weight:900;
}

.kt-photo span{
  position:absolute;
  right:14px;
  bottom:14px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#d8a437;
  color:#fff;
  display:grid;
  place-items:center;
}

.kt-card-body{
  padding:22px;
}

.kt-card-body h3{
  color:#08111f;
  font-size:22px;
  margin:0;
}

.kt-card-body small{
  display:block;
  color:#d8a437;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:6px 0 12px;
}

.kt-card-body p{
  color:#344054;
  min-height:58px;
  line-height:1.55;
}

.kt-card-body strong{
  color:#1e88ff;
}

.kt-side{
  position:sticky;
  top:105px;
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  border-radius:16px;
  padding:34px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kt-side h2{
  color:#fff;
  font-size:clamp(30px,3vw,42px);
  line-height:1.08;
  margin:14px 0 18px;
}

.kt-side p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.kt-side-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  margin:22px 0;
}

.kt-side-item i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(216,164,55,.1);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
}

.kt-side-item strong{
  display:block;
  color:#fff;
}

.kt-side-item span{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.55;
}

.kt-side-btn{
  display:flex;
  justify-content:center;
  margin-top:24px;
  padding:15px 18px;
  border:1px solid rgba(216,164,55,.55);
  border-radius:6px;
  color:#d8a437;
  font-weight:900;
}

.kt-values{
  background:#fff;
  padding:28px 0 70px;
}

.kt-values-grid{
  background:#fff7eb;
  border:1px solid #f0dec2;
  border-radius:14px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
}

.kt-values-grid div{
  text-align:center;
  padding:28px 22px;
  border-right:1px solid #f0dec2;
}

.kt-values-grid div:last-child{
  border-right:none;
}

.kt-values-grid i{
  color:#d8a437;
  font-size:30px;
}

.kt-values-grid strong{
  display:block;
  color:#08111f;
  margin:10px 0 6px;
}

.kt-values-grid span{
  color:#5f6b7a;
  font-size:13px;
}

.kt-cta{
  background:#fff;
  padding:0 0 86px;
}

.kt-cta-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.9)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:14px;
  padding:34px;
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:24px;
  align-items:center;
}

.kt-cta-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#d8a437;
  color:#071529;
  display:grid;
  place-items:center;
  font-size:34px;
}

.kt-cta-card h2{
  color:#fff;
  margin:0 0 6px;
}

.kt-cta-card p{
  color:#d5d9e0;
  margin:0;
}

@media(max-width:1100px){
  .kt-main-grid{
    grid-template-columns:1fr;
  }

  .kt-side{
    position:static;
  }

  .kt-team-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .kt-stats-grid,
  .kt-values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .kt-hero-points,
  .kt-stats-grid,
  .kt-team-grid,
  .kt-values-grid,
  .kt-cta-card{
    grid-template-columns:1fr;
  }

  .kt-hero-points div,
  .kt-stats-grid div,
  .kt-values-grid div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
  }

  .kt-photo{
    height:340px;
  }
}

/* Premium Contact Page */

.kc-hero{
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 43%,rgba(255,255,255,.1) 100%),
    url("../images/contact-hero.jpg");
  background-size:cover;
  background-position:center right;
  padding:88px 0 62px;
  border-bottom:1px solid #e5eaf0;
}

.kc-hero h1{
  color:#08111f;
  font-size:clamp(42px,5vw,72px);
  line-height:1.04;
  max-width:720px;
  letter-spacing:-.05em;
  margin:14px 0 20px;
}

.kc-hero p{
  max-width:620px;
  color:#344054;
  font-size:17px;
  line-height:1.75;
}

.kc-hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:760px;
  margin-top:34px;
}

.kc-hero-points div{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:4px 12px;
  padding:8px 20px 8px 0;
  border-right:1px solid #dbe5f0;
}

.kc-hero-points div:last-child{border-right:none;padding-left:20px}
.kc-hero-points i{grid-row:span 2;width:44px;height:44px;border-radius:50%;border:1px solid #e8d6a7;color:#d8a437;display:grid;place-items:center;font-size:24px}
.kc-hero-points strong{color:#08111f;font-size:14px}
.kc-hero-points span{color:#5f6b7a;font-size:13px}

.kc-main{
  background:#f5f7fa;
  padding:58px 0;
}

.kc-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:26px;
  align-items:start;
}

.kc-card,
.kc-form-card,
.kc-map-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:14px;
  padding:28px;
  box-shadow:0 14px 38px rgba(8,17,31,.06);
}

.kc-left{display:grid;gap:24px}
.kc-card h2,.kc-form-card h2{color:#08111f;font-size:30px;margin:0 0 20px}
.kc-card h2::after,.kc-form-card h2::after{content:"";display:block;width:44px;height:2px;background:#d8a437;margin-top:10px}

.kc-info{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  padding:16px;
  border:1px solid #e5eaf0;
  border-radius:10px;
  margin-bottom:12px;
}

.kc-info i{
  width:50px;height:50px;border-radius:50%;background:#071529;color:#d8a437;
  display:grid;place-items:center;font-size:24px;
}

.kc-info strong,.kc-info span,.kc-info small{display:block}
.kc-info strong{color:#08111f}
.kc-info span{color:#344054}
.kc-info small{color:#5f6b7a;margin-top:3px}

.kc-secure{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  border-radius:10px;
  padding:24px;
  margin-top:14px;
}

.kc-secure i{font-size:32px;color:#d8a437}
.kc-secure h3{color:#fff}
.kc-secure p{color:rgba(255,255,255,.78)}

.kc-card a{
  display:flex;
  justify-content:space-between;
  padding:13px 0;
  border-bottom:1px solid #e5eaf0;
  color:#08111f;
  font-weight:800;
}

.kc-card a span{color:#d8a437}

.kc-form-card p{color:#5f6b7a}

.kc-form{
  display:grid;
  gap:18px;
}

.kc-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.kc-form label{
  display:grid;
  gap:8px;
  color:#08111f;
  font-weight:800;
  font-size:13px;
}

.kc-form input,
.kc-form select,
.kc-form textarea{
  width:100%;
  border:1px solid #dbe5f0;
  border-radius:8px;
  padding:14px;
  background:#fff;
  color:#08111f;
}

.kc-consent{
  grid-template-columns:18px 1fr !important;
  align-items:start;
  font-weight:500 !important;
  color:#5f6b7a !important;
}

.kc-submit{
  border:0;
  background:linear-gradient(135deg,#071529,#10233d);
  color:#d8a437;
  border-radius:8px;
  padding:16px;
  font-weight:900;
  cursor:pointer;
}

.kc-urgent{
  margin:24px -28px -28px;
  padding:22px 28px;
  background:#fff7eb;
  border-top:1px solid #f0dec2;
  display:grid;
  grid-template-columns:54px 1fr auto;
  gap:16px;
  align-items:center;
}

.kc-urgent i{
  width:48px;height:48px;border-radius:50%;background:#071529;color:#d8a437;
  display:grid;place-items:center;font-size:24px;
}

.kc-urgent strong,.kc-urgent span{display:block}
.kc-urgent strong{color:#08111f}
.kc-urgent span{color:#5f6b7a}
.kc-urgent a{border:1px solid #d8a437;color:#d8a437;border-radius:8px;padding:12px 22px;font-weight:900}

.kc-map-card{
  margin-top:24px;
  position:relative;
  min-height:320px;
  overflow:hidden;
  padding:0;
}

.kc-map-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.72)),
    url("../images/contact-map.jpg");
  background-size:cover;
  background-position:center;
}

.kc-office-box{
  position:absolute;
  right:34px;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border-radius:12px;
  padding:28px;
  max-width:300px;
  box-shadow:0 18px 48px rgba(8,17,31,.12);
}

.kc-office-box i{font-size:34px;color:#08111f}
.kc-office-box h3{color:#08111f}
.kc-office-box p{color:#5f6b7a}
.kc-office-box a{display:inline-flex;border:1px solid #d8a437;color:#d8a437;border-radius:8px;padding:12px 18px;font-weight:900}

.kc-bottom-cta{
  background:#f5f7fa;
  padding:0 0 86px;
}

.kc-bottom-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.9)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  color:#fff;
  border-radius:14px;
  padding:34px;
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:24px;
  align-items:center;
}

.kc-cta-icon{
  width:70px;height:70px;border-radius:50%;background:#d8a437;color:#071529;
  display:grid;place-items:center;font-size:34px;
}

.kc-bottom-card h2{color:#fff;margin:0 0 6px}
.kc-bottom-card p{color:#d5d9e0;margin:0}

@media(max-width:1000px){
  .kc-grid,
  .kc-bottom-card{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .kc-hero-points,
  .kc-form-grid,
  .kc-urgent{
    grid-template-columns:1fr;
  }

  .kc-hero-points div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
    padding:14px 0;
  }

  .kc-office-box{
    position:relative;
    right:auto;
    top:auto;
    transform:none;
    margin:30px;
  }
}

/* Final Premium Practice Areas Page */

.kx-practice-hero{
  background:
    linear-gradient(90deg,rgba(8,17,31,.97),rgba(8,17,31,.80),rgba(8,17,31,.32)),
    url("../images/practice-hero.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:106px 0 82px;
}

.kx-practice-hero-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:42px;
  align-items:center;
}

.kx-practice-hero h1{
  color:#fff;
  font-size:clamp(42px,5vw,70px);
  line-height:1.05;
  max-width:800px;
  margin:16px 0;
  letter-spacing:-.045em;
}

.kx-practice-hero p{
  max-width:680px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.75;
}

.kx-hero-panel{
  background:rgba(7,21,41,.88);
  border:1px solid rgba(216,164,55,.35);
  border-radius:18px;
  padding:28px;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}

.kx-hero-panel strong{
  display:block;
  color:#fff;
  font-size:20px;
}

.kx-hero-panel span{
  color:#d8a437;
  font-weight:800;
  display:block;
  margin:6px 0 16px;
}

.kx-hero-panel ul{
  list-style:none;
  padding:0;
  margin:0;
}

.kx-hero-panel li{
  color:#d5d9e0;
  padding:8px 0;
}

.kx-hero-panel i{
  color:#d8a437;
  margin-right:8px;
}

.kx-trust-strip{
  background:#fff;
  border-bottom:1px solid #e5eaf0;
}

.kx-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.kx-trust-grid div{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:5px 16px;
  padding:30px 24px;
  border-right:1px solid #e5eaf0;
  align-items:center;
}

.kx-trust-grid div:last-child{
  border-right:none;
}

.kx-trust-grid i{
  grid-row:span 2;
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid #e8d6a7;
  color:#d8a437;
  font-size:24px;
}

.kx-trust-grid strong{
  color:#08111f;
}

.kx-trust-grid span{
  color:#5f6b7a;
  font-size:14px;
}

.kx-practice-page{
  background:#f5f7fa;
  padding:72px 0;
}

.kx-section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 38px;
}

.kx-section-head h2{
  color:#08111f;
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  margin:12px 0;
}

.kx-section-head p{
  color:#5f6b7a;
}

.kx-practice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.kx-practice-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 38px rgba(8,17,31,.07);
  transition:.25s ease;
}

.kx-practice-card:hover{
  transform:translateY(-7px);
  border-color:#d8a437;
  box-shadow:0 24px 65px rgba(8,17,31,.13);
}

.kx-practice-img{
  height:220px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.kx-practice-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,17,31,.05),rgba(8,17,31,.30));
}

.kx-practice-body{
  position:relative;
  padding:30px;
  min-height:290px;
}

.kx-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#071529;
  color:#d8a437;
  font-size:27px;
  margin-bottom:18px;
}

.kx-practice-body small{
  position:absolute;
  right:28px;
  top:28px;
  color:rgba(8,17,31,.08);
  font-size:54px;
  font-weight:900;
}

.kx-practice-body h3{
  color:#08111f;
  font-size:24px;
  line-height:1.18;
  margin:0 0 14px;
}

.kx-practice-body p{
  color:#5f6b7a;
  font-size:15px;
  line-height:1.65;
}

.kx-practice-body span{
  display:inline-block;
  margin-top:8px;
  color:#1e88ff;
  font-weight:900;
}

.kx-practice-card.featured{
  border-color:#d8a437;
}

.kx-practice-cta{
  background:#f5f7fa;
  padding:0 0 86px;
}

.kx-practice-cta-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.90)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:24px;
  padding:48px;
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:34px;
  align-items:center;
  box-shadow:0 28px 78px rgba(8,17,31,.18);
}

.kx-practice-cta-card h2{
  color:#fff;
  font-size:clamp(32px,4vw,50px);
  margin:12px 0;
}

.kx-practice-cta-card p{
  color:rgba(255,255,255,.78);
}

.kx-cta-points{
  display:grid;
  gap:16px;
}

.kx-cta-points span{
  color:#d5d9e0;
  font-weight:800;
}

.kx-cta-points i{
  color:#d8a437;
  margin-right:10px;
}

@media(max-width:1000px){
  .kx-practice-hero-grid,
  .kx-trust-grid,
  .kx-practice-grid,
  .kx-practice-cta-card{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .kx-practice-hero{
    padding:78px 0 60px;
  }

  .kx-practice-hero-grid,
  .kx-trust-grid,
  .kx-practice-grid,
  .kx-practice-cta-card{
    grid-template-columns:1fr;
  }

  .kx-trust-grid div{
    border-right:none;
    border-bottom:1px solid #e5eaf0;
  }

  .kx-practice-cta-card{
    padding:34px;
  }
}

/* Final Premium About Page */

.kx-about-hero{
  background:
    linear-gradient(90deg,rgba(8,17,31,.98),rgba(8,17,31,.88),rgba(8,17,31,.35)),
    url("../images/about-hero.jpg");
  background-size:cover;
  background-position:center right;
  color:#fff;
  padding:94px 0 58px;
}

.kx-about-hero-grid{
  display:grid;
  grid-template-columns:1fr 470px;
  gap:46px;
  align-items:center;
}

.kx-about-copy h1{
  color:#fff;
  font-size:clamp(42px,5vw,72px);
  line-height:1.04;
  max-width:760px;
  margin:14px 0 18px;
  letter-spacing:-.05em;
}

.kx-about-line{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:18px;
}

.kx-about-line b{
  color:#d8a437;
  margin:0 9px;
}

.kx-about-copy p{
  max-width:660px;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.75;
}

.kx-about-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.kx-about-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  max-width:760px;
  margin-top:36px;
}

.kx-about-stats div{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:3px 12px;
  padding:0 18px;
  border-right:1px solid rgba(255,255,255,.16);
}

.kx-about-stats div:first-child{
  padding-left:0;
}

.kx-about-stats div:last-child{
  border-right:none;
}

.kx-about-stats i{
  grid-row:span 2;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(216,164,55,.45);
  color:#d8a437;
  font-size:22px;
}

.kx-about-stats strong{
  color:#d8a437;
  font-size:30px;
  line-height:1;
}

.kx-about-stats span{
  color:#d5d9e0;
  font-size:13px;
  line-height:1.3;
}

.kx-about-portrait{
  position:relative;
  min-height:560px;
}

.kx-about-portrait img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
  border:1px solid rgba(216,164,55,.35);
}

.kx-nameplate{
  position:absolute;
  right:24px;
  bottom:24px;
  background:#071529;
  border:1px solid rgba(216,164,55,.7);
  padding:14px 24px;
  border-radius:8px;
  text-align:center;
  box-shadow:0 16px 44px rgba(0,0,0,.3);
}

.kx-nameplate strong{
  display:block;
  color:#d8a437;
  font-size:21px;
  letter-spacing:.08em;
}

.kx-nameplate span{
  display:block;
  color:#f0c86a;
  font-style:italic;
}

.kx-about-story{
  background:#fff;
  padding:72px 0;
}

.kx-story-grid{
  display:grid;
  grid-template-columns:420px 1fr 300px;
  gap:44px;
  align-items:center;
}

.kx-story-image img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 18px 44px rgba(8,17,31,.12);
}

.kx-story-content h2,
.kx-section-head h2,
.kx-results-content h2{
  color:#08111f;
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
  margin:12px 0 18px;
}

.kx-story-content p,
.kx-results-content p{
  color:#344054;
  line-height:1.85;
}

.kx-story-side{
  border-left:1px solid #e5eaf0;
  padding-left:28px;
  display:grid;
  gap:24px;
}

.kx-story-side div{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:5px 14px;
}

.kx-story-side i{
  grid-row:span 2;
  color:#d8a437;
  font-size:28px;
}

.kx-story-side strong{
  color:#08111f;
}

.kx-story-side span{
  color:#5f6b7a;
  font-size:14px;
  line-height:1.55;
}

.kx-about-focus{
  background:#fff7eb;
  padding:66px 0;
}

.kx-section-head{
  margin-bottom:32px;
}

.kx-focus-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.kx-focus-grid a{
  background:#fff;
  border:1px solid #f0dec2;
  border-radius:10px;
  padding:28px 18px;
  text-align:center;
  box-shadow:0 12px 30px rgba(8,17,31,.04);
  transition:.25s ease;
}

.kx-focus-grid a:hover{
  transform:translateY(-5px);
  border-color:#d8a437;
}

.kx-focus-grid i{
  color:#d8a437;
  font-size:36px;
}

.kx-focus-grid h3{
  color:#08111f;
  font-size:18px;
  line-height:1.25;
}

.kx-focus-grid p{
  color:#5f6b7a;
  font-size:13px;
  line-height:1.55;
}

.kx-about-results{
  background:#fff;
  padding:72px 0;
}

.kx-results-grid{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:48px;
  align-items:center;
}

.kx-results-panel{
  background:
    linear-gradient(135deg,rgba(8,17,31,.98),rgba(16,35,61,.92)),
    url("../images/about-scale.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:14px;
  padding:36px;
  box-shadow:0 24px 70px rgba(8,17,31,.18);
}

.kx-results-panel ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.kx-results-panel li{
  padding:10px 0;
  color:#fff;
  font-weight:700;
}

.kx-results-panel i{
  color:#d8a437;
  margin-right:10px;
}

.kx-results-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:28px;
}

.kx-results-stats div{
  border:1px solid #e5eaf0;
  border-radius:10px;
  padding:22px;
  text-align:center;
}

.kx-results-stats i{
  color:#d8a437;
  font-size:32px;
}

.kx-results-stats strong{
  display:block;
  color:#08111f;
  font-size:36px;
  line-height:1;
  margin:8px 0;
}

.kx-results-stats span{
  color:#5f6b7a;
  font-size:13px;
}

.kx-about-cta{
  background:#fff;
  padding:0 0 86px;
}

.kx-about-cta-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.90)),
    url("../images/hero-kangaragn.png");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:14px;
  padding:34px;
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:24px;
  align-items:center;
}

.kx-cta-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#d8a437;
  color:#071529;
  font-size:34px;
}

.kx-about-cta-card h2{
  color:#fff;
  margin:0 0 6px;
}

.kx-about-cta-card p{
  color:#d5d9e0;
  margin:0;
}

@media(max-width:1150px){
  .kx-about-hero-grid,
  .kx-story-grid,
  .kx-results-grid,
  .kx-about-cta-card{
    grid-template-columns:1fr;
  }

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

  .kx-story-side{
    border-left:0;
    padding-left:0;
  }
}

@media(max-width:760px){
  .kx-about-stats,
  .kx-results-stats,
  .kx-focus-grid{
    grid-template-columns:1fr;
  }

  .kx-about-portrait,
  .kx-about-portrait img{
    min-height:auto;
    height:420px;
  }

  .kx-nameplate{
    left:20px;
    right:20px;
  }
}

/* Final Premium Homepage Sections */

.kh-about{
  background:#fff;
  padding:72px 0;
}

.kh-about-grid{
  display:grid;
  grid-template-columns:1fr 420px 300px;
  gap:42px;
  align-items:center;
}

.kh-about-copy h2,
.kh-section-head h2,
.kh-property h2,
.kh-final-card h2{
  color:#08111f;
  font-size:clamp(32px,4vw,48px);
  line-height:1.1;
  margin:12px 0 18px;
  letter-spacing:-.035em;
}

.kh-about-copy p,
.kh-property p{
  color:#344054;
  line-height:1.8;
}

.kh-dark-btn{
  display:inline-flex;
  margin-top:20px;
  padding:14px 20px;
  background:#071529;
  color:#fff;
  border-radius:6px;
  font-weight:900;
}

.kh-about-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 18px 44px rgba(8,17,31,.12);
}

.kh-about-points{
  display:grid;
  gap:22px;
  border-left:1px solid #e5eaf0;
  padding-left:26px;
}

.kh-about-points div{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:5px 14px;
}

.kh-about-points i{
  grid-row:span 2;
  color:#d8a437;
  font-size:30px;
}

.kh-about-points strong{
  color:#08111f;
}

.kh-about-points span{
  color:#5f6b7a;
  font-size:14px;
}

.kh-stats{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
}

.kh-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.kh-stats-grid div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:5px 18px;
  padding:34px 24px;
  border-right:1px solid rgba(255,255,255,.14);
}

.kh-stats-grid div:last-child{
  border-right:none;
}

.kh-stats-grid i{
  grid-row:span 2;
  width:58px;
  height:58px;
  border-radius:50%;
  background:rgba(216,164,55,.1);
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:30px;
}

.kh-stats-grid strong{
  color:#d8a437;
  font-size:42px;
  line-height:1;
}

.kh-stats-grid span{
  color:#d5d9e0;
}

.kh-practice{
  background:#fff;
  padding:72px 0;
}

.kh-section-head{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:end;
  margin-bottom:34px;
}

.kh-section-head.center{
  display:block;
  text-align:center;
}

.kh-section-head a{
  color:#d8a437;
  font-weight:900;
}

.kh-practice-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}

.kh-practice-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(8,17,31,.06);
  transition:.25s ease;
}

.kh-practice-card:hover{
  transform:translateY(-6px);
  border-color:#d8a437;
}

.kh-practice-card img{
  width:100%;
  height:120px;
  object-fit:cover;
}

.kh-practice-card div{
  position:relative;
  padding:30px 16px 20px;
}

.kh-practice-card i{
  position:absolute;
  top:-26px;
  left:16px;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#071529;
  color:#d8a437;
  display:grid;
  place-items:center;
  font-size:24px;
  border:1px solid rgba(216,164,55,.45);
}

.kh-practice-card h3{
  color:#08111f;
  font-size:17px;
  line-height:1.25;
}

.kh-practice-card p{
  color:#5f6b7a;
  font-size:13px;
}

.kh-practice-card span{
  color:#d8a437;
  font-size:13px;
  font-weight:900;
}

.kh-property{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  padding:68px 0;
}

.kh-property-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}

.kh-property h2{
  color:#fff;
}

.kh-property p{
  color:#d5d9e0;
}

.kh-checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 18px;
  margin:24px 0;
}

.kh-checks span{
  color:#fff;
  font-weight:800;
}

.kh-checks i{
  color:#d8a437;
  margin-right:8px;
}

.kh-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.kh-property-img img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}

.kh-values{
  background:#fff;
  padding:70px 0;
}

.kh-values-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  margin-top:32px;
}

.kh-values-grid div{
  text-align:center;
  padding:22px;
  border-right:1px solid #e5eaf0;
}

.kh-values-grid div:last-child{
  border-right:none;
}

.kh-values-grid i{
  color:#d8a437;
  font-size:34px;
}

.kh-values-grid strong{
  display:block;
  color:#08111f;
  margin:12px 0 8px;
}

.kh-values-grid span{
  color:#5f6b7a;
  font-size:13px;
}

.kh-insights{
  background:#fff;
  padding:0 0 76px;
}

.kh-insight-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.kh-insight-grid article{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(8,17,31,.06);
}

.kh-insight-grid img{
  height:180px;
  width:100%;
  object-fit:cover;
}

.kh-insight-grid div{
  padding:20px;
}

.kh-insight-grid small{
  color:#d8a437;
  text-transform:uppercase;
  font-weight:900;
}

.kh-insight-grid h3{
  color:#08111f;
  line-height:1.25;
}

.kh-insight-grid span{
  color:#d8a437;
  font-weight:900;
}

.kh-final-cta{
  background:#fff;
  padding:0 0 86px;
}

.kh-final-card{
  background:
    linear-gradient(135deg,rgba(8,17,31,.97),rgba(16,35,61,.90)),
    url("../images/about-scale.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:14px;
  padding:38px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.kh-final-card h2{
  color:#fff;
  margin:0 0 8px;
}

.kh-final-card p{
  color:#d5d9e0;
  margin:0;
}

.kh-final-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

@media(max-width:1150px){
  .kh-about-grid,
  .kh-property-grid{
    grid-template-columns:1fr;
  }

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

  .kh-about-points{
    border-left:0;
    padding-left:0;
  }
}

@media(max-width:760px){
  .kh-stats-grid,
  .kh-practice-grid,
  .kh-values-grid,
  .kh-insight-grid,
  .kh-checks{
    grid-template-columns:1fr;
  }

  .kh-section-head,
  .kh-final-card{
    display:block;
  }

  .kh-stats-grid div,
  .kh-values-grid div{
    border-right:none;
    border-bottom:1px solid rgba(8,17,31,.12);
  }

  .kh-final-actions{
    margin-top:22px;
  }
}

/* Final Premium Header & Footer */

.kgx-header{
  background:#fff;
  position:relative;
  z-index:100;
}

.kgx-topbar{
  background:linear-gradient(135deg,#071529,#10233d);
  color:#fff;
  font-size:14px;
}

.kgx-topbar-inner{
  width:min(1420px,calc(100% - 48px));
  margin:0 auto;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.kgx-top-left,
.kgx-top-socials{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.kgx-top-left span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#f4f7fb;
}

.kgx-top-left i,
.kgx-top-socials i{
  color:#d8a437;
}

.kgx-top-socials span{
  color:#fff;
}

.kgx-top-socials a{
  width:34px;
  height:34px;
  border:1px solid rgba(216,164,55,.6);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#d8a437;
  transition:.25s ease;
}

.kgx-top-socials a:hover{
  background:#d8a437;
  color:#071529;
}

.kgx-navbar{
  width:min(1420px,calc(100% - 48px));
  margin:0 auto;
  min-height:142px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:38px;
  background:#fff;
}

.kgx-brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.kgx-brand img{
  width:320px;
  max-height:118px;
  object-fit:contain;
}

.kgx-nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:800;
  color:#071529;
}

.kgx-nav-links a{
  position:relative;
  color:#071529;
  white-space:nowrap;
  transition:.25s ease;
}

.kgx-nav-links a:not(.kgx-nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-18px;
  width:0;
  height:3px;
  background:#d8a437;
  transition:.25s ease;
}

.kgx-nav-links a:not(.kgx-nav-cta):hover{
  color:#d8a437;
}

.kgx-nav-links a:not(.kgx-nav-cta):hover::after{
  width:100%;
}

.kgx-nav-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,#f0c86a,#d8a437);
  color:#071529 !important;
  padding:16px 22px;
  border-radius:7px;
  font-weight:900;
  box-shadow:0 14px 35px rgba(216,164,55,.24);
}

.kgx-nav-cta:hover{
  transform:translateY(-2px);
}

.kgx-menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:8px;
  background:#071529;
  color:#fff;
  font-size:26px;
}

.kgx-footer{
  background:#071529;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.kgx-footer-overlay{
  background:
    linear-gradient(90deg,rgba(7,21,41,.98),rgba(7,21,41,.92),rgba(7,21,41,.78)),
    url("../images/about-scale.jpg");
  background-size:cover;
  background-position:center right;
  padding:80px 0 0;
}

.kgx-footer-grid{
  display:grid;
  grid-template-columns:1.55fr .8fr 1.05fr .75fr 1.05fr;
  gap:44px;
  align-items:start;
}

.kgx-footer-brand img{
  width:280px;
  max-height:150px;
  object-fit:contain;
  margin-bottom:24px;
}

.kgx-footer-brand p{
  color:#d5d9e0;
  line-height:1.8;
  max-width:420px;
}

.kgx-footer-contact{
  display:grid;
  gap:13px;
  margin-top:24px;
}

.kgx-footer-contact span{
  display:flex;
  align-items:center;
  gap:13px;
  color:#fff;
}

.kgx-footer-contact i,
.kgx-footer-office i{
  width:34px;
  height:34px;
  border:1px solid rgba(216,164,55,.6);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#d8a437;
  flex-shrink:0;
}

.kgx-footer-socials{
  display:flex;
  gap:14px;
  margin-top:26px;
}

.kgx-footer-socials a{
  width:42px;
  height:42px;
  border:1px solid rgba(216,164,55,.7);
  color:#d8a437;
  border-radius:50%;
  display:grid;
  place-items:center;
  transition:.25s ease;
}

.kgx-footer-socials a:hover{
  background:#d8a437;
  color:#071529;
}

.kgx-footer h4{
  color:#d8a437;
  text-transform:uppercase;
  font-size:18px;
  margin:20px 0 28px;
}

.kgx-footer h4::after{
  content:"";
  display:block;
  width:42px;
  height:2px;
  background:#d8a437;
  margin-top:16px;
}

.kgx-footer-col a{
  display:block;
  color:#fff;
  margin-bottom:15px;
  transition:.25s ease;
}

.kgx-footer-col a::before{
  content:"›";
  color:#d8a437;
  margin-right:8px;
  font-weight:900;
}

.kgx-footer-col a:hover{
  color:#d8a437;
  transform:translateX(4px);
}

.kgx-footer-col .kgx-view-all{
  color:#d8a437;
  margin-top:20px;
  font-weight:900;
}

.kgx-footer-office p{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
  color:#fff;
  line-height:1.7;
  margin:0 0 24px;
}

.kgx-footer-bottom{
  border-top:1px solid rgba(216,164,55,.75);
  margin-top:58px;
  min-height:78px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:24px;
  align-items:center;
  color:#d5d9e0;
}

.kgx-footer-bottom span:last-child{
  text-align:right;
}

.kgx-footer-bottom a{
  color:#d5d9e0;
  margin:0 12px;
}

.kgx-footer-bottom a:hover{
  color:#d8a437;
}

.kgx-footer-bottom i{
  color:#d8a437;
  margin-left:6px;
}

@media(max-width:1200px){
  .kgx-navbar{
    min-height:110px;
  }

  .kgx-brand img{
    width:250px;
  }

  .kgx-nav-links{
    gap:18px;
    font-size:14px;
  }

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

@media(max-width:900px){
  .kgx-topbar{
    display:none;
  }

  .kgx-navbar{
    width:min(100% - 32px,1180px);
    min-height:92px;
  }

  .kgx-brand img{
    width:220px;
    max-height:86px;
  }

  .kgx-menu-toggle{
    display:grid;
    place-items:center;
  }

  .kgx-nav-links{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:96px;
    background:#fff;
    border:1px solid #e5eaf0;
    box-shadow:0 24px 60px rgba(8,17,31,.16);
    border-radius:14px;
    padding:18px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  .kgx-nav-links.is-open{
    display:flex;
  }

  .kgx-nav-links a{
    padding:14px 12px;
    border-bottom:1px solid #e5eaf0;
  }

  .kgx-nav-links a::after{
    display:none;
  }

  .kgx-nav-cta{
    justify-content:center;
    margin-top:12px;
  }

  .kgx-footer-grid,
  .kgx-footer-bottom{
    grid-template-columns:1fr;
  }

  .kgx-footer-bottom,
  .kgx-footer-bottom span:last-child{
    text-align:left;
  }
}

@media(max-width:600px){
  .kgx-brand img{
    width:185px;
  }

  .kgx-footer-overlay{
    padding-top:56px;
  }

  .kgx-footer-brand img{
    width:220px;
  }
}

/* Final compact professional footer override */

.kgx-footer-overlay{
  background:linear-gradient(135deg,#071529,#10233d) !important;
  padding:38px 0 0 !important;
}

.kgx-footer-grid{
  grid-template-columns:1.4fr .8fr 1fr .75fr 1fr !important;
  gap:26px !important;
}

.kgx-footer-title{
  color:#fff !important;
  font-size:24px !important;
  font-weight:900 !important;
  line-height:1.12 !important;
  letter-spacing:.045em !important;
  text-transform:uppercase !important;
  margin:0 0 6px !important;
}

.kgx-footer-tagline{
  color:#d8a437 !important;
  font-size:11px !important;
  font-weight:900 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
  margin-bottom:14px !important;
}

.kgx-footer-brand img{
  display:none !important;
}

.kgx-footer-brand p{
  color:#d5d9e0 !important;
  max-width:420px !important;
  line-height:1.55 !important;
  margin:0 0 14px !important;
  font-size:14px !important;
}

.kgx-footer-contact{
  display:grid !important;
  gap:8px !important;
  margin:0 !important;
}

.kgx-footer-contact span{
  font-size:13px !important;
  gap:9px !important;
}

.kgx-footer-contact i,
.kgx-footer-office i{
  width:28px !important;
  height:28px !important;
  font-size:13px !important;
}

.kgx-footer-socials{
  display:none !important;
}

.kgx-footer h4{
  font-size:14px !important;
  margin:0 0 14px !important;
}

.kgx-footer h4::after{
  width:34px !important;
  margin-top:8px !important;
}

.kgx-footer-col a{
  font-size:13px !important;
  margin-bottom:8px !important;
}

.kgx-footer-office p{
  font-size:13px !important;
  line-height:1.45 !important;
  margin:0 0 10px !important;
  grid-template-columns:34px 1fr !important;
  gap:9px !important;
}

.kgx-footer-bottom{
  margin-top:24px !important;
  min-height:46px !important;
  font-size:12px !important;
  border-top:1px solid rgba(216,164,55,.45) !important;
}

@media(max-width:900px){
  .kgx-footer-grid{
    grid-template-columns:1fr 1fr !important;
  }
}

@media(max-width:600px){
  .kgx-footer-grid,
  .kgx-footer-bottom{
    grid-template-columns:1fr !important;
  }
}

/* Final Mobile Responsiveness Polish */

@media(max-width:900px){

  body{
    overflow-x:hidden;
  }

  .container{
    width:min(100% - 28px,1180px);
  }

  .kgx-navbar{
    width:calc(100% - 24px) !important;
    min-height:82px !important;
  }

  .kgx-brand img{
    width:165px !important;
    max-height:70px !important;
  }

  .kgx-nav-links{
    top:86px !important;
    left:12px !important;
    right:12px !important;
    border-radius:12px !important;
    z-index:999 !important;
  }

  .kg-hero,
  .kg-hero-inner{
    min-height:auto !important;
  }

  .kg-hero-inner{
    padding:32px 0 26px !important;
    gap:38px !important;
  }

  .kg-hero-brand{
    gap:12px !important;
  }

  .kg-hero-brand img{
    width:58px !important;
    height:58px !important;
  }

  .kg-hero-brand strong{
    font-size:17px !important;
    line-height:1.15 !important;
  }

  .kg-hero-brand small{
    font-size:10px !important;
  }

  .kg-hero-copy h1{
    font-size:clamp(36px,12vw,48px) !important;
    line-height:1.04 !important;
  }

  .kg-hero-copy p{
    font-size:15px !important;
  }

  .kg-hero-actions,
  .kg-page-actions,
  .kh-actions,
  .kh-final-actions{
    flex-direction:column !important;
    gap:12px !important;
  }

  .kg-btn-primary,
  .kg-btn-outline,
  .btn,
  .btn-blue,
  .btn-outline,
  .btn-outline-dark{
    width:100%;
    text-align:center;
  }

  .kg-hero-services{
    grid-template-columns:1fr !important;
    margin-top:16px !important;
    padding-top:10px !important;
  }

  .kg-service-link{
    min-height:auto !important;
    padding:14px 0 !important;
  }

  .kg-service-icon{
    font-size:26px !important;
    min-width:34px !important;
  }

  .kg-service-link span{
    font-size:12px !important;
  }

  .kh-about,
  .kh-practice,
  .kh-property,
  .kh-values,
  .kh-insights,
  .section{
    padding:48px 0 !important;
  }

  .kh-about-grid,
  .kh-property-grid,
  .split,
  .kx-about-hero-grid,
  .kx-story-grid,
  .kx-results-grid,
  .kx-practice-hero-grid,
  .kp-hero-grid,
  .kd-main-grid,
  .kc-grid,
  .kt-main-grid{
    grid-template-columns:1fr !important;
  }

  .kh-section-head{
    display:block !important;
  }

  .kh-practice-grid,
  .kh-values-grid,
  .kh-insight-grid,
  .kh-stats-grid,
  .kx-focus-grid,
  .kx-practice-grid,
  .kp-service-grid,
  .kd-doc-grid,
  .kt-team-grid{
    grid-template-columns:1fr !important;
  }

  .kh-practice-card img,
  .kh-insight-grid img,
  .kp-service-img,
  .kd-doc-img{
    height:190px !important;
  }

  .kh-property-img img,
  .kx-story-image img,
  .kx-about-portrait img,
  .ka-about-photo img{
    height:320px !important;
  }

  .kh-checks,
  .kx-about-stats,
  .kx-results-stats,
  .kc-hero-points,
  .kd-trust-row,
  .kt-hero-points{
    grid-template-columns:1fr !important;
  }

  .kh-stats-grid div,
  .kh-values-grid div,
  .kx-trust-grid div,
  .kc-hero-points div,
  .kd-trust-row div,
  .kt-hero-points div{
    border-right:none !important;
    border-bottom:1px solid rgba(229,234,240,.8) !important;
  }

  .kx-about-cta-card,
  .kx-practice-cta-card,
  .kg-practice-cta-card,
  .kc-bottom-card,
  .kt-cta-card,
  .kh-final-card{
    grid-template-columns:1fr !important;
    display:grid !important;
    padding:28px !important;
    border-radius:12px !important;
  }

  .kx-about-cta-card .btn,
  .kx-practice-cta-card .btn,
  .kg-practice-cta-card .btn,
  .kc-bottom-card .btn,
  .kt-cta-card .btn{
    width:100%;
  }

  .kp-side-panel,
  .kd-side-panel,
  .kt-side,
  .kg-team-side-panel{
    position:static !important;
  }

  .kc-form-grid,
  .kp-filter-form,
  .kp-listing-grid,
  .kc-urgent{
    grid-template-columns:1fr !important;
  }

  .kc-office-box{
    position:relative !important;
    inset:auto !important;
    transform:none !important;
    margin:24px !important;
    max-width:none !important;
  }

  .kgx-footer-overlay{
    padding-top:34px !important;
  }

  .kgx-footer-grid{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .kgx-footer-bottom{
    grid-template-columns:1fr !important;
    gap:10px !important;
    padding:16px 0 !important;
    text-align:left !important;
  }

  .kgx-footer-bottom span:last-child{
    text-align:left !important;
  }
}

@media(max-width:480px){

  .container{
    width:calc(100% - 22px);
  }

  .kgx-brand img{
    width:145px !important;
  }

  .kg-hero-copy h1,
  .kx-about-copy h1,
  .kx-practice-hero h1,
  .kp-hero-copy h1,
  .kd-hero h1,
  .kc-hero h1,
  .kt-hero-copy h1{
    font-size:34px !important;
  }

  .kh-about-copy h2,
  .kh-section-head h2,
  .kh-property h2,
  .kh-final-card h2,
  .kx-section-head h2,
  .kg-section-title h2{
    font-size:28px !important;
  }

  .kg-hero-brand strong{
    font-size:15px !important;
  }

  .kg-hero-brand small{
    display:none !important;
  }

  .kh-about-image img,
  .kh-property-img img,
  .kx-story-image img,
  .kx-about-portrait img,
  .ka-about-photo img{
    height:260px !important;
  }

  .kx-nameplate{
    left:14px !important;
    right:14px !important;
    bottom:14px !important;
  }

  .kx-nameplate strong{
    font-size:16px !important;
  }
}

/* FINAL MOBILE FIX - Kangaragn */

@media(max-width:900px){

  html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  body{
    font-size:15px;
  }

  .kgx-topbar{
    display:none !important;
  }

  .kgx-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 8px 24px rgba(8,17,31,.08);
  }

  .kgx-navbar{
    min-height:76px !important;
    width:100% !important;
    padding:10px 14px !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .kgx-brand{
    max-width:230px !important;
  }

  .kgx-brand img{
    width:210px !important;
    height:auto !important;
    max-height:64px !important;
    object-fit:contain !important;
  }

  .kgx-menu-toggle{
    display:grid !important;
    place-items:center !important;
    position:static !important;
    width:48px !important;
    height:48px !important;
    border-radius:12px !important;
    background:#071529 !important;
    color:#fff !important;
    flex-shrink:0 !important;
  }

  .kgx-nav-links{
    top:76px !important;
    left:10px !important;
    right:10px !important;
    width:auto !important;
    padding:12px !important;
    border-radius:14px !important;
    background:#fff !important;
  }

  .kgx-nav-links a{
    font-size:15px !important;
    padding:13px 12px !important;
  }

  .kgx-nav-cta{
    width:100% !important;
    justify-content:center !important;
  }

  .kg-hero{
    min-height:auto !important;
    background-position:center top !important;
  }

  .kg-hero-inner{
    min-height:auto !important;
    padding:34px 18px 28px !important;
    width:100% !important;
    gap:34px !important;
  }

  .kg-hero-brand{
    display:none !important;
  }

  .kg-hero-copy{
    max-width:100% !important;
    padding-top:12px !important;
  }

  .kg-hero-copy span{
    font-size:11px !important;
    letter-spacing:.12em !important;
  }

  .kg-hero-copy h1{
    font-size:38px !important;
    line-height:1.05 !important;
    margin:14px 0 !important;
    letter-spacing:-.03em !important;
  }

  .kg-hero-copy p{
    font-size:16px !important;
    line-height:1.7 !important;
  }

  .kg-hero-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .kg-btn-primary,
  .kg-btn-outline,
  .btn,
  .btn-blue,
  .btn-outline,
  .btn-outline-dark{
    width:100% !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .kg-hero-services{
    display:grid !important;
    grid-template-columns:1fr !important;
    margin-top:8px !important;
    padding-top:8px !important;
  }

  .kg-service-link{
    padding:14px 0 !important;
    min-height:auto !important;
    gap:14px !important;
  }

  .kg-service-icon{
    font-size:28px !important;
    min-width:42px !important;
  }

  .kg-service-link span{
    font-size:13px !important;
    line-height:1.35 !important;
  }

  .kh-about{
    padding:44px 0 !important;
  }

  .kh-about-grid{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .kh-about-copy h2{
    font-size:30px !important;
    line-height:1.12 !important;
  }

  .kh-about-copy p{
    font-size:15px !important;
    line-height:1.75 !important;
  }

  .kh-dark-btn{
    width:100% !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .kh-about-image img{
    height:300px !important;
    border-radius:12px !important;
    object-fit:cover !important;
  }

  .kh-about-points{
    border-left:0 !important;
    padding-left:0 !important;
    gap:14px !important;
  }

  .kh-about-points div{
    display:grid !important;
    grid-template-columns:42px 1fr !important;
    gap:4px 12px !important;
    background:#fff !important;
    border:1px solid #e5eaf0 !important;
    border-radius:12px !important;
    padding:16px !important;
  }

  .kh-about-points i{
    grid-row:span 2 !important;
    font-size:26px !important;
  }

  .kh-about-points strong{
    display:block !important;
    font-size:16px !important;
  }

  .kh-about-points span{
    display:block !important;
    font-size:14px !important;
    line-height:1.55 !important;
  }

  .kh-stats-grid,
  .kh-practice-grid,
  .kh-property-grid,
  .kh-values-grid,
  .kh-insight-grid{
    grid-template-columns:1fr !important;
  }

  .kh-practice-card img,
  .kh-insight-grid img{
    height:190px !important;
  }

  .kh-property-img img{
    height:280px !important;
  }

  .kgx-footer-overlay{
    padding:34px 0 0 !important;
  }

  .kgx-footer-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .kgx-footer-title{
    font-size:22px !important;
  }

  .kgx-footer-bottom{
    grid-template-columns:1fr !important;
    text-align:left !important;
    gap:8px !important;
    padding:14px 0 !important;
  }
}

@media(max-width:420px){
  .kgx-brand img{
    width:185px !important;
  }

  .kg-hero-copy h1{
    font-size:34px !important;
  }

  .kg-hero-copy p{
    font-size:15px !important;
  }

  .kh-about-image img{
    height:260px !important;
  }
}

/* MOBILE FINISHING LAYER */

@media(max-width:900px){

  main{
    background:#fff;
  }

  .kg-page-kicker,
  .section-kicker{
    font-size:10px !important;
    letter-spacing:.14em !important;
  }

  .kh-section-head{
    margin-bottom:20px !important;
  }

  .kh-section-head h2,
  .kg-section-title h2,
  .kx-section-head h2{
    font-size:28px !important;
    line-height:1.15 !important;
  }

  .kh-about,
  .kh-practice,
  .kh-property,
  .kh-values,
  .kh-insights{
    padding:38px 0 !important;
  }

  .kh-stats-grid div{
    padding:20px 18px !important;
  }

  .kh-stats-grid i{
    width:46px !important;
    height:46px !important;
    font-size:24px !important;
  }

  .kh-stats-grid strong{
    font-size:32px !important;
  }

  .kh-practice-card,
  .kh-insight-grid article{
    border-radius:14px !important;
    overflow:hidden !important;
  }

  .kh-practice-card div{
    padding:28px 18px 18px !important;
  }

  .kh-practice-card h3{
    font-size:18px !important;
  }

  .kh-property{
    padding:44px 0 !important;
  }

  .kh-checks{
    gap:8px !important;
  }

  .kh-checks span{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:11px 12px;
    font-size:13px;
  }

  .kh-values-grid div{
    display:grid;
    grid-template-columns:42px 1fr;
    text-align:left !important;
    gap:4px 12px;
    padding:16px !important;
    border:1px solid #e5eaf0 !important;
    border-radius:12px !important;
    margin-bottom:10px;
  }

  .kh-values-grid i{
    grid-row:span 2;
    font-size:28px !important;
  }

  .kh-values-grid strong{
    margin:0 !important;
  }

  .kh-values-grid span{
    font-size:13px !important;
  }

  .kh-final-card{
    padding:26px 20px !important;
    border-radius:14px !important;
  }

  .kh-final-card h2{
    font-size:27px !important;
  }

  .kgx-footer-col,
  .kgx-footer-office{
    border-top:1px solid rgba(255,255,255,.10);
    padding-top:16px;
  }
}

@media(max-width:420px){

  .kg-hero-copy h1{
    font-size:32px !important;
  }

  .kg-btn-primary,
  .kg-btn-outline{
    padding:14px 18px !important;
    font-size:12px !important;
  }

  .kg-service-icon{
    font-size:24px !important;
  }

  .kg-service-link span{
    font-size:12px !important;
  }
}


/* ABSOLUTE FINAL FIXED HEADER - MOBILE + DESKTOP */

html{
  scroll-padding-top:150px;
}

body{
  padding-top:0 !important;
}

.kgx-header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:2147483647 !important;
  background:#ffffff !important;
  transform:none !important;
  will-change:auto !important;
  box-shadow:0 10px 30px rgba(8,17,31,.10) !important;
}

/* push content down because header is fixed */
main{
  padding-top:142px !important;
}

/* desktop keeps full header height */
.kgx-navbar{
  position:relative !important;
  z-index:2147483647 !important;
  background:#ffffff !important;
}

.kgx-topbar{
  position:relative !important;
  z-index:2147483647 !important;
}

.kgx-nav-links{
  z-index:2147483647 !important;
}

@media(max-width:900px){

  html{
    scroll-padding-top:78px;
  }

  .kgx-topbar{
    display:none !important;
  }

  main{
    padding-top:78px !important;
  }

  .kgx-header{
    height:78px !important;
    min-height:78px !important;
    max-height:78px !important;
    overflow:visible !important;
  }

  .kgx-navbar{
    height:78px !important;
    min-height:78px !important;
    max-height:78px !important;
    padding:8px 14px !important;
    width:100% !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .kgx-brand{
    max-width:215px !important;
    height:62px !important;
    display:flex !important;
    align-items:center !important;
  }

  .kgx-brand img{
    width:190px !important;
    max-width:190px !important;
    max-height:60px !important;
    height:auto !important;
    object-fit:contain !important;
  }

  .kgx-menu-toggle{
    display:grid !important;
    place-items:center !important;
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    border-radius:10px !important;
    background:#071529 !important;
    color:#ffffff !important;
    border:0 !important;
  }

  .kgx-nav-links{
    position:fixed !important;
    top:78px !important;
    left:10px !important;
    right:10px !important;
    width:auto !important;
    max-height:calc(100vh - 92px) !important;
    overflow-y:auto !important;
    background:#ffffff !important;
    border:1px solid #e5eaf0 !important;
    border-radius:14px !important;
    box-shadow:0 24px 70px rgba(8,17,31,.22) !important;
    padding:12px !important;
  }

  .kgx-nav-links a{
    padding:14px 12px !important;
    border-bottom:1px solid #edf1f5 !important;
  }

  .kgx-nav-links a:last-child{
    border-bottom:0 !important;
  }

  .kgx-nav-cta{
    width:100% !important;
    justify-content:center !important;
    margin-top:10px !important;
  }
}

@media(max-width:480px){
  main{
    padding-top:74px !important;
  }

  .kgx-header,
  .kgx-navbar{
    height:74px !important;
    min-height:74px !important;
    max-height:74px !important;
  }

  .kgx-brand img{
    width:170px !important;
    max-width:170px !important;
    max-height:54px !important;
  }

  .kgx-nav-links{
    top:74px !important;
  }
}

/* ABSOLUTE FINAL FIXED HEADER - MOBILE + DESKTOP */

html{
  scroll-padding-top:150px;
}

body{
  padding-top:0 !important;
}

.kgx-header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:2147483647 !important;
  background:#ffffff !important;
  transform:none !important;
  will-change:auto !important;
  box-shadow:0 10px 30px rgba(8,17,31,.10) !important;
}

/* push content down because header is fixed */
main{
  padding-top:142px !important;
}

/* desktop keeps full header height */
.kgx-navbar{
  position:relative !important;
  z-index:2147483647 !important;
  background:#ffffff !important;
}

.kgx-topbar{
  position:relative !important;
  z-index:2147483647 !important;
}

.kgx-nav-links{
  z-index:2147483647 !important;
}

@media(max-width:900px){

  html{
    scroll-padding-top:78px;
  }

  .kgx-topbar{
    display:none !important;
  }

  main{
    padding-top:78px !important;
  }

  .kgx-header{
    height:78px !important;
    min-height:78px !important;
    max-height:78px !important;
    overflow:visible !important;
  }

  .kgx-navbar{
    height:78px !important;
    min-height:78px !important;
    max-height:78px !important;
    padding:8px 14px !important;
    width:100% !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .kgx-brand{
    max-width:215px !important;
    height:62px !important;
    display:flex !important;
    align-items:center !important;
  }

  .kgx-brand img{
    width:190px !important;
    max-width:190px !important;
    max-height:60px !important;
    height:auto !important;
    object-fit:contain !important;
  }

  .kgx-menu-toggle{
    display:grid !important;
    place-items:center !important;
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    border-radius:10px !important;
    background:#071529 !important;
    color:#ffffff !important;
    border:0 !important;
  }

  .kgx-nav-links{
    position:fixed !important;
    top:78px !important;
    left:10px !important;
    right:10px !important;
    width:auto !important;
    max-height:calc(100vh - 92px) !important;
    overflow-y:auto !important;
    background:#ffffff !important;
    border:1px solid #e5eaf0 !important;
    border-radius:14px !important;
    box-shadow:0 24px 70px rgba(8,17,31,.22) !important;
    padding:12px !important;
  }

  .kgx-nav-links a{
    padding:14px 12px !important;
    border-bottom:1px solid #edf1f5 !important;
  }

  .kgx-nav-links a:last-child{
    border-bottom:0 !important;
  }

  .kgx-nav-cta{
    width:100% !important;
    justify-content:center !important;
    margin-top:10px !important;
  }
}

@media(max-width:480px){
  main{
    padding-top:74px !important;
  }

  .kgx-header,
  .kgx-navbar{
    height:74px !important;
    min-height:74px !important;
    max-height:74px !important;
  }

  .kgx-brand img{
    width:170px !important;
    max-width:170px !important;
    max-height:54px !important;
  }

  .kgx-nav-links{
    top:74px !important;
  }
}
