:root {
    --navy: #061369;
    --blue: #009fe3;
    --sky: #31b9f2;
    --white: #fff;
    --soft: #eef9ff;
    --text: #0b1745;
    --muted: #5d6b8a;
    --shadow: 0 20px 60px rgba(3, 30, 100, .16)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f2fbff 55%, #fff 100%);
    overflow-x: hidden
}

a {
    color: inherit
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6vw;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(8, 32, 96, .08)
}

.brand img {
    height: 70px;
    width: auto;
    display: block
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 800;
    color: var(--navy)
}

.nav a {
    text-decoration: none
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white !important;
    padding: 12px 18px;
    border-radius: 999px
}

.menu {
    display: none;
    border: 0;
    background: var(--navy);
    color: white;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 22px
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 40px;
    padding: 80px 7vw 90px;
    background: radial-gradient(circle at 78% 15%, rgba(49, 185, 242, .25), transparent 30%), linear-gradient(135deg, #f9fdff 0%, #e8f8ff 60%, #fff 100%)
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto -5% 0 -5%;
    height: 260px;
    background: linear-gradient(100deg, transparent, #c7efff 22%, #0fa7e8 45%, #c9f2ff 63%, transparent);
    opacity: .75;
    filter: blur(1px);
    clip-path: polygon(0 55%, 100% 10%, 100% 100%, 0 100%)
}

.hero-copy,
.hero-card {
    position: relative;
    z-index: 2
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
    color: var(--blue);
    font-size: .9rem
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: .92;
    margin: 12px 0 22px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.07em
}

.lead {
    font-size: 1.22rem;
    line-height: 1.7;
    max-width: 680px;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 16px 24px
}

.primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: var(--shadow)
}

.secondary {
    color: var(--navy);
    background: white;
    border: 2px solid #bfeeff
}

.hero-card {
    background: white;
    border-radius: 36px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #d8f4ff;
    text-align: center
}

.hero-card img {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain
}

.quick-info {
    display: grid;
    gap: 10px;
    margin-top: 16px
}

.quick-info span {
    background: var(--soft);
    border-radius: 999px;
    padding: 12px;
    font-weight: 800;
    color: var(--navy)
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, white 0 12%, #8adfff 35%, #079fe1 70%);
    opacity: .55;
    z-index: 1
}

.b1 {
    width: 84px;
    height: 84px;
    left: 5%;
    top: 18%
}

.b2 {
    width: 44px;
    height: 44px;
    right: 8%;
    top: 16%
}

.b3 {
    width: 120px;
    height: 120px;
    right: 14%;
    bottom: 16%
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: -50px auto 80px;
    max-width: 1100px;
    position: relative;
    z-index: 5;
    background: var(--navy);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.service-strip div {
    background: white;
    padding: 30px;
    text-align: center
}

.service-strip span {
    font-size: 2.6rem
}

.service-strip strong {
    display: block;
    font-size: 1.5rem;
    color: var(--navy);
    text-transform: uppercase
}

.service-strip p {
    color: var(--muted);
    margin-bottom: 0
}

.section {
    padding: 75px 7vw
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px
}

.section h2,
.why h2,
.cta h2,
.location h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    margin: 8px 0 18px;
    color: var(--navy);
    letter-spacing: -.04em
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.card,
.price-cards article {
    background: white;
    border: 1px solid #d7f2ff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 91, 170, .08)
}

.icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 20px;
    font-size: 1.8rem;
    margin-bottom: 18px
}

.card h3,
.price-cards h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin: 0 0 10px
}

.card p,
.price-cards p {
    color: var(--muted);
    line-height: 1.65
}

.why {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding: 85px 7vw;
    background: linear-gradient(135deg, var(--navy), #073e9b);
    color: white
}

.why h2,
.why .eyebrow {
    color: white
}

.why p {
    line-height: 1.7;
    color: #d9f3ff
}

.feature-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.feature-grid li {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.price-cards .featured {
    transform: scale(1.04);
    border: 3px solid var(--blue)
}

.price-cards strong {
    display: block;
    font-size: 2rem;
    color: var(--blue);
    margin: 15px 0
}

.price-cards a {
    font-weight: 900;
    color: var(--navy)
}

.cta {
    text-align: center;
    margin: 60px 7vw;
    padding: 70px 30px;
    border-radius: 36px;
    background: radial-gradient(circle at 20% 20%, #7cdbff, transparent 26%), linear-gradient(135deg, #058fd5, var(--navy));
    color: white
}

.cta h2 {
    color: white
}

.cta p {
    font-size: 1.2rem
}

.location {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 30px;
    align-items: stretch;
    padding: 80px 7vw
}

.location>div {
    background: white;
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.location iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 28px;
    box-shadow: var(--shadow)
}

footer {
    text-align: center;
    padding: 45px 20px;
    background: #061369;
    color: white
}

footer img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .25))
}

footer p {
    opacity: .9
}

@media(max-width:900px) {
    .menu {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        top: 98px;
        left: 5vw;
        right: 5vw;
        flex-direction: column;
        background: white;
        padding: 25px;
        border-radius: 24px;
        box-shadow: var(--shadow)
    }

    .nav.open {
        display: flex
    }

    .hero,
    .why,
    .location {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 45px
    }

    .service-strip,
    .cards,
    .price-cards {
        grid-template-columns: 1fr
    }



    .service-strip {
        margin-left: 20px;
        margin-right: 20px
    }

    .price-cards .featured {
        transform: none
    }

    .brand img {
        height: 58px
    }
}

.page-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
    padding: 70px 7vw;
    background: radial-gradient(circle at 80% 20%, rgba(49, 185, 242, .25), transparent 28%), linear-gradient(135deg, #f9fdff, #e8f8ff 65%, #fff)
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: .95;
    margin: 12px 0 20px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.06em
}

.page-hero img {
    max-width: 420px;
    width: 100%;
    justify-self: center;
    filter: drop-shadow(0 18px 30px rgba(0, 45, 120, .16))
}

.management-hero {
    background: radial-gradient(circle at 80% 20%, rgba(49, 185, 242, .25), transparent 28%), linear-gradient(135deg, #fff, #eefaff 55%, #dff6ff)
}

.price-table-wrap {
    max-width: 1100px;
    margin: auto;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #d7f2ff
}

.price-table {
    width: 100%;
    border-collapse: collapse
}

.price-table th {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    text-align: left;
    padding: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.price-table td {
    padding: 20px;
    border-bottom: 1px solid #e1f4fb;
    color: var(--text);
    font-weight: 700
}

.price-table td:nth-child(2) {
    color: var(--blue);
    font-weight: 900
}

.price-table tr:last-child td {
    border-bottom: 0
}

@media(max-width:900px) {
    .page-hero {
        grid-template-columns: 1fr;
        text-align: center
    }

    .price-table {
        font-size: .92rem
    }

    .price-table th,
    .price-table td {
        padding: 14px
    }

    .nav {
        top: 98px
    }
}

/* About page photo updates */
.about-hero {
    background: radial-gradient(circle at 78% 15%, rgba(49, 185, 242, .26), transparent 30%), linear-gradient(135deg, #f9fdff 0%, #e8f8ff 60%, #fff 100%);
}

.about-split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.about-split>div,
.about-highlight {
    background: white;
    border: 1px solid #d7f2ff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(0, 91, 170, .08);
}

.about-split h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-top: 0;
}

.about-split p {
    color: var(--muted);
    line-height: 1.75;
}

.about-highlight {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-highlight strong {
    font-size: 2rem;
    line-height: 1.05;
}

.about-highlight p {
    color: #eaf9ff;
}

.photo-gallery {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.photo-gallery figure {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid #d7f2ff;
    min-height: 260px;
}

.photo-gallery img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

@media(max-width:900px) {

    .about-split,
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}