:root {
    --sky: #b9dff2;
    --sky2: #dceff8;
    --navy: #14242e;
    --cream: #f7f4ee;
    --white: #ffffff;
    --line: rgba(233, 241, 245, 0.16);
    --shadow: 0 18px 50px rgba(20,36,46,.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.55;
}

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

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

.container {
    width: min(1120px,calc(100% - 40px));
    margin: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 78px;
    display: flex;
    align-items: center;
    background: rgba(247,244,238,.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20,36,46,.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-size: 13px;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-nav a {
    padding: 10px 15px;
    border: 1px solid rgba(20,36,46,.18);
    background: var(--sky);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: var(--navy);
    color: white;
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    padding: 8px;
    cursor: pointer;
    color: var(--navy);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 22px;
    z-index: 49;
}

.mobile-nav.open {
    display: grid;
}

.mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
}

.hero {
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-image: linear-gradient(180deg,rgba(8,18,24,.10),rgba(8,18,24,.62)),url('hero-background.png');
    background-size: cover;
    background-position: center top;
    color: white;
}

.hero-content {
    padding: 150px 0 74px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 {
    font-family: Georgia,'Times New Roman',serif;
    font-size: clamp(48px,8vw,108px);
    line-height: .92;
    margin: 14px 0 18px;
    max-width: 920px;
    font-weight: 400;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.94);
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border: 1px solid currentColor;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
}

.btn-light {
    background: white;
    color: var(--navy);
    border-color: white;
}

.btn-outline {
    margin-left: 8px;
    color: white;
}

.section {
    padding: 95px 0;
}

.section.alt {
    background: white;
}

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

.kicker {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: #53788a;
}

h2 {
    font-family: Georgia,'Times New Roman',serif;
    font-weight: 400;
    font-size: clamp(38px,5vw,66px);
    line-height: 1.03;
    margin: 10px 0 22px;
}

h3 {
    font-family: Georgia,'Times New Roman',serif;
    font-size: 27px;
    font-weight: 400;
    margin: 0 0 10px;
}

.lead {
    font-size: 16px;
    max-width: 760px;
}

.image-card {
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--sky2);
}

.image-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 38px;
}

.card {
    padding: 30px;
    background: var(--sky2);
    border: 1px solid rgba(20,36,46,.08);
    min-height: 220px;
}

.card .num {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: #53788a;
}

.statement {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 105px 20px;
}

.statement h2 {
    max-width: 850px;
    margin: 0 auto 18px;
}

.statement p {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,.78);
}

.page-hero {
    padding: 170px 0 80px;
    background: linear-gradient(135deg,var(--sky2),var(--cream));
}

.page-hero h1 {
    font-family: Georgia,'Times New Roman',serif;
    font-size: clamp(50px,7vw,90px);
    font-weight: 400;
    margin: 0;
}

.page-hero p {
    max-width: 720px;
    font-size: 18px;
}

.table-wrap {
    overflow-x: auto;
    background: white;
    border: 1px solid var(--line);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

th,
td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    background: var(--sky2);
}

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

.price {
    background: white;
    padding: 34px;
    border: 1px solid var(--line);
}

.price strong {
    display: block;
    font-family: Georgia,serif;
    font-size: 42px;
    font-weight: 400;
    margin: 18px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-box {
    background: white;
    border: 1px solid var(--line);
    padding: 32px;
}

.contact-box a {
    text-decoration: underline;
}

.legal {
    max-width: 820px;
}

.legal h2 {
    font-size: 34px;
    margin-top: 44px;
}

footer {
    background: #eef5f8;
    border-top: 1px solid var(--line);
    padding: 35px 0;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .12em;
}

.copyright {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width:820px){
    .site-header {
        height: 70px;
        background: rgba(247,244,238,.94);
    }

    .brand span {
        display: none;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav {
        top: 70px;
    }

    .hero {
        min-height: 100svh;
        background-position: center top;
        background-image: url('hero-background.png');
    }

    .hero-content {
        padding: 125px 0 48px;
    }

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

    .hero p {
        font-size: 16px;
    }

    .btn {
        display: block;
        width: max-content;
        margin: 8px 0;
    }

    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .section {
        padding: 68px 0;
    }

    .page-hero {
        padding: 130px 0 55px;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
