/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3D2B1F;
    background: #FDF6EE;
    -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 ── */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #C0603A; color: #fff; padding: 8px 16px;
    border-radius: 8px; z-index: 9999; font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; color: #2C1E12; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C0603A;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: #6B5344; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: 0.95rem; border: 2px solid transparent;
    border-radius: 50px; cursor: pointer;
    transition: all 0.3s ease; padding: 14px 28px;
}
.btn-primary { background: #C0603A; color: #fff; border-color: #C0603A; }
.btn-primary:hover { background: #A84E2D; border-color: #A84E2D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,96,58,0.35); }
.btn-outline { background: transparent; color: #C0603A; border-color: #C0603A; }
.btn-outline:hover { background: #C0603A; color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: #C0603A; transform: translateY(-2px); }
.btn-white { background: #fff; color: #C0603A; border-color: #fff; }
.btn-white:hover { background: #FDF6EE; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,246,238,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192,96,58,0.1);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(61,43,31,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 800; color: #2C1E12; }
.logo span { color: #C0603A; }
.logo-icon { flex-shrink: 0; }

/* ── Nav ── */
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a { padding: 8px 16px; font-weight: 600; font-size: 0.95rem; color: #3D2B1F; border-radius: 50px; transition: all 0.2s; }
.nav-menu a:hover { color: #C0603A; background: rgba(192,96,58,0.08); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; position: relative; }
.hamburger {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 22px; height: 2px; background: #3D2B1F; border-radius: 2px;
    transition: all 0.3s;
}
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px;
    background: #3D2B1F; border-radius: 2px; transition: all 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FDF6EE 0%, #F7E4D0 50%, #FDF6EE 100%);
    position: relative; overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(circle at 25% 25%, #C0603A 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, #C0603A 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192,96,58,0.1); color: #C0603A;
    font-weight: 700; font-size: 0.85rem; padding: 8px 18px;
    border-radius: 50px; margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px; color: #2C1E12;
    line-height: 1.15;
}
.hero-title span { color: #C0603A; }
.hero-subtitle { font-size: 1.15rem; color: #6B5344; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero Visual */
.hero-visual { position: relative; min-height: 480px; }
.hero-card-main {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(61,43,31,0.15);
}
.hero-card-main img { width: 100%; height: 400px; object-fit: cover; }

.stat-card {
    position: absolute; display: flex; align-items: center; gap: 14px;
    background: #fff; border-radius: 16px; padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(61,43,31,0.12);
    animation: float 3s ease-in-out infinite;
}
.stat-card-1 { top: -20px; left: -30px; animation-delay: 0s; }
.stat-card-2 { bottom: 60px; right: -20px; animation-delay: 1s; }
.stat-card-3 { bottom: -20px; left: 40px; animation-delay: 2s; }
.stat-card strong { display: block; font-size: 1.1rem; color: #2C1E12; }
.stat-card span { font-size: 0.8rem; color: #6B5344; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Services ── */
.services { padding: 100px 0; background: #FDF6EE; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: #fff; border-radius: 20px; padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(61,43,31,0.06);
    transition: all 0.3s ease; border: 1px solid rgba(192,96,58,0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,43,31,0.12); border-color: rgba(192,96,58,0.15); }
.service-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: rgba(192,96,58,0.1); display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: #2C1E12; }
.service-card p { font-size: 0.95rem; color: #6B5344; line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(61,43,31,0.12); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-accent {
    position: absolute; bottom: -30px; right: -30px;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 36px rgba(61,43,31,0.15);
    border: 5px solid #fff;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-content .section-title { margin-top: 8px; }
.about-text { color: #6B5344; margin-bottom: 16px; font-size: 1.02rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem; color: #2C1E12; }
.about-features svg { flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ── Projects ── */
.projects { padding: 100px 0; background: #FDF6EE; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 4px 20px rgba(61,43,31,0.06); transition: all 0.3s ease; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,43,31,0.12); }
.project-img { overflow: hidden; }
.project-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-info { padding: 20px 24px 24px; }
.project-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase; color: #C0603A;
    background: rgba(192,96,58,0.1); padding: 4px 12px; border-radius: 50px;
    margin-bottom: 10px;
}
.project-info h3 { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; color: #2C1E12; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #FDF6EE; border-radius: 20px; padding: 36px 28px;
    position: relative; border: 1px solid rgba(192,96,58,0.08);
    transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,43,31,0.1); }
.testimonial-quote { position: absolute; top: 20px; right: 24px; }
.testimonial-text { font-size: 1rem; color: #3D2B1F; line-height: 1.8; margin-bottom: 24px; margin-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(192,96,58,0.1); display: flex; align-items: center; justify-content: center; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: #2C1E12; }
.testimonial-author span { font-size: 0.8rem; color: #6B5344; }

/* ── CTA Banner ── */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, #C0603A 0%, #A84E2D 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 8px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #FDF6EE; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { font-size: 1.02rem; color: #6B5344; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-details li { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    background: rgba(192,96,58,0.1); display: flex; align-items: center;
    justify-content: center;
}
.contact-details strong { display: block; font-size: 0.85rem; color: #C0603A; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-details span, .contact-details a { font-size: 1rem; color: #3D2B1F; }
.contact-details a:hover { color: #C0603A; }
.contact-map { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(61,43,31,0.08); }

/* ── Contact Form ── */
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 8px 30px rgba(61,43,31,0.08); }
.form-title { font-size: 1.4rem; margin-bottom: 24px; color: #2C1E12; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; color: #3D2B1F; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 2px solid #EDE0D4;
    border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
    color: #3D2B1F; background: #FDF6EE; transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #C0603A; background: #fff; box-shadow: 0 0 0 4px rgba(192,96,58,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #A89080; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success { text-align: center; padding: 40px 20px; }
.success-icon { margin: 0 auto 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; color: #2C1E12; }
.form-success p { color: #6B5344; }

/* ── Footer ── */
.site-footer { background: #2C1E12; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo span { color: #E8A070; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-links strong, .footer-contact strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: #E8A070; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; min-height: 360px; }
    .hero-card-main img { height: 300px; }
    .stat-card-1 { left: 10px; }
    .stat-card-2 { right: 10px; }
    .stat-card-3 { left: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { max-width: 500px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 76px; left: 0; right: 0;
        background: rgba(253,246,238,0.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 24px; gap: 4px;
        transform: translateY(-120%); opacity: 0;
        transition: all 0.3s ease; box-shadow: 0 12px 32px rgba(61,43,31,0.1);
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 12px 16px; width: 100%; }
    .nav-menu .btn { justify-content: center; }
    .hero { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .services-grid, .projects-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .about-img-accent { right: -10px; bottom: -20px; }
    .about-features { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-form-wrap { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-visual { min-height: 280px; }
    .hero-card-main img { height: 240px; }
    .stat-card { padding: 12px 14px; }
    .stat-card-1 { top: -10px; left: -10px; }
    .stat-card-2 { bottom: 40px; right: -10px; }
    .stat-card-3 { bottom: -10px; left: 10px; }
}
