:root {
    --ink: #111d28;
    --navy: #172635;
    --yellow: #ffd733;
    --paper: #f5f6f3;
    --muted: #b5c0cb;
    --line: #344453
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px
}

body {
    margin: 0;
    background: var(--ink);
    color: white;
    font: 16px/1.6 Arial, Helvetica, sans-serif
}

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

button,
input,
select,
textarea {
    font: inherit
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 5px
}

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

h1,
h2,
h3 {
    line-height: 1.07;
    letter-spacing: -1.5px
}

h1 {
    font-size: clamp(48px, 6.4vw, 88px);
    font-weight: 900
}

h2 {
    font-size: clamp(34px, 4.1vw, 56px)
}

h3 {
    font-size: 24px;
    letter-spacing: -.7px
}

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

.demo-bar {
    background: var(--yellow);
    color: var(--ink);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px
}

.demo-bar a {
    text-decoration: underline
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 29px;
    gap: 25px;
    border-bottom: 1px solid var(--line)
}

.logo {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -.7px
}

.logo svg {
    width: 28px;
    height: 39px;
    fill: var(--yellow)
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px
}

.nav>a[aria-current=page] {
    color: var(--yellow)
}

.nav>a:hover {
    color: var(--yellow)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border: 1px solid var(--yellow);
    padding: 14px 22px;
    border-radius: 7px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s
}

.button:hover {
    transform: translateY(-3px)
}

.button.outline {
    background: transparent;
    color: white;
    border-color: #78838e
}

.menu-toggle {
    display: none
}

.eyebrow {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 26px
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 30px;
    align-items: center;
    padding-block: 60px
}

.hero h1 {
    margin-bottom: 25px
}

.hero h1 span {
    color: var(--yellow)
}

.hero-copy>p:not(.eyebrow) {
    color: var(--muted);
    max-width: 440px;
    font-size: 18px
}

.actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px
}

.text-link {
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 7px
}

.hero-photo {
    position: relative
}

.hero-photo img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    border-radius: 8px
}

.photo-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    border-top: 1px solid #ffffff60;
    padding-top: 16px;
    font-size: 12px;
    letter-spacing: 2px
}

.strip {
    background: var(--paper);
    color: var(--ink)
}

.strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-block: 30px
}

.strip h2 {
    font-size: 20px;
    margin-bottom: 6px;
    letter-spacing: -.5px
}

.strip p {
    font-size: 13px;
    margin: 0;
    color: #53606a
}

.section {
    padding-block: 85px
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 40px
}

.section-heading h2 {
    margin: 0
}

.section-heading>p {
    max-width: 350px;
    color: var(--muted);
    margin: 0
}

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

.service-card {
    background: var(--navy);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 9px;
    display: flex;
    flex-direction: column
}

.service-card .number {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 35px
}

.service-card p {
    color: var(--muted);
    font-size: 15px
}

.service-card a {
    margin-top: auto;
    padding-top: 18px;
    color: var(--yellow);
    font-weight: bold;
    font-size: 14px
}

.process {
    border-block: 1px solid var(--line);
    background: #0d1822
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px
}

.steps {
    display: grid;
    gap: 25px
}

.step {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px
}

.step>span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 50%;
    font-weight: bold
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px
}

.step p {
    color: var(--muted);
    margin: 0
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px
}

.about p {
    color: var(--muted)
}

.about .lead {
    color: white;
    font-size: 24px;
    line-height: 1.4
}

.cta {
    background: var(--yellow);
    color: var(--ink);
    padding-block: 60px
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
}

.cta h2 {
    margin-bottom: 12px
}

.cta p {
    margin: 0
}

.cta .button {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    white-space: nowrap
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 35px
}

.footer p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

.footer a:not(.logo) {
    text-decoration: underline
}

.page-intro {
    padding-block: 60px 45px;
    max-width: 850px
}

.page-intro h1 {
    margin-bottom: 23px
}

.page-intro>p:last-child {
    color: var(--muted);
    max-width: 590px;
    font-size: 18px
}

.service-detail {
    padding: 45px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 65px
}

.service-detail h2 {
    font-size: 36px
}

.service-detail p,
.service-detail li {
    color: var(--muted)
}

.service-detail li {
    margin-bottom: 10px
}

.service-detail .number {
    color: var(--yellow);
    font-size: 13px;
    display: block;
    margin-bottom: 15px
}

.faq {
    max-width: 850px;
    margin: 60px auto
}

.faq summary {
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    padding: 22px 0
}

.faq details {
    border-bottom: 1px solid var(--line)
}

.faq p {
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    padding-bottom: 80px
}

.contact-grid h2 {
    font-size: 31px
}

.contact-grid aside p {
    color: var(--muted)
}

.notice {
    border: 1px solid var(--line);
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 25px
}

.quote-form {
    background: var(--navy);
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: 12px
}

label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px
}

select {
    width: 100%;
    background: var(--ink);
    color: white;
    border: 1px solid #667888;
    border-radius: 7px;
    padding: 14px;
    margin-bottom: 22px
}

.quote-form button {
    width: 100%
}

.quote-form .note {
    font-size: 12px;
    color: var(--muted);
    margin: 18px 0 0
}

.result {
    padding: 22px;
    background: #203b3d;
    border: 1px solid #527a77;
    border-radius: 8px;
    margin-top: 25px
}

.result h3 {
    font-size: 22px
}

.result p {
    font-size: 14px;
    margin-bottom: 12px
}

.result a {
    color: var(--yellow);
    text-decoration: underline;
    overflow-wrap: anywhere
}

.skip {
    position: absolute;
    top: -100px;
    left: 16px;
    background: white;
    color: var(--ink);
    padding: 12px;
    z-index: 9
}

.skip:focus {
    top: 10px
}

[hidden] {
    display: none !important
}

@media(max-width:800px) {
    .container {
        width: calc(100% - 40px)
    }

    .header {
        position: relative;
        padding-block: 24px
    }

    .logo {
        font-size: 19px
    }

    .menu-toggle {
        display: block;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: transparent;
        color: white;
        padding: 9px 13px
    }

    .nav {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 25px;
        border: 1px solid var(--line);
        border-radius: 10px;
        z-index: 5
    }

    .nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-block: 40px
    }

    .hero h1 {
        font-size: clamp(42px, 10vw, 58px);
        letter-spacing: -2px
    }

    .hero-photo img {
        height: 400px;
        max-height: 110vw
    }

    .strip .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 25px
    }

    .strip .container>div {
        border-bottom: 1px solid #ddd;
        padding-bottom: 12px
    }

    .section {
        padding-block: 55px
    }

    .section-heading {
        flex-direction: column;
        align-items: start;
        gap: 20px
    }

    .service-grid,
    .process-grid,
    .about,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .service-card .number {
        margin-bottom: 20px
    }

    .cta .container {
        flex-direction: column;
        align-items: start;
        gap: 25px
    }

    .footer {
        flex-wrap: wrap
    }

    .footer p {
        width: 100%
    }

    .page-intro {
        padding-block: 40px
    }

    .page-intro h1 {
        font-size: 52px
    }

    .service-detail {
        padding-block: 30px
    }

    .quote-form {
        padding: 23px
    }

    .actions {
        gap: 22px
    }

    .faq {
        margin-block: 35px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .button {
        transition: none
    }
}