
:root {
    --brand-dark: #153F2F;
    --text: #0f172a;
    --border: #eef2f7;
}

/* Base */
* {
    box-sizing: border-box;
    overflow:hidden;
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
    color: var(--text);
    background: #fff;
}


p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-size: 1.15rem
}

h4 {
        margin: 0 0 12px 0;
    font-size: 1.125rem;
}


section {
    padding: 56px 0
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px
}

/* Header + Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--border);
}
/* Grid: logo | center links | right cluster */
.site-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
    padding: 0px 25px;
    font-size: 1.15rem;
    color:var(--brand-dark);
}

.nav-left {
    justify-self: start
}

.nav-center {
    justify-self: center;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: .75rem
}

.site-nav a {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 600;
    padding: 6px 8px;
}

    .site-nav a:hover {
        text-decoration: underline
    }

.logo-link img {
    display: block;
    height: 40px;
    width: auto
}

/* Hamburger */
.nav-toggle {
    display: none; /* desktop hidden */
    width: 40px;
    height: 36px;
    padding: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    transition: transform 150ms ease,opacity 150ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

/* Mobile menu (dropdown) */
.mobile-menu {
    display: none
}

    .mobile-menu.show {
        display: grid;
        gap: 2px;
        padding: 8px 10px 12px;
        border-bottom: 1px solid var(--border);
        background: #fff;
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
    }

    .mobile-menu a {
        display: block;
        padding: 12px 8px;
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
        border-radius: 8px;
    }

        .mobile-menu a:hover {
            background: #f6f8fb
        }

/* Hero (adjustable) */
.hero-banner {
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    padding: 15px;

}

    .hero-banner .media {
        display: grid;
        place-items: center;
        text-align: center;
        color: #fff
    }

    .hero-banner .mediaBoxContentWrapper {
        max-width: 820px;
        padding: 0 16px
    }

.hero-title {
    margin: 0 0 10px 0;
    font-weight: 800;
    line-height: 1.15;
    font-size: 2.5rem;
}

.hero-sub {
    margin: 0;
    opacity: .9;
    line-height: 1.55;
    font-size: clamp(1rem,.95rem + .6vw,1.25rem)
}


.home-hero {
    height: 40vh;
    background-image: url("/img/AdobeStock_1440710178sm.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--bg-x, 50%) var(--bg-y, 90%);
}


.collections-hero {
    height: 30vh;
    background-image: url("/img/AdobeStock_488235608sm.jpeg");
    background-repeat: no-repeat;
    background-size: 100% auto; 
    background-position: var(--bg-x, 50%) var(--bg-y, 25%);
    border:1px solid #ccc;
}

.recovery-hero {
    height: 30vh;
    background-image: url("/img/AdobeStock_1345149506sm.jpeg");
    background-repeat: no-repeat;
    background-size: 200% 150%;
    background-position: var(--bg-x, 50%) var(--bg-y, 45%);
}

@media (max-width:900px) {

    .home-hero {
        height: 40vh;
        background-image: url("/img/AdobeStock_1440710178sm.jpeg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: var(--bg-x, 75%) var(--bg-y, top);
    }


    .collections-hero {
        height: 40vh;
        background-image: url("/img/AdobeStock_488235608sm.jpeg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: var(--bg-x, 50%) var(--bg-y, 40%);
    }

    .recovery-hero {
        height: 40vh;
        background-image: url('/img/AdobeStock_1345149506sm.jpeg');
        background-repeat: no-repeat;
        background-size: 300% 100%;
        background-position: var(--bg-x, 50%) var(--bg-y, 20%);
    }
}


/* Overview */
.company-overview {
    text-align: left
}

    .company-overview h3 {
        margin: 0 0 8px 0;
        font-size: clamp(1.25rem,1rem + 1vw,1.75rem)
    }

    .company-overview p {
        margin: 0;
        line-height: 1.6
    }

/* Features (2-up grid; equal height; clickable cards) */
.features {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 24px;
    align-items: stretch;
    justify-items: stretch;
    margin-top: 28px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
    text-decoration: none;
    color: inherit;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background-color .12s ease, color .12s ease;
}

    .feature-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0,0,0,.06);
        border-color: #dbe2ea;
        background-color: var(--brand-dark);
        color: #fff
    }

    .feature-box:focus-visible {
        outline: 3px solid #0ea5e9;
        outline-offset: 2px
    }

    .feature-box h4 {
        margin: 0 0 8px 0;
        font-size: 1.125rem
    }

    .feature-box ul {
        margin: 8px 0 0 0;
        padding-left: 1.15rem;
        list-style: disc
    }

    .feature-box li {
        margin: 6px 0
    }

/* Contact */
.main {
    background: #fff;
    padding-bottom: 50px
}

#contactForm {
    max-width: 100%;
    margin: 40px auto 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: #fafafa;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
}

    #contactForm .calloutFont {
        margin: 0 0 8px 0;
        font-weight: 700;
        font-size: 1.25rem;
        text-align: center
    }

    #contactForm input, #contactForm textarea {
        width: 100%;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        padding: 12px 14px;
        font: inherit;
        background: #fff;
    }

    #contactForm textarea {
        min-height: 120px;
        resize: vertical
    }

    #contactForm .button, #csubmit.button {
        appearance: none;
        border: none;
        border-radius: 10px;
        padding: 12px 16px;
        font-weight: 600;
        cursor: pointer;
        background: var(--brand-dark);
        color: #fff;
    }

        #contactForm .button:hover {
            filter: brightness(.95)
        }

    #contactForm .msg {
        margin-top: 6px;
        color: #065f46;
        text-align: center
    }

/* Footer */
.site-footer {
    background-color: var(--brand-dark);
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 0 12px;
    white-space: nowrap;
    color: #fff;
}

    .site-footer a {
        color: inherit;
        text-decoration: none
    }

        .site-footer a:hover {
            text-decoration: underline
        }

/* Responsive */
@media (max-width:900px) {
    .site-nav {
        grid-template-columns: 1fr auto
    }
    /* logo | right cluster */
    .nav-center {
        display: none
    }
    /* center links hidden on mobile */
    .nav-right .login-link {
        display: none
    }
    /* login moves into mobile menu */
    .nav-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center
    }

}

@media (max-width:768px) {
    .features {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    section {
        padding: 40px 20px
    }

    #contactForm {
        padding: 20px
    }
}


.hp-field {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.human-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 90px;
}

main {
    position: absolute;
    top: 90px;
    bottom: 40px;
    left: 0px;
    right: 0px;
    overflow-y: auto;
}

footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 40px;
}