/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #faf6f0;
    color: #1a3c34;
    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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #065f46; color: #fef9f0; padding: 8px 16px;
    border-radius: 8px; z-index: 999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: #065f46;
    background: rgba(6,95,70,0.08); padding: 6px 14px;
    border-radius: 100px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #0a3d2e; margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: #4a7c6d; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif; font-weight: 600;
    font-size: 0.95rem; padding: 12px 28px;
    border-radius: 100px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s ease;
    text-decoration: none;
}
.btn-primary {
    background: #065f46; color: #fef9f0; border-color: #065f46;
}
.btn-primary:hover { background: #047857; border-color: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,95,70,0.25); }
.btn-ghost {
    background: transparent; color: #fef9f0; border-color: rgba(254,249,240,0.5);
}
.btn-ghost:hover { background: rgba(254,249,240,0.12); border-color: #fef9f0; }
.btn-ghost-light {
    background: transparent; color: #065f46; border-color: #065f46;
}
.btn-ghost-light:hover { background: #065f46; color: #fef9f0; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,246,240,0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6,95,70,0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(6,95,70,0.08); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: #0a3d2e; }
.logo-text { font-family: 'Playfair Display', serif; }
.logo-accent { color: #065f46; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #1a3c34; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: #065f46; }
.btn-nav { background: #065f46; color: #fef9f0 !important; padding: 10px 22px; border-radius: 100px; font-size: 0.9rem; }
.btn-nav:hover { background: #047857; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #0a3d2e; padding: 8px; }
.nav-toggle svg { display: block; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 35%, #059669 60%, #10b981 100%);
}
.hero-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, #fef9f0 1px, transparent 0);
    background-size: 32px 32px;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(254,249,240,0.15); color: #fef9f0;
    padding: 8px 20px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 500; margin-bottom: 28px;
    border: 1px solid rgba(254,249,240,0.2);
}
.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    color: #fef9f0; margin-bottom: 24px; line-height: 1.15;
}
.hero-title em { font-style: italic; color: #fde68a; }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(254,249,240,0.85); max-width: 620px;
    margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(254,249,240,0.8); font-size: 0.9rem; font-weight: 500;
}
.trust-item svg { color: #fde68a; }
.hero-wave {
    position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2;
    color: #faf6f0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SERVICES ===== */
.services { padding: 100px 24px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff; border-radius: 20px; padding: 36px 32px;
    border: 1px solid rgba(6,95,70,0.06);
    box-shadow: 0 4px 24px rgba(6,95,70,0.04);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6,95,70,0.1);
    border-color: rgba(6,95,70,0.12);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(6,95,70,0.08), rgba(6,95,70,0.04));
    display: flex; align-items: center; justify-content: center;
    color: #065f46; margin-bottom: 20px;
}
.service-name { font-size: 1.2rem; color: #0a3d2e; margin-bottom: 10px; }
.service-desc { font-size: 0.95rem; color: #4a7c6d; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 24px; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(6,95,70,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -32px; right: -24px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 32px rgba(6,95,70,0.15);
    border: 4px solid #faf6f0;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
    position: absolute; top: -20px; left: -16px;
    background: #065f46; color: #fef9f0;
    padding: 16px 24px; border-radius: 16px;
    box-shadow: 0 8px 24px rgba(6,95,70,0.25);
    display: flex; flex-direction: column; align-items: center;
}
.about-stat .stat-number { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.about-stat .stat-label { font-size: 0.8rem; opacity: 0.8; }
.about-content .section-tag { margin-bottom: 16px; }
.about-body { font-size: 1rem; color: #4a7c6d; margin-bottom: 16px; line-height: 1.8; }
.about-values { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-values li {
    display: flex; align-items: center; gap: 12px;
    font-weight: 500; color: #1a3c34;
}
.about-values li svg { color: #065f46; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 24px; background: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,95,70,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 24px;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fef9f0; font-weight: 600; font-size: 1rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 24px;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(254,249,240,0.05) 1px, transparent 0);
    background-size: 28px 28px;
}
.cta-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fef9f0; margin-bottom: 16px;
}
.cta-sub { font-size: 1.1rem; color: rgba(254,249,240,0.8); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light { color: #fef9f0; border-color: rgba(254,249,240,0.5); }
.btn-ghost-light:hover { background: rgba(254,249,240,0.12); border-color: #fef9f0; }

/* ===== CONTACT ===== */
.contact { padding: 100px 24px; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: start;
}
.contact-desc { font-size: 1rem; color: #4a7c6d; margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-item dt {
    flex-shrink: 0; width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(6,95,70,0.06);
    display: flex; align-items: center; justify-content: center;
    color: #065f46;
}
.contact-item dd { font-size: 0.95rem; color: #1a3c34; line-height: 1.6; }
.contact-item a { color: #065f46; font-weight: 500; transition: color 0.2s; }
.contact-item a:hover { color: #047857; text-decoration: underline; }
.contact-form-wrap {
    background: #fff; border-radius: 24px; padding: 40px;
    box-shadow: 0 8px 40px rgba(6,95,70,0.06);
    border: 1px solid rgba(6,95,70,0.06);
}
.form-title { font-size: 1.4rem; color: #0a3d2e; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: #1a3c34; margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid rgba(6,95,70,0.15);
    border-radius: 12px; font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; color: #1a3c34;
    background: #faf6f0; transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #065f46;
    box-shadow: 0 0 0 3px rgba(6,95,70,0.08);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9db8ae; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding: 14px 18px;
    background: rgba(6,95,70,0.06); border-radius: 12px;
    color: #065f46; font-weight: 500; font-size: 0.95rem;
}
.form-success svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer { background: #0a3d2e; color: rgba(254,249,240,0.7); padding: 64px 24px 0; }
.footer-inner {
    display: grid; grid-template-columns: 1fr auto auto;
    gap: 48px; align-items: start; padding-bottom: 48px;
    border-bottom: 1px solid rgba(254,249,240,0.1);
}
.footer-brand .logo { color: #fef9f0; }
.footer-tagline { font-size: 0.9rem; margin-top: 12px; max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem; color: rgba(254,249,240,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fef9f0; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
    font-size: 0.9rem; color: rgba(254,249,240,0.6);
    transition: color 0.2s;
}
.footer-contact a:hover { color: #fef9f0; }
.footer-bottom { padding: 24px 0; }
.footer-bottom p {
    font-size: 0.82rem; color: rgba(254,249,240,0.4);
    text-align: center; line-height: 1.8;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(250,246,240,0.98);
        backdrop-filter: blur(16px);
        padding: 24px; gap: 20px;
        border-bottom: 1px solid rgba(6,95,70,0.08);
        box-shadow: 0 12px 32px rgba(6,95,70,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }
    .hero { min-height: auto; padding: 140px 24px 100px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { gap: 20px; }
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { max-width: 480px; }
    .about-img-secondary { right: 0; bottom: -24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-wrap { padding: 28px; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .service-card, .gallery-item {
        opacity: 0; transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .service-card.visible, .gallery-item.visible {
        opacity: 1; transform: translateY(0);
    }
}
