:root {
    --green-900: #063f25;
    --green-800: #075f34;
    --green-700: #08783d;
    --green-100: #e8f6ee;
    --green-50: #f3fbf6;
    --red-700: #d81535;
    --red-100: #fde8ec;
    --ink: #10221a;
    --muted: #5c6c64;
    --line: #dce8e1;
    --surface: #ffffff;
    --surface-soft: #f7faf8;
    --shadow: 0 20px 50px rgba(6, 63, 37, .12);
    --radius: 8px;
    --container: 1160px;
}

* {
    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(--ink);
    background: var(--surface);
    line-height: 1.6;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

svg {
    width: 1.1em;
    height: 1.1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(216, 21, 53, .45);
    outline-offset: 3px;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.08;
    margin: 0;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    max-width: 850px;
}

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

h3 {
    font-size: 1.25rem;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 1000;
    background: var(--green-900);
    color: #fff;
    padding: .7rem 1rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 12px 24px rgba(6, 63, 37, .06);
}

.top-strip {
    background: var(--green-900);
    color: #fff;
    font-size: .9rem;
}

.top-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 38px;
}

.top-strip span,
.top-strip a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 88px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}

.brand img,
.footer-brand img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(6, 63, 37, .12);
}

.brand strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: .82rem;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
    font-size: .95rem;
    padding: .7rem .85rem;
    border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--green-800);
    background: var(--green-100);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    color: var(--green-800);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .8rem 1.05rem;
    border-radius: var(--radius);
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button--primary {
    color: #fff;
    background: var(--red-700);
    box-shadow: 0 12px 26px rgba(216, 21, 53, .24);
}

.button--secondary {
    color: var(--green-800);
    background: #fff;
    border-color: var(--line);
}

.button--light {
    color: var(--green-900);
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .94) 0 38%, rgba(255, 255, 255, .72) 62%, rgba(232, 246, 238, .88) 100%),
        radial-gradient(ellipse at 76% 18%, rgba(216, 21, 53, .14) 0 18%, transparent 48%),
        radial-gradient(ellipse at 92% 78%, rgba(8, 120, 61, .18) 0 24%, transparent 54%),
        linear-gradient(135deg, #f7fbf8 0%, #fff 50%, #eef8f3 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    right: -150px;
    top: -210px;
    width: min(54vw, 680px);
    aspect-ratio: 1;
    border: 48px solid rgba(8, 120, 61, .12);
    border-left-color: rgba(216, 21, 53, .12);
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-18deg);
}

.hero::after {
    right: 12%;
    bottom: 42px;
    width: min(28vw, 360px);
    height: 120px;
    border: 1px solid rgba(8, 120, 61, .14);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .08));
    transform: rotate(-10deg);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    align-items: center;
    gap: 3rem;
}

.eyebrow {
    color: var(--green-700);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    margin-bottom: .85rem;
}

.hero-lede {
    font-size: 1.2rem;
    max-width: 650px;
    margin-top: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.8rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.6rem;
}

.hero-points span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .52rem .8rem;
    color: var(--green-900);
    font-weight: 800;
    font-size: .92rem;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 1rem;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 34px -22px 72px 34px;
    z-index: -1;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(8, 120, 61, .14), rgba(255, 255, 255, .18)),
        linear-gradient(45deg, transparent 0 46%, rgba(216, 21, 53, .16) 46% 54%, transparent 54% 100%);
    box-shadow: 0 28px 70px rgba(6, 63, 37, .16);
    transform: rotate(3deg);
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(220, 232, 225, .88);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 430px;
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(8, 120, 61, .1);
    border-radius: var(--radius);
    pointer-events: none;
}

.hero-card img {
    position: relative;
    z-index: 1;
    width: min(78%, 280px);
    height: auto;
}

.hero-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 1rem;
    font-size: 1.6rem;
}

.hero-card span {
    position: relative;
    z-index: 1;
    color: var(--muted);
}

.quick-contact {
    background: var(--green-900);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.quick-contact span {
    color: rgba(255, 255, 255, .78);
}

.quick-contact a {
    font-size: 1.35rem;
    font-weight: 900;
    white-space: nowrap;
}

.section {
    padding: 82px 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
    margin-top: .8rem;
    font-size: 1.06rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.specialty-grid article,
.contact-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: 0 10px 28px rgba(6, 63, 37, .06);
}

.service-card h3,
.service-card h2,
.specialty-grid h2,
.contact-card h2 {
    margin-top: 1rem;
    font-size: 1.18rem;
}

.service-card p,
.specialty-grid p,
.contact-card p {
    margin-top: .6rem;
}

.service-card--large {
    min-height: 260px;
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
}

.split-section,
.info-band {
    background: var(--surface-soft);
}

.split-grid,
.two-column,
.about-grid,
.lab-grid,
.contact-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
}

.split-grid p,
.two-column p,
.about-grid p {
    margin-top: 1rem;
    font-size: 1.04rem;
}

.text-link {
    color: var(--green-800);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.4rem;
    font-weight: 900;
}

.list-panel,
.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.list-panel span,
.check-list span {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem;
    font-weight: 800;
}

.lab-band {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 63, 37, .96), rgba(8, 120, 61, .94)),
        var(--green-900);
}

.lab-band h2,
.lab-band .eyebrow {
    color: #fff;
}

.lab-band p {
    color: rgba(255, 255, 255, .78);
    margin-top: 1rem;
}

.contact-strip {
    padding-top: 44px;
}

.contact-strip__inner,
.cta-inner {
    background: var(--green-50);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-strip__inner {
    grid-template-columns: 1fr auto;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
}

.page-hero {
    background: linear-gradient(135deg, #f7fbf8, #fff);
    border-bottom: 1px solid var(--line);
    padding: 76px 0;
}

.page-hero p:not(.eyebrow) {
    margin-top: 1rem;
    max-width: 780px;
    font-size: 1.12rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.info-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.info-grid p,
.cta-inner p {
    margin-top: .75rem;
}

.cta-panel {
    padding-top: 0;
}

.cta-inner {
    text-align: center;
    max-width: 900px;
}

.cta-inner .button {
    margin-top: 1.25rem;
}

.about-mark {
    background: var(--green-50);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    display: grid;
    place-items: center;
}

.about-mark img {
    width: min(100%, 260px);
    height: auto;
    border-radius: 50%;
}

.contact-card .contact-main {
    display: block;
    color: var(--green-800);
    font-size: 1.45rem;
    font-weight: 900;
    margin-top: .7rem;
}

.map-section {
    padding-top: 0;
}

.map-box {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(6, 63, 37, .08);
}

.map-box iframe {
    display: block;
    width: 100%;
    height: clamp(320px, 48vw, 520px);
}

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

.faq-list {
    display: grid;
    gap: .8rem;
}

.faq-list details {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(6, 63, 37, .05);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 1.25rem;
    color: var(--ink);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.faq-list summary::after {
    content: "+";
    color: var(--green-800);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list details p {
    padding: 0 1.25rem 1.2rem;
}

.site-footer {
    background: var(--green-900);
    color: #fff;
    padding: 58px 0 110px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 2rem;
}

.footer-brand span {
    font-size: 1.1rem;
    font-weight: 900;
}

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

.site-footer p {
    max-width: 440px;
    margin-top: 1rem;
}

.site-footer .search-note {
    font-size: .9rem;
}

.site-footer h2 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: .85rem;
}

.site-footer a,
.site-footer span {
    display: block;
    margin-top: .48rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 2rem;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .9rem;
}

.mobile-call {
    position: fixed;
    z-index: 120;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    background: var(--red-700);
    box-shadow: 0 16px 38px rgba(216, 21, 53, .3);
    border-radius: var(--radius);
    min-height: 52px;
    font-weight: 900;
}

@media (max-width: 980px) {
    .hideinphone{
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: fixed;
        inset: 126px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: .75rem;
        border: 1px solid var(--line);
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid,
    .split-grid,
    .two-column,
    .about-grid,
    .lab-grid,
    .contact-strip__inner {
        grid-template-columns: 1fr;
    }

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

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

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .top-strip__inner {
        justify-content: center;
    }

    .top-strip__inner span {
        display: none;
    }

    .nav-shell {
        min-height: 78px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .brand strong {
        font-size: .98rem;
    }

    .brand small {
        font-size: .74rem;
    }

    .hero,
    .page-hero {
        padding: 50px 0;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .95) 0 44%, rgba(243, 251, 246, .9) 100%),
            radial-gradient(ellipse at 84% 8%, rgba(216, 21, 53, .1) 0 18%, transparent 44%),
            radial-gradient(ellipse at 18% 88%, rgba(8, 120, 61, .14) 0 24%, transparent 52%),
            linear-gradient(135deg, #f7fbf8 0%, #fff 52%, #eef8f3 100%);
    }

    .hero::before {
        right: -170px;
        top: 250px;
        width: 320px;
        border-width: 30px;
        opacity: .72;
        transform: rotate(-24deg);
    }

    .hero::after {
        right: auto;
        left: -92px;
        bottom: 212px;
        width: 230px;
        height: 78px;
        opacity: .75;
        transform: rotate(-16deg);
    }

    h1 {
        font-size: 2.45rem;
    }

    .hero-lede,
    .page-hero p:not(.eyebrow) {
        font-size: 1.03rem;
    }

    .hero-actions,
    .hero-actions .button,
    .contact-actions,
    .contact-actions .button {
        width: 100%;
    }

    .hero-card {
        min-height: auto;
        padding: 1.4rem;
        background: rgba(255, 255, 255, .95);
    }

    .hero-visual::before {
        inset: 22px 10px 58px 10px;
        border-radius: 14px;
        opacity: .85;
        transform: rotate(1.5deg);
    }

    .hero-card::before {
        inset: 14px;
    }

    .hero-card img {
        width: min(70%, 220px);
    }

    .quick-contact,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section {
        padding: 58px 0;
    }

    .service-grid,
    .specialty-grid,
    .list-panel,
    .check-list,
    .info-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-bottom: 96px;
    }

    .mobile-call {
        display: flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
