/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #F5F0EB;
    background: #0D0710;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
em { font-style: italic; }
.text-gold { color: #C8963E; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #C8963E; color: #0D0710;
    padding: 8px 16px; border-radius: 8px;
    font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* ===== PRELOADER ===== */
#page-preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: #0D0710;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; font-weight: 700;
    color: #C8963E; margin-bottom: 24px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-bar {
    width: 120px; height: 2px;
    background: rgba(200,150,62,0.2);
    border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.preloader-fill {
    width: 40%; height: 100%;
    background: #C8963E;
    border-radius: 2px;
    animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
@keyframes preloaderSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* ===== HEADER ===== */
#site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 24px;
    background: rgba(13,7,16,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,150,62,0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
    background: rgba(13,7,16,0.92);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.header-inner {
    display: flex; align-items: center;
    height: 72px; position: relative;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: #F5F0EB; z-index: 10;
}
.logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #C8963E, #E8C068);
    color: #0D0710; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
}
.logo-amp { color: #C8963E; }
#main-nav ul {
    display: flex; align-items: center; gap: 32px;
}
#main-nav a {
    font-size: 0.875rem; font-weight: 500;
    color: rgba(245,240,235,0.75);
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}
#main-nav a:hover { color: #C8963E; }
.nav-toggle {
    display: none; flex-direction: column;
    gap: 5px; padding: 8px; z-index: 10;
}
.nav-toggle-line {
    width: 22px; height: 2px;
    background: #F5F0EB; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.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: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    transition: all 0.3s ease; white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, #C8963E, #E8C068);
    color: #0D0710;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,150,62,0.35); }
.btn-outline-light {
    border: 1.5px solid rgba(245,240,235,0.35);
    color: #F5F0EB;
}
.btn-outline-light:hover { border-color: #C8963E; color: #C8963E; }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(100,30,80,0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(180,120,30,0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 50% 80%, rgba(60,10,60,0.6) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(140,60,20,0.3) 0%, transparent 40%),
        linear-gradient(160deg, #1A0A20 0%, #2D1040 30%, #1A0A20 60%, #0D0710 100%);
}
.hero-grain {
    position: absolute; inset: 0; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 820px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 50px;
    background: rgba(200,150,62,0.12);
    border: 1px solid rgba(200,150,62,0.25);
    color: #C8963E; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #F5F0EB; margin-bottom: 24px;
    line-height: 1.05;
}
.hero-title-line { display: block; }
.hero-title-line:nth-child(2) {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: #C8963E;
}
.hero-title em { font-style: italic; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245,240,235,0.7);
    max-width: 560px; margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 56px;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: #C8963E;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(245,240,235,0.5); letter-spacing: 0.04em; }
.hero-stat-divider {
    width: 1px; height: 32px;
    background: rgba(200,150,62,0.25);
}
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(245,240,235,0.4); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(200,150,62,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.6)} }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #C8963E; margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F5F0EB; margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem; color: rgba(245,240,235,0.6);
    max-width: 520px; margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { background: #0D0710; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,150,62,0.1);
    border-radius: 16px; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(200,150,62,0.25);
}
.service-card-img {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
}
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,7,16,0.7), transparent 60%);
    display: flex; align-items: flex-end; padding: 20px;
}
.service-card-tag {
    background: #C8963E; color: #0D0710;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.service-card-body { padding: 24px; }
.service-card-icon {
    width: 48px; height: 48px;
    background: rgba(200,150,62,0.1);
    border: 1px solid rgba(200,150,62,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #C8963E; margin-bottom: 16px;
}
.service-card-title {
    font-size: 1.2rem; color: #F5F0EB;
    margin-bottom: 10px;
}
.service-card-desc {
    font-size: 0.9rem; color: rgba(245,240,235,0.6);
    line-height: 1.65; margin-bottom: 20px;
}
.btn-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600;
    color: #C8963E; transition: gap 0.2s ease;
}
.btn-link:hover { gap: 10px; }

/* ===== ABOUT ===== */
.about { background: #100818; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -40px; right: -30px;
    width: 55%; border-radius: 12px; overflow: hidden;
    border: 4px solid #100818;
    aspect-ratio: 4/5;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
    position: absolute; top: -20px; left: -20px;
    color: rgba(200,150,62,0.3);
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text {
    font-size: 1rem; color: rgba(245,240,235,0.65);
    line-height: 1.75; margin-bottom: 16px;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin: 32px 0;
}
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: rgba(245,240,235,0.8);
}
.about-feature-icon {
    color: #C8963E; flex-shrink: 0;
}
.about-content .btn { margin-top: 8px; }

/* ===== GALLERY ===== */
.gallery { background: #0D0710; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 12px; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(13,7,16,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    color: #C8963E;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: 1/6; grid-row: 1/2; }
.gallery-item:nth-child(2) { grid-column: 6/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/4; grid-row: 2/3; }
.gallery-item:nth-child(5) { grid-column: 4/13; grid-row: 2/3; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #100818; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,150,62,0.1);
    border-radius: 16px; padding: 36px;
    transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(200,150,62,0.3); }
.testimonial-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; line-height: 1;
    color: rgba(200,150,62,0.3);
    margin-bottom: 8px;
}
.testimonial-text {
    font-size: 1rem; color: rgba(245,240,235,0.75);
    line-height: 1.75; margin-bottom: 24px;
    font-style: italic;
}
.testimonial-footer {
    display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #6B2F5B, #C8963E);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: #F5F0EB;
}
.testimonial-info { display: flex; flex-direction: column; }
.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: #F5F0EB;
}
.testimonial-location { font-size: 0.8rem; color: rgba(245,240,235,0.5); }

/* ===== CTA ===== */
.cta {
    position: relative; padding: 120px 0;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(100,30,80,0.6) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(180,120,30,0.25) 0%, transparent 50%),
        linear-gradient(135deg, #1A0A20, #2D1040, #1A0A20);
}
.cta-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8963E' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 680px;
}
.cta-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }
.cta-text {
    font-size: 1.1rem; color: rgba(245,240,235,0.65);
    margin-bottom: 40px; line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #0D0710; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc {
    font-size: 1rem; color: rgba(245,240,235,0.65);
    line-height: 1.75; margin-bottom: 36px;
}
.contact-details { margin-bottom: 32px; }
.contact-detail {
    display: flex; gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,150,62,0.1);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #C8963E; flex-shrink: 0; width: 80px;
}
.contact-detail dd {
    font-size: 0.95rem; color: rgba(245,240,235,0.8);
    line-height: 1.6;
}
.contact-detail a {
    color: rgba(245,240,235,0.8);
    transition: color 0.2s ease;
}
.contact-detail a:hover { color: #C8963E; }
.contact-map { border-radius: 12px; overflow: hidden; }

/* Contact Form */
.contact-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,150,62,0.12);
    border-radius: 16px; padding: 40px;
}
.contact-form-title {
    font-size: 1.5rem; color: #F5F0EB;
    margin-bottom: 8px;
}
.contact-form-subtitle {
    font-size: 0.9rem; color: rgba(245,240,235,0.55);
    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.8rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(245,240,235,0.6); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,150,62,0.15);
    border-radius: 10px; color: #F5F0EB;
    font-size: 0.95rem; font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,235,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C8963E;
    background: rgba(200,150,62,0.05);
}
.form-group select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8963E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option { background: #1A0A20; color: #F5F0EB; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 32px; text-align: center;
    color: #C8963E;
}
.form-success p { color: rgba(245,240,235,0.8); font-size: 1rem; }

/* ===== FOOTER ===== */
.footer {
    background: #08040C;
    border-top: 1px solid rgba(200,150,62,0.1);
    padding: 64px 0 32px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 0.9rem; color: rgba(245,240,235,0.5);
    margin-top: 16px; line-height: 1.7; max-width: 280px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem; color: rgba(245,240,235,0.6);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #C8963E; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p {
    font-size: 0.9rem; color: rgba(245,240,235,0.5);
}
.footer-contact a { color: rgba(245,240,235,0.5); transition: color 0.2s ease; }
.footer-contact a:hover { color: #C8963E; }
.footer-bottom {
    border-top: 1px solid rgba(200,150,62,0.08);
    padding-top: 24px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,235,0.35); }

/* ===== REVEAL ANIMATIONS (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .nav-toggle { display: flex; }
    #main-nav {
        position: fixed; top: 0; right: 0;
        width: min(320px, 85vw); height: 100vh;
        background: rgba(13,7,16,0.97);
        backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        border-left: 1px solid rgba(200,150,62,0.1);
    }
    #main-nav.open { transform: translateX(0); }
    #main-nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
    #main-nav a { font-size: 1.1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { margin-bottom: 48px; }
    .about-img-float { right: -10px; bottom: -20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: auto; grid-row: auto;
    }
    .gallery-item:nth-child(5) { grid-column: 1/3; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 16px; }
    .hero-stat-divider { display: none; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 16px 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(5) { grid-column: auto; }
    .contact-form-wrap { padding: 24px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
