*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#0b2a4a;
    background:#ffffff;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

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

/* HEADER */

.site-header{
    background:#ffffff;
    border-bottom:1px solid #e8e8e8;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-inner{
    min-height:105px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.brand img{
    width:310px;
    height:auto;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:48px;
    font-weight:700;
}

.main-nav a{
    color:#0b2a4a;
    transition:.25s ease;
}

.main-nav a:hover{
    color:#009b63;
}

.phone-button,
.primary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#009b63;
    color:#ffffff;
    padding:18px 38px;
    border-radius:6px;
    font-weight:700;
    font-size:18px;
    white-space:nowrap;
    min-width:190px;
    transition:.25s ease;
}

.phone-button:hover,
.primary-button:hover{
    background:#007f51;
}

/* HERO */

.hero{
    min-height:780px;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.82) 0%,
            rgba(255,255,255,.42) 38%,
            rgba(255,255,255,0) 72%
        ),
        url("../images/hero/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-shade{
    min-height:780px;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:760px;
}

.eyebrow{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#009b63;
    font-size:14px;
    font-weight:800;
    margin-bottom:18px;
}

.hero h1{
    font-size:74px;
    line-height:1.02;
    color:#0b2a4a;
    margin-bottom:28px;
    max-width:760px;
}

.hero-copy{
    max-width:600px;
    font-size:24px;
    line-height:1.7;
    color:#24384f;
    margin-bottom:36px;
}

/* SECTIONS */

.services-section{
    padding:95px 0;
}

.about-section{
    padding:95px 0 45px;
}

.contact-section{
    padding:90px 0;
}

.section-title{
    max-width:760px;
    margin-bottom:48px;
}

.section-title h2,
.about-text h2,
.contact-section h2{
    font-size:42px;
    line-height:1.15;
    color:#0b2a4a;
    margin-bottom:20px;
}

.section-title p,
.about-text p,
.contact-section p{
    color:#304458;
}

/* SERVICES */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.service-card{
    background:#f8fafc;
    border:1px solid #e1e6eb;
    border-radius:8px;
    padding:34px;
    min-height:190px;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 34px rgba(0,0,0,.08);
}

.service-card h3{
    color:#0b2a4a;
    margin-bottom:14px;
    font-size:22px;
}

.service-card p{
    color:#304458;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
}

.about-image{
    width:100%;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.about-image img{
    width:100%;
    height:460px;
    object-fit:cover;
    object-position:center;
}

/* FEATURE IMAGE */

.image-feature{
    width:100%;
    background:#ffffff;
    padding:10px 0 70px;
}

.image-feature img{
    width:82%;
    max-width:1050px;
    height:340px;
    object-fit:cover;
    object-position:55% center;
    margin:0 auto;
    border-radius:10px;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}

/* CONTACT */

.contact-section{
    background:#eaf5fb;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
}

.contact-card{
    background:#ffffff;
    padding:38px;
    border-radius:10px;
    box-shadow:0 12px 32px rgba(0,0,0,.06);
}

.contact-card p,
.contact-item{
    margin-bottom:18px;
    color:#0b2a4a;
}

.contact-item strong{
    display:block;
    margin-bottom:4px;
}

.map-button{
    display:inline-flex;
    margin-top:10px;
    background:#062b52;
    color:#ffffff;
    padding:14px 24px;
    border-radius:6px;
    font-weight:700;
}

/* FOOTER */

.site-footer{
    background:#062b52;
    color:#ffffff;
    padding:55px 0 24px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr;
    gap:50px;
    align-items:start;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    max-width:360px;
}

.footer-logo{
    width:110px;
    height:110px;
    object-fit:contain;
    margin-bottom:22px;
    display:block;
}

.footer-tagline{
    color:#ffffff;
    font-size:20px;
    line-height:1.4;
    font-style:italic;
    font-weight:500;
    margin-bottom:12px;
}

.footer-description{
    color:#dbe6f0;
    font-size:16px;
    line-height:1.7;
}

.footer-grid h3{
    font-size:20px;
    margin-bottom:20px;
    color:#ffffff;
}

.footer-grid a,
.footer-grid p{
    display:block;
    color:#dbe6f0;
    margin-bottom:12px;
    font-size:16px;
    transition:.2s;
}

.footer-grid a:hover{
    color:#ffffff;
    padding-left:4px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    font-size:13px;
    color:#b8c7d6;
    margin-bottom:5px;
}

/* MOBILE */

@media(max-width:900px){

    .nav-inner{
        flex-direction:column;
        padding:22px 0;
        gap:22px;
    }

    .brand img{
        width:230px;
    }

    .main-nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .phone-button{
        font-size:15px;
        padding:14px 26px;
        min-width:auto;
    }

    .hero{
        min-height:620px;
        background:
            linear-gradient(
                rgba(255,255,255,.9),
                rgba(255,255,255,.72)
            ),
            url("../images/hero/hero.jpg");
        background-size:cover;
        background-position:center;
    }

    .hero-shade{
        min-height:620px;
    }

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

    .hero-copy{
        font-size:18px;
    }

    .services-grid,
    .about-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .about-image img{
        height:320px;
    }

    .image-feature{
        padding:0 0 45px;
    }

    .image-feature img{
        width:92%;
        height:260px;
        object-position:55% center;
    }

    .footer-grid{
        gap:35px;
        text-align:center;
    }

    .footer-brand{
        max-width:100%;
        margin:0 auto;
    }

    .footer-logo{
        width:100px;
        height:100px;
        margin:0 auto 18px;
    }
}
/* MOBILE HEADER FIX */

@media (max-width: 760px) {
  .site-header {
    position: relative;
    height: auto;
  }

  .header-inner {
    min-height: 92px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    max-width: 190px;
    height: auto;
    margin: 0 auto;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
  }

  .header-cta {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    min-height: 48px;
  }

  .hero {
    min-height: auto;
  }
}