/* ============================================================
   Sophie Wallpaper Atelier — Main Stylesheet
   Color Palette:
   - Primary BG:     #8D7358 (oak brown)
   - Secondary BG:   #A8927A (driftwood)
   - Light BG:       #F6F2EA (oat linen)
   - Text on dark:   #FAF8F4
   - Text on light:  #352E29
   - Accent:         #7D9577 (muted sage)
   - Accent hover:   #657C60
   Typography: Manrope (headings), Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #352E29;
  background: #F6F2EA;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.25;
  color: #352E29;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ---- Buttons ---- */
.btn, .submit-btn {
  display: inline-block;
  background: #7D9577;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover, .submit-btn:hover {
  background: #657C60;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid #7D9577;
  color: #7D9577;
}
.btn-outline:hover {
  background: #7D9577;
  color: #fff;
}
.btn-light {
  background: #FAF8F4;
  color: #352E29;
}
.btn-light:hover {
  background: #F6F2EA;
  color: #352E29;
}

/* ---- Header ---- */
.site-header {
  background: #8D7358;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(53,46,41,0.18);
}
.header-top {
  background: #352E29;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: #FAF8F4;
}
.header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.header-top a {
  color: #FAF8F4;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.header-top a:hover { color: #7D9577; }
.header-main {
  padding: 0.75rem 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FAF8F4;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
}
.site-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: #7D9577;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo .logo-icon svg { width: 28px; height: 28px; fill: #fff; }
.logo-sub { font-size: 0.7rem; font-weight: 400; opacity: 0.8; display: block; }

/* ---- Main Navigation ---- */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 0.6rem 0.85rem;
  color: #FAF8F4;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { background: rgba(255,255,255,0.12); }
.main-nav .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}
/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(53,46,41,0.15);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: #352E29;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: #F6F2EA; color: #7D9577; }

/* ---- Mobile Menu Toggle ---- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: #FAF8F4;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #FAF8F4;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- Mobile Sidebar ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(53,46,41,0.55);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { display: block; opacity: 1; }
.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  right: -55%;
  width: 50%;
  min-width: 280px;
  height: 100vh;
  background: #8D7358;
  z-index: 1200;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav-sidebar.open { right: 0; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FAF8F4;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.15); }
.mobile-nav-links { margin-top: 1.5rem; flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: 0.8rem 0.5rem;
  color: #FAF8F4;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: #F6F2EA; }
.mobile-nav-links .mobile-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,248,244,0.6);
  padding: 1rem 0.5rem 0.3rem;
  font-weight: 700;
}
.mobile-nav-links .mobile-sub-link {
  padding-left: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #352E29;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-block;
  background: #7D9577;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: #FAF8F4; margin-bottom: 1.25rem; }
.hero p {
  color: rgba(250,248,244,0.88);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-phone {
  color: #FAF8F4;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-phone:hover { color: #7D9577; }

/* ---- Hero Form ---- */
.hero-form-wrap {
  position: relative;
  z-index: 2;
  background: rgba(250,248,244,0.97);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 40px rgba(53,46,41,0.22);
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ---- Contact Form ---- */
.feedback-form-container { width: 100%; }
.feedback-form-container h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: #352E29;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d4c9bc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #352E29;
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #7D9577; }
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
  margin-bottom: 0.75rem;
}
.contact-form .form-submit { margin-top: 0.5rem; }
.contact-form .submit-btn { width: 100%; padding: 0.9rem; font-size: 1rem; }
#form-success {
  text-align: center;
  padding: 1.5rem;
  color: #7D9577;
  font-weight: 600;
  font-size: 1rem;
}

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: #8D7358; color: #FAF8F4; }
.section-dark h2, .section-dark h3 { color: #FAF8F4; }
.section-mid { background: #A8927A; color: #FAF8F4; }
.section-mid h2, .section-mid h3 { color: #FAF8F4; }
.section-light { background: #F6F2EA; }
.section-white { background: #fff; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 640px; margin: 0.75rem auto 0; opacity: 0.8; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7D9577;
  margin-bottom: 0.5rem;
}
.section-dark .section-tag, .section-mid .section-tag { color: #F6F2EA; opacity: 0.75; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(53,46,41,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(53,46,41,0.14); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.service-card-body h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card-body p { font-size: 0.9rem; color: #6b5e55; margin-bottom: 1rem; }
.service-card-link {
  color: #7D9577;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card-link:hover { color: #657C60; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---- Why Us / Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: #7D9577;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.feature-icon svg { width: 30px; height: 30px; fill: #fff; }
.section-dark .feature-item h3 { color: #FAF8F4; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(53,46,41,0.07);
  position: relative;
}
.testimonial-stars { color: #e8a838; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; color: #5a4e47; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: #352E29; }
.testimonial-location { font-size: 0.8rem; color: #8D7358; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #8D7358 0%, #A8927A 100%);
  padding: 4rem 0;
  text-align: center;
  color: #FAF8F4;
}
.cta-banner h2 { color: #FAF8F4; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(250,248,244,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Two Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(53,46,41,0.14);
}
.two-col-img img { width: 100%; height: 420px; object-fit: cover; }
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: #5a4e47; margin-bottom: 1.25rem; }

/* ---- Areas Grid ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.area-link {
  display: block;
  background: #fff;
  border: 1.5px solid #e8ddd4;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #352E29;
  text-align: center;
  transition: all 0.2s;
}
.area-link:hover {
  background: #7D9577;
  border-color: #7D9577;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: #352E29;
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #7D9577;
  line-height: 1;
}
.stat-label { color: rgba(250,248,244,0.75); font-size: 0.875rem; margin-top: 0.4rem; }

/* ---- Process Steps ---- */
.steps-list { counter-reset: step; }
.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #7D9577;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.step-content h3 { margin-bottom: 0.4rem; }
.step-content p { color: #5a4e47; font-size: 0.95rem; }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e8ddd4;
  padding: 1.25rem 0;
}
.faq-question {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #352E29;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #7D9577;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-top: 0.75rem;
  color: #5a4e47;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Map ---- */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(53,46,41,0.12);
}
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ---- Contact Info ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(53,46,41,0.07);
}
.contact-info-icon {
  width: 52px;
  height: 52px;
  background: #F6F2EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-info-icon svg { width: 24px; height: 24px; fill: #7D9577; }
.contact-info-card h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: #8D7358; margin-bottom: 0.4rem; }
.contact-info-card p, .contact-info-card a { color: #352E29; font-weight: 600; font-size: 1rem; }
.contact-info-card a:hover { color: #7D9577; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #352E29 0%, #8D7358 100%);
  padding: 4rem 0 3.5rem;
  color: #FAF8F4;
}
.page-hero h1 { color: #FAF8F4; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(250,248,244,0.8); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(250,248,244,0.65);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(250,248,244,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: #FAF8F4; }
.breadcrumb span { color: rgba(250,248,244,0.4); }

/* ---- Content Sections ---- */
.content-section { padding: 4rem 0; }
.content-section h2 { margin-bottom: 1rem; }
.content-section p { color: #5a4e47; margin-bottom: 1rem; }
.content-section ul, .content-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #5a4e47;
}
.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section li { margin-bottom: 0.4rem; }

/* ---- Sticky CTA Button ---- */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: #7D9577;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(125,149,119,0.45);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.sticky-cta:hover { background: #657C60; transform: translateY(-2px); }

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(53,46,41,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #F6F2EA;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 60px rgba(53,46,41,0.3);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8D7358;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(141,115,88,0.12); }

/* ---- Footer ---- */
.site-footer {
  background: #352E29;
  color: rgba(250,248,244,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer-col h4 {
  color: #FAF8F4;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(250,248,244,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FAF8F4; }
.footer-bottom {
  border-top: 1px solid rgba(250,248,244,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(250,248,244,0.5); }
.footer-bottom a:hover { color: #FAF8F4; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-accent { color: #7D9577; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 100%; margin: 2rem 0 0; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-img img { height: 300px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 0; }
  .section { padding: 3.5rem 0; }
  .cta-banner { padding: 3rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta {
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
  }
  .sticky-cta:hover { transform: translateX(50%) translateY(-2px); }
  .mobile-nav-sidebar { width: 50%; min-width: 260px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
