:root{
  --navy:#00204a;
  --blue:#265f94;
  --light-blue:#5ca4e8;
  --gold:#c3964c;
  --black:#000000;
  --ink:#172232;
  --light-gray:#fdffff;
  --mid-gray:#4f5763;  
  --paper:#ffffff;
  --soft:#f4f6f8;
  --line:#e5e9ef;
  --max:1240px;
  --box-bold-border: 1px solid rgba(51, 62, 72, 0.3);
  --box-light-border: 1px solid rgba(38,95,148,.25);  
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:104px;
}

body{
  margin:0;
  color:var(--ink);
  /* background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 80%, rgb(76 126 195 / 10%) 92%, rgb(15 112 241 / 15%) 100%); */
  background-color: var(--light-gray);
  background-attachment: fixed;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height:1.55;
}

a{
  color:inherit;
}

#site-header{
  position:sticky;
  top:0;
  z-index:1000;
}

.mock-nav{
  min-height:104px;
  padding:0 24px;
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:1000;
}

.mock-nav__inner{
  width:min(var(--max), 100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:34px;
  padding:18px 0;
}

.mock-brand{
  display:block;
  flex:0 0 auto;
}

.mock-brand img{
  display:block;
  width:clamp(280px, 32vw, 520px);
  aspect-ratio:1450 / 303;
  height:auto;
}

.mock-links{
  flex:1;
  display:flex;
  justify-content:flex-end;
  gap:28px;
  align-items:center;
  color:var(--navy);
  font-size:14px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mock-links a,
.nav-phone{
  text-decoration:none;
  white-space:nowrap;
}

.nav-phone{
  border:0;
  border-radius:999px;
  padding:12px 20px;
  background:var(--gold);
  color:#fff;
  font-weight:950;
  box-shadow:0 18px 42px rgba(0,0,0,.22);
}

.hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:var(--navy);
}

.hero--composed{
  min-height:690px;
  display:flex;
  align-items:center;
}

.hero--composed::before{
  content:"";
  position:absolute;
  inset:auto -12vw -22vw auto;
  width:52vw;
  height:52vw;
  border-radius:50%;
  border:72px solid rgba(195,150,76,.16);
  z-index:-1;
}

.hero--composed::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 79% 58%, transparent 0 68px, rgba(195,150,76,.95) 69px 82px, transparent 83px 98px, rgba(195,150,76,.55) 99px 112px, transparent 113px),
    radial-gradient(circle at 76% 28%, rgba(38,95,148,.34), transparent 0 24%, transparent 25%),
    linear-gradient(90deg, rgba(0,32,74,.98), rgba(0,32,74,.92));
  z-index:-2;
}

.hero__inner{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr .92fr;
  column-gap:64px;
  row-gap:28px;
  align-items:start;
  padding:88px 0 128px;
}

.hero__inner-no-card{
  padding:88px 0 48px;
}

.hero__content{
  color:#fff;
}

.eyebrow,
.section-kicker{
  margin:0 0 14px;
  color:var(--gold);
  font-size:clamp(17px, 1.35vw, 22px);
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero .eyebrow{
  font-size:clamp(17px, 1.35vw, 22px);
  letter-spacing:.08em;
  margin-bottom:18px;
}

.hero h1{
  max-width:820px;
  margin:0;
  font-size:clamp(44px, 5.6vw, 78px);
  line-height:1.02;
  letter-spacing:0;
  font-weight:950;
}

.hero p:not(.eyebrow){
  max-width:none;
  margin:12px 0 0;
  color:rgba(255,255,255,.88);
  font-size:clamp(18px, 2vw, 23px);
}

.hero__summary{
  grid-column:1 / -1;
  width:100%;
  max-width:none;
  color:#fff;
}

.hero__summary p{
  max-width:none;
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:clamp(18px, 1.65vw, 23px);
}

.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:32px;
}

.hero__visual{
  min-height:375px;
  position:relative;
  display:grid;
  place-items:start center;
  margin-top:24px;
}

.hero-photo{
  position:relative;
  z-index:1;
  overflow:hidden;
  width:min(560px, 100%);
  aspect-ratio:3 / 2;
  height:auto;
  min-height:0;
  border:0;
  border-radius:8px;
  box-shadow:0 36px 90px rgba(0,0,0,.28);
  background:var(--blue);
}

.hero-photo img{
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  object-position:center;
}

.hero-carousel{
  isolation:isolate;
  background:transparent;
}

.hero-carousel .hero-carousel__slide{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:0;
  animation:heroCarouselFade 12s ease-in-out infinite;
}

.hero-carousel .hero-carousel__slide--one{
  opacity:1;
  animation-name:heroCarouselFadeFirst;
  animation-delay:0s;
}

.hero-carousel .hero-carousel__slide--two{
  animation-delay:4s;
}

.hero-carousel .hero-carousel__slide--three{
  animation-delay:8s;
}

.hero-photo::before{
  content:"";
  position:absolute;
  inset:14px;
  z-index:2;
  border:1px solid rgba(255,255,255,.32);
  border-radius:4px;
  pointer-events:none;
}

@keyframes heroCarouselFade{
  0%{
    opacity:0;
  }

  5%,
  33.333%{
    opacity:1;
  }

  38.333%,
  100%{
    opacity:0;
  }
}

@keyframes heroCarouselFadeFirst{
  0%,
  33.333%{
    opacity:1;
  }

  38.333%,
  100%{
    opacity:0;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-carousel .hero-carousel__slide{
    animation:none;
  }

  .hero-carousel .hero-carousel__slide--one{
    opacity:1;
  }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:13px;
}

.btn--gold{
  background:var(--gold);
  color:#fff;
  box-shadow:0 18px 42px rgba(0,0,0,.22);
}

.btn--light{
  background:rgba(255,255,255,.96);
  color:var(--navy);
}

.btn--navy{
  background:var(--navy);
  color:#fff;
  box-shadow:0 18px 42px rgba(0,0,0,.22);
}

.btn--blue{
  background:var(--blue);
  color:#fff;
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}

.btn--outline{
  border:1px solid rgba(255,255,255,.8);
  color:#fff;
}

.service-lift{
  width:min(var(--max), calc(100% - 48px));
  margin:-88px auto 0;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}

.service-card{
  min-height:285px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:20px;
  background:#fff;
  border: var(--box-bold-border);
  box-shadow:0 24px 60px rgba(0,32,74,.16);
}

.service-card__header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}

.service-card__icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  flex:0 0 54px;
  color:#fff;
  background:var(--gold);
  font-weight:950;
}

.service-card__icon--blue{
  background:var(--blue);
}

.service-card__icon--navy{
  background:var(--navy);
}

.service-card h2{
  margin:0;
  color:var(--navy);
  font-size:24px;
  line-height:1.12;
  font-weight:950;
}

.service-card p{
  margin:14px 0 26px;
  color:var(--mid-gray);
  font-size:16px;
}

.service-card a{
  margin-top:auto;
  color:var(--blue);
  font-weight:950;
  letter-spacing:.06em;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
}

.split-section,
.local-section,
.impact-section,
.collage-section{
  width:min(var(--max), calc(100% - 48px));
  margin: 96px auto 0;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:58px;
  align-items:center;
}

.impact-section{
  grid-template-columns:.9fr 1.1fr;
  margin-top:96px;
}

.impact-section__copy h2,
.collage-section h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px, 4vw, 54px);
  line-height:1.04;
  font-weight:950;
}

.impact-section__copy p:not(.section-kicker),
.collage-section p:not(.section-kicker){
  margin:10px 0 0;
  color:var(--mid-gray);
  font-size:18px;
  max-width:650px;
}

.tax-expect{
  margin-top:28px;
  color:var(--navy);
}

.tax-expect strong{
  display:block;
  margin-bottom:14px;
  font-size:14px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tax-expect ul{
  margin:0;
  padding:0;
  display:grid;
  gap:7px;
  list-style:none;
}

.tax-expect li{
  position:relative;
  padding-left:34px;
  color:var(--navy);
  font-weight:850;
}

.tax-expect li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-2px;
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:rgba(38,95,148,.12);
  color:var(--navy);
  font-size:15px;
}

.impact-section__media{
  min-height:380px;
  border-radius:10px;
  box-shadow:0 28px 70px rgba(38,95,148,.16);
}

.impact-section__media--image{
  overflow:hidden;
  padding:0;
  border:0;
  background:var(--navy);
}

.impact-section__media--image img{
  display:block;
  width:100%;
  height:100%;
  min-height:380px;
  object-fit:cover;
  object-position:center;
}

.image-slot--video::after{
  content:"";
  width:58px;
  height:58px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.42);
  background:
    linear-gradient(90deg, #fff 0 0) center / 0 0 no-repeat,
    rgba(0,32,74,.54);
  box-shadow:0 18px 44px rgba(0,0,0,.20);
}

.transaction-graphic{
  display:flex;
  align-items:center;
  justify-content:center;
  align-self:start;
  padding-top:74px;
}

.transaction-graphic img{
  display:block;
  width:100%;
  max-width:558px;
  height:auto;
  object-fit:contain;
}

.split-section__copy h2,
.section-head h2,
.local-section h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.05;
  letter-spacing:0;
  font-weight:950;
}

.section-lead,
.local-section p:not(.section-kicker){
  margin:20px 0 0;
  color:var(--mid-gray);
  font-size:19px;
  max-width:720px;
}

.local-section .section-kicker{
  color:var(--gold);
}

.local-section > div:first-child{
  max-width:760px;
}

.proof-list{
  margin-top:34px;
  display:grid;
  gap:12px;
}

.proof-list details{
  background:#fff;
  border: var(--box-light-border);
  box-shadow:0 14px 34px rgba(0,32,74,.06);
}

.proof-list summary{
  cursor:pointer;
  list-style:none;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--mid-gray);
  font-weight:950;
  font-size:18px;
}

.proof-list summary::-webkit-details-marker{
  display:none;
}

.proof-list summary::after{
  content:"+";
  color:var(--navy);
  font-size:24px;
  line-height:1;
}

.proof-list details[open] summary::after{
  content:"-";
}

.proof-list details p{
  margin:0;
  padding:0 24px 12px;
  color:var(--mid-gray);
}

.proof-list ul{
  margin:0;
  padding:0 24px 24px 46px;
  color:var(--navy);
  font-weight:850;
}

.proof-list li + li{
  margin-top:8px;
}

.split-section__link{
  display:inline-block;
  margin-top:24px;
  color:var(--blue);
  font-size:13px;
  font-weight:950;
  letter-spacing:.06em;
  text-decoration:none;
  text-transform:uppercase;
}

.visual-band{
  margin-top:75px;
  min-height:245px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(0,32,74,.98), rgba(38,95,148,.86)),
    var(--navy);
}

.visual-band__image{
  position:absolute;
  inset:0;
  min-height:245px;
  height:245px;
  padding:0;
  border:0;
  border-radius:0;
  background:var(--blue);
}

.visual-band__image img{
  display:block;
  width:100%;
  height:245px;
  object-fit:contain;
  object-position:center;
  background:var(--blue);
}

.visual-band__image::before,
.dark-cta__image::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,32,74,.76);
}

.visual-band__content{
  position:relative;
  z-index:2;
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  padding:38px 0;
  color:#fff;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
  gap:42px;
  align-items:center;
}

.visual-band__copy{
  min-width:0;
}

.visual-band h2{
  max-width:760px;
  margin:0;
  font-size:clamp(32px, 4vw, 52px);
  line-height:1.08;
}

.visual-band__copy > p:not(.eyebrow){
  max-width:780px;
  margin:18px 0 0;
  color:rgba(255,255,255,.84);
  font-size:18px;
}

.band-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  max-width:850px;
  margin-top:34px;
}

.band-metrics div{
  border-left:3px solid var(--blue);
  padding-left:18px;
}

.band-metrics strong,
.band-metrics span{
  display:block;
}

.band-metrics strong{
  font-size:24px;
  line-height:1.1;
}

.band-metrics span{
  color:rgba(255,255,255,.76);
}

.visual-band__photo{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.visual-band__photo img{
  display:block;
  width:100%;
  aspect-ratio:16 / 10;
  height:auto;
  object-fit:cover;
  object-position:center;
}

.visual-band__photo::before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.32);
  border-radius:4px;
  pointer-events:none;
  z-index:1;
}

.dark-cta{
  margin-top:110px;
  padding:72px max(24px, calc((100vw - var(--max)) / 2));
  background:var(--navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:38px;
}

.dark-cta--image{
  width:min(var(--max), calc(100% - 48px));
  min-height:315px;
  margin:110px auto 0;
  padding:54px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border-radius:10px;
  box-shadow:0 28px 70px rgba(0,32,74,.18);
}

.dark-cta--image > div,
.dark-cta--image > a{
  position:relative;
  z-index:2;
}

.dark-cta .btn{
  text-align:center;
}

.dark-cta__image{
  flex:0 0 min(430px, 42%);
  min-height:260px;
  padding:0;
  overflow:hidden;
  border:0;
  border-radius:8px;
}

.dark-cta__image img{
  display:block;
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
  object-position:center;
}

.dark-cta__image::before{
  display:none;
}

.dark-cta h2{
  margin:0;
  max-width:820px;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.12;
}

.dark-cta p:not(.eyebrow){
  margin:16px 0 0;
  max-width:760px;
  color:rgba(255,255,255,.82);
  font-size:19px;
}

.who-section,
.process-section,
.testimonials-section,
.insights-section{
  width:min(var(--max), calc(100% - 48px));
  margin:110px auto 0;
}

.who-section{
  margin:80px auto 0;
}

.section-head{
  max-width:850px;
}

.section-head--center{
  margin:0 auto;
  text-align:center;
}

.tile-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.who-tile{
  display:flex;
  flex-direction:column;
  border:var(--box-bold-border);
  background:#fff;  
  box-shadow:0 18px 42px rgba(0,32,74,.10);    
}

.who-tile__image{
  min-height:320px;
  height:320px;
  overflow:hidden;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.24);
  border-radius:0;
  background:var(--navy);
}

.who-tile__image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.who-tile:first-child .who-tile__image img,
.who-tile:nth-child(3) .who-tile__image img{
  object-position:center top;
}

.who-tile h3{
  margin:24px 24px 8px;
  color:var(--navy);
  font-size:23px;
  line-height:1.15;
}

.who-tile p{
  margin:0 24px 22px;
  color:var(--mid-gray);
}

.who-tile a{
  margin:auto 24px 28px;
  color:var(--blue);
  font-weight:950;
  letter-spacing:.06em;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
}

.process-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.process-grid article{
  min-height:240px;
  padding:30px 24px;
  border: var(--box-bold-border);
  border-top:10px solid var(--blue);
  background:#fff;
  box-shadow:0 16px 36px rgba(38,95,148,.16);
  display:grid;
  grid-template-columns:46px 1fr;
  grid-template-rows:auto auto;
  column-gap:16px;
  row-gap:18px;
  align-items:start;
  align-content:start;
}

.process-grid span{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  color:#fff;
  font-weight:950;
}

.process-grid article:nth-child(1) span{
  background:var(--gold);
}

.process-grid article:nth-child(2) span{
  background:var(--blue);
}

.process-grid article:nth-child(3) span{
  background:var(--navy);
}

.process-grid article:nth-child(4) span{
  background:var(--gold);
}

.process-grid h3{
  margin:0;
  color:var(--navy);
  font-size:22px;
  line-height:1.15;
}

.process-grid p{
  margin:0;
  grid-column:1 / -1;
  color:var(--mid-gray);
}

.collage-section{
  grid-template-columns:.9fr 1.1fr;
}

.collage-section > div:last-child{
  min-width:0;
}

.collage{
  min-height:0;
  display:grid;
  grid-template-columns:1.08fr .92fr .92fr;
  grid-template-rows:180px 180px 135px 135px;
  gap:18px;
  align-items:stretch;
  position:relative;
}

.collage__item{
  min-height:0;
  overflow:hidden;
  border-radius:8px;
  box-shadow:0 22px 54px rgba(0,32,74,.14);
}

.collage__item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.collage__item--one{
  grid-row:1 / 5;
  height:auto;
}

.collage__item--one img{
  object-position:center top;
}

.collage__item--two{
  grid-column:2 / 4;
  grid-row:3 / 5;
  height:auto;
}

.collage__item--three{
  grid-column:2;
  grid-row:1;
  height:auto;
}

.collage__item--four{
  grid-column:3;
  grid-row:1;
  height:auto;
}

.collage__item--five{
  grid-column:2;
  grid-row:2;
  height:auto;
}

.collage__item--six{
  grid-column:3;
  grid-row:2;
  height:auto;
}

.collage__item--six img{
  object-position:center;
}

.collage-section .btn{
  margin-top:28px;
}

.quote-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.quote-grid article{
  position:relative;
  overflow:hidden;
  padding:32px;
  background:#fff;
  border: var(--box-bold-border);
  box-shadow:0 18px 46px rgba(0,32,74,.09);
}

.quote-grid article::after{
  content:"";
  position:absolute;
  right:-36px;
  bottom:-36px;
  width:120px;
  height:120px;
  border:10px solid rgba(38,95,148,.22);
  border-radius:50%;
}

.quote-grid p{
  margin:0 0 24px;
  color:var(--mid-gray);
}

.quote-grid strong,
.quote-grid span{
  display:block;
}

.quote-grid strong{
  color:var(--navy);
}

.quote-grid span{
  color:var(--mid-gray);
  font-size:14px;
}

.insight-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.insight-card{
  background:#fff;
  border: var(--box-light-border);
  box-shadow:0 18px 44px rgba(0,32,74,.08);
}

.insight-card__image{
  min-height:210px;
  border:0;
  border-radius:0;
}

.insight-card h3{
  margin:22px 22px 8px;
  color:var(--navy);
  font-size:22px;
  line-height:1.16;
}

.insight-card p{
  margin:0 22px 22px;
  color:var(--mid-gray);
}

.insight-card a{
  display:inline-block;
  margin:0 22px 26px;
  color:var(--gold);
  font-weight:950;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
}

.local-section{
  grid-template-columns:1.25fr .75fr;
  gap:34px;
  margin-bottom:110px;
}

.local-section__image{
  display:grid;
  place-items:center;
  min-height:360px;
  padding:0;
  background:transparent;
}

.local-section__image img{
  display:block;
  width:min(360px, 100%);
  height:auto;
  object-fit:contain;
}

.mock-footer{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  column-gap:48px;
  row-gap:20px;
  padding:32px max(24px, calc((100vw - var(--max)) / 2));
  background:#101b27;
  color:#fff;
}

.mock-footer img{
  width:min(380px, 100%);
  display:block;
  height:auto;
  background:transparent;
  padding:0;
}

.mock-footer p{
  max-width:360px;
  color:rgba(255,255,255,.76);
  font-size:18px;
  line-height:1.55;
}

.mock-footer strong{
  display:block;
  margin-bottom:12px;
  color:var(--gold);
  font-size:18px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.mock-footer a{
  display:block;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  margin:8px 0;
  font-size:17px;
  line-height:1.45;
}

.mock-footer__address{
  margin:0 0 8px;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.45;
}

.mock-footer__legal{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:48px;
  margin-top:0;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.16);
  align-items:start;
}

.mock-footer__legal p{
  max-width:none;
  margin:0;
  font-size:13px;
  line-height:1.55;
}

.mock-footer__legal strong{
  margin-bottom:6px;
  color:#fff;
  font-size:13px;
  letter-spacing:.04em;
}

.mock-footer__legal > p{
  text-align:right;
}

.image-slot{
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
  align-content:center;
  gap:8px;
  min-height:300px;
  padding:10px;
  color:rgba(255,255,255,.92);
  text-align:center;
  border:1px dashed rgba(195,150,76,.8);
  border-radius:0;
}

.image-slot span{
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.image-slot small{
  max-width:280px;
  color:rgba(255,255,255,.76);
}

@media (max-width:1100px){
  .mock-nav__inner{
    flex-wrap:wrap;
  }

  .mock-links{
    order:3;
    flex-basis:100%;
    justify-content:center;
    flex-wrap:wrap;
  }

  .service-lift,
  .tile-grid,
  .process-grid,
  .insight-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .split-section,
  .local-section,
  .impact-section,
  .collage-section{
    grid-template-columns:1fr;
  }

  .hero__inner{
    grid-template-columns:1fr;
    padding:64px 0 118px;
  }

  .hero__visual{
    min-height:500px;
    order:-1;
    margin-top:0;
  }

  .hero-photo{
    width:min(560px, 100%);
  }

  .hero-photo img{
    min-height:0;
  }

  .collage{
    min-height:0;
  }

  .quote-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .mock-nav__inner{
    min-height:auto;
    gap:16px;
    padding:14px 0;
  }

  .mock-brand img{
    width:clamp(240px, calc(100vw - 48px), 420px);
  }

  .mock-links{
    gap:12px;
    font-size:12px;
  }

  .nav-phone{
    width:100%;
    text-align:center;
  }

  .hero--composed{
    min-height:auto;
  }

  .hero__inner{
    width:calc(100% - 36px);
    gap:20px;
    padding:42px 0 96px;
  }

  .hero__visual{
    min-height:0;
  }

  .hero-photo{
    border-radius:8px;
  }

  .hero-photo img{
    min-height:0;
  }

  .hero-photo::before{
    border-radius:4px;
  }

  .hero__actions,
  .dark-cta{
    align-items:stretch;
    flex-direction:column;
  }

  .service-lift{
    width:calc(100% - 36px);
    margin-top:-58px;
    grid-template-columns:1fr;
  }

  .split-section,
  .who-section,
  .process-section,
  .local-section,
  .impact-section,
  .collage-section,
  .testimonials-section,
  .insights-section{
    width:calc(100% - 36px);
    margin-top:72px;
  }

  .dark-cta--image{
    width:calc(100% - 36px);
    padding:36px 24px;
  }

  .dark-cta__image{
    width:100%;
    flex-basis:auto;
  }

  .visual-band__content{
    width:calc(100% - 36px);
    grid-template-columns:1fr;
    gap:24px;
  }

  .band-metrics{
    grid-template-columns:1fr;
  }

  .split-section__image{
    min-height:380px;
  }

  .transaction-graphic{
    padding-top:0;
  }

  .tile-grid,
  .process-grid,
  .insight-grid,
  .mock-footer{
    grid-template-columns:1fr;
  }

  .mock-footer__legal{
    grid-template-columns:1fr;
    gap:18px;
  }

  .mock-footer__legal > p{
    text-align:left;
  }

  .collage{
    min-height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
    gap:14px;
  }

  .collage__item{
    position:relative;
    width:100%;
    height:180px;
  }

  .collage__item--one,
  .collage__item--two,
  .collage__item--four,
  .collage__item--six{
    grid-column:auto;
    grid-row:auto;
    justify-self:stretch;
    margin-top:0;
    inset:auto;
  }
}
