/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    background: #FAF8F4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
label { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: #2d5a3d; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.1;
    color: #1B4332;
}
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: #D4A843;
}
.section-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.section-sub {
    font-size: 1.125rem;
    color: #555;
    max-width: 560px;
    line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #1B4332;
    color: #fff;
    border: 2px solid #1B4332;
}
.btn-primary:hover { background: #2d6a4f; border-color: #2d6a4f; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(27,67,50,0.3); }
.btn-secondary {
    background: transparent;
    color: #1B4332;
    border: 2px solid #1B4332;
}
.btn-secondary:hover { background: #1B4332; color: #fff; transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: #1B4332;
    border: 2px solid #1B4332;
}
.btn-outline:hover { background: #1B4332; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1B4332;
}
.nav-logo-icon { color: #D4A843; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A843;
    transition: width 0.3s;
}
.nav-menu a:hover { color: #1B4332; }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
    background: #1B4332 !important;
    color: #fff !important;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #2d6a4f !important; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1B4332;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(27,67,50,0.1);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .nav-menu.open { transform: translateY(0); }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    background: #FAF8F4;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, #1B4332 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 1.25rem;
}
.hero-headline {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #1B4332;
    letter-spacing: -0.03em;
}
.hero-headline em {
    font-style: italic;
    color: #D4A843;
}
.hero-sub {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    position: relative;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(27,67,50,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.stat-card--1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.stat-card--2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.stat-card--3 { grid-column: 1 / 3; grid-row: 2 / 3; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: #1B4332;
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}
.hero-photo-card {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    aspect-ratio: 4/5;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
.hero-scroll svg { color: #1B4332; opacity: 0.5; }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-cards { max-width: 480px; }
    .hero { padding-top: 7rem; }
}

/* ===== MARQUEE ===== */
.marquee {
    background: #1B4332;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    gap: 1rem;
    animation: marquee 30s linear infinite;
}
.marquee span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.marquee .dot { color: #D4A843; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
.services {
    padding: 7rem 0;
    background: #FAF8F4;
}
.services .section-label, .services .section-headline, .services .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem;
    border: 1px solid rgba(27,67,50,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B4332, #D4A843);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(27,67,50,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
    transition: background 0.3s;
}
.service-card:hover .service-icon { background: #1B4332; color: #fff; }
.service-card h3 {
    font-size: 1.375rem;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    flex: 1;
}
.service-arrow {
    display: inline-flex;
    align-items: center;
    color: #D4A843;
    transition: transform 0.3s, color 0.3s;
}
.service-card:hover .service-arrow { transform: translateX(6px); color: #1B4332; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about {
    padding: 7rem 0;
    background: #fff;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 6px solid #fff;
}
.about-badge {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    background: #1B4332;
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(27,67,50,0.3);
}
.badge-year { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.7; }
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: #D4A843; line-height: 1; }
.badge-text { display: block; font-size: 0.75rem; opacity: 0.8; margin-top: 0.25rem; }

.about-content .section-label { text-align: left; }
.about-content .section-headline { text-align: left; }
.about-body {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-values { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.value-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: #D4A843;
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
}
.value-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}
.value-item p { font-size: 0.9375rem; color: #666; line-height: 1.6; }

@media (max-width: 900px) {
    .about-layout { grid-template-columns: 1fr; }
    .about-image-stack { max-width: 480px; }
    .about-content .section-label, .about-content .section-headline { text-align: center; }
}

/* ===== WHY US ===== */
.why-us {
    padding: 7rem 0;
    background: #1B4332;
    color: #fff;
}
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-text .section-label { color: #D4A843; }
.why-text .section-headline { color: #fff; }
.why-sub { font-size: 1.125rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 440px; }
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.why-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: background 0.3s, transform 0.3s;
}
.why-stat:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #D4A843;
    line-height: 1;
    display: block;
}
.why-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-top: 0.5rem;
    display: block;
}

@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 7rem 0;
    background: #FAF8F4;
}
.testimonials .section-label, .testimonials .section-headline, .testimonials .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem;
    border: 1px solid rgba(27,67,50,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.08); }
.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 0.8;
    color: #D4A843;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}
.testimonial-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.testimonial-avatar { color: #1B4332; opacity: 0.4; }
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1B4332;
}
.testimonial-location {
    display: block;
    font-size: 0.8125rem;
    color: #888;
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d6a4f 0%, #1B4332 100%);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-headline {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.cta-text p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-actions .btn-outline:hover { background: #fff; color: #1B4332; border-color: #fff; }

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 0;
    background: #fff;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info .section-headline, .contact-intro { text-align: left; }
.contact-intro { font-size: 1.0625rem; color: #555; line-height: 1.75; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A843;
}
.contact-detail a, .contact-detail dd {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}
.contact-detail a:hover { color: #1B4332; text-decoration: underline; }

.contact-form-wrap {
    background: #FAF8F4;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(27,67,50,0.06);
}
.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1B4332;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(27,67,50,0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8125rem; color: #888; margin-top: 1rem; text-align: center; }
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.form-success .success-icon { color: #1B4332; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: #666; }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
    background: #0f2b1f;
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-logo-icon { color: #D4A843; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.9375rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
