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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #faf9f6;
    -webkit-font-smoothing: antialiased;
}

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    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 rgba(26, 92, 42, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a5c2a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo svg {
    color: #1a5c2a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a4a4a;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a5c2a;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #1a5c2a;
}

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

.nav-cta {
    background: #1a5c2a !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #144a22 !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-size: 1rem;
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 92, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #1a5c2a;
}

.mobile-cta {
    border-bottom: none;
    color: #1a5c2a;
    font-weight: 500;
    margin-top: 8px;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: #faf9f6;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a5c2a;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-accent {
    font-style: italic;
    color: #1a5c2a;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
    max-width: 460px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: #1a5c2a;
    color: #fff;
    border-color: #1a5c2a;
}

.btn-primary:hover {
    background: #144a22;
    border-color: #144a22;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 92, 42, 0.25);
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #d0d0d0;
}

.btn-outline:hover {
    border-color: #1a5c2a;
    color: #1a5c2a;
}

.btn-white {
    background: #fff;
    color: #1a5c2a;
    border-color: #fff;
}

.btn-white:hover {
    background: #f5f3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5c2a;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #d4d4d4;
}

.hero-image {
    position: relative;
}

.hero-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 5/6;
    background: #e8e4de;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-img-wrap:hover img {
    transform: scale(1.03);
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge svg {
    color: #1a5c2a;
}

/* ─── Section Shared ─── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a5c2a;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    max-width: 520px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ─── Services ─── */
.services {
    padding: 120px 0;
    background: #fff;
}

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

.service-card {
    padding: 44px 36px;
    background: #faf9f6;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(26, 92, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5c2a;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: #1a5c2a;
    color: #fff;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: #faf9f6;
}

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 7/8;
    background: #e8e4de;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content .section-title {
    margin-top: 8px;
}

.about-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.5;
}

.value-item svg {
    color: #1a5c2a;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── Why Us ─── */
.why-us {
    padding: 120px 0;
    background: #fff;
}

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

.why-content .section-title {
    margin-top: 8px;
    margin-bottom: 48px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.why-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(26, 92, 42, 0.15);
    line-height: 1;
    min-width: 48px;
}

.why-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.why-item p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

.why-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 13/17;
    background: #e8e4de;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-image:hover img {
    transform: scale(1.03);
}

/* ─── Reviews ─── */
.reviews {
    padding: 120px 0;
    background: #faf9f6;
}

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

.review-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(26, 92, 42, 0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.review-stars {
    color: #1a5c2a;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: #444;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
}

.reviews-cta {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #666;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a5c2a;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s ease;
}

.reviews-link:hover {
    gap: 10px;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 100px 0;
    background: #1a5c2a;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

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

.contact-item svg {
    color: #1a5c2a;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
}

.contact-item a {
    color: #1a5c2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #144a22;
    text-decoration: underline;
}

.contact-map {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap {
    background: #faf9f6;
    padding: 48px;
    border-radius: 16px;
}

.contact-form-wrap h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-hint {
    font-size: 0.9rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 300;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a5c2a;
    box-shadow: 0 0 0 3px rgba(26, 92, 42, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    color: #1a5c2a;
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
}

/* ─── Footer ─── */
.footer {
    padding: 64px 0 32px;
    background: #111;
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .nav-logo svg {
    color: #73ab5c;
}

.footer-brand p {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #73ab5c;
}

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

.footer-contact p {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-contact a {
    color: #73ab5c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #9cc58a;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Scroll Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

    .about-layout,
    .why-layout,
    .contact-layout {
        gap: 48px;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-wrap {
        aspect-ratio: 4/3;
    }

    .hero-badge {
        left: 16px;
        bottom: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 32px 28px;
    }

    .about,
    .why-us,
    .reviews,
    .contact {
        padding: 80px 0;
    }

    .about-layout,
    .why-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .why-image {
        aspect-ratio: 4/3;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .cta-banner {
        padding: 80px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

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

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

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

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

    .hero-title {
        font-size: 2rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }
}
