*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --green-600: #52B788;
    --green-500: #74C69D;
    --cream: #FAF9F6;
    --cream-dark: #F0EFEB;
    --cream-mid: #E8E6E0;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Top Line ─── */
.line-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--green-800);
    z-index: 1001;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 1px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.header.scrolled {
    border-bottom-color: var(--cream-mid);
    box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-900);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.logo-mark {
    color: var(--green-800);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-700);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--green-800);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--green-900);
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-smooth);
    transform-origin: center;
}

.menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Mobile Overlay ─── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 67, 50, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-900);
    color: var(--white);
    border: 1px solid var(--green-900);
}

.btn--primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--green-800);
    border: 1px solid var(--green-700);
}

.btn--ghost:hover {
    background: var(--green-900);
    color: var(--white);
    border-color: var(--green-900);
}

.btn--full {
    width: 100%;
}

/* ─── Eyebrow ─── */
.eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 16px;
}

/* ─── Section Title ─── */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--green-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--green-600);
    margin-bottom: 32px;
}

/* ─── Hero ─── */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 520px;
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.125rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green-900);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.headline em {
    font-style: italic;
    color: var(--green-700);
}

.lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 560px;
}

.hero-card {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(27, 67, 50, 0.12);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-card--1 {
    bottom: 0;
    left: -32px;
    max-width: 240px;
}

.stat-card--1 .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--green-800);
    line-height: 1;
}

.stat-card--1 .stat-unit {
    font-size: 1rem;
    color: var(--green-600);
}

.stat-card--2 {
    top: 40px;
    right: -24px;
    max-width: 220px;
}

.stat-card--2 svg {
    flex-shrink: 0;
    color: var(--green-700);
}

.stat-card--2 .stat-label {
    font-size: 0.8125rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ─── Services ─── */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.section-header .section-line {
    margin: 0 auto 32px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--cream-mid);
    border-radius: 6px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-mid);
    border-radius: 50%;
    color: var(--green-800);
    margin-bottom: 24px;
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-icon {
    background: var(--green-900);
    border-color: var(--green-900);
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--green-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    padding: 4px 10px;
    border: 1px solid var(--green-500);
    border-radius: 20px;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 640px;
}

.about-image-main {
    width: 75%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(27, 67, 50, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 55%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.12);
    border: 4px solid var(--white);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content .section-line {
    margin-bottom: 32px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-mid);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat .stat-num {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--green-800);
}

.about-stat .stat-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-mid);
}

/* ─── Insurance ─── */
.insurance {
    padding: 100px 0;
    background: var(--cream);
}

.insurance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.insurance-content .section-title {
    margin-bottom: 20px;
}

.insurance-content .section-line {
    margin-bottom: 24px;
}

.insurance-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.insurance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.insurance-list li svg {
    color: var(--green-700);
    flex-shrink: 0;
}

.insurance-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.insurance-visual {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(27, 67, 50, 0.1);
}

.insurance-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--green-900);
    color: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact .eyebrow {
    color: var(--green-500);
}

.contact .section-title {
    color: var(--white);
    margin-bottom: 32px;
}

.contact .section-line {
    background: var(--green-600);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--green-400);
}

.map-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--green-400);
    font-size: 0.875rem;
}

.map-placeholder svg {
    color: var(--green-500);
    flex-shrink: 0;
}

/* ─── Form ─── */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-400);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.form-group select option {
    background: var(--green-900);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    margin-top: 4px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(116, 198, 157, 0.12);
    border: 1px solid rgba(116, 198, 157, 0.3);
    border-radius: 6px;
    color: var(--green-500);
    font-size: 0.9375rem;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--green-500);
}

/* ─── Footer ─── */
.footer {
    background: #143326;
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    color: var(--green-500);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-smooth);
    font-size: 0.9375rem;
}

.footer-contact a:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 420px;
        order: -1;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .about-inner,
    .insurance-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 480px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-list,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        padding: 40px 24px;
        gap: 28px;
        z-index: 999;
        animation: slideDown 0.35s var(--ease-out);
    }

    .nav-list.mobile-open .nav-link {
        font-size: 1.125rem;
    }

    .nav-list.mobile-open .nav-cta-mobile {
        display: inline-flex;
        margin-top: 16px;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-card {
        height: 320px;
    }

    .stat-card--1 {
        left: 0;
        bottom: -16px;
    }

    .stat-card--2 {
        right: 0;
        top: 16px;
    }

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

    .about-visual {
        height: 360px;
    }

    .about-image-accent {
        width: 60%;
        bottom: -16px;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-stat-divider {
        display: none;
    }

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

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-card {
        padding: 14px 16px;
    }

    .stat-card--1 .stat-number {
        font-size: 1.5rem;
    }
}
