/* ============================================
   Seattle Wallpaper Hanger — Deep Emerald Green
   Fonts: Bodoni Moda (headings) + Outfit (body)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --emerald: #1a4a3a;
    --emerald-dark: #0e2f24;
    --forest: #163328;
    --champagne: #f7f3ec;
    --cream: #faf8f4;
    --gold: #c5a55a;
    --gold-hover: #d4b76a;
    --charcoal: #1e2a25;
    --text-light: #f0ece4;
    --text-dark: #1e3a2e;
    --text-muted: #6b7f74;
    --border-light: rgba(197,165,90,0.25);
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --radius: 6px;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p { margin-bottom: 1rem; }

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--emerald-dark);
    border-bottom: 1px solid rgba(197,165,90,0.15);
    transition: background var(--transition);
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}
.logo a {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}
.logo a span { color: var(--text-light); font-weight: 400; }

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color var(--transition);
}
.header-contact a:hover { color: var(--gold); }
.header-contact svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* Main Navigation */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: block;
    padding: 22px 16px;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li:hover > a { color: var(--gold); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--emerald-dark);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: perspective(600px) rotateX(-8deg);
    transform-origin: top center;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    z-index: 100;
}
.main-nav > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: perspective(600px) rotateX(0deg);
}
.dropdown-menu li {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
}
.main-nav > li:hover > .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}
/* Staggered animation for dropdown items */
.dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
.dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
.dropdown-menu li:nth-child(8) { transition-delay: 0.4s; }
.dropdown-menu li:nth-child(9) { transition-delay: 0.45s; }
.dropdown-menu li:nth-child(10) { transition-delay: 0.5s; }
.dropdown-menu li:nth-child(11) { transition-delay: 0.55s; }

.dropdown-menu a {
    display: block;
    padding: 11px 20px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition);
}
.dropdown-menu a:hover {
    background: rgba(197,165,90,0.12);
    color: var(--gold);
    padding-left: 28px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    width: 26px; height: 2px;
    background: var(--text-light);
    transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--emerald-dark);
    overflow: hidden;
    padding-top: 70px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: brightness(0.6);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,47,36,0.92) 0%, rgba(26,74,58,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.hero-text h1 { color: var(--cream); margin-bottom: 20px; }
.hero-text h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(197,165,90,0.15);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Hero Form */
.hero-form-wrapper {
    background: var(--champagne);
    border-radius: var(--radius);
    padding: 40px 36px 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}
.hero-form-wrapper h3 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
}

/* ============================================
   FORM STYLES
   ============================================ */
.feedback-form-container { width: 100%; }
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.contact-form .form-group { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d4cfc6;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
}
.contact-form textarea {
    min-height: 110px;
    resize: vertical;
    margin-bottom: 14px;
}
.contact-form .form-submit { margin-top: 8px; }
.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'Bodoni Moda', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197,165,90,0.3);
    transition: all var(--transition);
    margin-bottom: 20px;
}
.submit-btn:hover {
    background: var(--gold-hover);
    box-shadow: 0 6px 25px rgba(197,165,90,0.4);
    transform: translateY(-2px);
}
#form-success {
    text-align: center;
    padding: 24px;
}
#form-success p {
    color: var(--emerald);
    font-size: 1.05rem;
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 90px 0; }
.section-dark { background: var(--emerald); color: var(--text-light); }
.section-forest { background: var(--forest); color: var(--text-light); }
.section-light { background: var(--champagne); }
.section-cream { background: var(--cream); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 { margin-bottom: 12px; }
.section-dark .section-header h2,
.section-forest .section-header h2 { color: var(--cream); }
.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.section-dark .section-header p,
.section-forest .section-header p { color: rgba(240,236,228,0.7); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(197,165,90,0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-body {
    padding: 24px;
}
.service-card h3 { margin-bottom: 10px; color: var(--gold); font-size: 1.25rem; }
.section-dark .service-card p { color: rgba(240,236,228,0.75); }
.service-card .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    transition: gap var(--transition);
}
.service-card .btn-link:hover { gap: 12px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,47,36,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--cream);
    font-family: 'Bodoni Moda', serif;
    font-size: 1rem;
    font-weight: 700;
}

/* ============================================
   LOCATIONS TEXT LIST
   ============================================ */
.locations-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.location-text-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(197,165,90,0.15);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
}
.location-text-card:hover {
    background: var(--emerald-dark);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.location-text-card h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.location-text-card p {
    color: rgba(240,236,228,0.65);
    font-size: 0.88rem;
    line-height: 1.5;
}
.location-text-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--champagne);
    border-radius: var(--radius);
    border: 1px solid rgba(197,165,90,0.1);
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.feature-card h3 { color: var(--text-dark); margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(197,165,90,0.12);
    border-radius: var(--radius);
    padding: 32px;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: rgba(240,236,228,0.85); font-style: italic; margin-bottom: 16px; }
.testimonial-author { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
    text-align: center;
}
.cta-section h2 { color: var(--cream); margin-bottom: 16px; }
.cta-section p { color: rgba(240,236,228,0.8); max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }
.btn-gold {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: #fff;
    font-family: 'Bodoni Moda', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(197,165,90,0.3);
    transition: all var(--transition);
}
.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197,165,90,0.4);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section { padding: 0; }
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.05);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--emerald-dark);
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,47,36,0.95) 0%, rgba(26,74,58,0.85) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-hero h1 { color: var(--cream); margin-bottom: 14px; }
.page-hero p { color: rgba(240,236,228,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
    margin-bottom: 16px;
    font-size: 0.88rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(240,236,228,0.5); margin: 0 8px; }

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-section { padding: 80px 0; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: 16px; color: var(--text-dark); }
.content-text p { color: var(--text-muted); }
.content-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
.contact-info-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--champagne);
    border-radius: var(--radius);
    border: 1px solid rgba(197,165,90,0.1);
    transition: all var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.contact-info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.contact-info-card h3 { color: var(--text-dark); margin-bottom: 8px; font-size: 1.1rem; }
.contact-info-card p { color: var(--text-muted); font-size: 0.95rem; }
.contact-info-card a { color: var(--emerald); font-weight: 600; }
.contact-info-card a:hover { color: var(--gold); }

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form-wrapper {
    background: var(--champagne);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(197,165,90,0.1);
}
.contact-form-wrapper h2 { margin-bottom: 24px; color: var(--text-dark); font-size: 1.6rem; }
.contact-sidebar h3 { color: var(--text-dark); margin-bottom: 16px; }
.contact-sidebar p { color: var(--text-muted); margin-bottom: 20px; }
.contact-sidebar img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.why-list { margin-top: 16px; }
.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.why-list li svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #e0dbd3;
    padding: 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Bodoni Moda', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--emerald); }
.faq-question .icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition);
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.98rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: var(--text-light);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about p { color: rgba(240,236,228,0.6); font-size: 0.92rem; margin-top: 12px; }
.footer-col h4 {
    color: var(--gold);
    font-family: 'Bodoni Moda', serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: rgba(240,236,228,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(240,236,228,0.4);
    font-size: 0.85rem;
}

/* ============================================
   STICKY BUTTON & MODAL
   ============================================ */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 14px 28px;
    background: var(--gold);
    color: #fff;
    font-family: 'Bodoni Moda', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(197,165,90,0.4);
    transition: all var(--transition);
    max-width: 200px;
    white-space: nowrap;
}
.sticky-quote-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(197,165,90,0.5);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--champagne);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.4s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 14px; right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--text-dark); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 50px 0;
}
.stat-card {
    text-align: center;
    padding: 30px 16px;
    background: var(--champagne);
    border-radius: var(--radius);
    border: 1px solid rgba(197,165,90,0.1);
}
.stat-number {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--emerald);
    display: block;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-list-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form-section { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-contact { display: none; }
    .mobile-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--emerald-dark);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-120%);
        transition: transform var(--transition);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .main-nav.active { transform: translateY(0); }
    .main-nav > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    .dropdown-menu.mobile-open { display: block; }
    .dropdown-menu li { opacity: 1; transform: none; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-list-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
    }
    .sticky-quote-btn:hover { transform: translateX(50%) translateY(-3px); }
}

@media (max-width: 480px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .locations-list-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
}

/* ---------- Animations ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }
