/* ─────────────────────────────────────────────
   Variables & Reset
──────────────────────────────────────────── */
:root {
    --navy:     #1a2236;
    --navy-mid: #232c3f;
    --teal:     #2b9cc4;
    --teal-dk:  #1e7a9e;
    --white:    #ffffff;
    --off-white:#f5f6f8;
    --light-gray:#ebebeb;
    --text:     #333333;
    --muted:    #777777;
    --line:     #dedede;
    --hdr-h:    90px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

html{scroll-behavior:smooth;font-size:16px;}
body{
    font-family:"Open Sans",Arial,sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.65;
    overflow-x:hidden;
}
img{display:block;width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
svg{display:block;}

.container{
    width:min(1200px,92vw);
    margin:0 auto;
}


/* ─────────────────────────────────────────────
   HEADER  –  always white; 30px from top in default state
──────────────────────────────────────────── */
.site-header{
    position:fixed;
    /* 30px gap above the header so the hero image peeks above */
    top:40px; left:0; right:0;
    z-index:200;
    height:var(--hdr-h);
    background:#fff;
    box-shadow:0 1px 6px rgba(0,0,0,.09);
    overflow:visible;
    transition:top .3s ease, box-shadow .3s ease;
}
/* When scrolled – header slides flush to very top */
.site-header.is-scrolled{
    top:0;
    box-shadow:0 2px 18px rgba(0,0,0,.14);
}

.hdr-inner{
    max-width:1450px;
    margin:0 auto;
    padding:0 2vw;
    height:100%;
    display:flex;
    align-items:center;
    gap:0;
    overflow:visible;
}

/* ── Logo link wrapper ── */
.logo{
    position:relative;
    display:flex;
    align-items:center;
    flex-shrink:0;
    overflow:visible;
    text-decoration:none;
    z-index:2;
    margin-right:10px;
    transition:opacity .2s;
}
.logo:hover{ opacity:.88; }
.logo:focus{ outline:none; }

/* In sticky state the logo no longer needs to overflow the header */
.site-header.is-scrolled .logo{
    overflow:hidden;
    margin-right:20px;
}

/* ── Default (normal) angled logo ── */
.logo-default {
    display: block;
    margin: 0;
    position: relative;
    z-index: 2;
    width: auto;
    height: auto;
    max-width: 150px;
    transition: opacity .25s ease;
}
/* ── Sticky horizontal logo – hidden until header is scrolled ── */
.logo-sticky {
    display: none;
    width: auto;
    height: auto;
    max-width: 150px;
    transition: opacity .25s ease;
}

/* When scrolled: swap logos */
.site-header.is-scrolled .logo-default{
    display:none;
}
.site-header.is-scrolled .logo-sticky{
    display:block;
}

/* ── Main nav container ── */
.main-nav{
    display:flex;
    align-items:stretch;
    height:100%;
    margin-left:auto;
    overflow:visible;
}

/* ── Nav item wrapper ── */
.nav-item{
    position:relative;
    display:flex;
    align-items:stretch;
}
.nav-item > a{
    display:flex;
    align-items:center;
    gap:5px;
    /* Dark text on white header */
    color:#444;
    font-size:11.5px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.1em;
    padding:0 13px;
    white-space:nowrap;
    text-decoration:none;
    transition:background .2s, color .2s;
    cursor:pointer;
}

/* Chevron for dropdown parents */
.has-dropdown > a::after{
    content:"";
    display:inline-block;
    width:5px;
    height:5px;
    border-right:1.5px solid currentColor;
    border-bottom:1.5px solid currentColor;
    transform:rotate(45deg) translateY(-2px);
    transition:transform .2s, border-color .2s;
    flex-shrink:0;
}
.has-dropdown:hover > a::after{
    transform:rotate(-135deg) translateY(-2px);
}

/* Hover & active – teal fill, WHITE text */
.nav-item:hover > a,
.nav-item.is-active > a{
    background:var(--teal);
    color:#fff;
}
.nav-item:hover > a::after,
.nav-item.is-active > a::after{
    border-color:#fff;
}

/* ── Dropdown panel (main nav + Locations flyout columns) ── */
.nav-dropdown,
.nav-item-locations .nav-loc-sub{
    min-width:240px;
    background:#fff;
    box-shadow:0 6px 24px rgba(0,0,0,.14);
    border-top:2px solid var(--teal);
}
.nav-dropdown{
    position:absolute;
    top:var(--hdr-h);
    left:0;
    z-index:300;
    opacity:0;
    visibility:hidden;
    transform:translateY(-6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-item:hover .nav-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.nav-dropdown a{
    display:block;
    padding:11px 18px;
    color:#444;
    font-size:13px;
    font-weight:400;
    text-transform:none;
    letter-spacing:0;
    text-decoration:none;
    border-bottom:1px solid #f0f0f0;
    transition:background .18s, color .18s, padding-left .18s;
    white-space:nowrap;
}
.nav-dropdown a:last-child{border-bottom:none;}
.nav-dropdown a:hover{
    background:var(--teal);
    color:#fff;
    padding-left:24px;
}

/* ── Locations: state column under trigger; cities & pages fly out to the RIGHT ── */
.nav-item-locations .nav-dropdown-locations{
    left:0;
    right:auto;
    min-width:240px;
    max-width:min(320px, calc(100vw - 32px));
    padding:0;
    overflow:visible;
}
.nav-item-locations .nav-dropdown-locations > a{
    white-space:normal;
}
.nav-loc-list{
    list-style:none;
    margin:0;
    padding:0;
}
.nav-loc-item--depth1,
.nav-loc-item--depth2{
    position:relative;
    list-style:none;
}
/* Match .nav-dropdown a — state & city rows (non-links); flex for right caret */
.nav-loc-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:11px 14px 11px 18px;
    color:#444;
    font-size:13px;
    font-weight:400;
    text-transform:none;
    letter-spacing:0;
    border-bottom:1px solid #f0f0f0;
    cursor:default;
    transition:background .18s, color .18s, padding-left .18s;
    word-break:break-word;
}
.nav-loc-label{
    flex:1;
    min-width:0;
}
/* Right-pointing caret = next column opens to the right */
.nav-loc-item--has-sub > .nav-loc-row::after{
    content:"";
    flex-shrink:0;
    width:6px;
    height:6px;
    margin-left:2px;
    border-right:2px solid #9a9a9a;
    border-top:2px solid #9a9a9a;
    transform:rotate(45deg);
    opacity:.75;
}
.nav-item-locations .nav-loc-item--has-sub:hover > .nav-loc-row::after,
.nav-item-locations .nav-loc-item--has-sub:focus-within > .nav-loc-row::after{
    border-right-color:#fff;
    border-top-color:#fff;
    opacity:1;
}
.nav-loc-list--root > .nav-loc-item--depth1:last-child > .nav-loc-row{
    border-bottom:none;
}
.nav-item-locations .nav-loc-item--depth1:hover > .nav-loc-row,
.nav-item-locations .nav-loc-item--depth1:focus-within > .nav-loc-row{
    background:var(--teal);
    color:#fff;
    padding-left:24px;
}
.nav-loc-list--sub > .nav-loc-item--depth2:last-child > .nav-loc-row{
    border-bottom:none;
}
.nav-item-locations .nav-loc-item--depth2:hover > .nav-loc-row,
.nav-item-locations .nav-loc-item--depth2:focus-within > .nav-loc-row{
    background:var(--teal);
    color:#fff;
    padding-left:24px;
}
/* Flyout columns to the right; cities panel never forces a scrollbar (pages panel can scroll) */
.nav-loc-sub{
    display:none;
    position:absolute;
    top:0;
    left:100%;
    right:auto;
    margin-left:2px;
    padding:0;
    z-index:310;
    max-width:min(320px, calc(100vw - 40px));
    overflow:visible;
}
/* City list: height follows content (no empty scroll track) */
.nav-loc-sub--cities{
    max-height:none;
    overflow:visible;
}
/* Page list: scroll when many links */
.nav-loc-sub--pages{
    z-index:320;
    max-height:min(72vh, 520px);
    overflow-x:hidden;
    overflow-y:auto;
    overscroll-behavior:contain;
    scrollbar-width:thin;
    scrollbar-color:rgba(0,0,0,.22) transparent;
}
.nav-loc-sub--pages::-webkit-scrollbar{
    width:6px;
}
.nav-loc-sub--pages::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.2);
    border-radius:6px;
}
.nav-loc-sub--pages::-webkit-scrollbar-track{
    background:transparent;
}
.nav-item-locations .nav-loc-item--depth1:hover > .nav-loc-sub--cities,
.nav-item-locations .nav-loc-item--depth1:focus-within > .nav-loc-sub--cities{
    display:block;
}
.nav-item-locations .nav-loc-item--depth2:hover > .nav-loc-sub--pages,
.nav-item-locations .nav-loc-item--depth2:focus-within > .nav-loc-sub--pages{
    display:block;
}
.nav-loc-list--leaf > li{
    list-style:none;
}
/* Match .nav-dropdown a + :hover exactly */
.nav-dropdown-locations .nav-loc-link{
    display:block;
    padding:11px 18px;
    color:#444;
    font-size:13px;
    font-weight:400;
    text-transform:none;
    letter-spacing:0;
    text-decoration:none;
    white-space:normal;
    word-break:break-word;
    border-bottom:1px solid #f0f0f0;
    transition:background .18s, color .18s, padding-left .18s;
}
.nav-dropdown-locations .nav-loc-list--leaf > li:last-child .nav-loc-link{
    border-bottom:none;
}
.nav-dropdown-locations .nav-loc-link:hover{
    background:var(--teal);
    color:#fff;
    padding-left:24px;
}
.nav-loc-empty{
    display:block;
    padding:11px 18px;
    font-size:13px;
    font-weight:400;
    color:#888;
    font-style:italic;
    line-height:1.45;
    word-break:break-word;
    border-bottom:none;
}

/* ── Phone number link ── */
.nav-phone{
    display:flex;
    align-items:center;
    color:#444;
    font-size:12px;
    font-weight:700;
    letter-spacing:.04em;
    padding:0 13px;
    white-space:nowrap;
    text-decoration:none;
    transition:color .2s;
}
.nav-phone:hover{ color:var(--teal); }

/* ── CTA button ── */
.nav-cta{
    display:flex;
    align-items:center;
    background:white;
    color:#000000 !important;
    font-size:11.5px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.1em;
    padding:0 20px;
    margin-left:6px;
    white-space:nowrap;
    text-decoration:none;
    transition:background .2s;
    flex-shrink:0;
}
.nav-cta:hover{ background:var(--teal-dk); }

/* ── Social icons ── */
.hdr-social{
    display:flex;
    align-items:center;
    gap:5px;
    margin-left:14px;
}
.social-icon{
    color:rgba(0,0,0,.4);
    width:26px; height:26px;
    display:grid;
    place-items:center;
    transition:color .2s;
}
.social-icon svg{width:14px;height:14px;}
.social-icon:hover{ color:var(--teal); }

/* ── Hamburger (dark bars on white header) ── */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    background:transparent;
    border:none;
    padding:6px;
    margin-left:auto;
}
.hamburger span{
    display:block;
    width:24px; height:2px;
    background:var(--navy);
    border-radius:2px;
    transition:.3s;
}
.hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.is-open span:nth-child(2){opacity:0;}
.hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}


/* ─────────────────────────────────────────────
   HERO – split left text / right diamond grid
──────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   HERO – full-width fade slider
──────────────────────────────────────────── */
.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:560px;
    overflow:hidden;
}

/* Slider track */
.hero-slider{
    position:relative;
    width:100%;
    height:100%;
}

/* Individual slides */
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    z-index:0;
    transition:opacity .9s ease;
}
.hero-slide.is-active{
    opacity:1;
    z-index:1;
}

/* Background photo with Ken-Burns zoom */
.hero-slide-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center center;
    transform:scale(1.07);
    transition:transform 7s ease;
}
.hero-slide.is-active .hero-slide-bg{
    transform:scale(1);
}

/* Dark gradient overlay (left heavy so text is legible) */
.hero-slide-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        105deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 75%,
        transparent    100%
    );
    z-index:1;
}

/* Text content – pushed below header (72px) + top offset (30px) = 102px */
.hero-slide-content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 8vw;
    color:var(--white);
    padding-top:calc(var(--hdr-h) + 30px);
}
.hero-eyebrow{
    font-family:"Open Sans",sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--teal);
    margin-bottom:10px;
    opacity:0;
    transform:translateY(14px);
    transition:opacity .6s ease .3s, transform .6s ease .3s;
}
.hero-slide.is-active .hero-eyebrow{
    opacity:1;
    transform:translateY(0);
}
.hero-number{
    font-family:"Raleway",sans-serif;
    font-weight:900;
    font-size:clamp(72px,9vw,130px);
    line-height:1;
    color:var(--white);
    opacity:0;
    transform:translateY(18px);
    transition:opacity .65s ease .4s, transform .65s ease .4s;
}
.hero-slide.is-active .hero-number{
    opacity:1;
    transform:translateY(0);
}
.hero-heading{
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:clamp(26px,3.6vw,52px);
    line-height:1.1;
    margin-top:4px;
    text-transform:uppercase;
    opacity:0;
    transform:translateY(18px);
    transition:opacity .65s ease .55s, transform .65s ease .55s;
}
.hero-slide.is-active .hero-heading{
    opacity:1;
    transform:translateY(0);
}
.hero-heading span{color:var(--teal);}

.hero-cta{
    display:inline-block;
    margin-top:28px;
    padding:13px 34px;
    background:var(--teal);
    color:#fff;
    font-family:"Open Sans",sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    border:2px solid var(--teal);
    transition:background .25s, color .25s, border-color .25s;
    align-self:flex-start;
    opacity:0;
    transform:translateY(14px);
    transition:opacity .6s ease .7s, transform .6s ease .7s,
               background .25s ease, color .25s ease;
}
.hero-slide.is-active .hero-cta{
    opacity:1;
    transform:translateY(0);
}
.hero-cta:hover{
    background:transparent;
    color:#fff;
    border-color:#fff;
}

/* Prev / Next arrows */
.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    background:rgba(255,255,255,.15);
    border:2px solid rgba(255,255,255,.45);
    color:#fff;
    width:48px; height:48px;
    border-radius:50%;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    transition:background .2s, border-color .2s;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(4px);
}
.hero-arrow:hover{
    background:var(--teal);
    border-color:var(--teal);
}
.hero-arrow--prev{ left:24px; }
.hero-arrow--next{ right:24px; }

/* Dot navigation */
.hero-dots{
    position:absolute;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
    display:flex;
    gap:10px;
}
.hero-dot{
    width:10px; height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    border:none;
    cursor:pointer;
    transition:background .25s, transform .25s;
    padding:0;
}
.hero-dot.is-active{
    background:#fff;
    transform:scale(1.3);
}


/* ─────────────────────────────────────────────
   ABOUT / INTRO SECTION
──────────────────────────────────────────── */
.about-section{
    background:var(--white);
    padding:80px 0;
}
.about-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.about-text h2{
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:clamp(20px,2.4vw,28px);
    color:var(--navy);
    margin-bottom:16px;
    line-height:1.2;
}
.about-text p{
    font-size:14px;
    color:var(--muted);
    margin-bottom:12px;
}
.about-text strong{color:var(--teal);}
.read-more{
    display:inline-block;
    margin-top:8px;
    color:var(--teal);
    font-weight:700;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    transition:color .2s;
}
.read-more:hover{color:var(--teal-dk);}

/* ── 3-photo collage: Design / Beautiful / Craftsmanship ── */
.about-imgs{
    position:relative;
    width:100%;
    height:520px;
}

/* ── Shared card ── */
.about-img{
    position:absolute;
    overflow:hidden;
    box-shadow:0 10px 36px rgba(0,0,0,.28);
    transition:transform .38s ease, box-shadow .38s ease, z-index 0s;
}
.about-img:hover{
    transform:scale(1.025) translateY(-4px);
    box-shadow:0 20px 52px rgba(0,0,0,.38);
    z-index:20 !important;
}
.about-img img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .55s ease;
}
.about-img:hover img{ transform:scale(1.08); }

/* ── Dark overlay (used on Craftsmanship card) ── */
.about-img-overlay{
    position:absolute;
    inset:0;
    background:rgba(12,22,46,.52);
    z-index:1;
    pointer-events:none;
}

/* ── Label ── */
.about-img-label{
    position:absolute;
    font-family:"Raleway",sans-serif;
    font-weight:900;
    font-size:clamp(20px,2.2vw,30px);
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#fff;
    text-shadow:0 2px 12px rgba(0,0,0,.6);
    z-index:2;
    line-height:1;
}

/* ── Card 1 – DESIGN: top-centre, medium ── */
.about-img--1{
    width:56%;
    height:52%;
    top:0;
    left:14%;
    z-index:3;
}
.about-img--1 .about-img-label{
    top:22px;
    left:22px;
}

/* ── Card 2 – BEAUTIFUL: bottom-left, smaller ── */
.about-img--2{
    width:40%;
    height:44%;
    bottom:0;
    left:0;
    z-index:2;
}
.about-img--2 .about-img-label{
    bottom:18px;
    left:16px;
}

/* ── Card 3 – CRAFTSMANSHIP: right side, dominant, dark overlay ── */
.about-img--3{
    width:54%;
    height:82%;
    top:8%;
    right:0;
    z-index:1;
}
.about-img--3 .about-img-label{
    bottom:28px;
    right:22px;
    text-align:right;
}


/* ─────────────────────────────────────────────
   SERVICES SECTION
──────────────────────────────────────────── */
.services-section{
    background:#f2f2f2;
    padding:70px 0 80px;
}

.section-head{
    margin-bottom:36px;
}
.section-head h3{
    font-family:"Open Sans",sans-serif;
    font-weight:700;
    font-size:22px;
    color:#333;
    margin-bottom:4px;
}
.section-head p{
    color:var(--muted);
    font-size:14px;
}

/* 2-column grid */
.services-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    background:transparent;
}

/* Each card: icon LEFT, text RIGHT */
.svc-card{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:30px 36px 30px 0;
    background:transparent;
    position:relative;
    /* right column cards get left padding */
}
/* right-column cards (even) */
.svc-card:nth-child(even){
    padding-left:48px;
    border-left:1px solid rgba(0,0,0,.08);
}
/* left-column cards */
.svc-card:nth-child(odd){
    padding-right:48px;
}
/* horizontal divider between row 1 and row 2 */
.svc-card--row2{
    border-top:1px solid rgba(0,0,0,.1);
    padding-top:36px;
    margin-top:6px;
}

/* icon box */
.svc-icon{
    flex-shrink:0;
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ccc;
    background:#fff;
    border-radius:2px;
    transition:border-color .25s;
}
.svc-card:hover .svc-icon{border-color:var(--teal);}
.svc-icon svg{
    width:60px; height:60px;
    transition:stroke .25s;
}
.svc-card:hover .svc-icon svg{stroke:var(--teal);}

/* text side */
.svc-body{flex:1;}
.svc-card h4{
    font-family:"Open Sans",sans-serif;
    font-weight:700;
    font-size:17px;
    color:#222;
    margin-bottom:10px;
    line-height:1.25;
}
.svc-card p{
    font-size:13.5px;
    color:#666;
    line-height:1.65;
    margin-bottom:12px;
}
.svc-link{
    display:inline-block;
    font-size:13px;
    font-weight:400;
    color:var(--teal);
    transition:color .2s;
    letter-spacing:0;
    text-transform:none;
}
.svc-link:hover{
    color:var(--teal-dk);
    text-decoration:underline;
}

/* responsive: collapse to 1-col on small screens */
@media(max-width:700px){
    .services-grid{grid-template-columns:1fr;}
    .svc-card:nth-child(even){
        padding-left:0;
        border-left:none;
    }
    .svc-card--row2{border-top:1px solid rgba(0,0,0,.1);}
}


/* ─────────────────────────────────────────────
   RECENT PROJECTS – full-width staggered diamond cluster
──────────────────────────────────────────── */
.projects-section{
    background:var(--white);
    padding:70px 0 80px;
}

/* Cluster outer – full width of container; JS sets height dynamically */
.proj-cluster-outer{
    position:relative;
    width:100%;
    height:500px;   /* fallback before JS runs */
    overflow:visible;
    margin-top:16px;
}

/* 980 × 500 desktop canvas (JS scales to container width on large screens) */
.proj-cluster{
    position:relative;
    width:980px;
    height:500px;
    transform-origin:top left;
}

/* SVG path overlay */
.proj-path-svg{
    position:absolute;
    top:-51px;
    left:-90px;
    width:1026px;
    height:540px;
    pointer-events:none;
    z-index:0;
}

/* Location pins – behind diamonds */
.proj-pin{
    position:absolute;
    z-index:0;
    pointer-events:none;
}
.proj-pin-start{ left: 23px; top: 21px; }
.proj-pin-end  { left:763px; top:400px; }

/* ── Diamond base ── */
.pd{
    position:absolute;
    transform:rotate(45deg);
    overflow:hidden;
    cursor:pointer;
    z-index:1;
    box-shadow:0 0 0 7px #fff;
    transition:box-shadow .3s ease;
}
.pd:hover{ box-shadow:0 0 0 7px #fff, 0 14px 36px rgba(0,0,0,.22); }
.pd-inner{
    width:100%; height:100%;
    transform:rotate(-45deg) scale(1.42);
    transform-origin:50% 50%;
}
.pd-inner img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}
.pd-inner .pd-placeholder{
    display:block;
    width:100%;
    height:100%;
    background:linear-gradient(145deg,#e8ecf1 0%,#dce2e9 55%,#cfd6df 100%);
}
.pd:hover .pd-inner img{ transform:scale(1.1); }

/* Desktop diamond positions – exact large-screen values */
.pd-1{ width:180px; height:180px; left: 15px; top:100px; }
.pd-2{ width:228px; height:228px; left:289px; top: 76px; }
.pd-3{ width:152px; height:152px; left:510px; top:-15px; }
.pd-4{ width:228px; height:228px; left:650px; top: 71px; }
.pd-5{ width:228px; height:228px; left:468px; top:254px; }
.pd-6{ width:165px; height:165px; left:814px; top:276px; z-index:2; }

/* Staggered entrance animation (triggered by .is-visible on .proj-cluster) */
.proj-cluster .pd{
    opacity:0;
    transition:opacity .65s ease;
}
.proj-cluster.is-visible .pd-1{ opacity:1; transition-delay:.05s; }
.proj-cluster.is-visible .pd-2{ opacity:1; transition-delay:.16s; }
.proj-cluster.is-visible .pd-3{ opacity:1; transition-delay:.27s; }
.proj-cluster.is-visible .pd-4{ opacity:1; transition-delay:.38s; }
.proj-cluster.is-visible .pd-5{ opacity:1; transition-delay:.49s; }
.proj-cluster.is-visible .pd-6{ opacity:1; transition-delay:.60s; }

/* Description text + button – below cluster, left-aligned */
.proj-text{
    width:40%;
    padding-top:22px;
}
.proj-text p{
    font-size:13.5px;
    color:var(--muted);
    line-height:1.75;
    margin-bottom:20px;
}
.btn-view-projects{
    display:inline-block;
    border:1px solid #aaa;
    color:var(--teal);
    font-size:13px;
    font-weight:600;
    padding:9px 22px;
    transition:border-color .2s, background .2s, color .2s;
}
.btn-view-projects:hover{
    border-color:var(--teal);
    background:var(--teal);
    color:#fff;
}


/* ─────────────────────────────────────────────
   TESTIMONIALS  –  full-width photo + right overlay
──────────────────────────────────────────── */
.testimonials-section{
    position:relative;
    width:100%;
    min-height:420px;
    overflow:hidden;
    display:flex;
    align-items:stretch;
}

/* Full-width background photo */
.testi-bg{
    position:absolute;
    inset:0;
    z-index:0;
}
.testi-bg img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:center center;
}
/* Right-side fade so text panel is readable */
.testimonials-section::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        to right,
        transparent 0%,
        transparent 30%,
        rgba(255,255,255,.6)  48%,
        rgba(255,255,255,.88) 60%,
        rgba(255,255,255,.97) 72%
    );
}

/* Right quote panel */
.testi-panel{
    position:relative;
    z-index:2;
    margin-left:auto;
    width:46%;
    padding:44px 56px 44px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Large decorative opening quote */
.tq-open{
    display:block;
    font-family:Georgia,serif;
    font-size:88px;
    line-height:0.7;
    color:#bbb;
    margin-bottom:10px;
    letter-spacing:-4px;
    user-select:none;
}

/* Slides */
.testi-slides{position:relative;}
.testi-slide{
    display:none;
}
.testi-slide.is-active{
    display:block;
    animation:tqFadeIn .45s ease;
}
@keyframes tqFadeIn{
    from{opacity:0; transform:translateY(6px);}
    to{opacity:1; transform:translateY(0);}
}

/* Quote text */
.tq-text{
    font-family:"Open Sans",sans-serif;
    font-size:13.5px;
    color:#333;
    line-height:1.85;
    margin-bottom:18px;
    text-align:center;
}
.tq-readmore{
    color:var(--teal);
    font-size:13px;
    transition:color .2s;
}
.tq-readmore:hover{color:var(--teal-dk);}

/* Closing decorative quote */
.tq-close{
    display:block;
    font-family:Georgia,serif;
    font-size:88px;
    line-height:0.5;
    color:#bbb;
    text-align:right;
    margin-top:2px;
    margin-bottom:14px;
    letter-spacing:-4px;
    user-select:none;
}

/* Avatar + name */
.tq-author{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    margin-bottom:14px;
}
.tq-avatar{
    width:44px; height:44px;
}
.tq-avatar svg{width:100%;height:100%;}
.tq-name{
    font-size:13px;
    font-weight:700;
    color:#333;
    letter-spacing:.03em;
}

/* Dots */
.testi-dots{
    display:flex;
    justify-content:center;
    gap:7px;
}
.testi-dot{
    width:10px; height:10px;
    border-radius:50%;
    background:#ccc;
    border:none;
    cursor:pointer;
    padding:0;
    transition:background .2s;
}
.testi-dot.is-active{background:var(--teal);}
.testi-dot:hover{background:#aaa;}


/* ─────────────────────────────────────────────
   TRUST LOGOS  –  with arrow carousel
──────────────────────────────────────────── */
.trust-section{
    background:var(--white);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:18px 0;
}

/* Boxed inner row — same max-width as every other section */
.trust-inner{
    display:flex;
    align-items:center;
    gap:0;
}

.trust-arrow{
    flex-shrink:0;
    width:36px; height:36px;
    border:1px solid var(--line);
    border-radius:50%;
    background:var(--white);
    color:#999;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    display:grid;
    place-items:center;
    transition:color .2s, border-color .2s;
    user-select:none;
}
.trust-arrow:hover{ color:#555; border-color:#aaa; }

/* Scrollable track */
.trust-track-wrap{
    flex:1;
    overflow:hidden;
    margin:0 12px;
}
.trust-track{
    display:flex;
    align-items:center;
    justify-content:center;   /* center logos when they all fit */
    gap:0;
    transition:transform .4s ease;
}
.trust-logo{
    flex-shrink:0;
    width:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:.65;
    transition:opacity .2s;
    padding:4px 10px;
}
.trust-logo:hover{ opacity:1; }
.trust-logo svg{
    width:90px;
    height:56px;
}


/* ─────────────────────────────────────────────
   BLOG
──────────────────────────────────────────── */
.blog-section{
    background:#fff;
    padding:80px 0;
}
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:10px;
}

/* Card shell */
.blog-card{
    background:#fff;
    overflow:hidden;
    transition:transform .28s ease, box-shadow .28s ease;
}
.blog-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.09);
}

/* Thumbnail */
.blog-img-wrap{
    display:block;
    position:relative;
    overflow:hidden;
    aspect-ratio:16/9;
}
.blog-img-wrap img{
    width:100%; height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}
.blog-card:hover .blog-img-wrap img{ transform:scale(1.05); }
.blog-overlay{
    position:absolute;
    inset:0;
    background:var(--teal);
    opacity:0;
    transition:opacity .3s ease;
}
.blog-card:hover .blog-overlay{ opacity:.12; }

/* Body */
.blog-body{
    padding:16px 18px 12px;
}

/* Meta row: date badge + title side-by-side */
.blog-meta{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:12px;
}

/* Teal date badge */
.blog-date-badge{
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:42px;
    min-height:46px;
    background:var(--teal);
    color:#fff;
    line-height:1.1;
    padding:5px 4px;
}
.blog-day{
    font-family:"Raleway",sans-serif;
    font-weight:900;
    font-size:20px;
    display:block;
}
.blog-month{
    font-family:"Open Sans",sans-serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    display:block;
}

/* Title */
.blog-card h4{
    font-family:"Open Sans",sans-serif;
    font-weight:700;
    font-size:14.5px;
    color:#1a1a1a;
    line-height:1.45;
    margin:0;
}
.blog-card h4 a{ color:inherit; }
.blog-card h4 a:hover{ color:var(--teal); }

/* Excerpt */
.blog-excerpt{
    font-size:13px;
    color:#666;
    line-height:1.7;
    margin-bottom:14px;
}

/* Read More link */
.blog-readmore{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    color:var(--teal);
    transition:color .2s;
}
.blog-readmore:hover{
    color:var(--teal-dk);
    text-decoration:underline;
}


/* ─────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.site-footer{
    background:#1e2535;
    color:rgba(255,255,255,.55);
    position:relative;
}

/* ── "CONTACT US" teal tab at very top of footer ── */
.footer-contact-tab{
    background:#1e2535;
    padding-top:0;
}
.footer-contact-tab .container{
    display:flex;
}
.btn-contact-tab{
    display:inline-block;
    background:var(--teal);
    color:#fff;
    font-family:"Open Sans",sans-serif;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    padding:9px 22px;
    /* sits above the footer, overlapping the section above */
    margin-top:-20px;
    position:relative;
    z-index:5;
    transition:background .2s;
}
.btn-contact-tab:hover{ background:var(--teal-dk); }

/* ── Main 4-column grid ── */
.footer-main{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1.4fr;
    gap:40px;
    padding:36px 0 48px;
}
.footer-brand-logo{
    grid-column:1 / -1;
}
.footer-brand-logo-img{
    max-height:72px;
    width:auto;
    display:block;
}

/* Column headings */
.footer-col h5{
    color:#fff;
    font-family:"Open Sans",sans-serif;
    font-weight:700;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.14em;
    margin-bottom:18px;
}

/* Link list with teal › arrow prefix */
.footer-col ul{
    display:flex;
    flex-direction:column;
    gap:9px;
}
.footer-col ul li a{
    font-size:13px;
    color:rgba(255,255,255,.55);
    transition:color .2s;
    display:flex;
    align-items:center;
    gap:6px;
}
.footer-col ul li a::before{
    content:"›";
    color:var(--teal);
    font-size:16px;
    line-height:1;
    flex-shrink:0;
}
.footer-col ul li a:hover{ color:#fff; }

/* Contact column */
.footer-contact-col{ padding-top:2px; }

.footer-phone{
    color:#fff;
    font-family:"Raleway",sans-serif;
    font-weight:900;
    font-size:clamp(22px,2.5vw,30px);
    letter-spacing:.02em;
    margin-bottom:16px;
    line-height:1.1;
}

.footer-address,
.footer-email{
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:13px;
    color:rgba(255,255,255,.6);
    margin-bottom:10px;
    line-height:1.5;
}
.footer-icon{
    width:16px; height:16px;
    flex-shrink:0;
    margin-top:1px;
    color:rgba(255,255,255,.5);
}

/* Social icons row – filled circles */
.footer-social{
    display:flex;
    gap:8px;
    margin-top:18px;
}
.footer-social-icon{
    width:32px; height:32px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,.7);
    transition:background .2s, color .2s;
}
.footer-social-icon:hover{
    background:var(--teal);
    color:#fff;
}
.footer-social-icon svg,
.footer-social-icon .social-follow-svg{
    width:13px; height:13px;
}

.hdr-social .social-follow-svg{
    width:14px;
    height:14px;
}

.contact-social-icons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:2px;
}
.contact-social-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(43,156,196,.1);
    color:var(--teal);
    text-decoration:none;
    transition:background .2s, color .2s, transform .15s;
}
.contact-social-icon:hover{
    background:var(--teal);
    color:#fff;
}
.contact-social-icon .social-follow-svg{
    width:15px;
    height:15px;
    flex-shrink:0;
}

.portfolio-follow-row{
    margin-bottom:28px;
}
.portfolio-share-icon .social-follow-svg{
    width:15px;
    height:15px;
}

/* Bottom bar */
.footer-bottom{
    background:#191e2b;
    padding:12px 0;
}
.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    font-size:12px;
    color:rgba(255,255,255,.35);
}
.footer-bottom-inner p{
    margin:0;
    text-align:center;
    flex:1;
    min-width:min(100%, 280px);
}
.footer-bottom-inner a{
    color:rgba(255,255,255,.5);
    margin-left:6px;
    transition:color .2s;
}
.footer-bottom-inner a:hover{ color:#fff; }
.back-to-top{
    flex-shrink:0;
    width:40px;
    height:40px;
    border-radius:2px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.06);
    color:rgba(255,255,255,.75);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s, color .2s, border-color .2s;
}
.back-to-top:hover{
    background:var(--teal);
    border-color:var(--teal);
    color:#fff;
}


/* ─────────────────────────────────────────────
   SERVICE SUBPAGE (inner hero + sticky sidebar)
──────────────────────────────────────────── */
.page-service{
    background:#fff;
}

.service-hero{
    position:relative;
    width:100%;
    min-height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:calc(30px + var(--hdr-h) + 36px) 24px 52px;
    overflow:hidden;
}
.service-hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center center;
    filter:blur(4px);
    transform:scale(1.06);
}
.service-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(26,34,54,.55) 0%, rgba(26,34,54,.72) 100%);
}
.service-hero-inner{
    position:relative;
    z-index:1;
    max-width:960px;
}
.service-hero-title{
    font-family:"Raleway",sans-serif;
    font-weight:900;
    font-size:clamp(1.15rem, 2.8vw, 1.85rem);
    line-height:1.35;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#fff;
    text-shadow:0 2px 24px rgba(0,0,0,.35);
}

.service-page-wrap{
    display:grid;
    grid-template-columns:minmax(220px, 26%) 1fr;
    gap:clamp(28px, 4vw, 56px);
    padding:48px 3vw 72px;
    align-items:start;
    max-width:1200px;
}

.service-sidebar{
    padding-right:8px;
}
.service-side-nav{
    display:flex;
    flex-direction:column;
    gap:0;
    border-top:1px solid var(--line);
}
.service-side-nav a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 0 12px 4px;
    font-size:13px;
    color:var(--muted);
    border-bottom:1px solid var(--line);
    transition:color .2s, padding-left .2s;
}
.service-side-nav a::before{
    content:'›';
    font-size:14px;
    color:var(--teal);
    font-weight:700;
    line-height:1;
}
.service-side-nav a:hover,
.service-side-nav a.is-current{
    color:var(--navy);
    padding-left:8px;
}
.service-side-nav a.is-current{
    font-weight:700;
}

.service-side-contact{
    margin-top:28px;
    padding-top:8px;
}
.service-side-contact-title{
    font-family:"Open Sans",sans-serif;
    font-size:15px;
    font-weight:700;
    color:var(--text);
    margin-bottom:12px;
}
.service-side-contact p{
    font-size:13px;
    color:var(--muted);
    line-height:1.65;
    margin-bottom:18px;
}
.service-side-cta{
    display:inline-block;
    padding:11px 22px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    background:var(--teal);
    border-radius:2px;
    transition:background .2s, transform .15s;
}
.service-side-cta:hover{
    background:var(--teal-dk);
    color:#fff;
}

.service-main{
    min-width:0;
}
.service-prose{
    font-size:15px;
    color:var(--muted);
    line-height:1.75;
}
.service-prose > p{
    margin-bottom:1.1em;
}
.service-prose ul{
    list-style:disc;
    margin:0 0 1.1em 1.2em;
    padding-left:1.1em;
}
.service-prose ol{
    list-style:decimal;
    margin:0 0 1.1em 1.2em;
    padding-left:1.1em;
}
.service-prose li{
    margin-bottom:.35em;
}
.service-heading{
    font-family:"Open Sans",sans-serif;
    font-size:clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight:700;
    color:var(--text);
    margin:28px 0 16px;
    line-height:1.35;
}
.equipment-main-heading{
    font-size:clamp(1.35rem, 2.3vw, 1.75rem);
}
.service-subheading{
    font-family:"Open Sans",sans-serif;
    font-size:1rem;
    font-weight:700;
    color:var(--text);
    margin:22px 0 10px;
}
.service-faq-heading{
    text-align:center;
    font-size:clamp(1.4rem, 2.4vw, 2rem);
    margin-top:30px;
}
.service-inline-link{
    color:var(--teal);
    text-decoration:underline;
    text-underline-offset:2px;
}
.service-inline-link:hover{
    color:var(--teal-dk);
}

.service-checklist{
    margin:20px 0 28px;
    padding:0;
    list-style:none;
}
.service-checklist li{
    position:relative;
    padding-left:36px;
    margin-bottom:12px;
    color:var(--muted);
    font-size:15px;
}
.service-checklist li::before{
    content:'';
    position:absolute;
    left:0;
    top:.35em;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--teal);
    box-shadow:0 1px 4px rgba(43,156,196,.35);
}
.service-checklist li::after{
    content:'';
    position:absolute;
    left:5px;
    top:calc(.35em + 5px);
    width:5px;
    height:9px;
    border:solid #fff;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
}

/* Home: Mobility services + Who we help + Funding */
.home-ms-section{
    padding:86px 0 44px;
    background:#fff;
}
.home-ms-head h3{
    margin:0 0 28px;
    font-family:"Raleway",sans-serif;
    font-weight:900;
    letter-spacing:.02em;
    font-size:clamp(1.45rem, 2.9vw, 2.2rem);
    color:var(--text);
}
.home-ms-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:16px;
}
.home-ms-card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border:1px solid rgba(23,43,77,.08);
    border-radius:14px;
    padding:20px 18px 17px;
    box-shadow:0 14px 34px rgba(16,24,40,.08);
    display:flex;
    flex-direction:column;
    min-height:190px;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-ms-card:hover{
    transform:translateY(-3px);
    border-color:rgba(43,156,196,.35);
    box-shadow:0 18px 36px rgba(16,24,40,.12);
}
.home-ms-card-accent{
    display:block;
    width:46px;
    height:5px;
    border-radius:20px;
    background:linear-gradient(90deg, var(--teal), #69b6d2);
    margin-bottom:12px;
}
.home-ms-card h4{
    margin:0 0 8px;
    font-size:1.02rem;
    font-weight:700;
    color:var(--text);
    line-height:1.35;
}
.home-ms-card p{
    margin:0 0 14px;
    color:var(--muted);
    font-size:13.5px;
    line-height:1.6;
}
.home-ms-link{
    margin-top:auto;
    color:#0f6586;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.home-ms-link:hover{ color:var(--teal-dk); }

.home-who-section{
    padding:14px 0 26px;
    background:#fff;
}
.home-who-section .home-help-block{
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
    padding:0;
}
.home-who-section .home-ms-head h3{
    font-size:clamp(1.45rem, 2.9vw, 2.2rem);
    font-weight:900;
    letter-spacing:.02em;
    margin:0 0 28px;
    font-family:"Raleway",sans-serif;
    color:var(--text);
}
.home-funding-section{
    padding:24px 0 84px;
    background:#fff;
}
.home-funding-section .home-help-block{
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
    padding:0;
}
.home-funding-section .home-ms-head h3{
    font-size:clamp(1.45rem, 2.9vw, 2.2rem);
    font-weight:900;
    letter-spacing:.02em;
    margin:0 0 28px;
}
.home-help-grid{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:22px;
}
.home-help-block{
    background:
        linear-gradient(180deg, rgba(43,156,196,.06) 0%, rgba(43,156,196,0) 42%),
        #fff;
    border:1px solid rgba(23,43,77,.09);
    border-radius:16px;
    padding:26px 26px 28px;
}
.home-help-block h3{
    margin:0 0 14px;
    font-family:"Raleway",sans-serif;
    font-size:clamp(1.22rem, 1.95vw, 1.58rem);
    letter-spacing:.01em;
    color:var(--text);
}
.home-help-list{
    list-style:none;
    padding:0;
    margin:0;
}
.home-help-list li{
    position:relative;
    padding-left:26px;
    margin:0 0 10px;
    color:var(--muted);
    line-height:1.6;
}
.home-help-list li::before{
    content:'';
    position:absolute;
    left:0;
    top:.42em;
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--teal);
}
.home-help-list--chips{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px 12px;
}
.home-help-list--chips li{
    position:relative;
    margin:0;
    padding:12px 34px 12px 40px;
    border-radius:11px;
    border:1px solid color-mix(in srgb, var(--teal-dk) 72%, #000 0%);
    background:var(--teal);
    color:#fff;
    font-weight:600;
}
.home-help-list--chips li::before{
    content:'';
    position:absolute;
    left:14px;
    top:50%;
    width:12px;
    height:12px;
    margin-top:-6px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,255,255,.28);
}
.home-help-lead{
    color:var(--muted);
    margin:0 0 16px;
    line-height:1.7;
    max-width:68ch;
}
.home-fund-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:13px;
}
.home-fund-card{
    background:#fff;
    border:1px solid rgba(23,43,77,.1);
    border-radius:12px;
    padding:16px 14px;
    text-align:center;
    text-decoration:none;
    color:inherit;
    transition:border-color .2s ease, transform .2s ease;
}
.home-fund-card:hover{
    border-color:rgba(23,43,77,.2);
    transform:translateY(-2px);
}
.home-fund-icon-wrap{
    width:42px;
    height:42px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid rgba(23,43,77,.08);
    margin:0 auto 10px;
    box-shadow:0 14px 34px rgba(16,24,40,.08);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-fund-icon{
    width:22px;
    height:22px;
    color:var(--teal);
    transition:color .2s ease;
}
.home-fund-card:hover .home-fund-icon{
    color:var(--teal-dk);
}
.home-fund-card:hover .home-fund-icon-wrap{
    transform:translateY(-2px);
    border-color:rgba(43,156,196,.35);
    box-shadow:0 18px 36px rgba(16,24,40,.12);
}
.home-fund-card h4{
    margin:0 0 6px;
    font-size:14px;
    font-weight:700;
    color:var(--text);
    line-height:1.4;
}
.home-fund-card p{
    margin:0;
    color:var(--muted);
    font-size:12.8px;
    line-height:1.62;
}
.home-help-cta{
    display:inline-block;
    margin-top:18px;
    padding:12px 22px;
    border-radius:6px;
    background:var(--teal);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
}
.home-help-cta:hover{
    background:var(--teal-dk);
    color:#fff;
}

@media(min-width:961px){
    .page-service .service-sidebar{
        position:sticky;
        top:96px;
        align-self:start;
    }
}

@media(max-width:1200px){
    .home-ms-grid{ grid-template-columns:repeat(3, minmax(0,1fr)); }
    .home-fund-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media(max-width:900px){
    .home-ms-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
    .home-help-list--chips{ grid-template-columns:1fr; }
}
@media(max-width:600px){
    .home-ms-grid,
    .home-fund-grid{ grid-template-columns:1fr; }
    .home-ms-section{ padding:72px 0 34px; }
}

.float-call{
    position:fixed;
    right:22px;
    bottom:26px;
    z-index:180;
    width:56px;
    height:56px;
    border-radius:4px;
    background:var(--teal);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 22px rgba(43,156,196,.45);
    transition:background .2s, transform .15s;
}
.float-call:hover{
    background:var(--teal-dk);
    color:#fff;
    transform:translateY(-2px);
}

@media(max-width:960px){
    .service-page-wrap{
        grid-template-columns:1fr;
        padding-top:32px;
    }
    .page-service .service-sidebar{
        position:static;
        padding-right:0;
        border-bottom:1px solid var(--line);
        padding-bottom:28px;
        margin-bottom:8px;
    }
    .service-side-nav{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:0 12px;
    }
    .float-call{
        bottom:18px;
        right:16px;
        width:52px;
        height:52px;
    }
}

@media(max-width:760px){
    .service-hero{
        min-height:260px;
        padding-top:calc(var(--hdr-h) + 28px);
        padding-bottom:40px;
    }
    .service-side-nav{
        grid-template-columns:1fr;
    }
}


/* ─────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.page-contact{
    background:#fff;
}

.contact-hero{
    position:relative;
    width:100%;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    padding:calc(30px + var(--hdr-h) + 28px) 24px 40px;
    overflow:hidden;
}
.contact-hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center center;
    filter:blur(3px);
    transform:scale(1.05);
}
.contact-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(26,34,54,.78) 0%, rgba(26,34,54,.55) 55%, rgba(26,34,54,.4) 100%);
}
.contact-hero-inner{
    position:relative;
    z-index:1;
    width:100%;
}
.contact-breadcrumb,
.company-breadcrumb,
.who-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px 12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
}
.contact-breadcrumb a,
.company-breadcrumb a,
.who-breadcrumb a{
    color:rgba(255,255,255,.88);
    transition:color .2s;
}
.contact-breadcrumb a:hover,
.company-breadcrumb a:hover,
.who-breadcrumb a:hover{
    color:#fff;
}
.contact-breadcrumb-sep,
.company-breadcrumb-sep,
.who-breadcrumb-sep{
    color:rgba(255,255,255,.45);
    font-weight:400;
}
.contact-breadcrumb-current,
.company-breadcrumb-current,
.who-breadcrumb-current{
    color:#fff;
}

.contact-main-wrap{
    padding:40px 3vw 56px;
}
.contact-intro{
    margin-bottom:28px;
    max-width:720px;
}
.contact-page-title{
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:clamp(1.6rem, 3vw, 2.1rem);
    color:var(--navy);
    letter-spacing:.02em;
    margin-bottom:8px;
}
.contact-page-sub{
    font-size:15px;
    color:var(--muted);
    line-height:1.6;
}

.contact-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(260px, 340px);
    gap:clamp(28px, 4vw, 48px);
    align-items:start;
}

.contact-alert{
    padding:14px 18px;
    border-radius:4px;
    font-size:14px;
    margin-bottom:20px;
    border:1px solid transparent;
}
.contact-alert--success{
    background:rgba(43,156,196,.1);
    border-color:rgba(43,156,196,.35);
    color:#1a5f78;
}

.contact-form-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:6px;
    box-shadow:0 8px 32px rgba(26,34,54,.08), 0 1px 0 rgba(255,255,255,.8) inset;
    padding:clamp(22px, 3vw, 32px) clamp(20px, 3vw, 36px) clamp(28px, 3vw, 36px);
}
.contact-form-card-title{
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:1.05rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    text-align:center;
    color:var(--navy);
    margin-bottom:26px;
    padding-bottom:18px;
    border-bottom:1px solid var(--line);
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.contact-form-row{
    display:grid;
    gap:16px;
}
.contact-form-row--2{
    grid-template-columns:1fr 1fr;
}

.contact-field label,
.contact-legend{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:var(--text);
    margin-bottom:8px;
}
.contact-req{
    color:var(--teal);
}
.contact-input,
.contact-select,
.contact-textarea{
    width:100%;
    font-family:inherit;
    font-size:15px;
    color:var(--text);
    padding:12px 14px;
    border:1px solid #c9cdd4;
    border-radius:4px;
    background:#fafbfc;
    transition:border-color .2s, box-shadow .2s, background .2s;
}
.contact-input::placeholder,
.contact-textarea::placeholder{
    color:#9aa0a8;
}
.contact-input:hover,
.contact-select:hover,
.contact-textarea:hover{
    border-color:#aeb4bf;
    background:#fff;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus{
    outline:none;
    border-color:var(--teal);
    background:#fff;
    box-shadow:0 0 0 3px rgba(43,156,196,.2);
}
.contact-input.is-invalid,
.contact-textarea.is-invalid{
    border-color:#c44;
    box-shadow:0 0 0 2px rgba(204,68,68,.12);
}
.contact-select{
    cursor:pointer;
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 12px center;
    padding-right:36px;
}
.contact-textarea{
    resize:vertical;
    min-height:140px;
    line-height:1.55;
}

.contact-field-error{
    display:block;
    margin-top:6px;
    font-size:12.5px;
    color:#b33;
}

.contact-fieldset{
    border:none;
    padding:0;
    margin:0;
}
.contact-check-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px 16px;
    margin-top:4px;
}
.contact-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    font-weight:400;
    text-transform:none;
    letter-spacing:normal;
    color:var(--muted);
    line-height:1.45;
    cursor:pointer;
}
.contact-check input{
    width:18px;
    height:18px;
    margin-top:2px;
    flex-shrink:0;
    accent-color:var(--teal);
    cursor:pointer;
}
.contact-check--sms{
    align-items:flex-start;
    font-size:13px;
    line-height:1.55;
    color:#555;
}
.contact-sms-block{
    padding:16px 18px;
    background:var(--off-white);
    border:1px solid var(--line);
    border-radius:4px;
}

.contact-recaptcha{
    margin-top:4px;
}
.contact-recaptcha-placeholder{
    font-size:12px;
    color:var(--muted);
    padding:14px;
    background:var(--off-white);
    border:1px dashed var(--line);
    border-radius:4px;
    line-height:1.5;
}
.contact-recaptcha-placeholder code{
    font-size:11px;
    background:#e8ecef;
    padding:2px 6px;
    border-radius:3px;
}

.contact-submit{
    align-self:flex-start;
    margin-top:4px;
    padding:14px 36px;
    font-family:inherit;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:#fff;
    background:var(--teal);
    border:none;
    border-radius:4px;
    cursor:pointer;
    box-shadow:0 4px 16px rgba(43,156,196,.35);
    transition:background .2s, transform .15s, box-shadow .2s;
}
.contact-submit:hover{
    background:var(--teal-dk);
    transform:translateY(-1px);
    box-shadow:0 6px 20px rgba(43,156,196,.4);
}
.contact-submit:active{
    transform:translateY(0);
}

.contact-inline-link{
    color:var(--teal);
    text-decoration:underline;
    text-underline-offset:2px;
}
.contact-inline-link:hover{
    color:var(--teal-dk);
}

/* Sidebar */
.contact-sidebar{
    position:sticky;
    top:96px;
    align-self:start;
}
.contact-side-block{
    padding-bottom:26px;
    margin-bottom:26px;
    border-bottom:1px solid var(--line);
}
.contact-side-block:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}
.contact-side-title{
    font-family:"Open Sans",sans-serif;
    font-size:14px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--navy);
    margin-bottom:14px;
}
.contact-side-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.contact-side-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    font-size:14px;
    color:var(--muted);
    line-height:1.5;
}
.contact-side-list a{
    color:var(--teal);
    text-decoration:none;
}
.contact-side-list a:hover{
    text-decoration:underline;
}
.contact-side-icon{
    flex-shrink:0;
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(43,156,196,.12);
    color:var(--teal);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-hours{
    display:flex;
    flex-direction:column;
    gap:10px;
    font-size:14px;
}
.contact-hours li{
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
}
.contact-hours li:last-child{
    border-bottom:none;
    padding-bottom:0;
}
.contact-hours-label{
    color:var(--text);
    font-weight:600;
}
.contact-hours-val{
    color:var(--muted);
    text-align:right;
}

.contact-areas-intro,
.contact-areas-note{
    font-size:13.5px;
    color:var(--muted);
    line-height:1.6;
    margin-bottom:12px;
}
.contact-areas-list{
    margin:0 0 14px;
    padding-left:1.1em;
    list-style:disc;
    color:var(--muted);
    font-size:14px;
    line-height:1.55;
}
.contact-areas-list li{
    margin-bottom:6px;
}

.contact-side-text{
    font-size:14px;
    color:var(--muted);
    line-height:1.65;
}

/* Map */
.contact-map-section{
    width:100%;
    border-top:1px solid var(--line);
}
.contact-map-wrap{
    position:relative;
    width:100%;
    height:min(420px, 55vw);
    min-height:280px;
    background:var(--light-gray);
}
.contact-map-iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(.15) contrast(1.02);
}

@media(max-width:960px){
    .contact-layout{
        grid-template-columns:1fr;
    }
    .contact-sidebar{
        position:static;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:0 24px;
    }
    .contact-side-block{
        grid-column:span 1;
    }
    .contact-side-block--touch{
        grid-column:1 / -1;
    }
}

@media(max-width:760px){
    .contact-hero{
        min-height:180px;
        padding-top:calc(var(--hdr-h) + 22px);
        padding-bottom:32px;
    }
    .contact-check-grid{
        grid-template-columns:1fr;
    }
    .contact-form-row--2{
        grid-template-columns:1fr;
    }
    .contact-sidebar{
        grid-template-columns:1fr;
    }
}


/* ─────────────────────────────────────────────
   PORTFOLIO PAGE
──────────────────────────────────────────── */
.page-portfolio{
    background:#fff;
}

.portfolio-hero{
    position:relative;
    width:100%;
    min-height:380px;
    overflow:hidden;
}
.portfolio-hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center center;
}
.portfolio-hero-inner{
    position:relative;
    z-index:1;
    min-height:380px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding:calc(30px + var(--hdr-h) + 24px) 3vw 48px;
    max-width:1200px;
    margin:0 auto;
}
.portfolio-hero-badge{
    background:rgba(95,95,95,.88);
    color:#fff;
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:clamp(1rem, 2.2vw, 1.35rem);
    letter-spacing:.14em;
    text-transform:uppercase;
    padding:22px 36px;
    box-shadow:0 8px 28px rgba(0,0,0,.2);
}

.portfolio-section{
    padding-bottom:72px;
}

.portfolio-intro{
    text-align:center;
    padding:48px 3vw 8px;
    max-width:880px;
    margin:0 auto;
}
.portfolio-intro-title{
    font-family:"Open Sans",sans-serif;
    font-weight:700;
    font-size:clamp(1.15rem, 2.2vw, 1.5rem);
    line-height:1.35;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--text);
    margin-bottom:18px;
}
.portfolio-intro-text{
    font-size:15px;
    color:var(--muted);
    line-height:1.75;
    margin:0;
}

.portfolio-toolbar{
    padding:28px 3vw 20px;
}
.portfolio-filters{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:8px 28px;
}
.portfolio-filter{
    background:none;
    border:none;
    padding:6px 0;
    font-family:"Open Sans",sans-serif;
    font-size:14px;
    font-weight:600;
    color:var(--teal);
    cursor:pointer;
    text-decoration:none;
    border-bottom:2px solid transparent;
    transition:color .2s, border-color .2s, opacity .2s;
}
.portfolio-filter:hover{
    color:var(--teal-dk);
}
.portfolio-filter.is-active{
    border-bottom-color:var(--teal);
    color:var(--teal-dk);
}

.portfolio-grid-outer{
    padding:8px 3vw 0;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px 26px;
    transition:opacity .25s ease;
}
.portfolio-grid.is-loading{
    opacity:.55;
    pointer-events:none;
}

.portfolio-card{
    margin:0;
}
.portfolio-card-link{
    display:block;
    color:inherit;
    text-decoration:none;
    transition:transform .2s ease;
}
.portfolio-card-link:hover .portfolio-card-title{
    color:var(--teal);
}
.portfolio-card-img-wrap{
    position:relative;
    overflow:hidden;
    background:#e8e8e8;
    aspect-ratio:4/3;
}
.portfolio-card-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}
.portfolio-card-link:hover .portfolio-card-img-wrap img{
    transform:scale(1.04);
}

.portfolio-card-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
    background:rgba(26,34,54,.58);
    opacity:0;
    transition:opacity .35s ease;
}
.portfolio-card-link:hover .portfolio-card-overlay,
.portfolio-card-link:focus-visible .portfolio-card-overlay{
    opacity:1;
}
.portfolio-card-cta{
    font-family:"Open Sans",sans-serif;
    font-size:15px;
    font-weight:600;
    color:#fff;
    letter-spacing:.02em;
}

.portfolio-card-body{
    padding:16px 4px 8px;
}
.portfolio-card-title{
    font-family:"Open Sans",sans-serif;
    font-size:15px;
    font-weight:700;
    color:var(--text);
    line-height:1.4;
    margin:0 0 6px;
    transition:color .2s;
}
.portfolio-card-cat{
    font-size:12px;
    color:var(--muted);
    margin:0;
    text-transform:capitalize;
}

.portfolio-empty{
    grid-column:1 / -1;
    text-align:center;
    padding:48px 24px;
    font-size:15px;
    color:var(--muted);
}

@media(max-width:960px){
    .portfolio-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:22px 18px;
    }
    .portfolio-hero-inner{
        justify-content:center;
        min-height:300px;
    }
    .portfolio-hero,
    .portfolio-hero-inner{
        min-height:300px;
    }
}

@media(max-width:760px){
    .portfolio-hero-inner{
        padding-top:calc(var(--hdr-h) + 20px);
    }
    .portfolio-grid{
        grid-template-columns:1fr;
    }
    .portfolio-filters{
        gap:12px 20px;
    }
}


/* ─────────────────────────────────────────────
   SINGLE PORTFOLIO (case study)
──────────────────────────────────────────── */
.page-portfolio-single{
    background:#fff;
}

.portfolio-single{
    overflow-x:hidden;
}

.portfolio-single-hero{
    position:relative;
    width:100%;
    min-height:min(58vh, 600px);
    max-height:720px;
    /* Keeps hero visible below fixed header + top offset used on the main site */
    margin-top:0;
}
.portfolio-single-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background-size:cover;
    background-position:center center;
    filter:brightness(1.06) contrast(1.02);
}
.portfolio-single-hero-bar{
    position:absolute;
    left:0;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:1;
    width:100%;
    background:rgba(0,0,0,.52);
    padding:100px 0;
    box-shadow:0 1px 0 rgba(255,255,255,.06) inset;
}
.portfolio-single-hero-bar-inner{
    max-width:1200px;
    margin:0 auto;
    padding-left:3vw;
    padding-right:3vw;
}
.portfolio-single-hero-title{
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:37px;
    letter-spacing:.12em;
    line-height:1.55;
    text-transform:uppercase;
    color:#fff;
    margin:0 auto;
    max-width:56rem;
    text-align:center;
    text-wrap:balance;
}

/* Narrative column: readable measure, centered */
.portfolio-single-copy-wrap{
    padding:52px 0 8px;
}
.portfolio-single-copy{
    max-width:720px;
    margin:0 auto;
}

.portfolio-single-block{
    margin-bottom:40px;
}
.portfolio-single-block--numbered{
    margin-bottom:36px;
}

.portfolio-single-h2{
    font-family:"Open Sans",sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--text);
    margin:0 0 16px;
}
.portfolio-single-h2--numbered{
    text-transform:none;
    letter-spacing:.02em;
    font-size:clamp(1.05rem, 2vw, 1.2rem);
    font-weight:700;
    line-height:1.35;
    color:var(--text);
}
.portfolio-single-num{
    color:var(--teal);
    font-weight:800;
    margin-right:6px;
}

.portfolio-single-prose{
    font-size:16px;
    line-height:1.85;
    color:#555;
}
.portfolio-single-prose p{
    margin:0 0 1.1em;
}
.portfolio-single-prose--html p:last-child{
    margin-bottom:0;
}

.portfolio-single-features{
    margin:0;
    padding:0;
    list-style:none;
}
.portfolio-single-features li{
    position:relative;
    padding-left:22px;
    margin-bottom:12px;
    font-size:16px;
    line-height:1.65;
    color:#555;
}
.portfolio-single-features li::before{
    content:'';
    position:absolute;
    left:0;
    top:.55em;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--teal);
}

/* Project details — card strip */
.portfolio-single-details-block{
    margin-top:8px;
    margin-bottom:40px;
}
.portfolio-single-details-grid{
    list-style:none;
    margin:0;
    padding:20px 22px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px 28px;
    background:var(--off-white);
    border:1px solid var(--line);
    border-radius:4px;
}
.portfolio-single-detail{
    display:flex;
    flex-direction:column;
    gap:6px;
    min-width:0;
}
.portfolio-single-detail-label{
    font-size:11px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--muted);
}
.portfolio-single-detail-value{
    font-size:15px;
    font-weight:600;
    color:var(--text);
    line-height:1.4;
}

.portfolio-single-cta{
    margin:8px 0 0;
    padding:20px 0 8px;
    font-size:16px;
    line-height:1.75;
    color:#555;
    border-top:1px solid var(--line);
}
.portfolio-single-cta a{
    color:var(--teal);
    font-weight:700;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:border-color .2s, color .2s;
}
.portfolio-single-cta a:hover{
    color:var(--teal-dk);
    border-bottom-color:var(--teal-dk);
}

/* Full-width gallery: 4-column grid + optional tall cell */
.portfolio-single-gallery-section{
    padding:36px 0 20px;
}
.portfolio-single-gallery-heading{
    font-family:"Open Sans",sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--text);
    margin:0 0 20px;
    text-align:center;
}
.portfolio-grid-gallery{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:11px;
    grid-auto-rows:minmax(160px, auto);
}
.portfolio-grid-gallery__item{
    margin:0;
    overflow:hidden;
    border-radius:3px;
    background:#e5e5e5;
    min-height:0;
    display:flex;
    flex-direction:column;
}
.portfolio-grid-gallery__trigger{
    display:block;
    width:100%;
    flex:1;
    min-height:0;
    align-self:stretch;
    margin:0;
    padding:0;
    border:0;
    border-radius:inherit;
    background:transparent;
    cursor:zoom-in;
    font:inherit;
    color:inherit;
    text-align:left;
    -webkit-tap-highlight-color:transparent;
}
.portfolio-grid-gallery__trigger:focus-visible{
    outline:2px solid var(--teal);
    outline-offset:2px;
}
.portfolio-grid-gallery__trigger:hover img{
    opacity:.92;
    transition:opacity .2s;
}
.portfolio-grid-gallery__item img{
    width:100%;
    height:100%;
    min-height:160px;
    object-fit:cover;
    display:block;
    vertical-align:middle;
}
.portfolio-grid-gallery__item--tall{
    grid-row:span 2;
}
.portfolio-grid-gallery__item--tall img{
    min-height:320px;
}

/* Portfolio single — lightbox */
.portfolio-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:48px 56px;
    box-sizing:border-box;
    visibility:hidden;
    opacity:0;
    transition:opacity .22s ease, visibility .22s;
}
.portfolio-lightbox.is-open{
    visibility:visible;
    opacity:1;
}
.portfolio-lightbox__backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.88);
    cursor:pointer;
}
.portfolio-lightbox__stage{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    max-width:100%;
    max-height:88vh;
}
.portfolio-lightbox__img{
    max-width:min(96vw, 1400px);
    max-height:88vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:2px;
    box-shadow:0 12px 48px rgba(0,0,0,.45);
}
.portfolio-lightbox__close{
    position:absolute;
    top:16px;
    right:16px;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:0;
    padding:0;
    cursor:pointer;
    font-size:28px;
    line-height:1;
    font-weight:300;
    color:#fff;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    transition:background .2s, color .2s;
    -webkit-tap-highlight-color:transparent;
}
.portfolio-lightbox__close:hover{
    background:var(--teal);
    color:#fff;
}
.portfolio-lightbox__close:focus-visible{
    outline:2px solid #fff;
    outline-offset:2px;
}
@media(max-width:760px){
    .portfolio-lightbox{
        padding:52px 8px 16px;
    }
    .portfolio-lightbox__stage{
        width:100%;
    }
}

/* Share + related projects (portfolio detail — bottom) */
.portfolio-related-section{
    background:#fff;
    padding:36px 0 56px;
    margin-top:4px;
    border-top:1px solid var(--line);
}
.portfolio-related-section-inner{
    text-align:left;
}

.portfolio-share-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px 18px;
    margin-bottom:36px;
}
.portfolio-share-label{
    font-family:"Open Sans",sans-serif;
    font-size:11px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--text);
}
.portfolio-share-icons{
    display:flex;
    align-items:center;
    gap:10px;
}
.portfolio-share-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f0f0f0;
    color:#555;
    transition:background .2s, color .2s, transform .15s;
}
.portfolio-share-icon svg{
    flex-shrink:0;
}
.portfolio-share-icon:hover{
    background:var(--teal);
    color:#fff;
}

.portfolio-related-title{
    font-family:"Open Sans",sans-serif;
    font-size:15px;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--text);
    margin:0 0 26px;
    text-align:left;
    line-height:1.3;
}
.portfolio-related-title-light{
    font-weight:700;
    margin-right:.35em;
}
.portfolio-related-title-strong{
    font-weight:900;
}

.portfolio-related-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px 26px;
}
.portfolio-related-card{
    display:block;
    text-decoration:none;
    color:inherit;
    min-width:0;
}
.portfolio-related-card:hover .portfolio-related-name{
    color:var(--teal);
}
.portfolio-related-img{
    aspect-ratio:3/4;
    overflow:hidden;
    background:#e8e8e8;
    margin-bottom:12px;
    border-radius:2px;
}
.portfolio-related-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.portfolio-related-name{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    font-size:15px;
    font-weight:700;
    color:var(--text);
    line-height:1.4;
    margin-bottom:6px;
    transition:color .2s;
}
.portfolio-related-meta{
    display:block;
    font-size:13px;
    font-weight:400;
    color:#888;
    line-height:1.35;
}

@media(max-width:1100px){
    .portfolio-grid-gallery{
        grid-template-columns:repeat(3, 1fr);
    }
}
@media(max-width:960px){
    .portfolio-single-details-grid{
        grid-template-columns:1fr 1fr;
    }
    .portfolio-grid-gallery{
        grid-template-columns:repeat(2, 1fr);
        grid-auto-rows:minmax(140px, auto);
    }
    .portfolio-grid-gallery__item--tall{
        grid-row:span 2;
    }
    .portfolio-related-grid{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:760px){
    .portfolio-single-hero{
        min-height:300px;
    }
    .portfolio-single-hero-bar{
        padding:18px 0;
    }
    .portfolio-single-hero-title{
        font-size:clamp(0.62rem, 2.8vw, 0.88rem);
        letter-spacing:.08em;
        line-height:1.5;
    }
    .portfolio-single-copy-wrap{
        padding-top:36px;
    }
    .portfolio-single-details-grid{
        grid-template-columns:1fr;
        padding:18px;
    }
    .portfolio-grid-gallery{
        grid-template-columns:1fr;
    }
    .portfolio-grid-gallery__item--tall{
        grid-row:auto;
    }
    .portfolio-grid-gallery__item--tall img{
        min-height:220px;
    }
    .portfolio-related-grid{
        grid-template-columns:1fr;
    }
}


/* ─────────────────────────────────────────────
   COMPANY / ABOUT PAGE
──────────────────────────────────────────── */
.page-company{
    background:#fff;
}

.company-hero{
    position:relative;
    width:100%;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    padding:calc(30px + var(--hdr-h) + 28px) 24px 40px;
    overflow:hidden;
}
.company-hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center center;
    filter:blur(3px);
    transform:scale(1.05);
}
.company-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(26,34,54,.78) 0%, rgba(26,34,54,.55) 55%, rgba(26,34,54,.4) 100%);
}
.company-hero-inner{
    position:relative;
    z-index:1;
    width:100%;
}

.company-page-header{
    margin-bottom:40px;
    padding-bottom:28px;
    border-bottom:1px solid var(--line);
}
.company-page-title{
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:clamp(1.5rem, 2.8vw, 2rem);
    color:var(--navy);
    letter-spacing:.02em;
    margin:0 0 12px;
}
.company-page-lead{
    font-size:16px;
    line-height:1.7;
    color:var(--muted);
    margin:0;
    max-width:52rem;
}
.company-page-lead a{
    color:var(--teal);
    font-weight:700;
    text-decoration:none;
}
.company-page-lead a:hover{
    text-decoration:underline;
    color:var(--teal-dk);
}

.company-page-wrap{
    display:grid;
    grid-template-columns:minmax(200px, 26%) 1fr;
    gap:clamp(24px, 4vw, 48px);
    padding:44px 3vw 72px;
    align-items:start;
    max-width:1200px;
}

.company-sidebar{
    padding-right:6px;
}
.company-side-nav{
    display:flex;
    flex-direction:column;
    border-top:1px solid var(--line);
}
.company-side-nav a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:11px 0 11px 4px;
    font-size:13px;
    color:var(--muted);
    border-bottom:1px solid var(--line);
    transition:color .2s, padding-left .2s;
}
.company-side-nav a::before{
    content:'›';
    color:var(--teal);
    font-weight:700;
}
.company-side-nav a:hover,
.company-side-nav a.is-current{
    color:var(--navy);
    padding-left:8px;
    font-weight:700;
}

.company-side-contact{
    margin-top:26px;
}
.company-side-contact-title{
    font-size:15px;
    font-weight:700;
    color:var(--text);
    margin:0 0 10px;
}
.company-side-contact p{
    font-size:13px;
    color:var(--muted);
    line-height:1.65;
    margin:0 0 16px;
}
.company-side-cta{
    display:inline-block;
    padding:10px 20px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    background:var(--teal);
    border-radius:2px;
}
.company-side-cta:hover{
    background:var(--teal-dk);
    color:#fff;
}

.company-main{
    min-width:0;
}
.company-section{
    margin-bottom:52px;
    scroll-margin-top:calc(var(--hdr-h) + 24px);
}
.company-section-title{
    font-family:"Open Sans",sans-serif;
    font-size:clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight:700;
    color:var(--text);
    margin:0 0 22px;
    letter-spacing:.02em;
}

.company-featured-img{
    position:relative;
    margin-bottom:22px;
    border-radius:4px;
    overflow:hidden;
    background:#e8e8e8;
}
.company-featured-img > img{
    width:100%;
    height:auto;
    display:block;
    vertical-align:middle;
}
.company-featured-caption{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    max-width:min(520px, 90%);
    padding:14px 20px;
    background:rgba(255,255,255,.94);
    box-shadow:0 4px 20px rgba(0,0,0,.12);
    text-align:center;
}
.company-featured-caption p{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:var(--text);
    line-height:1.45;
}
.company-featured-caption strong{
    color:var(--teal);
    font-weight:800;
}

.company-prose{
    font-size:15px;
    line-height:1.8;
    color:#555;
}
.company-prose p{
    margin:0 0 1em;
}

/* About us: two-column layout + larger body copy */
.about-us-main{
    max-width:1120px;
}
.about-us-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:clamp(28px, 4vw, 48px);
    align-items:start;
}
.about-us-prose{
    font-size:17px;
    line-height:1.85;
    color:#4a4f56;
}
.about-us-prose p{
    margin:0 0 1.15em;
}
.about-us-aside-figure{
    margin:0;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 14px 34px rgba(16,24,40,.1);
    border:1px solid rgba(23,43,77,.08);
    position:sticky;
    top:calc(var(--hdr-h, 72px) + 24px);
}
.about-us-aside-figure img{
    display:block;
    width:100%;
    height:auto;
    vertical-align:middle;
    object-fit:cover;
    aspect-ratio:3 / 4;
}
@media (min-width: 960px){
    .about-us-grid{
        grid-template-columns:minmax(0, 1fr) minmax(240px, 34%);
    }
}
.company-text-link{
    color:var(--teal);
    font-weight:700;
    text-decoration:none;
}
.company-text-link:hover{
    color:var(--teal-dk);
    text-decoration:underline;
}

.company-history-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px 40px;
    align-items:start;
}
.company-history-thumb{
    max-width:280px;
    margin-bottom:18px;
    border-radius:4px;
    overflow:hidden;
}
.company-history-thumb img{
    width:100%;
    height:auto;
    display:block;
}

.company-timeline{
    list-style:none;
    margin:0;
    padding:0 0 0 18px;
    border-left:2px solid var(--line);
}
.company-timeline-item{
    position:relative;
    margin-bottom:20px;
    padding-left:8px;
}
.company-timeline-item::before{
    content:'';
    position:absolute;
    left:-23px;
    top:6px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--teal);
    border:2px solid #fff;
    box-shadow:0 0 0 1px var(--line);
}
.company-timeline-year{
    display:block;
    font-size:16px;
    font-weight:800;
    color:var(--text);
    margin-bottom:4px;
}
.company-timeline-text{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#555;
}

.company-mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}
.company-mv-card{
    padding:28px 24px;
    border:1px solid var(--line);
    border-radius:4px;
    background:#fafbfc;
    text-align:center;
}
.company-mv-icon{
    margin-bottom:12px;
}
.company-mv-title{
    font-size:18px;
    font-weight:700;
    color:var(--text);
    margin:0 0 12px;
}
.company-mv-text{
    font-size:14px;
    line-height:1.7;
    color:#555;
    margin:0 0 16px;
}
.company-mv-link{
    font-size:13px;
    font-weight:700;
    color:var(--teal);
    text-decoration:none;
}
.company-mv-link:hover{
    text-decoration:underline;
}

.company-team-wrap{
    max-width:100%;
}
.company-team-viewport{
    overflow:hidden;
    width:100%;
    --slides:1;
}
.company-team-track{
    display:flex;
    width:calc(var(--slides, 1) * 100%);
    transition:transform .45s ease;
}
.company-team-slide{
    flex:0 0 calc(100% / var(--slides, 1));
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    box-sizing:border-box;
    padding:2px 0;
}
.company-team-photo{
    border-radius:4px;
    overflow:hidden;
    background:#e5e5e5;
    aspect-ratio:3/4;
}
.company-team-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.company-team-name{
    font-size:15px;
    font-weight:700;
    color:var(--text);
    margin:12px 0 4px;
    text-align:center;
}
.company-team-role{
    margin:0;
    font-size:13px;
    color:var(--muted);
    text-align:center;
}

.company-team-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin-top:22px;
}
.company-team-arrow{
    width:36px;
    height:36px;
    border:1px solid var(--line);
    background:#fff;
    border-radius:2px;
    font-size:20px;
    line-height:1;
    cursor:pointer;
    color:var(--text);
    transition:background .2s, border-color .2s;
}
.company-team-arrow:hover{
    background:var(--teal);
    border-color:var(--teal);
    color:#fff;
}
.company-team-dots{
    display:flex;
    gap:8px;
    align-items:center;
}
.company-team-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    border:none;
    padding:0;
    background:#ccc;
    cursor:pointer;
    transition:background .2s, transform .2s;
}
.company-team-dot.is-active{
    background:var(--teal);
    transform:scale(1.15);
}

.company-values-list{
    margin:12px 0 0;
    padding-left:22px;
    color:#555;
}
.company-values-list li{
    margin-bottom:8px;
}

.company-quote{
    margin:0;
    padding:20px 22px;
    border-left:4px solid var(--teal);
    background:var(--off-white);
    font-style:normal;
}
.company-quote p{
    margin:0 0 8px;
    font-size:16px;
    line-height:1.7;
    color:var(--text);
}
.company-quote cite{
    font-size:13px;
    color:var(--muted);
    font-style:normal;
}

@media(min-width:961px){
    .page-company .company-sidebar{
        position:sticky;
        top:96px;
        align-self:start;
    }
}

@media(max-width:960px){
    .company-page-wrap{
        grid-template-columns:1fr;
    }
    .company-history-grid,
    .company-mv-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:640px){
    .company-team-slide{
        grid-template-columns:1fr;
    }
}
@media(max-width:760px){
    .company-hero{
        min-height:180px;
        padding-top:calc(var(--hdr-h) + 22px);
        padding-bottom:32px;
    }
    .company-side-nav{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
}


/* ─────────────────────────────────────────────
   WHO WE ARE (standalone page)
──────────────────────────────────────────── */
.page-who-we-are{
    background:#fff;
}

.who-hero{
    position:relative;
    width:100%;
    min-height:240px;
    display:flex;
    align-items:stretch;
    overflow:hidden;
}
.who-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background-size:cover;
    background-position:center center;
    filter:blur(3px);
    transform:scale(1.05);
}
.who-hero-overlay{
    position:absolute;
    inset:0;
    z-index:0;
    background:linear-gradient(100deg, rgba(26,34,54,.82) 0%, rgba(26,34,54,.45) 50%, rgba(26,34,54,.35) 100%);
}
.who-hero-inner{
    position:relative;
    z-index:1;
    width:100%;
    min-height:240px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px 32px;
    padding:calc(30px + var(--hdr-h) + 28px) 24px 36px;
    max-width:1200px;
    margin:0 auto;
}
.who-hero-badge{
    margin:0;
    flex:0 1 auto;
    max-width:min(360px, 100%);
    padding:18px 26px;
    background:rgba(75,78,82,.88);
    color:#fff;
    font-family:"Raleway",sans-serif;
    font-weight:800;
    font-size:clamp(0.75rem, 1.6vw, 1rem);
    letter-spacing:.14em;
    line-height:1.35;
    text-transform:uppercase;
    text-align:center;
    box-shadow:0 8px 28px rgba(0,0,0,.2);
}

.who-page-wrap{
    display:grid;
    grid-template-columns:minmax(200px, 26%) 1fr;
    gap:clamp(24px, 4vw, 48px);
    padding:44px 3vw 72px;
    align-items:start;
    max-width:1200px;
}

/* Sidebar: blue vertical bar for active link (no ›) */
.page-who-we-are .who-side-nav a{
    padding-left:14px;
    border-left:3px solid transparent;
}
.page-who-we-are .who-side-nav a::before{
    display:none;
}
.page-who-we-are .who-side-nav a:hover{
    padding-left:14px;
}
.page-who-we-are .who-side-nav a.is-current{
    border-left-color:var(--teal);
    color:var(--navy);
    font-weight:700;
}

.who-side-divider{
    border:none;
    border-top:2px solid var(--teal);
    margin:16px 0 18px;
    opacity:.85;
}

.who-main{
    min-width:0;
}

.who-slider{
    position:relative;
    width:100%;
    margin-bottom:36px;
    border-radius:4px;
    overflow:hidden;
    background:#ddd;
    aspect-ratio:16/9;
    min-height:280px;
}
.who-slider-slides{
    position:relative;
    width:100%;
    height:100%;
    min-height:280px;
}
.who-slider-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .65s ease;
    pointer-events:none;
}
.who-slider-slide.is-active{
    opacity:1;
    pointer-events:auto;
    z-index:1;
}
.who-slider-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.who-slider-caption{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    max-width:min(520px, 92%);
    padding:16px 22px;
    background:rgba(255,255,255,.94);
    box-shadow:0 4px 28px rgba(0,0,0,.12);
    text-align:center;
}
.who-slider-caption p{
    margin:0;
    font-size:clamp(1rem, 2.2vw, 1.25rem);
    font-weight:700;
    color:var(--text);
    line-height:1.4;
}

.who-slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    width:42px;
    height:42px;
    border:none;
    border-radius:2px;
    background:rgba(255,255,255,.92);
    color:var(--text);
    font-size:22px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 2px 12px rgba(0,0,0,.12);
    transition:background .2s, color .2s;
}
.who-slider-arrow:hover{
    background:var(--teal);
    color:#fff;
}
.who-slider-arrow--prev{ left:12px; }
.who-slider-arrow--next{ right:12px; }

.who-slider-dots{
    position:absolute;
    bottom:14px;
    right:14px;
    z-index:3;
    display:flex;
    gap:8px;
    align-items:center;
}
.who-slider-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    border:none;
    padding:0;
    background:rgba(255,255,255,.55);
    cursor:pointer;
    transition:background .2s, transform .2s;
    box-shadow:0 0 0 1px rgba(0,0,0,.15);
}
.who-slider-dot.is-active{
    background:var(--teal);
    transform:scale(1.15);
}

.who-article-title{
    font-family:"Open Sans",sans-serif;
    font-size:clamp(1.5rem, 2.6vw, 1.85rem);
    font-weight:700;
    color:var(--text);
    margin:0 0 18px;
}
.who-subheading{
    font-family:"Open Sans",sans-serif;
    font-size:1.15rem;
    font-weight:700;
    color:var(--text);
    margin:28px 0 12px;
}
.who-inline-link{
    color:var(--teal);
    font-weight:700;
    text-decoration:none;
}
.who-inline-link:hover{
    text-decoration:underline;
    color:var(--teal-dk);
}

.who-checklist{
    margin:12px 0 0;
    padding:0;
    list-style:none;
}
.who-checklist li{
    position:relative;
    padding-left:32px;
    margin-bottom:14px;
    font-size:15px;
    line-height:1.65;
    color:#555;
}
.who-checklist li::before{
    content:'';
    position:absolute;
    left:0;
    top:.35em;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--teal);
}
.who-checklist li::after{
    content:'';
    position:absolute;
    left:5px;
    top:calc(.35em + 5px);
    width:5px;
    height:9px;
    border:solid #fff;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
}

@media(min-width:961px){
    .page-who-we-are .who-sidebar{
        position:sticky;
        top:96px;
        align-self:start;
    }
}
@media(max-width:960px){
    .who-page-wrap{
        grid-template-columns:1fr;
    }
    .who-hero-inner{
        flex-direction:column;
        align-items:stretch;
        justify-content:center;
        padding-top:calc(var(--hdr-h) + 24px);
    }
    .who-breadcrumb{
        justify-content:center;
        text-align:center;
    }
    .who-hero-badge{
        margin-left:auto;
        margin-right:auto;
        max-width:min(400px, 94vw);
    }
}
@media(max-width:760px){
    .who-hero{
        min-height:200px;
    }
    .who-hero-inner{
        min-height:200px;
        padding-top:calc(var(--hdr-h) + 20px);
        padding-bottom:28px;
    }
    .who-slider{
        aspect-ratio:auto;
        min-height:240px;
    }
    .who-slider-arrow{
        width:36px;
        height:36px;
        font-size:18px;
    }
}


/* ─────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────── */
.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
    opacity:1;
    transform:translateY(0);
}


/* ─────────────────────────────────────────────
   REDUCED MOTION
──────────────────────────────────────────── */
@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{
        animation-duration:.001ms!important;
        animation-iteration-count:1!important;
        transition-duration:.001ms!important;
        scroll-behavior:auto!important;
    }
}


/* ─────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media(max-width:1100px){
    .footer-main{grid-template-columns:1fr 1fr;gap:32px;}
    .footer-contact-col{grid-column:span 2;}
}

/* proj-cluster scale is handled entirely by JS (scaleCluster) */

@media(max-width:960px){
    .hdr-social{display:none;}
    .nav-phone{display:none;}
    .hero{ min-height:480px; }
    .hero-arrow{ width:40px; height:40px; font-size:22px; }
    .hero-arrow--prev{ left:14px; }
    .hero-arrow--next{ right:14px; }
    .hero-slide-content{ padding:0 6vw; }
    .hero-eyebrow{ font-size:11px; }
    .about-inner{grid-template-columns:1fr;}
    .about-imgs{ height:420px; }
    .about-img-label{ font-size:clamp(16px,3.5vw,24px); }

    .proj-text{ width:100%; }

    /* ── Tablet / mobile: convert diamond cluster into a normal 2-col card grid ── */
    .proj-cluster-outer{
        height:auto !important;
        margin-top:24px;
    }
    .proj-cluster{
        width:100% !important;
        height:auto !important;
        transform:none !important;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:14px;
    }
    .proj-path-svg,
    .proj-pin{ display:none !important; }

    .pd{
        position:static !important;
        transform:none !important;
        width:100% !important;
        height:220px !important;
        border-radius:4px;
        box-shadow:0 4px 14px rgba(0,0,0,.08) !important;
        opacity:1 !important;
        transition:transform .3s ease, box-shadow .3s ease !important;
    }
    .pd:hover{
        box-shadow:0 8px 22px rgba(0,0,0,.15) !important;
        transform:translateY(-3px) !important;
    }
    .pd-inner{
        transform:none !important;
        width:100%;
        height:100%;
    }
    .pd-inner img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .testimonials-section::after{
        background:linear-gradient(to right,transparent 0%,rgba(255,255,255,.78) 30%,rgba(255,255,255,.95) 55%);
    }
    .testi-panel{width:60%;padding:36px 28px;}
    .blog-grid{ grid-template-columns:1fr 1fr; gap:20px; }
}

@media(max-width:760px){
    .main-nav{
        display:none;
        position:absolute;
        top:var(--hdr-h); left:0; right:0;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        padding:0 0 12px;
        height:auto;
        border-top:1px solid #e8e8e8;
        box-shadow:0 8px 24px rgba(0,0,0,.1);
        overflow-y:auto;
        max-height:calc(100vh - var(--hdr-h));
    }
    .main-nav.is-open{display:flex;}

    /* Nav items stack vertically */
    .nav-item{
        flex-direction:column;
        align-items:stretch;
        border-bottom:1px solid #eee;
    }
    .nav-item > a{
        padding:13px 6vw;
        font-size:13px;
        height:auto;
        justify-content:space-between;
        color:#333;
    }
    .has-dropdown > a::after{
        transform:rotate(45deg);
    }
    .has-dropdown.mob-open > a::after{
        transform:rotate(-135deg);
    }

    /* Mobile dropdown – hidden by default, toggled by JS */
    .nav-dropdown{
        position:static;
        opacity:1;
        visibility:hidden;
        height:0;
        overflow:hidden;
        transform:none;
        box-shadow:none;
        border-top:none;
        background:#f7f8fa;
        transition:height .3s ease, visibility .3s;
    }
    .has-dropdown.mob-open .nav-dropdown{
        visibility:visible;
        height:auto;
    }
    .nav-dropdown a{
        color:#555;
        border-bottom:1px solid #eee;
        padding:10px 6vw 10px calc(6vw + 14px);
        font-size:12.5px;
    }
    .nav-dropdown a:hover{
        background:var(--teal);
        color:#fff;
        padding-left:calc(6vw + 14px);
    }

    .nav-item-locations .nav-dropdown-locations{
        left:0;
        right:auto;
        max-width:none;
        max-height:none;
        overflow-x:hidden;
        overflow-y:visible;
        padding:0;
    }
    .nav-loc-sub{
        position:static !important;
        margin-right:0 !important;
        margin-top:0;
        max-width:none;
        border:none;
        border-left:3px solid rgba(43,156,196,.22);
        box-shadow:none;
        background:#f7f8fa;
        padding:0;
        overflow:visible;
    }
    /* Cities list stays visible under each state; each city's page links accordion open per tap */
    .nav-loc-sub--cities{
        display:block !important;
    }
    .nav-loc-item--depth2 > .nav-loc-sub--pages{
        display:none !important;
        overflow:hidden;
    }
    .nav-loc-item--depth2.mob-loc-open > .nav-loc-sub--pages{
        display:block !important;
    }
    .nav-loc-sub--pages{
        background:#f7f8fa;
    }
    .nav-loc-row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:10px 6vw 10px calc(6vw + 14px);
        font-size:12.5px;
        border-bottom:1px solid #eee;
    }
    .nav-loc-item--depth2.nav-loc-item--has-sub > .nav-loc-row{
        cursor:pointer;
        user-select:none;
    }
    /* Hide flyout caret on state rows (stacked layout); city rows stay tappable with caret */
    .nav-loc-item--depth1.nav-loc-item--has-sub > .nav-loc-row::after{
        display:none;
    }
    .nav-dropdown-locations .nav-loc-link{
        padding:10px 6vw 10px calc(6vw + 28px);
        font-size:12.5px;
        border-bottom:1px solid #eee;
    }
    .nav-item-locations .nav-loc-item--depth1:hover > .nav-loc-row,
    .nav-item-locations .nav-loc-item--depth1:focus-within > .nav-loc-row,
    .nav-item-locations .nav-loc-item--depth2:hover > .nav-loc-row,
    .nav-item-locations .nav-loc-item--depth2:focus-within > .nav-loc-row{
        background:var(--teal);
        color:#fff;
        padding-left:calc(6vw + 14px);
    }
    .nav-dropdown-locations .nav-loc-link:hover{
        background:var(--teal);
        color:#fff;
        padding-left:calc(6vw + 28px);
    }
    .nav-loc-empty{
        padding:10px 6vw 10px calc(6vw + 28px);
        font-size:12.5px;
    }

    /* Phone & CTA on mobile */
    .nav-phone{
        padding:13px 6vw;
        border-bottom:1px solid #eee;
        font-size:13px;
        height:auto;
        color:#333;
    }
    .nav-cta{
        margin:12px 6vw 4px;
        padding:10px 18px;
        width:fit-content;
        border-radius:2px;
    }

    .hamburger{display:flex;}
    .hdr-inner{position:relative;}

    /* On mobile show only the horizontal logo, no overflow */
    .logo-default{ display:none; }
    .logo-sticky{ display:block; height:75px; }
    .site-header.is-scrolled .logo-default{ display:none; }
    .site-header.is-scrolled .logo-sticky{ display:block; }
    .logo{ overflow:hidden; margin-right:16px; }
    /* Remove the 30px top offset on mobile (header at top: 0 always) */
    .site-header{ top:0; }
    /* Extra vertical inset so hero copy + CTA clear header and bottom / dots on short viewports */
    .hero-slide-content{
        padding-top: calc(var(--hdr-h) + 28px);
        padding-bottom: 96px;
    }

    .hero{ min-height:420px; height:80vw; }
    .hero-cta{ padding:11px 24px; font-size:12px; margin-top:18px; }
    .hero-arrow{ display:none; }

    .proj-text{ width:100%; }
    .testi-panel{width:100%;padding:36px 24px;}
    .testimonials-section::after{
        background:rgba(255,255,255,.88);
    }
    .blog-grid{ grid-template-columns:1fr; }
    .projects-diamond-grid .proj-diamond-wrap{width:160px;height:160px;}
    .footer-main{grid-template-columns:1fr;gap:24px;}
    .footer-contact-col{grid-column:span 1;}
}

@media(max-width:480px){
    .diamond-grid{
        grid-template-columns:repeat(2,110px);
        grid-template-rows:repeat(3,110px);
    }
    .hero{ height:70vw; min-height:360px; }
    .hero-slide-content{
        padding-top: calc(var(--hdr-h) + 32px);
        padding-bottom: 108px;
    }
    .hero-dots{ bottom:16px; }
    .hero-dot{ width:8px; height:8px; }
    .testi-content{padding:36px 24px;}
    .about-imgs{ height:320px; }
    .about-img-label{ font-size:18px; letter-spacing:.1em; }

    /* Phones: stack project cards in a single column */
    .proj-cluster{ grid-template-columns:1fr; }
    .pd{ height:240px !important; }
}
