@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #061426;
  --paper: #ffffff;
  --navy-950: #021327;
  --navy-900: #07182c;
  --navy-800: #11243a;
  --stone-50: #fafaf8;
  --stone-100: #f4f3ef;
  --stone-200: #e6e4dc;
  --stone-500: #7e7a6c;
  --stone-600: #5d5a4f;
  --accent: #b58332;
  --accent-light: #dcb868;
  --success: #0f7a4d;
  --danger: #b3261e;
  --line: #e6e4dc;
  --shadow:
    0 10px 24px -8px rgb(15 26 43 / 0.12), 0 4px 8px -4px rgb(15 26 43 / 0.06);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Manrope",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: var(--stone-600);
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.logo.invert {
  color: #fff;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
}
.logo.invert .logo-mark {
  background: #fff;
  color: var(--ink);
}
.logo svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav > a,
.nav-item > a {
  height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #1d2938;
  font-size: 13px;
  font-weight: 650;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.nav-item:hover > a {
  background: var(--stone-50);
  color: var(--ink);
}
.has-menu {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.15s;
}
.has-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
.mega-menu a {
  display: block;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: 0.18s;
}
.btn:hover {
  background: var(--navy-800);
}
.btn-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--stone-200);
  margin-left: 8px;
}
/* .btn-inverted {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-inverted:hover{
    background: var(--navy-800);
    color: #ffffff;
    border-color: var(--navy-800);
} */

.btn-inverted{
    background:#ffffff;
    color:#061426;
    border:1px solid rgba(255,255,255,.4);
}

.btn-inverted:hover{
    background:#061426;
    color:#ffffff;
    border-color:#ffffff;
    transform:translateY(-1px);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-link.light {
  color: #fff;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.button-row.end {
  justify-content: flex-end;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
  border-bottom: 1px solid var(--line);
}


.hero-bg{
    position:absolute;
    inset:0;

    background:
      /* linear-gradient(
        rgba(2,19,39,0.82),
        rgba(2,19,39,0.88)
      ), */
      url('/images/Home page banner.png');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}
.hero-inner {
  position: relative;
  padding: 100px 0 120px;
  max-width: 1200px;
}
.hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: #e6e4dc;
  font-size: 18px;
  line-height: 1.65;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.hero .eyebrow,
.navy .eyebrow,
.cta .eyebrow {
  color: var(--accent-light);
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.breadcrumbs .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--stone-600);
}
.breadcrumbs a:after {
  content: "/";
  margin-left: 12px;
  color: var(--stone-500);
}

.section {
  padding: 88px 0;
  background: #fff;
}
.section.stone,
.stone {
  background: var(--stone-50);
}
.section.navy {
  background: var(--navy-950);
  color: #fff;
}
.section.navy .container {
  max-width: 1050px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head h2,
.split h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--ink);
}
.section-head p:not(.eyebrow),
.split p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.section-head.invert h2,
.navy h2,
.navy h3,
.cta h2 {
  color: #fff;
}
.section-head.invert p:not(.eyebrow),
.navy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.card-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.card-grid.one {
  grid-template-columns: 1fr;
}
.service-card,
.info-card,
.service-row,
.tile,
.case-card,
.insight-card,
.leader-card {
  background: #fff;
  padding: 28px;
  transition: 0.18s;
}
.service-card:hover,
.service-row:hover,
.tile:hover {
  background: var(--stone-50);
}
.service-card h3,
.info-card h3,
.service-row h3,
.tile h3 {
  font-size: 20px;
  margin-top: 12px;
  font-weight: 800;
}
.service-card p,
.info-card p,
.service-row p,
.tile p,
.case-card p,
.insight-card p {
  margin-top: 10px;
  font-size: 14px;
}

.mini-icon{
    width:48px;
    height:48px;
    background:#001a3a;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}
.mini-icon img{
    width:24px;
    height:24px;
    object-fit:contain;
    filter: brightness(0) invert(1);
}
.vertical-wrap {
  display: grid;
  gap: 40px;
}
.vertical-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 38px;
}
.vertical-panel.dark {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-950);
}
.vertical-panel.dark h2,
.vertical-panel.dark h3 {
  color: #fff;
}
.vertical-panel.dark > p:not(.eyebrow) {
  color: #d8d5cb;
}
.vertical-panel .card-grid {
  margin-top: 30px;
}
.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink);
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--stone-50);
  padding: 40px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
}
.stats div,
.outcomes div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.stats dt,
.outcomes dt {
  color: var(--stone-600);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stats dd,
.outcomes dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.stats span {
  display: block;
  color: var(--stone-600);
  font-size: 14px;
  margin-top: 6px;
}
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.tile {
  min-height: 185px;
}

/* Engagement record cards - same as reference screenshot */
.navy .card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.case-card.dark-card {
  background: #07182c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  min-height: 230px;
  box-shadow: none;
}
.case-card.dark-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 184, 104, 0.38);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}
.dark-card .eyebrow {
  color: #d9a441;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.dark-card h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.case-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}
.case-card dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-card dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.industry-list {
  display: grid;
  gap: 48px;
}
.industry-row {
  display: grid;
  grid-template-columns: 4fr 5fr 3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chips span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 8px 12px;
  font-size: 14px;
}
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.avatar {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.leader-card h3 {
  margin-top: 20px;
  font-size: 20px;
}
.insight-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--stone-600);
}
.insight-card span:first-child {
  background: var(--stone-100);
  color: var(--ink);
  border-radius: 3px;
  padding: 2px 8px;
  font-weight: 500;
}
.insight-card h2 {
  margin-top: 18px;
  font-size: 24px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  font-size: 14px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.contact-list span {
  display: block;
  color: var(--stone-600);
  font-size: 12px;
}
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
}
form {
  display: grid;
  gap: 18px;
}
label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(181, 131, 50, 0.22);
  border-color: var(--accent);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.checkbox {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--stone-600);
}
.checkbox input {
  width: 16px;
  margin-top: 5px;
}
.form-message {
  min-height: 22px;
  font-size: 14px;
}
.form-message.success {
  color: var(--success);
}
.form-message.error {
  color: var(--danger);
}
.form-message.info {
  color: var(--stone-600);
}
.anti-spam-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden {
  display: none !important;
}
.stepper {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.stepper span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--stone-600);
}
.stepper span.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.success-panel {
  border: 1px solid rgba(15, 122, 77, 0.3);
  background: rgba(15, 122, 77, 0.06);
  border-radius: 8px;
  padding: 24px;
}
.note {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--stone-50);
  padding: 18px;
  color: var(--stone-600);
  font-size: 14px;
}
.prose {
  max-width: 760px;
}
.prose h2 {
  margin-top: 34px;
  font-size: 28px;
}
.prose p {
  margin-top: 14px;
}

.cta {
  background: var(--navy-950);
  color: #fff;
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 80% at 0% 0%,
      rgba(220, 184, 104, 0.09),
      transparent 60%
    ),
    radial-gradient(
      50% 60% at 100% 100%,
      rgba(99, 123, 154, 0.16),
      transparent 60%
    );
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 8fr 4fr;
  align-items: end;
  gap: 48px;
}
.cta h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
}
.cta p:not(.eyebrow) {
  margin-top: 20px;
  color: #d8d5cb;
  max-width: 720px;
}
.site-footer {
  background: var(--navy-950);
  color: #d8d5cb;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 42px;
  padding: 72px 0;
}
.footer-grid p {
  margin-top: 18px;
  color: #c7c2b7;
  font-size: 14px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-grid a {
  color: #e6e4dc;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom .container {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  color: #a8a496;
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-bar > .btn {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    min-height: 40px;
    padding: 0 14px;
  }
  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 16px 20px 22px;
    background: #fff;
  }
  .mobile-nav.open {
    display: grid;
    gap: 12px;
  }
  .hero-inner {
    padding: 72px 0 84px;
    max-width:1200px;
     position:relative;
  }
  .hero-inner,
.page-banner .container{
    position:relative;
    padding:100px 0 120px;
    max-width:1200px;
}
  .hero h1 {
    font-size: 42px;
  }
  .split,
  .cta-grid,
  .industry-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .tile-grid,
  .stats,
  .leader-grid,
  .field-grid,
  .navy .card-grid.two {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }
  .button-row.end {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1200px);
  }
  .section,
  .cta {
    padding: 64px 0;
  }
  .service-card,
  .info-card,
  .service-row,
  .tile,
  .case-card,
  .insight-card,
  .leader-card,
  .form-card {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .case-card dl,
  .outcomes {
    grid-template-columns: 1fr;
  }
  .case-card dd {
    white-space: normal;
  }
}

.page-banner{
   position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#021327;
}


.page-banner::before{
    content:'';
    position:absolute;
    inset:0;

    background:
      /* linear-gradient(
        rgba(2,19,39,0.85),
        rgba(2,19,39,0.90)
      ), */
      url('/images/Home page banner.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.page-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:url("/images/banner-pattern.svg") no-repeat left top;
    opacity:.45;
    pointer-events:none;
}
.page-banner .container{
    position:relative;
    z-index:5;

    width:100%;
    max-width:1200px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;

    padding:0 20px;
}
.page-banner h1{
    max-width:720px;

    font-size:clamp(60px,5.5vw,96px);
    line-height:.95;
    letter-spacing:-0.065em;
    font-weight:300;

    color:#fff;
    margin:0 0 28px;
}

.page-banner p{
    color:#fff;
}

.page-banner p:last-child{
    max-width:760px;

    font-size:18px;
    line-height:1.65;
    color:#e6e4dc;

    margin-top:24px;
}


.page-banner .eyebrow{
    color:#dcb868;
    margin-bottom:18px;
}
/* Managing Director Profile */
/* Leadership Director Card */

.director-card{
    display:flex;
    align-items:center;
    gap:50px;
    max-width:1000px;
    margin:0 auto;
    padding:40px;
    background:#fff;
    border:1px solid #e6e4dc;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.director-photo{
    flex:0 0 300px;
}

.director-photo img{
    width:100%;
    height:380px;
    object-fit:cover;
    object-position:center center;
    border-radius:14px;
    display:block;
}

.director-details{
    flex:1;
}

.director-role{
    display:block;
    margin-top:12px;
    color:#B78A3C;
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}
.director-header{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:32px;
}
.director-header h3{
    margin:0;
    font-size:52px;
    font-weight:800;
    line-height:1.08;
    color:#061426;
}

.director-details p{
    font-size:17px;
    line-height:1.9;
    color:#5d5a4f;
    margin-bottom:0 0 18px;
}

.director-card .director-details h3{
    margin-top:0;
}

.director-card .director-details p{
    margin-top:0;
}

@media(max-width:900px){

    .director-card{
        flex-direction:column;
        text-align:center;
    }

    .director-photo{
        flex:none;
        width:100%;
        max-width:300px;
    }

    .director-details h3{
        font-size:36px;
    }
}


.leader-photo-small{
    width:90px;
    height:90px;
    margin-bottom:20px;
}

/* .leader-photo-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
    display:block;
    border:1px solid #e6e4dc;
} */

.leader-photo-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #f4f3ef;
}

.leader-card h3{
    margin-top:0;
    font-size:18px;
    font-weight:800;
}

.leader-card p{
    margin-top:8px;
    line-height:1.7;
}

.nav-item > a{
  display:flex;
  align-items:center;
  gap: 4px;
}

.nav-arrow{
    width:12px;
    height:12px;
    opacity:.55;
    transition:all .25s ease;
    flex-shrink:0;
    margin-top:1px;
}

.has-menu:hover .nav-arrow{
    opacity:1;
    transform:rotate(180deg);
}

.nav-item > a:hover .nav-arrow{
    opacity:1;
}

.desktop-nav{
    gap:12px;
}

.desktop-nav > a,
.nav-item > a{
    font-size:14px;
    font-weight:700;
}

.footer-grid{
    display:grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap:40px;
}

.hero{
    min-height:450px !important;
}

.hero-inner{
    padding:70px 0 !important;
}

/* -----------------------------
   Case Studies Button
------------------------------*/

.case-btn-wrap{
    margin-top:32px;
    display:flex;
    justify-content:flex-start;
}

.case-btn-wrap .btn{
    position:relative;
    z-index:5;
}
.social-icons{
    display:flex;
    gap:12px;
    margin-top:24px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:8px;
    background:rgba(255,255,255,.03);
    color:#fff;
    font-size:18px;
    transition:.3s ease;
}

.social-icons a:hover{
    background:#b58332;
    border-color:#b58332;
    color:#fff;
    transform:translateY(-3px);
}
.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 900px) {
  .card-grid.five {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
   Estates Property Process Timeline
   Paste at the bottom of style.css
================================================== */

.process-section {
  background: #fff;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 62px;
  padding-top: 90px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  border-top: 3px dotted var(--accent);
  opacity: 0.9;
  z-index: 0;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:not(:last-child)::after {
  content: "➜";
  position: absolute;
  top: 15px;
  right: -28px;
  z-index: 2;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.process-icon {
  position: absolute;
  top: -88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 3px solid #fff;
  outline: 2px solid var(--accent);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 30px rgba(6, 20, 38, 0.15);
}

.process-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  position: relative;
  z-index: 4;
  width: 38px;
  height: 38px;
  margin-bottom: -19px;

  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(6, 20, 38, 0.08);
}

.process-card {
  width: 100%;
  min-height: 210px;
  padding: 54px 24px 30px;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;

  box-shadow: 0 10px 28px rgba(6, 20, 38, 0.04);
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(181, 131, 50, 0.45);
  box-shadow: 0 18px 38px rgba(6, 20, 38, 0.10);
}

.process-card h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.process-card p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone-600);
}

/* Tablet */
@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 72px 24px;
    padding-top: 60px;
  }

  .process-timeline::before,
  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-icon {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 16px;
  }

  .step-number {
    margin-bottom: -19px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 38px;
    padding-top: 0;
  }

  .process-step {
    align-items: flex-start;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    margin-left: 4px;
  }

  .process-icon svg {
    width: 32px;
    height: 32px;
  }

  .step-number {
    margin-left: 18px;
  }

  .process-card {
    text-align: left;
    min-height: auto;
    padding: 46px 22px 24px;
  }
}
/* ===========================
   Group Companies
=========================== */

.group-company-footer{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.group-card{

    display:flex;
    align-items:center;
    gap:16px;

    width:230px;

    padding:14px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    background:rgba(255,255,255,.03);

    text-decoration:none;

    transition:.35s;
}

.group-card img{

    width:54px;

    height:54px;

    object-fit:contain;

    flex-shrink:0;
}

.group-card h4{

    margin:0;

    color:#fff;

    font-size:16px;

    font-weight:700;

    line-height:1.2;
}

.group-card span{

    display:block;

    margin-top:4px;

    color:#9fb2c7;

    font-size:13px;

    line-height:1.4;
}

.group-card:hover{

    border-color:#b58332;

    background:rgba(181,131,50,.08);

    transform:translateY(-4px);
}

.group-card:hover h4{

    color:#dcb868;
}

.company-logo{

      height:23px;
    width:auto;
    display:block;
    object-fit:contain;
    transition:.3s ease;
}

.logo{

    display:flex;

    align-items:center;

    gap:16px;
}

.logo.invert .company-logo{

    filter:brightness(0) invert(1);
}

/* ==================================================
   FINAL NAVIGATION + FOOTER RESPONSIVE OVERRIDES
   Added for clean desktop/mobile behavior
================================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.nav-bar {
  position: relative;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

@media (min-width: 901px) {
  .desktop-nav {
    display: flex !important;
  }

  .nav-bar > .btn {
    display: inline-flex !important;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-bar > .btn {
    display: none !important;
  }

  .nav-bar {
    min-height: 68px;
    gap: 16px;
  }

  .company-logo {
    height: 22px;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }

  .menu-toggle {
    width: 48px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    display: block;
    border-radius: 99px;
    transition: 0.2s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 16px 20px 22px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .mobile-nav.open {
    display: grid;
    gap: 0;
  }

  .mobile-nav > a,
  .mobile-drop-btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-family: inherit;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
  }

  .mobile-drop-btn span {
    transition: transform 0.2s ease;
  }

  .mobile-dropdown.open .mobile-drop-btn span {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    display: none;
    padding: 8px 0 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-dropdown.open .mobile-submenu {
    display: grid;
    gap: 8px;
  }

  .mobile-submenu a {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    padding: 6px 0;
  }

  .mobile-nav > .btn {
    width: 100%;
    margin-top: 18px;
    min-height: 44px;
    border-bottom: 1px solid var(--ink);
    justify-content: center;
    color: #fff;
    font-size: 14px !important;
    font-weight: 800 !important;
  }
}

.site-footer {
  overflow: hidden;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr 1fr;
  gap: 32px;
  padding: 56px 0;
}

.footer-grid > div,
.footer-grid nav {
  min-width: 0;
}

.footer-grid a,
.footer-grid p,
.footer-bottom span {
  overflow-wrap: anywhere;
  word-break: normal;
}

.group-company-footer {
  width: 100%;
}

.group-card {
  width: 100%;
  max-width: 240px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding: 48px 0;
  }

  .group-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 42px 0;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 0;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 0;
  }

  .footer-grid h3 {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .footer-grid nav {
    gap: 8px;
  }

  .footer-grid a,
  .footer-grid p {
    font-size: 13px;
  }

  .group-card {
    max-width: 100%;
    padding: 12px;
    gap: 12px;
  }

  .group-card img {
    width: 44px;
    height: 44px;
  }

  .group-card h4 {
    font-size: 14px;
  }

  .group-card span {
    font-size: 12px;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  .footer-bottom .container {
    font-size: 11px;
  }
}
@media (max-width: 900px) {
    .mobile-nav > .btn {
        display: none !important;
    }
}