/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1D1D1F;
    background: #FAFAFA;
    line-height: 1.5;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 48px; height: 52px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250, 250, 250, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.nav-logo { font-size: 18px; font-weight: 700; color: #1D1D1F; text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: #86868B; text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: #1D1D1F; }
.nav-cta { font-size: 12px; font-weight: 500; color: #FAFAFA; background: #1D1D1F; padding: 8px 20px; border-radius: 980px; text-decoration: none; transition: opacity 0.3s; }
.nav-cta:hover { opacity: 0.85; }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(180deg, #FAFAFA 0%, #F0EFEB 100%);
}

.hero-overline {
    font-size: 14px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: #86868B; margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(52px, 9vw, 96px); font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1D1D1F 0%, #424245 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px); color: #86868B;
    max-width: 560px; margin: 0 auto 48px; font-weight: 400; line-height: 1.5;
}

.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 500; color: #FAFAFA; background: #1D1D1F;
    padding: 16px 32px; border-radius: 980px; text-decoration: none;
    transition: all 0.3s ease; border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { transform: scale(1.04); opacity: 0.9; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 500; color: #1D1D1F; background: transparent;
    padding: 16px 32px; border-radius: 980px; text-decoration: none;
    border: 1.5px solid #D2D2D7; transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: #1D1D1F; transform: scale(1.02); }

.btn-arrow { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.hero-images {
    margin-top: 72px; display: flex; gap: 16px;
    max-width: 1100px; width: 100%;
}
.hero-images img { flex: 1; height: 320px; object-fit: cover; border-radius: 20px; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    width: 24px; height: 40px; border: 2px solid #86868B; border-radius: 12px; opacity: 0.3;
}
.hero-scroll::after {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: #86868B; border-radius: 2px;
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   SHARED
   ============================================ */
section { padding: 120px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #86868B; margin-bottom: 12px; }
.section-title { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; }
.section-subtitle { font-size: clamp(17px, 2vw, 21px); color: #86868B; max-width: 680px; line-height: 1.5; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================
   STATS BAR
   ============================================ */
.stats {
    padding: 80px 24px; background: #fff;
    border-top: 1px solid #F0F0F0; border-bottom: 1px solid #F0F0F0;
}

.stats-grid {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}

.stat-item h3 {
    font-size: clamp(40px, 5vw, 64px); font-weight: 800;
    background: linear-gradient(135deg, #1D1D1F, #555);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 8px; letter-spacing: -0.03em;
}

.stat-item p { font-size: 15px; color: #86868B; font-weight: 500; }

/* ============================================
   STATEMENT
   ============================================ */
.statement {
    min-height: 80vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background: #fff; position: relative; overflow: hidden;
}

.statement-bg {
    position: absolute; inset: 0;
    background: url('img/walk-in-closet.jpg') center/cover no-repeat;
    opacity: 0.06;
}

.statement-text {
    font-size: clamp(28px, 4vw, 48px); font-weight: 600;
    max-width: 800px; line-height: 1.25; letter-spacing: -0.02em;
    position: relative; z-index: 1;
}
.statement-text .highlight { color: #86868B; }

/* ============================================
   FULL-WIDTH IMAGE BANNER
   ============================================ */
.image-banner { padding: 0; position: relative; height: 60vh; overflow: hidden; }
.image-banner img { width: 100%; height: 100%; object-fit: cover; }
.image-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    display: flex; align-items: flex-end; padding: 64px;
}
.image-banner-text { color: #fff; max-width: 600px; }
.image-banner-text h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; color: #fff; }
.image-banner-text p { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.process { background: #FAFAFA; }

.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }

.process-step {
    background: #fff; padding: 48px 28px; text-align: center;
    border-radius: 20px; transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative; overflow: hidden;
}
.process-step:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.process-step-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; }
.process-step-bg img { width: 100%; height: 100%; object-fit: cover; }
.process-step:hover .process-step-bg { opacity: 0.08; }

.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%; background: #F5F5F7;
    font-size: 18px; font-weight: 600; color: #1D1D1F; margin-bottom: 20px;
    position: relative; z-index: 1;
}
.process-step h3 { font-size: 20px; margin-bottom: 10px; position: relative; z-index: 1; }
.process-step p { font-size: 14px; color: #86868B; line-height: 1.5; position: relative; z-index: 1; }

/* ============================================
   SPACES — WITH PHOTOS
   ============================================ */
.spaces { background: #fff; }

.spaces-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.space-card {
    border-radius: 24px; overflow: hidden; position: relative;
    height: 360px; cursor: default; transition: transform 0.4s ease;
}
.space-card:hover { transform: scale(1.02); }

.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.space-card:hover img { transform: scale(1.08); }

.space-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px 20px; color: #fff;
}
.space-card-overlay h3 { font-size: 20px; margin-bottom: 4px; color: #fff; }
.space-card-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); }

.spaces-note { text-align: center; margin-top: 32px; font-size: 15px; color: #86868B; }

/* ============================================
   BEFORE / AFTER GALLERY
   ============================================ */
.gallery { background: #F5F5F7; }

.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.gallery-item { border-radius: 24px; overflow: hidden; position: relative; background: #fff; }

.gallery-image { overflow: hidden; position: relative; }
.gallery-image img { width: 100%; height: 360px; object-fit: cover; display: block; }

.gallery-label {
    position: absolute; top: 16px; padding: 6px 16px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; border-radius: 980px; z-index: 2;
}
.gallery-label.before { left: 16px; background: rgba(0,0,0,0.6); color: #fff; }
.gallery-label.after { right: 16px; background: #fff; color: #1D1D1F; }

.gallery-caption { padding: 24px 28px; }
.gallery-caption h3 { font-size: 18px; margin-bottom: 6px; }
.gallery-caption p { font-size: 14px; color: #86868B; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: #fff; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: #F5F5F7; border-radius: 24px; padding: 40px 32px;
    transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-stars { font-size: 16px; margin-bottom: 20px; letter-spacing: 2px; color: #F5A623; }

.testimonial-text {
    font-size: 16px; line-height: 1.6; margin-bottom: 28px; color: #424245; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

.testimonial-name { font-size: 15px; font-weight: 600; }
.testimonial-location { font-size: 13px; color: #86868B; }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: #1D1D1F; color: #fff; }
.pricing .section-label { color: rgba(255,255,255,0.5); }
.pricing .section-title { color: #fff; }
.pricing .section-subtitle { color: rgba(255,255,255,0.5); }

.pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 960px; margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 28px;
    overflow: hidden;
}

.pricing-card {
    background: rgba(255,255,255,0.06); padding: 56px 40px; text-align: center;
    border: none; display: flex; flex-direction: column; align-items: center;
}

.pricing-card .pricing-features { flex: 1; width: 100%; }

.pricing-card + .pricing-card {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.pricing-card .pricing-cta { margin-top: auto; }

.pricing-badge {
    display: inline-block; padding: 6px 18px; border-radius: 980px;
    background: rgba(255,255,255,0.1); font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px;
    color: rgba(255,255,255,0.7);
}

.pricing-amount { font-size: 80px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.pricing-period { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 48px; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 48px; }
.pricing-features li {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 17px; color: rgba(255,255,255,0.9);
}
.pricing-features li:last-child { border-bottom: none; }

.check-icon {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    background: rgba(52,199,89,0.2); display: flex; align-items: center;
    justify-content: center; font-size: 13px; margin-top: 1px; color: #34C759;
}

.pricing-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 500; color: #1D1D1F; background: #fff;
    padding: 18px 36px; border-radius: 980px; text-decoration: none;
    transition: all 0.3s ease;
}
.pricing-cta:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    min-height: 80vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
}

.philosophy-bg {
    position: absolute; inset: 0;
    background: url('img/kitchen-pantry.jpg') center/cover no-repeat;
}
.philosophy-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.88);
}

.philosophy-inner { max-width: 760px; position: relative; z-index: 1; }
.philosophy-icon { font-size: 48px; margin-bottom: 32px; display: block; }

.philosophy-quote {
    font-size: clamp(26px, 3.5vw, 42px); font-weight: 600; line-height: 1.25;
    margin-bottom: 32px; letter-spacing: -0.02em;
}
.philosophy-caption { font-size: 17px; color: #86868B; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: #F5F5F7; }

.faq-list {
    max-width: 860px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.faq-item {
    background: #fff; border-radius: 20px;
    padding: 0; overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.faq-item.active { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.faq-question {
    width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
    padding: 28px 28px 28px; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 16px; font-weight: 600; color: #1D1D1F;
    text-align: left; line-height: 1.4; gap: 12px;
}
.faq-question:hover { color: #424245; }

.faq-icon {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: #F5F5F7; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 400; color: #86868B;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #1D1D1F; color: #fff;
}

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 28px; font-size: 15px; color: #86868B; line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 0; position: relative; overflow: hidden;
    background: #1D1D1F; min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
}

.cta-banner-bg {
    position: absolute; inset: 0;
    background: url('img/garage.jpg') center/cover no-repeat;
    opacity: 0.25;
}

.cta-banner-inner {
    position: relative; z-index: 1; text-align: center;
    padding: 80px 24px; color: #fff;
}

.cta-banner-inner h2 { font-size: clamp(36px, 5vw, 56px); color: #fff; margin-bottom: 20px; }
.cta-banner-inner p {
    font-size: 20px; color: rgba(255,255,255,0.7); margin-bottom: 40px;
    max-width: 520px; margin-left: auto; margin-right: auto;
}

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 500; color: #1D1D1F; background: #fff;
    padding: 18px 36px; border-radius: 980px; text-decoration: none;
    transition: all 0.3s ease;
}
.btn-white:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: #F5F5F7; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.contact-info h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.contact-info > p { font-size: 17px; color: #86868B; margin-bottom: 40px; line-height: 1.6; }

.contact-detail {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 0; font-size: 17px; color: #1D1D1F;
}
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: 14px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 24px; padding: 16px 32px; background: #25D366; color: #fff;
    border-radius: 980px; text-decoration: none; font-size: 16px; font-weight: 500;
    transition: all 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.contact-form { background: #fff; border-radius: 24px; padding: 48px; }

.form-group { margin-bottom: 24px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: #86868B; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; font-size: 17px; font-family: inherit;
    border: 1px solid #E8E8ED; border-radius: 12px; background: #FAFAFA;
    color: #1D1D1F; transition: all 0.3s; outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #1D1D1F; background: #fff; box-shadow: 0 0 0 3px rgba(29,29,31,0.08);
}
.form-group textarea { height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
    width: 100%; padding: 16px; font-size: 17px; font-weight: 500; font-family: inherit;
    color: #fff; background: #1D1D1F; border: none; border-radius: 14px;
    cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 64px 24px 32px; background: #1D1D1F; color: rgba(255,255,255,0.5);
}

.footer-top {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-block h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand-block p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; }

.footer-col h4 {
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-col a {
    display: block; font-size: 14px; color: rgba(255,255,255,0.6);
    text-decoration: none; margin-bottom: 10px; transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    max-width: 1080px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; font-size: 13px;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 16px;
    transition: all 0.3s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .spaces-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section { padding: 80px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps { grid-template-columns: 1fr; gap: 12px; }
    .spaces-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .space-card { height: 260px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .faq-list { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-card { padding: 40px 24px; }
    .pricing-card + .pricing-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
    .pricing-amount { font-size: 56px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 32px 24px; }
    .hero { padding: 100px 20px 60px; }
    .hero-images { flex-direction: column; gap: 12px; margin-top: 48px; }
    .hero-images img { height: 200px; }
    .image-banner { height: 40vh; }
    .image-banner-overlay { padding: 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner { min-height: 40vh; }
}

@media (max-width: 480px) {
    .spaces-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 44px; }
}
