/* ============================================================
   Wallpaper Elegance Creations — Atlanta
   Deep Aubergine / Muted Bronze / Boutique Interior Studio
   Fonts: Cormorant Infant (headings) + Outfit (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --aubergine: #3b1f2b;
  --plum-charcoal: #2e1a24;
  --warm-sand: #f0e6d6;
  --blush-cream: #f5ece0;
  --aubergine-gray: #4a2d3a;
  --bronze: #b08d57;
  --bronze-light: #c9a96e;
  --bronze-dark: #8a6d3b;
  --white: #ffffff;
  --off-white: #faf7f2;
  --text-dark: #2a1520;
  --text-light: #f5ece0;
  --overlay: rgba(59, 31, 43, 0.85);
  --shadow: 0 4px 24px rgba(59, 31, 43, 0.18);
  --shadow-lg: 0 8px 40px rgba(59, 31, 43, 0.25);
  --radius: 0;
  --radius-pill: 50px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Infant', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

a { color: var(--bronze); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--bronze-light); }

img { max-width: 100%; height: auto; display: block; }

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

/* ===== HEADER — Single Row ===== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--plum-charcoal);
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(46, 26, 36, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 68px;
}

.header-logo a {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  color: var(--blush-cream); white-space: nowrap;
}
.header-logo a span { color: var(--bronze); }

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex; align-items: center; list-style: none; gap: 0;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 22px 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blush-cream); transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--bronze); }

/* Dropdown */
.has-dropdown > ul {
  position: absolute; top: 100%; left: 0;
  min-width: 240px; background: var(--plum-charcoal);
  border: 1px solid rgba(176, 141, 87, 0.15);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform-origin: top center;
  transform: scaleY(0); opacity: 0; visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  z-index: 100;
}
.has-dropdown:hover > ul {
  transform: scaleY(1); opacity: 1; visibility: visible;
}
.has-dropdown > ul > li { opacity: 0; transform: translateX(-12px); }
.has-dropdown:hover > ul > li {
  animation: dropSlideIn 0.35s ease forwards;
}
.has-dropdown:hover > ul > li:nth-child(1) { animation-delay: 0.05s; }
.has-dropdown:hover > ul > li:nth-child(2) { animation-delay: 0.1s; }
.has-dropdown:hover > ul > li:nth-child(3) { animation-delay: 0.15s; }
.has-dropdown:hover > ul > li:nth-child(4) { animation-delay: 0.2s; }
.has-dropdown:hover > ul > li:nth-child(5) { animation-delay: 0.25s; }
.has-dropdown:hover > ul > li:nth-child(6) { animation-delay: 0.3s; }
.has-dropdown:hover > ul > li:nth-child(7) { animation-delay: 0.35s; }
.has-dropdown:hover > ul > li:nth-child(8) { animation-delay: 0.4s; }
.has-dropdown:hover > ul > li:nth-child(9) { animation-delay: 0.45s; }
.has-dropdown:hover > ul > li:nth-child(10) { animation-delay: 0.5s; }

@keyframes dropSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.has-dropdown > ul > li > a {
  display: block; padding: 10px 20px;
  font-size: 0.88rem; font-weight: 400;
  color: var(--blush-cream); border-bottom: 1px solid rgba(176, 141, 87, 0.08);
  transition: var(--transition);
}
.has-dropdown > ul > li > a:hover {
  background: rgba(176, 141, 87, 0.12); color: var(--bronze); padding-left: 26px;
}

/* Header contact & CTA */
.header-contact {
  display: flex; align-items: center; gap: 16px; margin-left: 16px;
}
.header-contact a {
  font-size: 0.78rem; color: var(--blush-cream); white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.header-contact a:hover { color: var(--bronze); }
.header-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

.nav-cta-btn {
  display: inline-block; margin-left: 16px; padding: 10px 22px;
  background: var(--bronze); color: var(--white) !important;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-pill); transition: var(--transition);
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--bronze-light); color: var(--white) !important;
  box-shadow: 0 0 20px rgba(176, 141, 87, 0.4);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  display: block; width: 26px; height: 2px; background: var(--blush-cream);
  margin: 6px 0; transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center; background-attachment: fixed;
  margin-top: 68px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,31,43,0.92) 0%, rgba(46,26,36,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-text { color: var(--blush-cream); }
.hero-subtitle {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 20px;
  line-height: 1.08;
}
.hero-text h1 em {
  font-style: italic; color: var(--bronze); display: block;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.8; opacity: 0.9; margin-bottom: 30px;
  max-width: 520px;
}

/* ===== FORM ===== */
.feedback-form-container { max-width: 520px; }
.feedback-form-container h3 {
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--blush-cream);
  margin-bottom: 20px;
}
.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 .form-group:not(.form-row .form-group) { margin-bottom: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(176,141,87,0.3);
  color: var(--blush-cream); font-family: var(--font-body); font-size: 0.95rem;
  border-radius: 4px; transition: var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,236,224,0.5); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--bronze);
  background: rgba(255,255,255,0.12);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.form-submit { margin-top: 4px; }
.submit-btn {
  display: inline-block; padding: 14px 40px;
  background: var(--bronze); color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  transition: var(--transition);
}
.submit-btn:hover {
  background: var(--bronze-light);
  box-shadow: 0 0 24px rgba(176,141,87,0.45);
  transform: translateY(-2px);
}
#form-success p {
  color: var(--bronze-light); font-size: 1.1rem; padding: 20px 0;
}

/* Form on light background */
.light-form .feedback-form-container h3 { color: var(--aubergine); }
.light-form .contact-form input,
.light-form .contact-form textarea {
  background: var(--white); border-color: rgba(74,45,58,0.2);
  color: var(--text-dark);
}
.light-form .contact-form input::placeholder,
.light-form .contact-form textarea::placeholder { color: rgba(74,45,58,0.45); }
.light-form .contact-form input:focus,
.light-form .contact-form textarea:focus {
  border-color: var(--bronze); background: var(--white);
}
.light-form #form-success p { color: var(--bronze-dark); }

/* ===== SECTION COMMON ===== */
.section { padding: 90px 0; }
.section-dark { background: var(--aubergine); color: var(--blush-cream); }
.section-plum { background: var(--plum-charcoal); color: var(--blush-cream); }
.section-sand { background: var(--warm-sand); }
.section-light { background: var(--off-white); }

.section-label {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  font-size: 1.05rem; line-height: 1.8; max-width: 640px; opacity: 0.85;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  background: var(--plum-charcoal); overflow: hidden;
  transition: var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 220px; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.2rem; color: var(--blush-cream); margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem; color: rgba(245,236,224,0.7); line-height: 1.6; margin-bottom: 16px;
}
.card-link {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bronze);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover { color: var(--bronze-light); gap: 10px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  overflow: hidden; position: relative; aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ===== FEATURES / WHY CHOOSE ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.feature-card {
  padding: 36px 28px; background: rgba(176,141,87,0.06);
  border: 1px solid rgba(176,141,87,0.12);
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(176,141,87,0.12);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bronze); border-radius: 50%;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--white); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; opacity: 0.8; line-height: 1.6; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-preview-img { position: relative; }
.about-preview-img img { width: 100%; box-shadow: var(--shadow-lg); }
.about-preview-text .section-title { text-align: left; }
.about-preview-text p { margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--bronze); display: block;
}
.stat-label { font-size: 0.82rem; font-weight: 500; opacity: 0.7; }

/* ===== LOCATIONS GRID ===== */
.locations-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.location-card {
  text-align: center; padding: 28px 16px;
  background: rgba(176,141,87,0.06); border: 1px solid rgba(176,141,87,0.1);
  transition: var(--transition);
}
.location-card:hover {
  background: rgba(176,141,87,0.14); transform: translateY(-4px);
}
.location-card h3 { font-size: 1rem; margin-bottom: 6px; }
.location-card p { font-size: 0.82rem; opacity: 0.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding: 80px 24px;
  background: linear-gradient(135deg, var(--aubergine) 0%, var(--plum-charcoal) 100%);
  color: var(--blush-cream);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 600px; margin: 0 auto 30px; opacity: 0.85; font-size: 1.05rem; }
.btn-primary {
  display: inline-block; padding: 16px 44px;
  background: var(--bronze); color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-pill); transition: var(--transition);
}
.btn-primary:hover {
  background: var(--bronze-light); color: var(--white);
  box-shadow: 0 0 24px rgba(176,141,87,0.45); transform: translateY(-2px);
}
.btn-outline {
  display: inline-block; padding: 14px 36px;
  background: transparent; color: var(--bronze);
  border: 2px solid var(--bronze);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-pill); transition: var(--transition);
}
.btn-outline:hover {
  background: var(--bronze); color: var(--white);
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--plum-charcoal); color: var(--blush-cream); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(176,141,87,0.15);
}
.footer-about p { font-size: 0.9rem; opacity: 0.75; line-height: 1.7; margin-top: 12px; }
.footer-heading {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  color: var(--bronze); margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(245,236,224,0.7); }
.footer-links a:hover { color: var(--bronze); }

.footer-contact-item {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--bronze); }
.footer-contact-item a, .footer-contact-item span {
  font-size: 0.88rem; color: rgba(245,236,224,0.7);
}
.footer-contact-item a:hover { color: var(--bronze); }

.footer-social {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(176,141,87,0.15); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--bronze); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--blush-cream); }

.footer-bottom {
  text-align: center; padding: 20px 0;
  font-size: 0.82rem; opacity: 0.6;
}

/* ===== NEXTDOOR ICON ===== */
.nextdoor-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 20px; border-radius: 8px;
  background: rgba(142,213,0,0.1); border: 2px solid rgba(142,213,0,0.3);
  transition: var(--transition); text-decoration: none;
  color: var(--blush-cream); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
}
.nextdoor-link:hover {
  background: rgba(142,213,0,0.2); border-color: #8ed500;
  transform: translateY(-2px); box-shadow: 0 4px 15px rgba(142,213,0,0.25);
}
.nextdoor-link .nextdoor-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nextdoor-link:hover .nextdoor-icon path { fill: #7bc400; }
.nextdoor-link .nextdoor-text { white-space: nowrap; }

/* Footer nextdoor placement */
.footer-nextdoor {
  display: flex; align-items: center; margin-top: 20px;
}

/* Contact page nextdoor card */
.contact-info-card .nextdoor-icon { width: 40px; height: 40px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px; text-align: center;
  background: var(--aubergine); color: var(--blush-cream);
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,26,36,0.5) 0%, var(--aubergine) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { margin-bottom: 10px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 600px; margin: 0 auto; opacity: 0.8; }
.breadcrumb {
  font-size: 0.85rem; margin-top: 16px; opacity: 0.6;
}
.breadcrumb a { color: var(--bronze); }

/* ===== SERVICE PAGE ===== */
.service-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.service-content img { width: 100%; box-shadow: var(--shadow); }
.service-text h2 { margin-bottom: 16px; }
.service-text p { margin-bottom: 14px; line-height: 1.8; }
.service-features { list-style: none; margin: 20px 0; }
.service-features li {
  padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem;
}
.service-features li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 10px; height: 10px; background: var(--bronze); border-radius: 50%;
}

/* ===== LOCATION PAGE ===== */
.location-content {
  display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start;
}
.location-sidebar {
  background: var(--warm-sand); padding: 30px; position: sticky; top: 90px;
}
.location-sidebar h3 { margin-bottom: 16px; color: var(--aubergine); }
.location-sidebar ul { list-style: none; }
.location-sidebar ul li { margin-bottom: 10px; }
.location-sidebar ul li a {
  font-size: 0.92rem; color: var(--aubergine-gray);
  display: flex; align-items: center; gap: 8px;
}
.location-sidebar ul li a:hover { color: var(--bronze); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.contact-info-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px;
}
.contact-info-card {
  padding: 24px; background: var(--warm-sand);
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-info-card svg {
  width: 24px; height: 24px; flex-shrink: 0; fill: var(--bronze);
}
.contact-info-card h3 {
  font-size: 0.95rem; margin-bottom: 4px; color: var(--aubergine);
}
.contact-info-card p, .contact-info-card a {
  font-size: 0.88rem; color: var(--aubergine-gray);
}
.contact-info-card a:hover { color: var(--bronze); }

.contact-image { margin-top: 30px; }
.contact-image img { width: 100%; box-shadow: var(--shadow); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(176,141,87,0.15); margin-bottom: 12px;
  background: var(--white);
}
.faq-question {
  padding: 20px 24px; cursor: pointer;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  color: var(--aubergine); display: flex; justify-content: space-between;
  align-items: center; transition: var(--transition);
}
.faq-question:hover { color: var(--bronze); }
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--bronze);
  transition: var(--transition);
}
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px; font-size: 0.95rem; line-height: 1.8;
  color: var(--aubergine-gray);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(46, 26, 36, 0.9); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--aubergine); padding: 40px; position: relative;
  max-width: 560px; width: 90%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; color: var(--blush-cream);
  font-size: 1.6rem; cursor: pointer; transition: var(--transition);
}
.modal-close:hover { color: var(--bronze); }

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote {
  position: fixed; bottom: 28px; right: 28px; z-index: 1500;
  padding: 16px 32px; background: var(--bronze); color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  box-shadow: 0 4px 20px rgba(176,141,87,0.4);
  transition: var(--transition);
}
.sticky-quote:hover {
  background: var(--bronze-light);
  box-shadow: 0 6px 30px rgba(176,141,87,0.6);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

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

@media (max-width: 768px) {
  .header-contact, .nav-cta-btn { display: none; }
  .mobile-toggle { display: block; }
  .main-nav {
    position: fixed; top: 68px; left: 0; width: 100%; height: calc(100vh - 68px);
    background: var(--plum-charcoal); flex-direction: column;
    padding: 20px; overflow-y: auto;
    transform: translateX(-100%); transition: transform 0.4s ease;
  }
  .main-nav.active { transform: translateX(0); }
  .main-nav ul { flex-direction: column; width: 100%; }
  .main-nav > ul > li > a { padding: 14px 0; font-size: 0.95rem; }
  .has-dropdown > ul {
    position: static; transform: scaleY(1); opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding-left: 20px;
    display: none;
  }
  .has-dropdown.mobile-open > ul { display: flex; }
  .has-dropdown > ul > li { opacity: 1; transform: none; animation: none !important; }

  .hero { min-height: 80vh; background-attachment: scroll; }
  .hero-content { padding: 40px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .sticky-quote { bottom: 16px; right: 50%; transform: translateX(50%); }
  .sticky-quote:hover { transform: translateX(50%) translateY(-3px); }

  .location-sidebar { position: static; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .locations-grid { grid-template-columns: 1fr; }
}
