:root {
    --navy: #0b1825;
    --ink: #132334;
    --red: #c9342d;
    --mist: #f3f5f6;
    --white: #fff;
    --gold: #c99b62;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #fff
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08
}

h1 {
    font-size: clamp(3rem, 7vw, 6.3rem);
    letter-spacing: -.045em;
    margin-bottom: 1.5rem;
    color: #fff
}

h1 span {
    color: #f0b878
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    letter-spacing: -.035em
}

h3 {
    font-size: 1.7rem
}

a {
    color: inherit
}

.topbar {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 12px max(24px, calc((100vw - var(--max))/2));
    position: absolute;
    z-index: 5;
    width: 100%;
    border-bottom: 1px solid #ffffff35;
    color: #fff
}

.brand img {
    width: 180px;
    height: 60px;
    object-fit: contain;
    background: #fff
}

.topbar nav {
    display: flex;
    gap: 25px;
    margin-left: auto
}

.topbar nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem
}

.menu {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.7rem
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em;
    font-size: .8rem;
    padding: 17px 24px;
    cursor: pointer
}

.button:hover {
    background: #ab2822
}

.button.small {
    padding: 12px 16px
}

.button.ghost {
    background: transparent;
    border: 1px solid #ffffff80
}

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

.hero-photo {
    position: absolute;
    inset: 0;
    background: url('hero-boat-optimized.jpg') center/cover
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #08131fee 0%, #08131fbd 46%, #08131f2e 80%), linear-gradient(0deg, #08131f80, transparent 50%)
}

.hero-copy {
    position: relative;
    width: min(var(--max), calc(100% - 48px));
    margin: 90px auto 0;
    color: #dce4e9;
    max-width: 1180px
}

.hero-copy>p:not(.eyebrow) {
    font-size: 1.2rem;
    max-width: 670px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 800
}

.eyebrow.red {
    color: var(--red)
}

.actions {
    display: flex;
    gap: 12px;
    margin: 32px 0
}

.credentials {
    display: flex;
    gap: 28px;
    border-top: 1px solid #ffffff35;
    padding-top: 24px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: bold
}

.credentials span:before {
    content: '✓';
    color: #f0b878;
    margin-right: 8px
}

.strip {
    width: min(var(--max), calc(100% - 48px));
    margin: -34px auto 0;
    position: relative;
    z-index: 3;
    background: #fff;
    box-shadow: 0 12px 45px #0919291c;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 25px 30px;
    align-items: center;
    text-align: center
}

.strip p {
    margin: 0;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .14em;
    font-weight: bold;
    color: #6a747d
}

.strip div {
    font-family: Georgia, serif;
    font-weight: bold
}

.section {
    width: min(var(--max), calc(100% - 48px));
    margin: auto;
    padding: 110px 0
}

.section-head {
    max-width: 750px;
    margin-bottom: 55px
}

.section-head>p:last-child {
    font-size: 1.1rem;
    color: #5c6974
}

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

.card {
    padding: 38px;
    background: var(--mist);
    border-top: 4px solid var(--red)
}

.card .number {
    font: italic 1.2rem Georgia;
    color: #82909b
}

.card ul {
    padding-left: 20px;
    min-height: 145px
}

.card>a {
    font-weight: 800;
    text-decoration: none;
    color: var(--red)
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    color: #d8e0e6
}

.feature-image {
    min-height: 670px
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top
}

.feature-copy {
    padding: clamp(50px, 8vw, 110px);
    align-self: center
}

.feature-copy h2 {
    color: #fff
}

.feature-copy blockquote {
    margin: 35px 0 0;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    font: italic 1.25rem Georgia
}

.feature-copy cite,
.reviews cite {
    display: block;
    font: normal .76rem Arial;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: .09em
}

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

.steps b {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--red);
    color: #fff;
    margin-bottom: 22px
}

.reviews {
    width: 100%;
    max-width: none;
    background: #142638;
    color: #fff;
    padding-left: max(24px, calc((100% - var(--max))/2));
    padding-right: max(24px, calc((100% - var(--max))/2))
}

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

.review-grid blockquote {
    margin: 0;
    background: #ffffff0c;
    padding: 34px;
    font: 1.15rem/1.65 Georgia;
    border-top: 2px solid var(--gold)
}

.request {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px
}

.request>div p {
    font-size: 1.05rem
}

.request>div a {
    color: var(--red);
    font-weight: bold
}

.request form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.request label {
    font-weight: bold;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.request input,
.request select,
.request textarea {
    width: 100%;
    display: block;
    margin-top: 7px;
    padding: 14px;
    border: 1px solid #c8cfd4;
    border-radius: 0;
    background: #fff;
    font: 1rem Arial
}

.wide {
    grid-column: 1/-1
}

.form-note {
    margin: 0;
    color: #4c5c68
}

footer {
    background: #08131f;
    color: #b8c3ca;
    display: grid;
    grid-template-columns: 180px 1fr 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 45px max(24px, calc((100vw - var(--max))/2));
    font-size: .86rem
}

footer img {
    width: 170px;
    background: #fff
}

footer a {
    display: block;
    color: #fff;
    text-decoration: none
}

footer p {
    margin: 4px 0
}

footer>p {
    text-align: right
}

@media(max-width:900px) {
    .topbar {
        height: 74px
    }

    .topbar nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #0b1825;
        padding: 22px;
        flex-direction: column
    }

    .topbar nav.open {
        display: flex
    }

    .menu {
        display: block;
        margin-left: auto
    }

    .topbar>.button {
        display: none
    }

    .brand img {
        width: 150px;
        height: 48px
    }

    .hero {
        min-height: 720px
    }

    .strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px
    }

    .strip p {
        grid-column: 1/-1
    }

    .cards,
    .steps,
    .review-grid {
        grid-template-columns: 1fr
    }

    .card ul {
        min-height: auto
    }

    .feature {
        grid-template-columns: 1fr
    }

    .feature-image {
        min-height: 470px
    }

    .request {
        grid-template-columns: 1fr;
        gap: 30px
    }

    footer {
        grid-template-columns: 1fr;
        text-align: left
    }

    footer>p {
        text-align: left
    }
}

@media(max-width:560px) {
    h1 {
        font-size: 3.2rem
    }

    .hero-copy {
        width: calc(100% - 34px)
    }

    .actions,
    .credentials {
        flex-direction: column
    }

    .strip,
    .section {
        width: calc(100% - 34px)
    }

    .section {
        padding: 78px 0
    }

    .strip {
        margin-top: -20px
    }

    .request form {
        grid-template-columns: 1fr
    }

    .feature-copy {
        padding: 55px 24px
    }

    .review-grid blockquote {
        padding: 27px
    }

    .hero-shade {
        background: #08131fd4
    }

    .footer {
        padding: 35px 17px
    }
}