:root{
  --accent:#176d76;
  --accent-strong:#10565e;
  --accent-soft:#dceced;
  --gold:#d6a12d;
  --dark:#14262b;
  --dark-2:#0e1d21;
  --ink:#1c292d;
  --muted:#58676b;
  --line:#d9e1e2;
  --tint:#f1f5f5;
  --white:#fbfcfc;
  --sec-y:clamp(4.5rem,6vw,5.25rem);
  --wrap:1240px;
  --radius:8px;
  --radius-media:12px;
  --shadow:0 14px 32px rgba(16,43,48,.07);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:clip}
body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  overflow-x:clip;
  background:var(--white);
  color:var(--ink);
  font-family:"Source Sans 3",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:17px;
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
}
main{flex:1 0 auto}
h1,h2,h3,h4{
  margin:0;
  color:var(--ink);
  font-family:"Chivo","Source Sans 3",sans-serif;
  font-weight:700;
  line-height:1.1;
  letter-spacing:-.018em;
}
h1,h2,h3,h4{overflow-wrap:break-word;hyphens:auto}
p{margin:0}
a{color:inherit;text-decoration:none}
img,video{display:block;max-width:100%;height:auto}
ul{margin:0;padding:0;list-style:none}
button,input,textarea,select{font:inherit}
a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid #67b8bf;outline-offset:3px}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding-left:24px;padding-right:24px}
.section{padding-top:var(--sec-y);padding-bottom:var(--sec-y)}
.section--tint{background:var(--tint)}
.sec-head{min-width:0;max-width:720px;margin:0 auto 2.5rem;text-align:center}
.sec-head h2{font-size:clamp(2rem,3.7vw,2.75rem)}
.sec-head p{max-width:62ch;margin:.85rem auto 0;color:var(--muted);font-size:1.08rem}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 1.45rem;
  border:1px solid transparent;
  border-radius:var(--radius);
  font-family:"Chivo",sans-serif;
  font-size:.94rem;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
}
.btn--primary{background:var(--accent-strong);color:#fff}
.btn--primary:hover{background:#0b444a;box-shadow:var(--shadow)}
.btn--ghost{border-color:#b7c8ca;background:transparent;color:var(--accent-strong)}
.btn--ghost:hover{border-color:var(--accent);background:var(--accent-soft)}
.btn--light{border-color:#fff;background:#fff;color:var(--dark)}
.btn--light:hover{background:#eaf1f1;border-color:#eaf1f1}
.btn--lg{min-height:52px;padding-left:1.7rem;padding-right:1.7rem}
.btn:active{box-shadow:none}

.ico{width:17px;height:17px;flex:0 0 auto}
.utilbar{background:var(--dark-2);color:#bed0d3;font-size:.82rem}
.utilbar__in{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:32px}
.utilbar__left,.utilbar__right{display:flex;align-items:center;gap:1.3rem}
.utilbar__item{display:inline-flex;align-items:center;gap:.4rem}
.utilbar__item .ico{color:#82b8bd}
.utilbar a{color:#dce8e9}
.utilbar a:hover{color:#fff}
.social{display:inline-flex;align-items:center;gap:.5rem}
.soc{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid var(--line);border-radius:var(--radius);color:var(--accent-strong)}
.soc:hover{background:var(--accent-strong);border-color:var(--accent-strong);color:#fff}
.soc svg{width:19px;height:19px}
.utilbar .soc{width:auto;height:auto;padding:0;border:0;color:#dce8e9;gap:.4rem}
.utilbar .soc:hover{background:transparent;color:#fff}
.utilbar .soc svg{width:16px;height:16px}
.utilbar .soc span{white-space:nowrap}

#header{position:sticky;top:0;z-index:60;background:rgba(251,252,252,.98);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:2rem;min-height:72px}
.brand{display:flex;align-items:center;flex:0 0 auto;width:150px;height:58px;overflow:hidden}
.brand__logo{width:100%;height:100%;object-fit:cover;object-position:left center}
.topnav{display:flex;align-items:center;justify-content:center;gap:.15rem}
.topnav__link{position:relative;padding:.55rem .72rem;border-radius:var(--radius);color:#344347;font-size:.92rem;font-weight:600}
.topnav__link:hover,.topnav__link.is-active{color:var(--accent-strong)}
.topnav__link.is-active::after{content:"";position:absolute;right:.72rem;bottom:.15rem;left:.72rem;height:2px;background:var(--accent)}
.nav__right{display:flex;align-items:center;gap:.75rem}
.nav-cta{min-height:43px;padding-left:1.15rem;padding-right:1.15rem;background:var(--accent-strong);color:#fff}
.nav-cta:hover{background:#0b444a}

.navdrop{position:relative}
.navdrop__btn{display:inline-flex;align-items:center;gap:.25rem}
.caret{width:13px;height:13px;flex:0 0 auto}
.navdrop__menu{position:absolute;top:calc(100% + 9px);left:50%;z-index:70;width:336px;padding:.55rem;transform:translateX(-50%);visibility:hidden;opacity:0;background:#fff;border:1px solid var(--line);border-radius:var(--radius-media);box-shadow:var(--shadow)}
.navdrop__menu::before{content:"";position:absolute;right:0;bottom:100%;left:0;height:14px}
.navdrop:hover .navdrop__menu,.navdrop:focus-within .navdrop__menu,.navdrop.is-open .navdrop__menu{visibility:visible;opacity:1}
.navdrop__item{display:block;padding:.68rem .78rem;border-radius:var(--radius)}
.navdrop__item:hover{background:var(--accent-soft)}
.navdrop__item[aria-current="page"]{background:var(--accent-soft)}
.navdrop__name{display:block;color:var(--ink);font-family:"Chivo",sans-serif;font-size:.92rem;font-weight:700}
.navdrop__desc{display:block;margin-top:.05rem;color:var(--muted);font-size:.82rem}
.navdrop__all{display:flex;align-items:center;gap:.4rem;margin-top:.35rem;padding:.72rem .78rem .4rem;border-top:1px solid var(--line);color:var(--accent-strong);font-family:"Chivo",sans-serif;font-size:.9rem;font-weight:700}

.burger{display:none;flex-direction:column;align-items:center;justify-content:center;gap:5px;width:44px;height:44px;padding:0;border:1px solid var(--line);border-radius:var(--radius);background:transparent;cursor:pointer}
.burger span{display:block;width:21px;height:2px;background:var(--ink)}
.burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.is-open span:nth-child(2){opacity:0}
.burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
body.nav-open{overflow:hidden}

.mmenu{position:fixed;inset:0 0 0 auto;z-index:80;width:min(88vw,370px);display:flex;flex-direction:column;padding:1rem 1.25rem 1.5rem;overflow-y:auto;visibility:hidden;transform:translateX(100%);background:var(--dark-2);color:#fff}
.mmenu.is-open{visibility:visible;transform:translateX(0)}
.mmenu__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:.65rem}
.mmenu__logo{display:flex;width:138px;height:52px;overflow:hidden;border-radius:var(--radius);background:#fff}
.mmenu__logo img{width:100%;height:100%;object-fit:cover;object-position:left center}
.mclose{width:42px;height:42px;padding:0;border:1px solid rgba(255,255,255,.24);border-radius:var(--radius);background:transparent;color:#fff;font-size:1.5rem;line-height:1;cursor:pointer}
.mmenu__nav{display:flex;flex-direction:column;gap:0}
.mmenu .m-link{display:flex;align-items:center;justify-content:space-between;min-height:48px;padding:.65rem .25rem;border-bottom:1px solid rgba(255,255,255,.11);color:#edf4f4;font-family:"Chivo",sans-serif;font-size:1.08rem;font-weight:600}
.m-chevron{width:17px;height:17px;color:#8cb9bd}
.m-acc{border-bottom:1px solid rgba(255,255,255,.11)}
.m-acc summary.m-link{border-bottom:0;list-style:none;cursor:pointer}
.m-acc summary::-webkit-details-marker{display:none}
.m-acc summary::after{content:"+";color:#8cb9bd;font-size:1.3rem;font-weight:400}
.m-acc[open] summary::after{content:"\2212"}
.m-sublist{display:flex;flex-direction:column;padding:.15rem 0 .55rem .8rem}
.m-acc .m-sub{padding:.36rem 0;color:#b9ced1;font-size:.94rem;font-weight:500}
.m-acc .m-sub[aria-current="page"]{color:#fff}
.mmenu__cta{width:100%;margin-top:.95rem}
.mmenu__contact{margin-top:1rem;padding-top:.8rem;border-top:1px solid rgba(255,255,255,.11)}
.mmenu__row{display:flex;align-items:center;gap:.55rem;padding:.35rem 0;color:#c8d9db;font-size:.9rem;font-weight:600;overflow-wrap:anywhere}
.mmenu__row .ico{color:#82b8bd}
.mmenu__row--static{color:#9fb9bd;font-weight:500}
.mmenu__social{display:flex;align-items:center;gap:.6rem;margin-top:.55rem}
.mmenu__social .soc{border-color:rgba(255,255,255,.22);color:#fff}
.mmenu__social-l{color:#a9c1c4;font-size:.9rem}

.hero{position:relative;min-height:min(760px,calc(100dvh - 104px));display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;background:var(--dark)}
.hero__bg{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center 54%}
.hero__scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(10,25,29,.9) 0%,rgba(10,25,29,.64) 42%,rgba(10,25,29,.18) 76%,rgba(10,25,29,.08) 100%),linear-gradient(0deg,rgba(10,25,29,.64) 0%,rgba(10,25,29,0) 48%)}
.hero__content{position:relative;z-index:2;width:100%;padding-top:4.5rem;padding-bottom:3rem}
.hero h1{max-width:13ch;color:#fff;font-size:clamp(2.5rem,4.2vw,3.5rem);letter-spacing:-.02em}
.hero__lead{max-width:49ch;margin-top:1rem;color:#e4eded;font-size:clamp(1.05rem,1.45vw,1.18rem);line-height:1.55}
.hero__cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.6rem}
.hero .btn--ghost{border-color:rgba(255,255,255,.65);background:rgba(9,28,33,.26);color:#fff}
.hero .btn--ghost:hover{background:rgba(255,255,255,.13)}
.hero__proof{position:relative;z-index:2;border-top:1px solid rgba(255,255,255,.23);background:rgba(10,27,31,.72)}
.proof__grid{display:grid;grid-template-columns:1.15fr 1fr .85fr;gap:2rem;padding-top:1.05rem;padding-bottom:1.15rem}
.proof__item{min-width:0;color:#c5d6d8;font-size:.86rem;line-height:1.35}
.proof__item strong{display:block;margin-bottom:.15rem;color:#fff;font-family:"Chivo",sans-serif;font-size:.95rem;font-weight:700}
.proof__item span{display:block}

.hero--page{min-height:410px}
.hero--page .hero__content{padding-top:4.5rem;padding-bottom:3.6rem}
.hero--page h1{max-width:18ch;font-size:clamp(2.3rem,4vw,3.25rem)}
.hero--page .hero__lead{max-width:47ch}
.crumb{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.9rem;color:#c3d3d5;font-size:.84rem}
.crumb a:hover{color:#fff}
.crumb span{color:#9bb6ba}

.checks{display:flex;flex-direction:column;gap:.55rem}
.checks li{position:relative;padding-left:1.7rem;color:var(--ink);font-size:.98rem}
.checks li::before{content:"";position:absolute;top:.26rem;left:.2rem;width:.38rem;height:.7rem;border:solid var(--accent);border-width:0 2px 2px 0;transform:rotate(45deg)}
.checks--light li{color:#e0ebec}
.checks--light li::before{border-color:#87c2c7}

.service-mosaic{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:280px;gap:1rem}
.service-tile{position:relative;grid-column:span 5;min-width:0;overflow:hidden;border-radius:var(--radius-media);background:var(--dark);isolation:isolate}
.service-tile--lead{grid-column:span 7;grid-row:span 2}
.service-tile:nth-child(4){grid-column:span 4}
.service-tile--wide{grid-column:span 4}
.service-tile:nth-child(6){grid-column:span 4}
.service-tile::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(0deg,rgba(8,23,27,.82) 0%,rgba(8,23,27,.13) 70%)}
.service-tile img{width:100%;height:100%;object-fit:cover}
.service-tile__copy{position:absolute;right:0;bottom:0;left:0;z-index:2;display:block;padding:1.25rem 4.85rem 1.25rem 1.25rem;color:#fff}
.service-tile__copy strong{display:block;font-family:"Chivo",sans-serif;font-size:clamp(1.16rem,2vw,1.42rem);line-height:1.15}
.service-tile__copy span{display:block;max-width:33ch;margin-top:.25rem;color:#d8e4e5;font-size:.9rem;line-height:1.35}
.service-tile__copy::after{content:"\2192";position:absolute;right:1.2rem;bottom:1.2rem;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.78);border-radius:13px;background:#fff;color:#101b1d;font-size:22px;line-height:1;box-shadow:0 7px 18px rgba(0,0,0,.16);transition:transform .18s ease,background-color .18s ease}
.service-tile:hover .service-tile__copy::after,.service-tile:focus-visible .service-tile__copy::after{transform:translateX(3px);background-color:#edf4f4}
.service-tile:hover img{filter:saturate(1.06) contrast(1.03)}
.center-more,.gallery__more{display:flex;justify-content:center;margin-top:2rem}

.project-story{background:var(--dark);color:#fff}
.project-story__grid{display:grid;grid-template-columns:1.05fr .78fr .63fr;gap:1.35rem;align-items:stretch}
.project-story__copy{display:flex;min-width:0;flex-direction:column;align-items:flex-start;justify-content:center;padding-right:1rem}
.project-story__copy h2{max-width:13ch;color:#fff;font-size:clamp(2rem,3.6vw,2.75rem)}
.project-story__copy p{max-width:46ch;margin-top:1rem;color:#bfd0d2}
.project-story__copy .checks{margin-top:1.35rem}
.project-story__copy .btn{margin-top:1.6rem}
.project-story__video,.project-story__stills figure{margin:0;overflow:hidden;border-radius:var(--radius-media);background:var(--dark-2)}
.project-story__video{display:flex;flex-direction:column}
.project-story__video video{width:100%;height:100%;min-height:520px;object-fit:cover;aspect-ratio:9/16;background:#091519}
.project-story__video figcaption{padding:.75rem .85rem;color:#bed0d2;font-size:.84rem}
.project-story__stills{display:grid;grid-template-rows:1fr 1fr;gap:1.35rem}
.project-story__stills figure{min-height:0}
.project-story__stills img{width:100%;height:100%;object-fit:cover}

.project-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:225px;gap:1rem}
.project-grid .gitem{grid-column:span 4;aspect-ratio:auto}
.project-grid .project-grid__tall{grid-row:span 2}
.project-grid .project-grid__wide{grid-column:span 8}
.project-grid .gitem:last-child{grid-column:span 12}
.gitem{position:relative;display:block;min-width:0;overflow:hidden;border-radius:var(--radius-media);background:#dfe7e8;box-shadow:var(--shadow);cursor:pointer}
.gitem img{width:100%;height:100%;object-fit:cover}
.gitem::after{content:"";position:absolute;inset:0;background:rgba(9,30,34,.08);opacity:0}
.gitem:hover::after{opacity:1}

.why{background:var(--dark);color:#fff}
.why__grid{display:grid;grid-template-columns:1.02fr .98fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.why__grid>div,.split>div{min-width:0}
.why h2{max-width:15ch;color:#fff;font-size:clamp(2rem,3.7vw,2.75rem)}
.why__lead{max-width:56ch;margin-top:1rem;color:#c4d4d6;font-size:1.06rem}
.why .checks{margin-top:1.35rem}
.why .btn{margin-top:1.6rem}
.why__media{position:relative;height:clamp(440px,42vw,560px);min-height:0;overflow:hidden;border-radius:var(--radius-media)}
.why__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

.reviews__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:1rem}
.review-card{margin:0;padding:1.45rem 1.5rem;border:1px solid var(--line);border-radius:var(--radius-media);background:#fff;box-shadow:var(--shadow)}
.review-card--lead{grid-row:span 2;display:flex;flex-direction:column;justify-content:center;padding:2.2rem}
.review-card__stars{margin-bottom:.75rem;color:var(--gold);font-size:.86rem;letter-spacing:.1em}
.review-card__q{color:var(--ink);font-size:1.02rem;line-height:1.6}
.review-card--lead .review-card__q{font-size:1.2rem}
.review-card__by{margin-top:1rem;color:var(--accent-strong);font-family:"Chivo",sans-serif;font-size:.9rem;font-weight:700}

.ig__head{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:2rem}
.ig__head .sec-head{margin:0;text-align:left}
.ig__head .sec-head p{margin-left:0}
.ig-embed{min-height:120px}

.contact__grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:1.25rem;align-items:stretch}
.info-card{display:flex;flex-direction:column;padding:1.7rem;border-radius:var(--radius-media);background:var(--dark);color:#fff;box-shadow:var(--shadow)}
.info-card h3{margin-bottom:1.25rem;color:#fff;font-size:1.25rem}
.info-list{display:flex;flex-direction:column;gap:1rem}
.info-list li{display:flex;align-items:flex-start;gap:.8rem}
.info-ic{display:flex;align-items:center;justify-content:center;flex:0 0 auto;width:40px;height:40px;border-radius:var(--radius);background:rgba(255,255,255,.09);color:#8fc3c7}
.info-ic svg{width:18px;height:18px}
.info-l{display:block;margin-bottom:.08rem;color:#91b2b6;font-size:.8rem}
.info-v{color:#e6eeee;font-weight:600;line-height:1.4;overflow-wrap:anywhere}
.info-card a.info-v:hover{color:#fff}
.info-card__img{position:relative;flex:1 1 auto;min-height:190px;margin-top:1.35rem;overflow:hidden;border-radius:var(--radius-media)}
.info-card__img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.info-card__social{display:flex;align-items:center;gap:.6rem;margin-top:1rem;color:#aac1c4;font-size:.86rem}
.info-card__social .soc{border-color:rgba(255,255,255,.22);color:#fff}
.contact-form{max-width:100%;min-width:0;padding:1.7rem;border:1px solid var(--line);border-radius:var(--radius-media);background:#fff;box-shadow:var(--shadow)}
.contact-form .field{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.9rem}
.contact-form .row2{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.contact-form label{color:var(--ink);font-size:.87rem;font-weight:700}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;min-width:0;padding:.72rem .8rem;border:1px solid #b9c7c9;border-radius:var(--radius);background:#fbfdfd;color:var(--ink);font-size:.98rem}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#6e7d80}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{outline:2px solid var(--accent);outline-offset:1px;border-color:var(--accent)}
.contact-form textarea{min-height:128px;resize:vertical}
.contact-form button[type=submit]{width:100%;margin-top:.25rem}
.contact-form button[type=submit]:disabled{opacity:.62;cursor:wait}
#contact-form{max-width:100%;min-width:0}
.ms-recaptcha-notice{text-align:center}

.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.2rem);align-items:center}
.split--rev .split__media{order:-1}
.split__media{position:relative;height:clamp(440px,48vw,620px);min-height:0;overflow:hidden;border-radius:var(--radius-media);box-shadow:var(--shadow)}
.split__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.split h2{font-size:clamp(1.9rem,3.2vw,2.5rem)}
.split>div>p{max-width:62ch;margin-top:.9rem;color:var(--muted);font-size:1.03rem}
.split .checks{margin-top:1.25rem}
.stripgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.stripgrid .ph{min-width:0;overflow:hidden;border-radius:var(--radius-media);background:#dfe7e8;box-shadow:var(--shadow);aspect-ratio:4/3}
.stripgrid .ph img{width:100%;height:100%;object-fit:cover}

.ctaband{position:relative;overflow:hidden;background:var(--dark);color:#fff;text-align:center}
.ctaband__bg{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover}
.ctaband__scrim{position:absolute;inset:0;z-index:1;background:rgba(10,27,31,.82)}
.ctaband .wrap{position:relative;z-index:2}
.ctaband h2{color:#fff;font-size:clamp(1.9rem,3.4vw,2.55rem)}
.ctaband p{max-width:48ch;margin:.7rem auto 1.4rem;color:#c6d5d7}
.cta-wrap{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem}
.ctaband .btn--ghost{border-color:rgba(255,255,255,.6);color:#fff}
.ctaband .btn--ghost:hover{background:rgba(255,255,255,.12)}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.gallery-grid .gitem{aspect-ratio:4/3}
.gallery-grid--archive{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gallery-grid--archive .gitem{width:100%;aspect-ratio:4/5}
.gallery-grid--archive .gitem img{width:100%;height:100%;object-fit:cover}

.lightbox{position:fixed;inset:0;z-index:120;display:none;align-items:center;justify-content:center;padding:4vw;background:rgba(5,16,19,.94)}
.lightbox.is-open{display:flex}
.lb-img{max-width:92vw;max-height:86vh;border-radius:var(--radius);object-fit:contain;box-shadow:0 24px 70px rgba(0,0,0,.48)}
.lb-close,.lb-nav{position:absolute;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.3);border-radius:50%;background:rgba(10,30,34,.65);color:#fff;cursor:pointer}
.lb-close{top:18px;right:20px;width:46px;height:46px;font-size:1.8rem;line-height:1}
.lb-nav{top:50%;width:50px;height:50px;transform:translateY(-50%)}
.lb-nav svg{width:24px;height:24px}
.lb-prev{left:18px}
.lb-next{right:18px}

.footer{padding-top:3.1rem;padding-bottom:1.5rem;background:var(--dark-2);color:#bdd0d3}
.footer__grid{display:grid;grid-template-columns:1.35fr .9fr 1.15fr;gap:2rem}
.foot__logo{display:inline-flex;width:184px;height:72px;overflow:hidden;border-radius:var(--radius);background:#fff}
.foot__logo img{width:100%;height:100%;object-fit:cover;object-position:left center}
.foot__about{max-width:36ch;margin-top:.9rem;color:#9fb8bc;font-size:.91rem}
.foot__social{margin-top:1rem}
.footer .soc{border-color:rgba(255,255,255,.2);color:#fff}
.footer h4{margin-bottom:.8rem;color:#fff;font-size:.94rem}
.foot__list li{margin-bottom:.45rem;font-size:.9rem}
.foot__list--contact li{display:flex;align-items:center;gap:.5rem}
.foot__list--contact .ico{color:#83b9be}
.footer a:hover{color:#fff}
.foot__bottom{display:flex;flex-wrap:wrap;justify-content:space-between;gap:.6rem;margin-top:2rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.12);color:#89a8ad;font-size:.82rem}

@media(max-width:980px){
  .topnav,.nav-cta{display:none}
  .burger{display:flex}
  .hero{min-height:660px}
  .hero__content{padding-top:4rem;padding-bottom:2.5rem}
  .service-mosaic{grid-template-columns:repeat(2,1fr);grid-auto-rows:280px}
  .service-tile,.service-tile:nth-child(4),.service-tile--wide,.service-tile:nth-child(6){grid-column:span 1;grid-row:span 1}
  .service-tile--lead{grid-column:span 2;grid-row:span 2}
  .project-story__grid{grid-template-columns:1fr 1fr}
  .project-story__copy{grid-column:span 2;padding:0 0 1rem}
  .project-story__copy h2{max-width:18ch}
  .project-story__video video{min-height:600px}
  .project-grid{grid-auto-rows:210px}
  .project-grid .gitem,.project-grid .project-grid__wide{grid-column:span 6}
  .project-grid .gitem:last-child{grid-column:span 12}
  .why__grid,.split,.contact__grid{grid-template-columns:1fr}
  .why__media,.split__media{height:min(68vw,560px);min-height:0}
  .why__media{order:-1}
  .reviews__grid{grid-template-columns:1fr}
  .review-card--lead{grid-row:auto}
  .footer__grid{grid-template-columns:1fr 1fr}
  .gallery-grid--archive{grid-template-columns:repeat(3,1fr)}
  .info-card__img{display:none}
}

@media(max-width:780px){
  .utilbar__item--mail,.utilbar__item--hours,.utilbar .soc span{display:none}
  .utilbar__right{margin-left:auto}
}

@media(max-width:680px){
  :root{--sec-y:4rem}
  body{font-size:16px}
  .wrap{padding-left:18px;padding-right:18px}
  .utilbar__in{gap:.5rem}
  .nav{min-height:68px}
  .brand{width:138px;height:54px}
  .hero{min-height:620px}
  .hero__bg{object-position:58% center}
  .hero h1{font-size:2.45rem;line-height:1.08}
  .hero__lead{font-size:1rem}
  .hero__cta{flex-direction:column;align-items:stretch;max-width:310px}
  .hero__cta .btn{width:100%}
  .hero__proof{background:rgba(10,27,31,.82)}
  .proof__grid{grid-template-columns:1fr;gap:.65rem;padding-top:.85rem;padding-bottom:.9rem}
  .proof__item{padding-top:.55rem;border-top:1px solid rgba(255,255,255,.14)}
  .proof__item:first-child{padding-top:0;border-top:0}
  .proof__item span{display:none}
  .hero--page{min-height:355px}
  .hero--page .hero__content{padding-top:3.4rem;padding-bottom:2.5rem}
  .hero--page h1{font-size:2.25rem}
  .sec-head{text-align:left}
  .sec-head h2{font-size:2rem}
  .sec-head p{margin-left:0}
  .service-mosaic{grid-template-columns:1fr;grid-auto-rows:260px}
  .service-tile,.service-tile--lead,.service-tile:nth-child(4),.service-tile--wide,.service-tile:nth-child(6){grid-column:span 1;grid-row:span 1}
  .service-tile--lead{min-height:0}
  .service-tile__copy{padding:1.15rem 4.5rem 1.15rem 1.15rem}
  .service-tile__copy::after{right:1.05rem;bottom:1.05rem;width:40px;height:40px;border-radius:12px}
  .project-story__grid{grid-template-columns:1fr}
  .project-story__copy{grid-column:auto}
  .project-story__video video{min-height:0;aspect-ratio:9/16}
  .project-story__stills{grid-template-columns:1fr 1fr;grid-template-rows:auto;gap:.8rem}
  .project-story__stills figure{aspect-ratio:3/4}
  .project-grid{grid-template-columns:1fr 1fr;grid-auto-rows:190px;gap:.75rem}
  .project-grid .gitem,.project-grid .project-grid__wide,.project-grid .gitem:last-child{grid-column:span 1;grid-row:span 1}
  .project-grid .project-grid__tall{grid-row:span 2}
  .project-grid .gitem:last-child{grid-column:span 2}
  .why__media,.split__media{height:420px;min-height:0}
  .reviews__grid{gap:.8rem}
  .review-card--lead{padding:1.5rem}
  .review-card--lead .review-card__q{font-size:1.05rem}
  .ig__head{align-items:flex-start;flex-direction:column}
  .contact-form .row2{grid-template-columns:1fr}
  .stripgrid{grid-template-columns:1fr}
  .stripgrid .ph{aspect-ratio:4/3}
  .gallery-grid{grid-template-columns:1fr}
  .gallery-grid--archive{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr}
  .foot__bottom{justify-content:flex-start}
  .cta-wrap{flex-direction:column;align-items:center}
  .cta-wrap .btn{width:100%;max-width:330px}
  .lb-nav{width:42px;height:42px}
  .lb-prev{left:8px}
  .lb-next{right:8px}
}

@media(max-width:430px){
  .why__media,.split__media{height:360px}
  .project-grid{grid-auto-rows:165px}
  .project-story__stills{grid-template-columns:1fr}
  .mmenu{width:100%}
}

@media(hover:none){
  .service-tile:hover img{filter:none}
  .gitem:hover::after{opacity:0}
}

@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto;transition:none}
  video[autoplay]{display:block}
}
