:root {
    --primary: #1d7a6e;
    --primary-dark: #115b52;
    --primary-soft: #eaf7f4;

    --navy: #15334a;

    --text: #263746;
    --muted: #6f7f8d;

    --white: #ffffff;
    --bg: #f7fafb;

    --line: #dfe8ec;

    --danger: #b42318;
    --success: #166534;

    --shadow:
        0 18px 50px
        rgba(22, 51, 74, 0.10);

    --radius: 22px;
    --radius-sm: 14px;
}


/* ============================================================
   GLOBAL
============================================================ */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.65;
}


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


a {
    color: var(--primary);
    text-decoration: none;
}


a:hover {
    color: var(--primary-dark);
}


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


h1,
h2,
h3,
h4 {
    margin-top: 0;

    color: var(--navy);

    line-height: 1.2;
}


h1 {
    font-size:
        clamp(
            2.35rem,
            6vw,
            4.8rem
        );
}


h2 {
    font-size:
        clamp(
            1.85rem,
            4vw,
            3rem
        );
}


h3 {
    font-size: 1.25rem;
}


p {
    margin-top: 0;
}



/* ============================================================
   COMMON LAYOUT
============================================================ */

.container {
    width:
        min(
            1160px,
            calc(100% - 36px)
        );

    margin: 0 auto;
}


.section {
    padding: 82px 0;
}


.section-soft {
    background: var(--bg);
}


.section-heading {
    max-width: 720px;

    margin:
        0 auto 38px;

    text-align: center;
}


.section-heading p {
    color: var(--muted);

    font-size: 1.06rem;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    text-transform: uppercase;

    letter-spacing: .12em;

    font-weight: 800;
    font-size: .78rem;
}



/* ============================================================
   BUTTONS
============================================================ */

.btn {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding:
        11px 20px;

    border:
        1px solid transparent;

    border-radius: 999px;

    font-weight: 800;

    cursor: pointer;

    transition:
        .2s ease;
}


.btn:hover {
    transform:
        translateY(-1px);
}


.btn-primary {
    color: var(--white);

    background:
        var(--primary);
}


.btn-primary:hover {
    color: var(--white);

    background:
        var(--primary-dark);
}


.btn-outline {
    color: var(--primary);

    border-color:
        var(--primary);

    background:
        transparent;
}


.btn-light {
    color:
        var(--primary-dark);

    background:
        var(--white);
}


.btn-lg {
    min-height: 54px;

    padding:
        14px 26px;
}


.btn-block {
    width: 100%;
}



/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(
            255,
            255,
            255,
            .97
        );

    backdrop-filter:
        blur(12px);

    border-bottom:
        1px solid
        rgba(
            223,
            232,
            236,
            .8
        );
}


.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}


.brand-logo {
    width: auto;
    height: 54px;

    max-width: 210px;

    object-fit: contain;
}


.brand-text {
    color: var(--navy);

    font-size: 1.5rem;
    font-weight: 900;

    letter-spacing: -.03em;
}


.main-nav {
    display: flex;
    align-items: center;

    gap: 21px;
}


.main-nav > a:not(.btn) {
    color: #3b4a57;

    font-size: .95rem;
    font-weight: 700;
}


.main-nav > a.active:not(.btn),
.main-nav > a:not(.btn):hover {
    color: var(--primary);
}


.nav-book {
    margin-left: 6px;
}


.nav-toggle {
    width: 46px;
    height: 46px;

    display: none;

    padding: 10px;

    border: 0;

    background:
        transparent;
}


.nav-toggle span {
    height: 2px;

    display: block;

    margin: 6px 0;

    background:
        var(--navy);
}



/* ============================================================
   HERO
============================================================ */

.hero {
    position: relative;

    min-height: 700px;

    overflow: hidden;

    background:
        var(--navy);
}


.hero-slides {
    position: relative;

    min-height: 700px;
}


.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    background-size: cover;
    background-position: center;

    transition:
        opacity .7s ease;
}


.hero-slide::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(
                15,
                41,
                59,
                .95
            )
            0%,
            rgba(
                15,
                41,
                59,
                .84
            )
            45%,
            rgba(
                15,
                41,
                59,
                .50
            )
            72%,
            rgba(
                15,
                41,
                59,
                .42
            )
            100%
        );
}


.hero-slide.active {
    opacity: 1;

    pointer-events: auto;
}


.hero-content {
    position: relative;

    z-index: 2;

    min-height: 700px;

    display: flex;
    align-items: center;

    padding-right: 500px;
}


.hero-copy {
    max-width: 610px;

    padding:
        70px 0;

    color:
        var(--white);
}


.hero-copy h1 {
    margin-bottom: 22px;

    color:
        var(--white);

    font-size:
        clamp(
            2.5rem,
            4.6vw,
            4.25rem
        );

    letter-spacing:
        -.045em;
}


.hero-copy p {
    max-width: 580px;

    margin-bottom: 30px;

    color:
        rgba(
            255,
            255,
            255,
            .88
        );

    font-size: 1.15rem;
}


.hero-copy .eyebrow {
    color:
        #7ce0d2;
}



/* ============================================================
   HERO APPOINTMENT FORM
============================================================ */

.hero-booking-layer {
    position: absolute;

    inset: 0;

    z-index: 4;

    pointer-events: none;
}


.hero-booking-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.hero-booking-card {
    width: 430px;

    max-width: 100%;

    padding:
        28px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .26
        );

    border-radius: 24px;

    background:
        rgba(
            255,
            255,
            255,
            .98
        );

    box-shadow:
        0 28px 80px
        rgba(
            2,
            20,
            31,
            .28
        );

    pointer-events: auto;
}


.hero-booking-heading {
    margin-bottom: 20px;
}


.hero-booking-eyebrow {
    display: inline-block;

    margin-bottom: 7px;

    color:
        var(--primary);

    font-size: .70rem;
    font-weight: 900;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.hero-booking-heading h2 {
    margin-bottom: 7px;

    color:
        var(--navy);

    font-size: 1.65rem;

    letter-spacing:
        -.025em;
}


.hero-booking-heading p {
    margin: 0;

    color:
        var(--muted);

    font-size: .88rem;

    line-height: 1.5;
}


.hero-form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        13px 12px;
}


.hero-form-group {
    min-width: 0;

    display: grid;

    gap: 5px;
}


.hero-form-group.full,
.hero-consent.full,
.hero-form-submit.full {
    grid-column:
        1 / -1;
}


.hero-form-group label {
    color:
        var(--navy);

    font-size: .76rem;
    font-weight: 800;
}


.hero-form-group label span {
    color:
        #c0362c;
}


.hero-form-group input,
.hero-form-group select {
    width: 100%;
    height: 43px;

    padding:
        9px 11px;

    border:
        1px solid
        #d3dfe4;

    border-radius: 10px;

    outline: none;

    color:
        var(--text);

    background:
        #fbfdfe;

    font-size: .86rem;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.hero-form-group input::placeholder {
    color:
        #98a5ae;
}


.hero-form-group input:focus,
.hero-form-group select:focus {
    border-color:
        var(--primary);

    background:
        var(--white);

    box-shadow:
        0 0 0 3px
        rgba(
            29,
            122,
            110,
            .10
        );
}


.hero-consent {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin-top: 2px;
}


.hero-consent input {
    width: 16px;
    height: 16px;

    flex:
        0 0 16px;

    margin:
        3px 0 0;
}


.hero-consent label {
    color:
        #536571;

    font-size: .71rem;
    font-weight: 600;

    line-height: 1.4;
}


.hero-consent a {
    font-weight: 800;

    text-decoration:
        underline;
}


.hero-submit-btn {
    min-height: 48px;

    border-radius: 12px;

    font-size: .92rem;
}


.hero-submit-btn span {
    font-size: 1.15rem;

    transition:
        transform .2s ease;
}


.hero-submit-btn:hover span {
    transform:
        translateX(3px);
}


.hero-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 13px;

    padding-top: 12px;

    border-top:
        1px solid
        #ebf0f2;

    color:
        #71818c;

    font-size: .72rem;
    font-weight: 700;
}


.hero-secure-icon {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color:
        var(--primary-dark);

    background:
        var(--primary-soft);

    font-size: .68rem;
    font-weight: 900;
}



/* ============================================================
   HERO SLIDER DOTS
============================================================ */

.hero-dots {
    position: absolute;

    z-index: 6;

    left:
        max(
            18px,
            calc(
                (100vw - 1160px)
                / 2
            )
        );

    bottom: 30px;

    display: flex;

    gap: 9px;
}


.hero-dot {
    width: 11px;
    height: 11px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .45
        );

    cursor: pointer;

    transition:
        width .2s ease,
        background .2s ease;
}


.hero-dot.active {
    width: 30px;

    border-radius:
        999px;

    background:
        var(--white);
}



/* ============================================================
   STEPS / CONDITIONS / INFO CARDS
============================================================ */

.steps-grid,
.conditions-grid,
.info-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 24px;
}


.step-card,
.condition-card,
.info-card {
    padding: 28px;

    border:
        1px solid var(--line);

    border-radius:
        var(--radius);

    background:
        var(--white);

    box-shadow:
        0 10px 34px
        rgba(
            22,
            51,
            74,
            .06
        );
}


.step-number {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 14px;

    color:
        var(--primary);

    background:
        var(--primary-soft);

    font-weight: 900;
}


.step-card p,
.condition-card p,
.info-card p {
    color:
        var(--muted);
}



/* ============================================================
   CONDITION CARDS
============================================================ */

.condition-card {
    padding: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;
}


.condition-image {
    aspect-ratio:
        16 / 9;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--primary-soft),
            #d5edf4
        );
}


.condition-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.condition-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 24px;
}


.condition-body .card-link {
    margin-top: auto;

    font-weight: 800;
}



/* ============================================================
   CTA
============================================================ */

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        44px 48px;

    border-radius: 28px;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    box-shadow:
        var(--shadow);
}


.cta-panel h2,
.cta-panel p {
    color:
        var(--white);
}


.cta-panel p {
    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            .84
        );
}


.cta-panel .eyebrow {
    color:
        #9ce7dc;
}



/* ============================================================
   FAQ
============================================================ */

.faq-list {
    max-width: 900px;

    display: grid;

    gap: 14px;

    margin: 0 auto;
}


details.faq-item {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background:
        var(--white);
}


details.faq-item summary {
    padding:
        20px 24px;

    list-style: none;

    color:
        var(--navy);

    font-weight: 800;

    cursor: pointer;
}


details.faq-item summary::-webkit-details-marker {
    display: none;
}


details.faq-item .faq-answer {
    padding:
        0 24px 22px;

    color:
        var(--muted);
}



/* ============================================================
   PAGE HERO
============================================================ */

.page-hero {
    padding:
        74px 0;

    border-bottom:
        1px solid var(--line);

    background:
        linear-gradient(
            135deg,
            #eef8f6,
            #f7fbfc
        );
}


.page-hero h1 {
    margin-bottom: 14px;

    font-size:
        clamp(
            2.15rem,
            5vw,
            3.6rem
        );
}


.page-hero p {
    max-width: 760px;

    color:
        var(--muted);

    font-size: 1.08rem;
}


.breadcrumbs {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 18px;

    color:
        var(--muted);

    font-size: .93rem;
}


.breadcrumbs a {
    font-weight: 700;
}



/* ============================================================
   CONTENT
============================================================ */

.content-wrap {
    max-width: 860px;

    margin: 0 auto;
}


.prose {
    color:
        var(--text);
}


.prose h2,
.prose h3 {
    margin-top: 34px;
}


.prose p,
.prose ul,
.prose ol {
    margin-bottom: 18px;
}


.prose img {
    margin:
        24px 0;

    border-radius: 18px;
}



/* ============================================================
   STANDARD FORMS
============================================================ */

.form-card {
    max-width: 860px;

    margin: 0 auto;

    padding: 34px;

    border:
        1px solid var(--line);

    border-radius:
        var(--radius);

    background:
        var(--white);

    box-shadow:
        var(--shadow);
}


.form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 20px;
}


.form-group {
    display: grid;

    gap: 8px;
}


.form-group.full {
    grid-column:
        1 / -1;
}


label {
    color:
        var(--navy);

    font-weight: 800;
}


input,
select,
textarea {
    width: 100%;

    padding:
        12px 14px;

    border:
        1px solid
        #ccd9df;

    border-radius: 12px;

    outline: none;

    color:
        var(--text);

    background:
        #ffffff;
}


input:focus,
select:focus,
textarea:focus {
    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(
            29,
            122,
            110,
            .10
        );
}


textarea {
    min-height: 150px;

    resize: vertical;
}


.checkbox-row {
    display: flex;
    align-items: flex-start;

    gap: 10px;
}


.checkbox-row input {
    width: auto;

    margin-top: 5px;
}


.checkbox-row label {
    color:
        var(--text);

    font-weight: 600;
}


.honeypot {
    position: absolute !important;

    left: -9999px !important;

    opacity: 0 !important;
}


.alert {
    margin-bottom: 20px;

    padding:
        14px 16px;

    border-radius: 12px;
}


.alert-error {
    color:
        var(--danger);

    border:
        1px solid #fecdca;

    background:
        #fef3f2;
}


.alert-success {
    color:
        var(--success);

    border:
        1px solid #abefc6;

    background:
        #ecfdf3;
}


.error-list {
    margin: 0;

    padding-left: 20px;
}


.form-note {
    color:
        var(--muted);

    font-size: .92rem;
}



/* ============================================================
   CONTACT
============================================================ */

.contact-layout {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 34px;

    align-items: start;
}


.contact-card {
    padding: 30px;

    border-radius:
        var(--radius);

    color:
        var(--white);

    background:
        var(--navy);
}


.contact-card h2,
.contact-card h3 {
    color:
        var(--white);
}


.contact-card a {
    color:
        #9ce7dc;
}


.contact-card p {
    color:
        rgba(
            255,
            255,
            255,
            .78
        );
}



/* ============================================================
   CONDITION DETAIL
============================================================ */

.condition-detail {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 42px;

    align-items: start;
}


.condition-detail-image {
    overflow: hidden;

    border-radius:
        var(--radius);

    background:
        var(--primary-soft);

    box-shadow:
        var(--shadow);
}


.condition-detail-image img {
    width: 100%;

    aspect-ratio:
        4 / 3;

    object-fit: cover;
}



/* ============================================================
   EMPTY STATE
============================================================ */

.empty-state {
    padding: 44px;

    border:
        1px dashed
        #c8d7de;

    border-radius:
        var(--radius);

    text-align: center;

    background:
        var(--bg);
}



/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    padding:
        64px 0 24px;

    color:
        rgba(
            255,
            255,
            255,
            .75
        );

    background:
        #0f293b;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 36px;
}


.site-footer h3 {
    color:
        var(--white);

    font-size: 1rem;
}


.site-footer .brand-text {
    color:
        var(--white);
}


.brand-footer {
    margin-bottom: 16px;
}


.footer-brand p {
    max-width: 340px;
}


.footer-links,
.footer-contact {
    display: grid;

    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.site-footer a {
    color:
        rgba(
            255,
            255,
            255,
            .78
        );
}


.site-footer a:hover {
    color:
        #9ce7dc;
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 38px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );

    font-size: .9rem;
}


.footer-bottom p {
    margin: 0;
}



/* ============================================================
   THANK YOU
============================================================ */

.thank-you-card {
    max-width: 760px;

    margin: 0 auto;

    padding: 52px;

    border:
        1px solid var(--line);

    border-radius: 28px;

    text-align: center;

    box-shadow:
        var(--shadow);
}


.thank-icon {
    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    margin:
        0 auto 20px;

    border-radius: 50%;

    color:
        var(--primary);

    background:
        var(--primary-soft);

    font-size: 2rem;
    font-weight: 900;
}



/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .nav-toggle {
        display: block;
    }


    .main-nav {
        position: absolute;

        top: 82px;
        left: 18px;
        right: 18px;

        display: none;

        padding: 18px;

        border:
            1px solid var(--line);

        border-radius: 16px;

        background:
            var(--white);

        box-shadow:
            var(--shadow);

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }


    .main-nav.open {
        display: flex;
    }


    .main-nav > a {
        padding:
            11px 8px;
    }


    .nav-book {
        margin:
            8px 0 0;
    }


    .hero-content {
        padding-right: 455px;
    }


    .hero-booking-card {
        width: 400px;

        padding: 24px;
    }


    .hero-copy h1 {
        font-size:
            clamp(
                2.3rem,
                4.6vw,
                3.5rem
            );
    }


    .footer-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}



/* ============================================================
   SMALL TABLET
============================================================ */

@media (max-width: 900px) {

    .section {
        padding:
            62px 0;
    }


    /*
    | On smaller screens form stacks below the hero text,
    | while remaining inside the banner.
    */

    .hero,
    .hero-slides {
        min-height: 980px;
    }


    .hero-content {
        min-height: 470px;

        align-items: flex-start;

        padding:
            70px 0 30px;
    }


    .hero-copy {
        max-width: 680px;

        padding: 0;
    }


    .hero-slide::before {
        background:
            linear-gradient(
                180deg,
                rgba(
                    15,
                    41,
                    59,
                    .91
                )
                0%,
                rgba(
                    15,
                    41,
                    59,
                    .78
                )
                58%,
                rgba(
                    15,
                    41,
                    59,
                    .69
                )
                100%
            );
    }


    .hero-booking-layer {
        top: auto;

        bottom: 58px;

        height: auto;
    }


    .hero-booking-container {
        height: auto;

        display: block;
    }


    .hero-booking-card {
        width: 100%;

        max-width: 720px;

        margin:
            0 auto;
    }


    .hero-dots {
        bottom: 24px;
    }


    .steps-grid,
    .conditions-grid,
    .info-grid,
    .contact-layout,
    .condition-detail {
        grid-template-columns:
            1fr;
    }


    .cta-panel {
        padding:
            34px 28px;

        flex-direction: column;
        align-items: flex-start;
    }


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


    .form-group.full {
        grid-column:
            auto;
    }

}



/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 560px) {

    .container {
        width:
            min(
                100% - 24px,
                1160px
            );
    }


    .header-inner {
        min-height: 72px;
    }


    .main-nav {
        top: 72px;

        left: 12px;
        right: 12px;
    }


    .brand-logo {
        height: 44px;

        max-width: 170px;
    }


    .hero,
    .hero-slides {
        min-height: 1190px;
    }


    .hero-content {
        min-height: 455px;

        padding:
            52px 0 25px;
    }


    .hero-copy h1 {
        font-size:
            clamp(
                2.1rem,
                11vw,
                3rem
            );

        margin-bottom: 16px;
    }


    .hero-copy p {
        margin-bottom: 22px;

        font-size: 1rem;
    }


    .hero-booking-layer {
        bottom: 52px;
    }


    .hero-booking-card {
        padding:
            22px 18px;

        border-radius: 19px;
    }


    .hero-booking-heading {
        margin-bottom: 17px;
    }


    .hero-booking-heading h2 {
        font-size: 1.42rem;
    }


    .hero-form-grid {
        grid-template-columns:
            1fr;

        gap: 12px;
    }


    .hero-form-group.full,
    .hero-consent.full,
    .hero-form-submit.full {
        grid-column: auto;
    }


    .hero-form-group input,
    .hero-form-group select {
        height: 45px;
    }


    .hero-dots {
        left: 12px;

        bottom: 20px;
    }


    .form-card {
        padding: 22px;
    }


    .footer-grid {
        grid-template-columns:
            1fr;
    }


    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;
    }


    .thank-you-card {
        padding:
            36px 22px;
    }

}