/* ── 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;
    color: #2D2D2D;
    background: #FFF9F7;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
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; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 32px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px;
    border: 2px solid transparent; cursor: pointer; transition: all .3s ease;
}
.btn-coral { background: #E86A5B; color: #fff; border-color: #E86A5B; }
.btn-coral:hover { background: #d45648; border-color: #d45648; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,91,.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; transform: translateY(-2px); }
.btn-small { padding: 10px 24px; font-size: 14px; }
.btn-large { padding: 18px 42px; font-size: 17px; }
.btn-full { width: 100%; }

/* ── Section Labels ── */
.section-label {
    display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: #E86A5B; margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: #2D2D2D; margin-bottom: 16px; }
.section-sub { font-size: 18px; color: #666; max-width: 560px; }

/* ── Header ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,249,247,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,106,91,.1);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 22px; color: #2D2D2D; }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-weight: 700; font-size: 15px; color: #2D2D2D; position: relative; transition: color .3s; }
.main-nav a:not(.btn):hover { color: #E86A5B; }
.main-nav a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: #E86A5B; border-radius: 2px; transition: width .3s;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: #2D2D2D; border-radius: 2px;
    transition: all .3s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.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 {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(45,45,45,.72) 0%, rgba(45,45,45,.45) 50%, rgba(232,106,91,.25) 100%);
}
.hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 780px;
    padding: 0 24px; color: #fff;
}
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(232,106,91,.85); font-size: 13px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05;
    margin-bottom: 24px; letter-spacing: -1px;
}
.hero-headline em { font-style: italic; color: #F4A095; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); opacity: .9; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.6); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: #E86A5B; animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%{top:-100%} 50%{top:0} 100%{top:100%} }

/* ── Services ── */
.services { padding: 120px 0; }
.services .container { text-align: center; }
.services .section-sub { margin: 0 auto 64px; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
    background: #fff; border-radius: 24px; padding: 44px 32px; text-align: left;
    border: 1px solid rgba(232,106,91,.08);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: all .4s ease; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #E86A5B, #F4A095);
    transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(232,106,91,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; color: #2D2D2D; }
.service-card p { color: #666; font-size: 15px; line-height: 1.7; }
.service-card p em { color: #E86A5B; font-style: italic; }

/* ── About ── */
.about { padding: 120px 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: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -40px; right: -40px; width: 55%; border-radius: 20px;
    overflow: hidden; box-shadow: 0 16px 48px rgba(232,106,91,.2);
    border: 6px solid #fff;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p { color: #555; margin-bottom: 20px; font-size: 16px; }
.about-stats {
    display: flex; gap: 40px; margin-top: 40px; padding-top: 40px;
    border-top: 1px solid rgba(232,106,91,.15);
}
.stat-num { display: block; font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: #E86A5B; line-height: 1; }
.stat-label { font-size: 14px; color: #888; font-weight: 600; }

/* ── Gallery ── */
.gallery { padding: 120px 0; }
.gallery .container { text-align: center; }
.gallery .section-sub { margin: 0 auto 64px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}
.gallery-item { border-radius: 20px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 5 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* ── Testimonials ── */
.testimonials { padding: 120px 0; background: #fff; }
.testimonials .container { text-align: center; }
.testimonials .section-sub { margin: 0 auto 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: #FFF9F7; border-radius: 24px; padding: 44px 32px; text-align: left;
    position: relative; border: 1px solid rgba(232,106,91,.08);
    transition: all .4s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,106,91,.1); }
.testimonial-quote {
    font-family: 'DM Serif Display', serif; font-size: 5rem; line-height: 1;
    color: #E86A5B; opacity: .2; position: absolute; top: 20px; left: 28px;
}
.testimonial-text {
    font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 24px;
    position: relative; z-index: 1;
}
.testimonial-author { font-weight: 800; color: #E86A5B; font-size: 14px; }

/* ── CTA ── */
.cta { position: relative; padding: 140px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(45,45,45,.78); }
.cta-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.cta-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.cta-text { font-size: 18px; opacity: .85; max-width: 520px; margin: 0 auto 40px; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-desc { color: #666; font-size: 16px; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14px; color: #2D2D2D; margin-bottom: 4px; }
.contact-item p { color: #666; font-size: 15px; }
.contact-item a { color: #E86A5B; font-weight: 700; transition: color .3s; }
.contact-item a:hover { color: #d45648; }

/* Form */
.contact-form-wrap {
    background: #fff; border-radius: 24px; padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,.06); border: 1px solid rgba(232,106,91,.08);
}
.form-title { font-size: 1.6rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; color: #888; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; border-radius: 14px;
    border: 2px solid #f0e0dc; background: #FFF9F7;
    font-family: 'Nunito', sans-serif; font-size: 15px; color: #2D2D2D;
    transition: border-color .3s, box-shadow .3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #E86A5B; box-shadow: 0 0 0 4px rgba(232,106,91,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center; padding: 40px 20px;
}
.form-success h4 { font-size: 1.5rem; color: #2D2D2D; margin: 16px 0 8px; }
.form-success p { color: #666; }

/* ── Footer ── */
.footer { background: #2D2D2D; color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 15px; max-width: 280px; }
.footer-links strong, .footer-hours strong {
    display: block; color: #fff; font-size: 14px; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; transition: color .3s; }
.footer-links a:hover { color: #E86A5B; }
.footer-hours p { font-size: 15px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0; text-align: center; font-size: 14px;
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 76px; left: 0; right: 0; background: rgba(255,249,247,.98);
        backdrop-filter: blur(12px); padding: 32px 24px;
        border-bottom: 1px solid rgba(232,106,91,.1);
        transform: translateY(-120%); opacity: 0;
        transition: all .4s ease; pointer-events: none;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .main-nav ul { flex-direction: column; gap: 20px; }
    .main-nav a { font-size: 18px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-float { right: -16px; bottom: -24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
    .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
    .gallery-item:nth-child(5) { grid-column: 1 / 2; grid-row: 3; }
    .gallery-item:nth-child(6) { grid-column: 2 / 3; grid-row: 3; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-large { padding: 16px 32px; font-size: 15px; }
    .about-stats { flex-direction: column; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 220px); }
    .gallery-item:nth-child(n) { grid-column: 1 / -1; grid-row: auto; }
}
