/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #1a3c34;
    --forest-light: #245248;
    --forest-dark: #132e28;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --accent: #c9a84c;
    --text: #1a1a18;
    --text-light: #4a4a44;
    --text-muted: #7a7a72;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.type-outline {
    -webkit-text-stroke: 1.2px var(--forest);
    color: transparent;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.25);
}

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

.btn-ghost:hover {
    background: var(--forest);
    color: var(--cream);
}

.btn-light {
    background: var(--cream);
    color: var(--forest);
}

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(26, 60, 52, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-icon {
    color: var(--forest);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-light);
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--forest);
}

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

.nav-cta {
    border: 1px solid var(--forest) !important;
    padding: 0.5rem 1.25rem !important;
    color: var(--forest) !important;
    transition: all 0.3s var(--ease) !important;
}

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

.nav-cta:hover {
    background: var(--forest) !important;
    color: var(--cream) !important;
}

/* Mobile Toggle */
.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: var(--forest);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.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;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--forest);
    transition: opacity 0.3s;
}

.mobile-menu-link:hover {
    opacity: 0.6;
}

.mobile-menu-cta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    border: 1px solid var(--forest);
    padding: 0.75rem 2rem;
    margin-top: 1rem;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    color: var(--forest);
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.hero-accent {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: 780px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.hero-stat {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--forest);
    color: var(--cream);
    padding: 2rem 2.25rem;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: var(--cream-dark);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── About ── */
.about {
    padding: 8rem 0;
    background: var(--cream-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--forest);
}

.about-feature svg {
    color: var(--forest);
    flex-shrink: 0;
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--cream-dark);
}

.divider-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ── Services ── */
.services {
    padding: 6rem 0 8rem;
    background: var(--cream);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 60, 52, 0.1);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.service-card:hover .service-number {
    color: var(--forest);
    opacity: 0.15;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-top: auto;
}

/* ── Areas ── */
.areas {
    padding: 8rem 0;
    background: var(--cream-light);
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.areas-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.area-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream-dark);
    transition: all 0.3s var(--ease);
    cursor: default;
}

.area-item:first-child {
    border-top: 1px solid var(--cream-dark);
}

.area-item:hover .area-name {
    color: var(--accent);
}

.area-item:hover .area-name::after {
    width: 100%;
}

.area-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--forest);
    position: relative;
    transition: color 0.3s;
}

.area-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

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

.areas-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

/* ── Testimonials ── */
.testimonials {
    padding: 8rem 0;
    background: var(--cream);
}

.testimonials-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 60, 52, 0.08);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--forest);
    opacity: 0.08;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-source {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── CTA ── */
.cta {
    padding: 8rem 0;
    background: var(--forest);
    text-align: center;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-content .section-eyebrow {
    color: var(--cream-dark);
}

.cta-headline {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 2.5rem;
}

/* ── Contact ── */
.contact {
    padding: 8rem 0;
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    color: var(--forest);
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.contact-value a {
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--accent);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--cream-light);
    border: 1px solid var(--cream-dark);
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    gap: 1rem;
}

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

.form-success svg {
    color: var(--forest);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--forest);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    max-width: 280px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.35);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

    .hero-img-wrapper img {
        height: 560px;
    }

    .about-grid,
    .areas-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap img,
    .areas-image img {
        height: 480px;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-wrapper img {
        height: 400px;
    }

    .hero-stat {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
        display: inline-block;
    }

    .hero-scroll {
        display: none;
    }

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

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

    .contact-form-wrap {
        padding: 2rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .divider {
        padding: 2rem 1rem;
    }

    .divider-text {
        font-size: 0.875rem;
    }
}

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

    .hero-headline {
        font-size: 2.4rem;
    }

    .section-headline {
        font-size: 2rem;
    }

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

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