/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: #F5F2EB;
    color: #1A2E23;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.15; color: #1B4332; }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 20px; }
.section-subtitle { font-size: 1.05rem; color: #4A5D50; max-width: 560px; line-height: 1.7; }
.accent-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: #2D6A4F;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary { background: #1B4332; color: #F5F2EB; border-color: #1B4332; }
.btn-primary:hover { background: #2D6A4F; border-color: #2D6A4F; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.25); }
.btn-outline { background: transparent; color: #1B4332; border-color: #1B4332; }
.btn-outline:hover { background: #1B4332; color: #F5F2EB; transform: translateY(-2px); }
.btn-accent { background: #D4A843; color: #1B4332; border-color: #D4A843; }
.btn-accent:hover { background: #C49A35; border-color: #C49A35; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.3); }
.btn-outline-light { background: transparent; color: #F5F2EB; border-color: rgba(245,242,235,0.5); }
.btn-outline-light:hover { background: #F5F2EB; color: #1B4332; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1B4332;
    color: #F5F2EB;
    padding: 8px 16px;
    border-radius: 0 0 6px 6px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245,242,235,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27,67,50,0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(27,67,50,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 44px;
    height: 44px;
    background: #1B4332;
    color: #D4A843;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-line1 { font-size: 0.85rem; font-weight: 500; color: #1B4332; letter-spacing: 0.04em; }
.logo-line2 { font-size: 1.1rem; font-weight: 700; color: #1B4332; letter-spacing: 0.02em; }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 8px 16px; border-radius: 6px; font-weight: 500; font-size: 0.9rem; color: #2D4A3C; transition: all 0.2s ease; }
.main-nav a:hover { background: rgba(27,67,50,0.06); color: #1B4332; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: #1B4332;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #F5F2EB;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 120px;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1B4332;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: #4A5D50;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: #2D4A3C; }
.trust-item svg { color: #D4A843; flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(27,67,50,0.18);
}
.hero-img-main img { width: 100%; height: 720px; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27,67,50,0.2);
    border: 4px solid #F5F2EB;
}
.hero-img-accent img { width: 320px; height: 240px; object-fit: cover; }
.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #D4A843;
    color: #1B4332;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ── Services ── */
.services { background: #F5F2EB; padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    border: 1px solid rgba(27,67,50,0.08);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27,67,50,0.1);
    border-color: rgba(212,168,67,0.3);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(27,67,50,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: #1B4332; color: #D4A843; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: #1B4332; }
.service-card p { font-size: 0.92rem; color: #4A5D50; line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0; background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(27,67,50,0.12); }
.about-img-main img { width: 100%; height: 640px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27,67,50,0.15);
    border: 4px solid #fff;
}
.about-img-float img { width: 400px; height: 300px; object-fit: cover; }
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content > p { font-size: 1rem; color: #4A5D50; line-height: 1.8; margin-bottom: 16px; }
.about-stats {
    display: flex;
    gap: 40px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(27,67,50,0.1);
    border-bottom: 1px solid rgba(27,67,50,0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-size: 1.75rem; font-weight: 800; color: #1B4332; }
.stat-label { font-size: 0.82rem; color: #4A5D50; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: #1B4332; color: #F5F2EB; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-eyebrow { color: #D4A843; margin-bottom: 12px; }
.why-content .section-title { color: #F5F2EB; margin-bottom: 20px; }
.why-content .section-subtitle { color: rgba(245,242,235,0.7); margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 0.95rem; color: rgba(245,242,235,0.85); line-height: 1.6; }
.why-list strong { color: #F5F2EB; }
.why-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: rgba(212,168,67,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    margin-top: 2px;
}
.why-visual { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.why-visual img { width: 100%; height: 700px; object-fit: cover; }

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 0;
    background: #2D6A4F;
    background-image: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-content { max-width: 520px; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: #F5F2EB; margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: rgba(245,242,235,0.75); line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #F5F2EB; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-details { margin: 36px 0; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(27,67,50,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
}
.contact-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #1B4332; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #4A5D50; line-height: 1.6; }
.contact-item a { color: #2D6A4F; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: #1B4332; }
.contact-hours {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(27,67,50,0.08);
}
.contact-hours strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #1B4332; margin-bottom: 12px; }
.contact-hours p { font-size: 0.95rem; color: #4A5D50; line-height: 1.8; }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(27,67,50,0.08);
    box-shadow: 0 8px 32px rgba(27,67,50,0.06);
}
.form-title { font-size: 1.35rem; color: #1B4332; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B4332;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(27,67,50,0.15);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #1A2E23;
    background: #F5F2EB;
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2D6A4F;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #8A9A8E; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.82rem; color: #8A9A8E; margin-top: 16px; text-align: center; }
.form-success {
    background: #fff;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(27,67,50,0.08);
    box-shadow: 0 8px 32px rgba(27,67,50,0.06);
}
.success-icon { color: #2D6A4F; margin-bottom: 20px; }
.form-success h3 { font-size: 1.5rem; color: #1B4332; margin-bottom: 12px; }
.form-success p { color: #4A5D50; margin-bottom: 28px; line-height: 1.7; }

/* ── Footer ── */
.site-footer { background: #1B4332; color: rgba(245,242,235,0.7); padding: 80px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245,242,235,0.1);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4A843;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #F5F2EB; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: rgba(245,242,235,0.7); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.footer-contact a:hover { color: #F5F2EB; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    font-size: 0.82rem;
    color: rgba(245,242,235,0.45);
}
.footer-bottom a { color: rgba(245,242,235,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: #D4A843; }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-img-main img { height: 560px; }
    .hero-img-accent img { width: 240px; height: 180px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 60px; }
    .about-img-main img { height: 480px; }
    .about-img-float img { width: 280px; height: 210px; }
    .why-grid { gap: 60px; }
    .why-visual img { height: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245,242,235,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 24px;
        border-bottom: 1px solid rgba(27,67,50,0.08);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { padding: 12px 16px; width: 100%; }
    .main-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

    .hero-grid { grid-template-columns: 1fr; padding-bottom: 80px; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .hero-img-main img { height: 400px; }
    .hero-img-accent { left: -16px; bottom: -20px; }
    .hero-img-accent img { width: 200px; height: 150px; }
    .hero-badge { top: -12px; right: -12px; padding: 12px 16px; font-size: 0.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 20px; }

    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-images { max-width: 480px; }
    .about-img-main img { height: 400px; }
    .about-img-float img { width: 220px; height: 165px; }
    .about-stats { gap: 24px; }

    .why-us { padding: 80px 0; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-visual { order: -1; }
    .why-visual img { height: 400px; }

    .cta-banner { padding: 60px 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .contact { padding: 80px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.75rem; }
    .hero-img-main img { height: 320px; }
    .hero-img-accent { display: none; }
    .hero-badge { display: none; }
    .about-img-float { display: none; }
    .about-stats { flex-direction: column; gap: 20px; }
    .contact-form { padding: 20px; }
    .form-success { padding: 40px 20px; }
}
