:root {
    --navy: #07162d;
    --navy-2: #0b2345;
    --blue: #1663dc;
    --blue-bright: #2b7cff;
    --red: #e42c37;
    --cream: #f4f6f8;
    --white: #fff;
    --ink: #101c2f;
    --muted: #607086;
    --gold: #efc869;
    --line: #dce3eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.topbar {
    background: var(--navy);
    color: #c7d5e9;
    font-size: 13px;
}
.topbar-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.topbar p { margin: 0; }
.topbar strong { color: var(--white); }
.topbar-contact { display: flex; align-items: center; gap: 26px; }
.topbar-contact a { color: var(--white); font-weight: 700; text-transform: none; letter-spacing: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(7,22,45,.08);
    backdrop-filter: blur(12px);
}
.nav-wrap { height: 104px; display: flex; align-items: center; gap: 28px; }
.brand {
    width: 310px;
    height: 96px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.brand img { width: 370px; max-width: none; flex: none; }
.primary-nav { display: flex; align-items: center; gap: 25px; font-weight: 700; font-size: 14px; }
.primary-nav a { position: relative; padding: 39px 0; }
.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 29px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width .2s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }
.call-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--red);
    color: var(--white);
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 9px 25px rgba(228,44,55,.22);
}
.nav-call { flex-direction: column; align-items: flex-start; padding: 12px 17px; }
.call-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.menu-toggle { display: none; }

.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}
.hero-photo {
    position: absolute;
    inset: 0;
    background: url("../img/slider1.jpg") center/cover no-repeat;
    transform: scale(1.015);
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,15,31,.96) 0%, rgba(4,17,36,.90) 42%, rgba(4,18,38,.52) 68%, rgba(4,18,38,.30) 100%),
        linear-gradient(0deg, rgba(4,16,33,.52), transparent 50%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
    align-items: center;
    gap: 90px;
    padding-top: 54px;
    padding-bottom: 54px;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #c9d6e8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.eyebrow span { width: 32px; height: 2px; background: var(--blue-bright); }
.eyebrow.dark { color: var(--blue); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold span { background: var(--gold); }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.08; margin-top: 0; }
.hero h1 {
    max-width: 690px;
    margin: 24px 0 26px;
    font-size: clamp(54px, 6.1vw, 86px);
    letter-spacing: -.055em;
}
.hero h1 em { color: #7facff; font-style: normal; }
.hero-lead { max-width: 640px; margin: 0 0 34px; color: #d1dbea; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 6px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 28px rgba(22,99,220,.3); }
.button-primary:hover { background: var(--blue-bright); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.button-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.hero-checks { display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 33px 0 0; list-style: none; color: #d8e1ed; font-size: 13px; font-weight: 600; }
.hero-checks li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; color: var(--white); background: rgba(43,124,255,.35); border-radius: 50%; }

.award-card {
    position: relative;
    width: min(100%, 410px);
    justify-self: end;
    padding: 21px 21px 19px;
    background: rgba(8,19,36,.88);
    border: 1px solid rgba(239,200,105,.47);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(14px);
}
.award-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    box-shadow: 0 0 60px rgba(239,200,105,.13);
    pointer-events: none;
}
.award-kicker { padding: 2px 0 15px; color: var(--gold); text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.award-card img { width: 100%; max-height: 440px; object-fit: cover; object-position: center 44%; border-radius: 10px; }
.award-card p { margin: 16px 9px 1px; color: #dce4ef; text-align: center; font-size: 13px; line-height: 1.5; }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-grid div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong { color: var(--navy); font-family: "Manrope", sans-serif; font-size: 21px; }
.trust-grid span { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.local-intro { padding: 80px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.local-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: 90px; }
.local-intro h2 { max-width: 720px; margin: 18px 0 0; color: var(--navy); font-size: clamp(35px, 3.7vw, 53px); line-height: 1.08; letter-spacing: -.04em; }
.local-intro-copy > p { margin: 2px 0 24px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.local-service-links { display: flex; flex-wrap: wrap; gap: 10px; }
.local-service-links a { padding: 10px 14px; color: var(--navy); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; }
.local-service-links a:hover { color: var(--blue); border-color: rgba(24, 98, 214, .32); }

.section { padding: 112px 0; }
.services { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; margin-bottom: 48px; }
.section-heading h2, .why h2, .award-story h2, .cta h2 {
    margin: 19px 0 0;
    color: var(--navy);
    font-size: clamp(40px, 4.2vw, 61px);
    letter-spacing: -.045em;
}
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 250px 250px; gap: 18px; }
.service-card { position: relative; min-height: 250px; overflow: hidden; border-radius: 11px; color: var(--white); }
.service-card-large { grid-row: 1 / 3; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,13,28,.93), rgba(4,16,34,.08) 72%); }
.service-content { position: absolute; inset: auto 0 0; padding: 29px 32px; }
.service-number { color: #83adf8; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.service-card h3 { margin: 6px 0 5px; font-size: 25px; }
.service-card-large h3 { font-size: 34px; }
.service-card p { max-width: 520px; margin: 0 0 10px; color: #d6dfeb; font-size: 14px; }
.text-link { font-size: 13px; font-weight: 700; }

.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; align-items: center; }
.why-copy > p { max-width: 500px; margin: 24px 0 31px; color: var(--muted); font-size: 17px; }
.button-dark { background: var(--navy); color: var(--white); }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 5px; border-bottom: 1px solid var(--line); }
.feature-list article > span { display: grid; place-items: center; width: 43px; height: 43px; color: var(--blue); background: #edf4ff; border-radius: 50%; font-size: 12px; font-weight: 800; }
.feature-list h3 { margin: 0 0 4px; color: var(--navy); font-size: 20px; }
.feature-list p { margin: 0; color: var(--muted); }

.award-story { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.award-story::before { content: ""; position: absolute; width: 560px; height: 560px; right: -180px; top: -260px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.award-story-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 110px; }
.award-image-wrap { position: relative; width: 100%; max-width: 440px; padding: 18px; margin: auto; background: rgba(255,255,255,.045); border: 1px solid rgba(239,200,105,.35); border-radius: 22px; }
.award-image-wrap img { position: relative; width: 100%; border-radius: 12px; }
.award-glow { position: absolute; inset: 18%; background: rgba(239,200,105,.2); filter: blur(80px); }
.award-story h2 { color: var(--white); }
.award-copy > p { max-width: 570px; margin: 25px 0; color: #c9d5e5; font-size: 18px; }
.award-quote { padding: 21px 0; margin-bottom: 25px; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.award-quote p { margin: 6px 0 0; color: #e4eaf2; }
.stars { color: var(--gold); letter-spacing: .15em; }
.button-light { color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.button-light:hover { background: rgba(255,255,255,.08); }

.review-section { background: #f7f9fc; }
.review-shell {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 76px;
}
.review-copy h2 {
    margin: 19px 0 22px;
    color: var(--navy);
    font-size: clamp(40px, 4.2vw, 61px);
    letter-spacing: -.045em;
}
.review-copy > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; }
.review-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.review-card {
    position: relative;
    min-height: 255px;
    padding: 31px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(7,22,45,.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review-card::after {
    content: "★★★★★";
    position: absolute;
    right: 25px;
    top: 28px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .09em;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 58px rgba(7,22,45,.14);
}
.review-platform {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.review-card-yelp .review-platform { background: #d32323; }
.review-card-google .review-platform { background: var(--blue); }
.review-card-yelp:hover { border-color: rgba(211,35,35,.35); }
.review-card-google:hover { border-color: rgba(22,99,220,.35); }
.review-card strong {
    max-width: 220px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.2;
}
.review-action { color: var(--muted); font-size: 13px; font-weight: 700; }
.review-action b { margin-left: 5px; color: var(--blue); }

.cta { padding: 78px 0; background: var(--blue); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta .eyebrow { color: #d8e7ff; }
.cta .eyebrow span { background: var(--white); }
.cta h2 { color: var(--white); font-size: clamp(38px, 4vw, 56px); }
.cta p { margin: 10px 0 0; color: #dbe8ff; font-size: 17px; }
.button-white { min-width: 220px; background: var(--white); color: var(--blue); }

.site-footer { padding: 75px 0 20px; background: #040d1b; color: #9eacbf; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 60px; }
.footer-brand > a {
    width: 300px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
    border-radius: 10px;
}
.footer-brand img { width: 355px; max-width: none; flex: none; }
.footer-brand p { margin: 21px 0 0; }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.site-footer a, .site-footer div > p { display: block; margin: 9px 0; font-size: 14px; }
.site-footer a:hover { color: var(--white); }
.footer-phone { color: var(--white); font-size: 19px !important; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; margin-top: 54px; border-top: 1px solid rgba(255,255,255,.09); font-size: 12px; }
.mobile-call { display: none; }

@media (max-width: 980px) {
    .primary-nav { gap: 18px; }
    .nav-call { display: none; }
    .hero-grid { grid-template-columns: 1fr .66fr; gap: 40px; }
    .hero-checks { gap: 12px; }
    .why-grid, .award-story-grid { gap: 60px; }
    .review-shell { grid-template-columns: 1fr; gap: 42px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
    body { padding-bottom: 58px; }
    .container { width: min(100% - 32px, 620px); }
    .topbar-inner { justify-content: center; }
    .topbar-inner p:first-child { display: none; }
    .topbar-contact span { display: none; }
    .nav-wrap { height: 72px; }
    .brand { width: 235px; height: 70px; }
    .brand img { width: 285px; }
    .menu-toggle { display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 0; background: transparent; cursor: pointer; }
    .menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; background: var(--navy); }
    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        display: none;
        padding: 12px 24px 22px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(7,22,45,.12);
    }
    .primary-nav.open { display: grid; }
    .primary-nav a { padding: 10px 0; }
    .primary-nav a::after { display: none; }
    .hero, .hero-grid { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 56px; }
    .hero h1 { font-size: clamp(50px, 15vw, 70px); }
    .hero-lead { font-size: 17px; }
    .award-card { width: 100%; max-width: 390px; justify-self: start; margin-top: 8px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid div { min-height: 94px; padding: 16px; border-bottom: 1px solid var(--line); }
    .local-intro { padding: 66px 0; }
    .local-intro-grid { grid-template-columns: 1fr; gap: 28px; }
    .local-intro-copy > p { font-size: 16px; }
    .section { padding: 76px 0; }
    .section-heading, .why-grid, .award-story-grid { grid-template-columns: 1fr; gap: 34px; }
    .service-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 310px); }
    .service-card-large { grid-row: auto; }
    .service-card-large h3 { font-size: 27px; }
    .award-story-grid { gap: 54px; }
    .award-image-wrap { max-width: 360px; }
    .review-options { grid-template-columns: 1fr; }
    .review-card { min-height: 215px; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / 3; }
    .footer-grid > div:last-child { grid-column: 1 / 3; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .mobile-call {
        position: fixed;
        z-index: 40;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        gap: 9px;
        padding: 16px;
        color: var(--white);
        background: var(--red);
        font-size: 14px;
        box-shadow: 0 -8px 24px rgba(0,0,0,.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
