:root {
    --navy: #0c2c46;
    --navy2: #174e70;
    --blue: #287da5;
    --green: #71ac43;
    --green-dark: #558c32;

    --bg: #edf5f7;
    --paper: #f8fbfc;
    --white: #ffffff;

    --ink: #20313b;
    --muted: #687983;
    --line: #cedde3;

    --shadow: 0 18px 50px rgba(22, 57, 76, .10);

    --max: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--ink);

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

    line-height: 1.55;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(40,125,165,.10),
            transparent 33rem
        ),
        linear-gradient(
            180deg,
            #eef6f8,
            #e8f1f3
        );
}


a {
    color: inherit;
}


.wrap {
    width: min(var(--max), calc(100% - 38px));
    margin: auto;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(248,251,252,.96);

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

    backdrop-filter: blur(14px);
}


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

    display: grid;

    grid-template-columns:
        minmax(240px, .75fr)
        1fr
        minmax(220px, .7fr);

    gap: 28px;

    align-items: center;
}


.facility-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}


.facility-brand img {
    display: block;

    width: 245px;
    max-width: 100%;
    max-height: 95px;

    object-fit: contain;
    object-position: left center;
}


.main-nav {
    display: flex;
    justify-content: center;
    gap: 24px;

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


.main-nav a {
    color: #52646e;
    text-decoration: none;
}


.main-nav a:hover {
    color: var(--blue);
}


.header-contact {
    text-align: right;
    font-size: .87rem;
}


.header-contact a {
    display: inline-block;

    color: var(--blue);

    text-decoration: none;
}


.header-phone {
    color: var(--navy) !important;

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



/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    color: var(--blue);

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

    letter-spacing: .16em;

    text-transform: uppercase;
}


.section {
    padding: 90px 0;
}


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

    margin-bottom: 40px;
}


.section-heading h2,
.contact-strip h2,
.human-section h2 {
    margin: 10px 0 15px;

    color: var(--navy);

    font-size: clamp(2.35rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -.045em;
}


.section-heading p {
    max-width: 760px;

    color: var(--muted);

    font-size: 1.06rem;

    line-height: 1.75;
}



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

.hero {
    position: relative;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(113,172,67,.13),
            transparent 27rem
        ),
        radial-gradient(
            circle at 10% 20%,
            rgba(40,125,165,.12),
            transparent 30rem
        ),
        #f4f9fa;
}


.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .24;

    background-image:
        linear-gradient(
            rgba(40,125,165,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(40,125,165,.08) 1px,
            transparent 1px
        );

    background-size: 54px 54px;
}


.hero-grid {
    position: relative;

    min-height: 690px;

    display: grid;

    grid-template-columns: 1.12fr .88fr;

    align-items: center;

    gap: 65px;

    padding: 90px 0;
}


.hero-copy h1 {
    max-width: 800px;

    margin: 15px 0 23px;

    color: var(--navy);

    font-size: clamp(3.2rem, 7vw, 6.4rem);

    line-height: .94;

    letter-spacing: -.058em;
}


.hero-copy h1 span {
    color: var(--green-dark);
}


.hero-lead {
    max-width: 760px;

    color: var(--muted);

    font-size: clamp(1.08rem, 2vw, 1.28rem);

    line-height: 1.72;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}


.button {
    display: inline-block;

    padding: 14px 20px;

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

    font-weight: 900;

    text-decoration: none;

    transition: .16s ease;
}


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


.button.primary {
    color: white;

    border-color: var(--navy);

    background: var(--navy);
}


.button.secondary {
    color: var(--navy);

    background: white;
}


.hero-values {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 29px;
}


.hero-values span {
    padding: 7px 11px;

    border: 1px solid #c8d9df;
    border-radius: 100px;

    color: #526772;

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

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


.hero-brand-card {
    padding: 35px;

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

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

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


.hero-brand-card img {
    display: block;

    width: 100%;
    height: auto;
}


.hero-brand-card p {
    margin: 23px 0 0;

    color: var(--muted);

    line-height: 1.7;
}



/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: #edf5f7;
}


.service-grid {
    display: grid;

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

    gap: 18px;
}


.service-card {
    min-height: 275px;

    padding: 27px;

    border: 1px solid var(--line);
    border-top: 4px solid var(--blue);

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

    transition: .17s ease;
}


.service-card:nth-child(3n+2) {
    border-top-color: var(--green);
}


.service-card:nth-child(3n) {
    border-top-color: var(--navy2);
}


.service-card:hover {
    transform: translateY(-4px);

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


.service-number {
    color: var(--blue);

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

    letter-spacing: .14em;
}


.service-card h3 {
    margin: 36px 0 12px;

    color: var(--navy);

    font-size: 1.35rem;
}


.service-card p {
    color: var(--muted);

    line-height: 1.7;
}



/* =========================================================
   HUMAN SERVICE
   ========================================================= */

.human-section {
    padding: 82px 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            #0c2c46,
            #174e70
        );
}


.human-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}


.human-section .eyebrow {
    color: #86c7dc;
}


.human-section h2 {
    color: white;
}


.human-section p {
    color: #c9d8df;

    font-size: 1.05rem;

    line-height: 1.75;
}


.human-emphasis {
    margin-top: 26px;

    padding-left: 18px;

    border-left: 4px solid var(--green);

    color: white !important;

    font-weight: 800;
}



/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    background: #f7fafb;
}


.process-grid {
    display: grid;

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

    gap: 15px;
}


.process-step {
    padding: 26px;

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

    background: white;
}


.process-step strong {
    display: flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: var(--green);

    font-size: 1.05rem;
}


.process-step h3 {
    margin: 24px 0 10px;

    color: var(--navy);
}


.process-step p {
    color: var(--muted);

    line-height: 1.65;
}



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

.contact-strip {
    padding: 60px 0;

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

    background: #dfeef2;
}


.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}


.contact-links {
    display: grid;

    gap: 13px;
}


.contact-links a {
    display: block;

    padding: 17px 19px;

    border: 1px solid #c2d6de;

    color: var(--navy);

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

    font-weight: 900;

    text-decoration: none;
}


.contact-links span {
    display: block;

    margin-bottom: 3px;

    color: var(--blue);

    font-size: .71rem;

    letter-spacing: .13em;

    text-transform: uppercase;
}



/* =========================================================
   BOOKING FORM
   ========================================================= */

.booking-section {
    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(40,125,165,.08),
            transparent 26rem
        ),
        #edf5f7;
}


.booking-heading {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.booking-heading p {
    margin-left: auto;
    margin-right: auto;
}


.booking-shell {
    max-width: 980px;

    margin: auto;

    padding: 36px;

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

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

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


.booking-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


label {
    display: flex;
    flex-direction: column;

    gap: 8px;

    color: var(--navy);

    font-weight: 800;
}


input,
select,
textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #b9ced6;
    border-radius: 8px;

    color: var(--ink);

    background: #f8fbfc;

    font: inherit;
}


input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(40,125,165,.22);

    border-color: var(--blue);
}


textarea {
    resize: vertical;
}


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


.form-actions {
    display: flex;

    align-items: center;

    gap: 18px;
}


.form-actions button {
    padding: 14px 22px;

    border: 0;
    border-radius: 8px;

    color: white;

    background: var(--green-dark);

    font: inherit;
    font-weight: 900;

    cursor: pointer;
}


.form-actions span {
    color: var(--muted);

    font-size: .9rem;
}



/* =========================================================
   PAYMENT
   ========================================================= */

.payment-section {
    background: #ddecef;
}


.payment-panel {
    max-width: 900px;

    margin: auto;

    padding: 42px;

    text-align: center;

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

    background: rgba(248,251,252,.94);

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


.payment-panel h2 {
    margin: 8px 0 13px;

    color: var(--navy);

    font-size: clamp(2.2rem,5vw,4rem);

    letter-spacing: -.04em;
}


.payment-panel > p {
    color: var(--muted);

    line-height: 1.7;
}


.payment-actions {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;

    margin: 27px 0;
}


.payment-button {
    display: inline-block;

    min-width: 225px;

    padding: 15px 21px;

    border-radius: 8px;

    font-weight: 900;

    text-align: center;
    text-decoration: none;
}


.stripe-button {
    color: white;

    background: #635bff;
}


.cash-app-button {
    color: #071b0d;

    background: #00d64f;
}


.cashapp-qr-wrap {
    margin-top: 24px;

    text-align: center;
}


.cashapp-qr {
    display: block;

    width: min(100%, 300px);
    height: auto;

    margin: 12px auto;

    padding: 12px;

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

    background: white;
}


.payment-note {
    margin-top: 20px;

    color: var(--muted);

    font-size: .91rem;
}



/* =========================================================
   THANKS
   ========================================================= */

.thanks-section {
    min-height: 650px;

    display: flex;

    align-items: center;

    padding: 80px 0;

    background: #edf5f7;
}


.thanks-card {
    max-width: 760px;

    margin: auto;

    padding: 48px;

    text-align: center;

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

    background: white;

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


.success-mark {
    display: flex;

    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: var(--green);

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


.thanks-card h1 {
    margin: 10px 0 18px;

    color: var(--navy);

    font-size: clamp(2.3rem,5vw,4.2rem);

    line-height: 1;
}


.thanks-card p {
    color: var(--muted);

    line-height: 1.7;
}


.thanks-actions {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 11px;

    margin-top: 28px;
}



/* =========================================================
   FLASH / ADMIN EXISTING SUPPORT
   ========================================================= */

.flash {
    margin-top: 20px;

    padding: 13px 16px;

    border: 1px solid #bad0d8;
    border-radius: 8px;

    background: white;
}


.flash.error {
    color: #8c2020;

    border-color: #e8baba;

    background: #fff3f3;
}


.admin-head {
    display: flex;

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

    padding-top: 30px;
}


.table-wrap {
    overflow: auto;

    margin-bottom: 50px;

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

    background: white;
}


table {
    width: 100%;
    min-width: 1100px;

    border-collapse: collapse;
}


th,
td {
    padding: 12px;

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

    text-align: left;
    vertical-align: top;
}


th {
    color: white;

    background: var(--navy);
}


small {
    color: var(--muted);
}



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

footer {
    padding: 38px 0 24px;

    color: #bdd0da;

    background: var(--navy);
}


.footer-grid {
    display: grid;

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

    gap: 40px;

    align-items: center;
}


.footer-logo {
    display: block;

    width: 220px;
    max-width: 100%;

    padding: 8px;

    border-radius: 8px;

    background: rgba(255,255,255,.92);
}


footer a {
    color: white;

    text-decoration: none;
}


.copyright {
    margin-top: 25px;
    padding-top: 20px;

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

    font-size: .82rem;
}



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

@media(max-width:900px) {

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .header-contact {
        text-align: right;
    }

    .hero-grid,
    .human-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;

        padding: 65px 0;
    }

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

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

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

}


@media(max-width:650px) {

    .wrap {
        width: min(100% - 26px, var(--max));
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 10px;

        padding: 14px 0;
    }

    .facility-brand img {
        width: 210px;
    }

    .header-contact {
        text-align: left;
    }

    .service-grid,
    .process-grid,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: auto;
    }

    .booking-shell,
    .payment-panel,
    .thanks-card {
        padding: 27px 20px;
    }

    .form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

}
