@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root{
  --navy:#1B2A4E;
  --gold:#B08A4A;
  --cream:#F5F2EC;
  --gray:#6B6B6B;
  --white:#fff;
  --ink:#172033;
  --line:rgba(27,42,78,.14);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
section{
  scroll-margin-top:90px;
}
body{
  font-family:'Manrope',sans-serif;
  background:var(--cream);
  color:var(--navy);
  line-height:1.7;
}
body.menu-open{overflow:hidden}
img{display:block;width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit}

.container{width:90%;max-width:1180px;margin:0 auto}

.navbar{
  position:fixed;
  top:0;left:0;width:100%;
  z-index:1000;
  background:rgba(245,242,236,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  padding:1px 0;
  transition:.25s ease;
}
.navbar.scrolled{
  padding:1px 0;
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 35px rgba(0,0,0,.06);
}
.nav-container{display:flex;justify-content:space-between;align-items:center;gap:16px}
.logo{display:flex;flex-direction:column;line-height:1;color:var(--navy)}
.logo img{
  width:130px;
  height:auto;
}

.hero-logo{
  width:min(560px,92%);
  margin:0 auto 46px;
}

.hero-logo img{
  width:100%;
  height:auto;
}
.nav-links{display:flex;gap:34px;align-items:center}
.nav-links a{
  font-size:14px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  position:relative;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;bottom:-8px;
  height:1px;width:0;
  background:var(--gold);
  transition:.25s ease;
}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.menu-toggle{display:none;background:none;border:0;width:42px;height:42px;position:relative}
.menu-toggle span{display:block;width:24px;height:2px;background:var(--navy);margin:7px auto;transition:.25s ease}
.menu-toggle.active span:first-child{transform:translateY(4.5px) rotate(45deg)}
.menu-toggle.active span:last-child{transform:translateY(-4.5px) rotate(-45deg)}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:flex-start;
  padding:110px 0 72px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(245,242,236,.28),rgba(245,242,236,.42)),
    url("images/hero.jpg") center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 20%,rgba(255,255,255,.45),transparent 45%);
}
.hero-content{position:relative;z-index:2;text-align:center}
.hero-logo{
  width:min(520px,90%);
  margin:0 auto 42px;
  padding:28px 20px;
  border-top:1px solid rgba(176,138,74,.45);
  border-bottom:1px solid rgba(176,138,74,.45);
}
.hero-logo{
  width:min(420px,85%);
  margin:0 auto 42px;
}

.hero-logo img{
  width:100%;
  height:auto;
}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:68px;
  line-height:.98;
  font-weight:600;
  margin-bottom:24px;
  text-shadow:0 4px 18px rgba(255,255,255,.35);
}
.hero p{ 
  max-width:790px;
  margin:0 auto 34px;
  color:var(--gray);
  font-size:18px;
  text-shadow:0 2px 10px rgba(255,255,255,.25);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:14px 28px;
  border:1px solid var(--navy);
  background:var(--navy);
  color:var(--white);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}
.btn:hover{background:var(--gold);border-color:var(--gold);color:var(--navy)}
.btn.outline{background:transparent;color:var(--navy)}
.btn.outline:hover{background:var(--navy);color:white;border-color:var(--navy)}
.hero-pillars{
  margin-top:66px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow:0 20px 60px rgba(27,42,78,.06);
}
.hero-pillars article{padding:34px 30px;border-right:1px solid var(--line)}
.hero-pillars article:last-child{border-right:0}
.hero-pillars h3{
  font-family:'Cormorant Garamond',serif;
  font-size:27px;
  margin-bottom:10px;
}
.hero-pillars p{font-size:14px;margin:0;color:var(--gray)}

.section{padding:118px 0}
.dark-section{background:var(--navy);color:var(--white)}
.eyebrow{
  display:inline-block;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.17em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-heading{max-width:1180px;margin-bottom:58px}
.section-heading h2,.about-copy h2,.contact-content h2,.project-header h2,.table-header h2{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  line-height:1.05;
  font-weight:600;
  margin-bottom:16px;
}
.section-heading p{
  font-size:18px;
  color:var(--gray);
  max-width:1050px;
  line-height:1.7;
}
.dark-section .section-heading p{color:#d7dce8}

.about-section{background:var(--white)}
.about-grid{display:grid;grid-template-columns:360px 1fr;gap:76px;align-items:start}
.headshot-card{
  min-height:480px;
  background:#e3ded3;
  border:1px solid var(--line);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#7a756b;
  font-style:italic;
  overflow:hidden;
}
.headshot-card img{height:100%;min-height:480px;object-fit:cover}
.headshot-card span{display:none}
.headshot-card.missing-image span{display:block}
.about-copy h4{
  font-size:13px;
  letter-spacing:.17em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:26px;
}
.about-copy p{margin-bottom:18px;color:#334155}
.expertise-strip{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}
.expertise-strip span{
  border:1px solid var(--line);
  background:var(--cream);
  padding:9px 12px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:700;
}

.partner-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.partner-card{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.055);
  padding:42px 32px;
  min-height:430px;
  transition:.25s ease;
}
.partner-card:hover{transform:translateY(-8px);background:rgba(255,255,255,.09)}
.number{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  color:var(--gold);
  margin-bottom:15px;
}
.partner-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  line-height:1.1;
  margin-bottom:10px;
}
.partner-card h5{
  color:var(--gold);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.13em;
  margin-bottom:20px;
}
.partner-card p{font-size:15px;color:#d7dce8}

.right-fit{
  margin-top:56px;
  padding:46px 52px;
  background:#0f1d38;
  border-left:8px solid var(--gold);
  color:#f0f3f8;
  font-size:22px;
  line-height:1.55;
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.right-fit strong{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:14px;
  margin-bottom:14px;
}

.experience-section{background:var(--cream)}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--white);
  border:1px solid var(--line);
  margin-bottom:70px;
}
.stat{text-align:center;padding:38px 18px;border-right:1px solid var(--line)}
.stat:last-child{border-right:0}
.stat h3{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  color:var(--gold);
  line-height:1;
  margin-bottom:10px;
}
.stat p{
  text-transform:uppercase;
  letter-spacing:.13em;
  color:var(--gray);
  font-size:12px;
  font-weight:800;
}
.map-panel{
  display:grid;
  grid-template-columns:360px 1fr;
  min-height:420px;
  background:var(--navy);
  color:white;
  margin-bottom:86px;
}
.map-copy{padding:50px 42px;align-self:center}
.map-copy h3{
  font-family:'Cormorant Garamond',serif;
  font-size:44px;
  line-height:1;
  margin-bottom:14px;
}
.map-copy p{color:#d7dce8}
.map-visual{
  position:relative;
  min-height:420px;
  background:
    linear-gradient(rgba(245,242,236,.08),rgba(245,242,236,.08)),
    radial-gradient(circle at 70% 30%,rgba(176,138,74,.2),transparent 18%),
    radial-gradient(circle at 43% 45%,rgba(255,255,255,.09),transparent 16%),
    #24345d;
  overflow:hidden;
}
.map-visual::before{
  content:"";
  position:absolute;
  inset:34px;
  opacity:.23;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.35) 1px,transparent 1px);
  background-size:42px 42px;
}
.map-pin{
  position:absolute;
  width:48px;height:48px;
  border-radius:50%;
  border:2px solid var(--gold);
  background:var(--cream);
  color:var(--navy);
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.map-pin::after{
  content:attr(data-project);
  position:absolute;
  left:50%;top:-42px;
  transform:translateX(-50%);
  white-space:nowrap;
  background:white;
  color:var(--navy);
  padding:6px 10px;
  font-size:11px;
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
.map-pin:hover::after{opacity:1}
.pin-in{left:46%;top:38%}
.pin-ky{left:55%;top:52%}
.pin-ar{left:28%;top:62%}

.project-header,.table-header{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:30px;
}
.project-list{display:grid;gap:22px}
.project-card{
  display:grid;
  grid-template-columns:220px 1fr;
  border:1px solid var(--line);
  background:white;
  min-height:178px;
  overflow:hidden;
  transition:.25s ease;
}

.project-group-card{
  grid-template-columns:repeat(3,1fr);
  gap:0;
}

.grouped-property{
  border-right:1px solid var(--line);
}

.grouped-property:last-child{
  border-right:none;
}

.grouped-property h3 a{
  color:var(--navy);
  border-bottom:1px solid rgba(176,138,74,.55);
}

.grouped-property h3 a:hover{
  color:var(--gold);
}

.project-disclaimer{
  margin-top:28px;
  color:var(--gray);
  font-size:12px;
  line-height:1.6;
  font-style:italic;
}

@media(max-width:900px){
  .project-group-card{
    grid-template-columns:1fr;
  }

  .grouped-property{
    border-right:none;
    border-bottom:1px solid var(--line);
  }

  .grouped-property:last-child{
    border-bottom:none;
  }
}

.project-card.hidden{display:none}
.project-card:hover{transform:translateY(-4px);box-shadow:0 18px 45px rgba(0,0,0,.08)}
.project-photo{
  position:relative;
  background:#e2e2e2;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-size:12px;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.project-photo img{height:100%;object-fit:cover}
.project-photo .fallback{position:absolute}
.project-photo.has-img .fallback{display:none}
.project-info{padding:26px 30px}
.status{
  display:inline-block;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  padding:5px 9px;
  margin-bottom:10px;
  border:1px solid var(--line);
}
.status.sold{color:#8a3c2d;border-color:#d9b6ad;background:#fff7f4}
.status.active{color:#23543a;border-color:#a7c8b7;background:#f3faf6}
.status.dev{color:var(--navy);border-color:#c8b489;background:#fbf6eb}
.project-info h3{
  font-family:'Cormorant Garamond',serif;
  font-size:31px;
  line-height:1.12;
  margin-bottom:12px;
}
.project-info h4{font-size:14px;color:var(--gold);margin-bottom:7px}
.project-info p{font-size:14px;color:#1f2937}
.roles{
  color:var(--gold)!important;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
  margin-top:8px;
  font-size:12px!important;
}
.strategy{margin-top:5px;color:var(--gray)!important}
.role-legend{
  margin-top:42px;
  padding:34px;
  border:1px solid var(--line);
  background:white;
}
.role-legend h3{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  margin-bottom:20px;
}
.legend-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px 28px}
.legend-grid p{font-size:14px;color:#334155}
.legend-grid strong{color:var(--gold);letter-spacing:.08em}

.portfolio-table-section{margin-top:80px}
.filters{display:none;gap:10px;margin:0 0 20px;flex-wrap:wrap}
.filters.visible{display:flex}
.filter-btn{
  border:1px solid var(--line);
  background:white;
  color:var(--navy);
  padding:9px 14px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.09em;
  cursor:pointer;
}
.filter-btn.active,.filter-btn:hover{background:var(--navy);color:white}
.table-wrap{display:none;background:white;border:1px solid var(--line);overflow:auto}
.table-wrap.visible{display:block}
.portfolio-table{width:100%;border-collapse:collapse;min-width:850px}
.portfolio-table th{
  background:var(--navy);
  color:white;
  text-align:left;
  padding:13px 12px;
  font-size:12px;
}
.portfolio-table td{
  padding:12px;
  border-bottom:1px solid #e6e2d9;
  font-size:13px;
  color:#1f2937;
}
.portfolio-table tfoot td{font-weight:800;background:#f3f0e8}
.table-note{font-size:12px;color:var(--gray);padding:14px}

.contact-content{max-width:880px}
.contact-content p{font-size:18px;color:#d7dce8;margin-bottom:22px}
.contact-card{
  margin-top:34px;
  padding:32px;
  border-top:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.055);
}
.contact-card p{margin-bottom:10px}
.contact-card a{color:white;border-bottom:1px solid var(--gold)}
.footer{background:#101828;color:#b7bdca;padding:25px 0;font-size:13px}
.footer-grid{display:flex;justify-content:space-between;gap:20px}

.fade-in{opacity:0;transform:translateY(22px);transition:opacity .75s ease,transform .75s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

@media(max-width:900px){
  .menu-toggle{display:block;z-index:1002}
  .nav-links{
    position:fixed;
    top:0;right:-100%;
    width:min(360px,86vw);
    height:100vh;
    background:var(--cream);
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:40px;
    transition:.3s ease;
    box-shadow:-20px 0 45px rgba(0,0,0,.12);
  }
  .nav-links.open{right:0}
  .nav-links a{font-size:16px}
  .hero h1{font-size:56px}
  .hero-logo span{font-size:52px}
  .hero-pillars,.about-grid,.partner-grid,.stats-grid,.map-panel{grid-template-columns:1fr}
  .hero-pillars article{border-right:0;border-bottom:1px solid var(--line)}
  .hero-pillars article:last-child{border-bottom:0}
  .headshot-card{position:relative;top:auto;min-height:360px}
  .headshot-card img{min-height:360px}
  .stat{border-right:0;border-bottom:1px solid var(--line)}
  .stat:last-child{border-bottom:0}
  .project-header,.table-header{align-items:flex-start;flex-direction:column}
  .project-card{grid-template-columns:1fr}
  .project-photo{min-height:180px}
  .legend-grid{grid-template-columns:1fr}
}

@media(max-width:560px){
  .section{padding:82px 0}
  .hero{padding-top:125px}
  .hero h1{font-size:43px}
  .hero p{font-size:16px}
  .hero-logo{margin-bottom:10px}
  .hero-logo span{font-size:40px}
  .section-heading h2,.about-copy h2,.contact-content h2,.project-header h2,.table-header h2{font-size:42px}
  .partner-card{min-height:auto;padding:32px 24px}
  .map-copy{padding:38px 28px}
  .footer-grid{flex-direction:column}
}

.map-locations{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:0;
}

.map-locations div{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.map-locations div:first-child{
  padding-top:0;
}

.map-locations div:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.map-locations strong{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:15px;
  font-weight:800;
  margin-bottom:8px;
}

.map-locations span{
  display:block;
  color:#ffffff;
  font-size:16px;
  line-height:1.65;
}
.hero-bg{
  background:
    linear-gradient(rgba(245,242,236,.38),rgba(245,242,236,.52)),
    url("images/hero.jpg") center center/cover no-repeat;
}

.hero h1{
  color:var(--navy);
}

.hero p{
  color:var(--navy);
  background:rgba(245,242,236,.78);
  padding:16px 24px;
  border-top:1px solid rgba(176,138,74,.35);
  border-bottom:1px solid rgba(176,138,74,.35);
  border-left:none;
  max-width:760px;
  text-shadow:none;
}

.hero .btn{
  margin-top:8px;
}
.hero-pillars p{
  background:none;
  color:var(--gray);
  padding:0;
  border-left:none;
  max-width:none;
}
.hero-pillars{
  background:rgba(245,242,236,.78);
  backdrop-filter:blur(4px);
}

.hero-pillars h3{
  color:var(--navy);
}

.hero-pillars p{
  font-size:13px;
  line-height:1.6;
}
/* CLEAN CENTERED HERO RESET */

.hero-editorial{
  min-height:100vh;
  padding:120px 0 80px;
  display:flex;
  align-items:center;
  background:var(--cream);
  position:relative;
  overflow:hidden;
}

.hero-editorial .hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      rgba(245,242,236,.88),
      rgba(245,242,236,.93)
    ),
    url("images/hero.jpg") center center/cover no-repeat;
  opacity:1;
}

.hero-editorial::after{
  display:none;
}

.hero-editorial .hero-content{
  position:relative;
  z-index:2;
  text-align:center;
}

.hero-editorial .hero-logo{
  width:340px;
  margin:0 auto 42px;
  padding:0;
  border:none;
}

.hero-editorial .hero-logo img{
  width:100%;
  height:auto;
}

.hero-editorial h1{
  max-width:960px;
  margin:0 auto 26px;
  font-family:'Cormorant Garamond',serif;
  font-size:66px;
  line-height:1.02;
  font-weight:600;
  color:var(--navy);
  text-shadow:none;
}

.hero-editorial h1::before{
  content:"";
  display:block;
  width:280px;
  height:1px;
  background:rgba(176,138,74,.5);
  margin:0 auto 30px;
}

.hero-editorial p{
  max-width:920px;
  margin:0 auto 34px;
  background:none;
  border:none;
  padding:0;
  color:#4f5561;
  font-size:18px;
  line-height:1.75;
  text-shadow:none;
}

.hero-editorial .btn{
  margin-bottom:52px;
}

.hero-editorial .hero-pillars{
  margin:0 auto;
  max-width:1060px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(5px);
  border:1px solid rgba(27,42,78,.12);
  box-shadow:0 22px 55px rgba(0,0,0,.06);
}

.hero-editorial .hero-pillars article{
  padding:34px 30px;
  border-right:1px solid rgba(27,42,78,.12);
}

.hero-editorial .hero-pillars article:last-child{
  border-right:none;
}

.hero-editorial .hero-pillars h3{
  font-family:'Cormorant Garamond',serif;
  font-size:27px;
  color:var(--navy);
  margin-bottom:14px;
}

.hero-editorial .hero-pillars p{
  color:var(--gray);
  font-size:14px;
  line-height:1.6;
  margin:0;
  max-width:none;
}

@media(max-width:900px){
  .hero-editorial{
    padding:115px 0 70px;
  }

  .hero-editorial .hero-logo{
    width:250px;
  }

  .hero-editorial h1{
    font-size:44px;
  }

  .hero-editorial .hero-pillars{
    grid-template-columns:1fr;
  }

  .hero-editorial .hero-pillars article{
    border-right:none;
    border-bottom:1px solid rgba(27,42,78,.12);
  }

  .hero-editorial .hero-pillars article:last-child{
    border-bottom:none;
  }
}

/* HERO FIT ABOVE THE FOLD */

.hero-editorial{
  min-height:100vh;
  padding-top:40px;
  padding-bottom:20px;
  display:flex;
  align-items:center;
}

.hero-editorial .hero-content{
  transform:translateY(25px);
}

.hero-editorial .hero-logo{
  width:350px;
  margin:0 auto -10px;
}

.hero-editorial .hero-logo img{
  width:100%;
  height:auto;
}

.hero-editorial h1{
  font-size:58px;
  line-height:1.02;
  margin-bottom:12px;
  margin-top: 0;
}

.hero-editorial h1::before{
  margin-bottom:18px;
}

.hero-editorial p{
  max-width:760px;
  margin:0 auto 18px;
  font-size:16px;
  line-height:1.5;
}

.hero-editorial .btn{
  margin-bottom:24px;
}

.hero-editorial .hero-pillars{
  max-width:1120px;
}

.hero-editorial .hero-pillars article{
  padding:18px 20px;
}

.hero-editorial .hero-pillars h3{
  font-size:22px;
  margin-bottom:6px;
}

.hero-editorial .hero-pillars p{
  font-size:12px;
  line-height:1.4;
  margin:0;
}

@media(max-width:900px){

  .hero-editorial .hero-content{
    transform:none;
  }

  .hero-editorial .hero-logo{
    width:320px;
  }

  .hero-editorial h1{
    font-size:42px;
  }

  .hero-editorial p{
    font-size:15px;
  }

  .hero-editorial .hero-pillars article{
    padding:16px;
  }
}

.hero-editorial .hero-pillars{
  max-width:1120px;
}

.hero-editorial .hero-pillars article{
  padding:28px 24px;
  min-height:165px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-editorial .hero-pillars h3{
  font-size:24px;
  margin-bottom:12px;
}

.hero-editorial .hero-pillars p{
  font-size:13px;
  line-height:1.55;
}

.hero-pillars h3 a{
  color:inherit;
  text-decoration:none;
  transition:.25s ease;
}

.hero-pillars h3 a:hover{
  color:var(--gold);
}

/* OPTION B - PLAYFAIR + MANROPE */

.hero h1,
.hero-editorial h1,
.section-heading h2,
.about-copy h2,
.contact-content h2,
.project-header h2,
.table-header h2,
.hero-pillars h3,
.partner-card h3,
.project-info h3,
.map-copy h3,
.role-legend h3{
  font-family:'Playfair Display', serif !important;
}

.hero h1,
.hero-editorial h1{
  font-weight:600;
  letter-spacing:-0.02em;
}

.section-heading h2,
.about-copy h2,
.contact-content h2,
.project-header h2,
.table-header h2{
  font-weight:600;
}

.hero-pillars h3,
.partner-card h3,
.project-info h3,
.map-copy h3,
.role-legend h3{
  font-weight:600;
}

.number,
.stat h3{
  font-family:'Manrope',sans-serif !important;
  font-weight:800;
  letter-spacing:-0.04em;
}

.hero-editorial h1{
  font-family:'Montserrat',sans-serif !important;
  font-weight:300;
  text-transform:uppercase;
  letter-spacing:.08em;
  line-height:0.95;
}

/* GRAY CAPITAL STYLE HEADINGS */

h1,
h2,
h3,
h4,
h5,
.hero-editorial h1,
.section-heading h2,
.about-copy h2,
.contact-content h2,
.project-header h2,
.table-header h2,
.hero-pillars h3,
.partner-card h3,
.project-info h3,
.map-copy h3,
.role-legend h3{
  font-family:'Montserrat',sans-serif !important;
  font-weight:300;
  letter-spacing:.06em;
}

.hero-editorial h1{
  font-size:82px;
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:.10em;
}

.section-heading h2,
.about-copy h2,
.contact-content h2,
.project-header h2,
.table-header h2{
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:300;
  letter-spacing:.04em;
}

.hero-pillars h3,
.partner-card h3,
.project-info h3{
  font-weight:400;
  letter-spacing:.03em;
}

/* FIX HERO HEADLINE FONT BALANCE */

.hero-editorial h1{
  font-family:'Montserrat', sans-serif !important;
  font-size:60px !important;
  font-weight:400 !important;
  letter-spacing:.035em !important;
  line-height:1.05 !important;
  text-transform:uppercase;
  max-width:900px;
}

.hero-editorial .hero-logo{
  width:345px;
  margin:10px auto -45px;
}

.hero-editorial p{
  margin-top:10px;
}

@media (max-width: 768px){

  .hero-editorial h1{
    font-size:38px !important;
    line-height:1.05;
    letter-spacing:.02em;
    max-width:100%;
    padding:0 12px;
  }

}

@media (max-width: 480px){

  .hero-editorial h1{
    font-size:32px !important;
    line-height:1.08;
  }

}

.hero-editorial .hero-pillars article{
  padding:16px 20px;
  min-height:135px;
}

.hero-editorial .hero-pillars h3{
  margin-bottom:4px;
}

.hero-editorial .hero-pillars p{
  font-size:13px;
  line-height:1.3;
  margin-top: 0;
}

.hero-editorial .hero-pillars article{
  padding:18px 24px;
  min-height:115px;
  cursor:pointer;
}

.pillar-icon{
  color:var(--gold);
  font-size:24px;
  line-height:1;
  margin-bottom:8px;
}

.hero-editorial .hero-pillars h3{
  margin-bottom:4px;
}

.hero-editorial .hero-pillars p{
  font-size:13px;
  line-height:1.35;
}

#approach{
  scroll-margin-top:60px;
}

#contact{
  scroll-margin-top:60px;
}

@media(max-width:900px){
  .hero-editorial .hero-logo{
    margin-top:28px;
  }
}

/* CLEANER HERO PILLAR BAND */

.hero-editorial .hero-pillars{
  max-width:1040px;
  background:transparent;
  box-shadow:none;
  border:none;
  gap:22px;
}

.hero-editorial .hero-pillars article{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(27,42,78,.10);
  border-left:5px solid var(--gold);
  padding:24px 28px;
  min-height:120px;
  text-align:left;
}

.hero-editorial .hero-pillars article:last-child{
  border-right:1px solid rgba(27,42,78,.10);
}

.hero-editorial .hero-pillars h3{
  font-size:25px;
  margin-bottom:8px;
}

.hero-editorial .hero-pillars p{
  font-size:13px;
  line-height:1.45;
}

/* FINAL HERO POLISH */

.hero-editorial .hero-bg{
  background:
    linear-gradient(
      rgba(245,242,236,.80),
      rgba(245,242,236,.88)
    ),
    url("images/hero.jpg") center center/cover no-repeat;
}

.hero-editorial .hero-logo{
  width:360px;
  margin:12px auto -38px;
}

.hero-editorial h1{
  font-size:58px !important;
  letter-spacing:.03em !important;
  line-height:1.05 !important;
}

.hero-editorial .btn{
  margin-bottom:18px;
}

.hero-editorial .hero-pillars{
  max-width:1040px;
  gap:18px;
  margin-top:0;
}

.hero-editorial .hero-pillars article{
  padding:18px 24px;
  min-height:105px;
  background:rgba(255,255,255,.86);
  box-shadow:0 12px 32px rgba(27,42,78,.07);
}

.hero-editorial .hero-pillars h3{
  font-size:20px;
  margin-bottom:6px;
  font-weight:400;
}

.hero-editorial .hero-pillars h3::after{
  content:"";
  display:block;
  width:30px;
  height:2px;
  background:var(--gold);
  margin-top:8px;
}

.hero-editorial .hero-pillars p{
  font-size:12.5px;
  line-height:1.35;
}

/* HERO BREATHING ROOM FIX */

.hero-editorial .hero-logo{
  margin:55px auto -12px;
}

.hero-editorial h1::before{
  margin-bottom:15px;
}

.hero-editorial h1{
  margin-bottom:22px;
}

.hero-editorial p{
  margin-bottom:26px;
}

.hero-editorial .btn{
  margin-bottom:30px;
}

.hero-editorial .hero-pillars{
  gap:24px;
}

.hero-editorial .hero-pillars article{
  min-height:118px;
}

/* HERO PILLAR POSITION FIX */

.hero-editorial .hero-content{
  transform:translateY(-30px);
}

.hero-editorial .btn{
  margin-bottom:34px;
}

.hero-editorial .hero-pillars{
  margin-bottom:34px;
}

.hero-editorial{
  padding-bottom:40px;
}

@media(max-width:768px){
  .hero-editorial h1{
    font-size:45px !important;
    line-height:1.08 !important;
    letter-spacing:.015em !important;
    max-width:92vw;
    overflow-wrap:normal;
    word-break:normal;
  }
}

@media(max-width:480px){
  .hero-editorial h1{
    font-size:44px !important;
    line-height:1.1 !important;
    letter-spacing:.01em !important;
  }
}

