/* ============================================================
   Georgia Expert Wallpaper Installation — style.css
   Color palette: Deep Forest Green / Warm Limestone / Aged Brass
   ============================================================ */

:root {
  --forest:   #1D2B26;
  --pine:     #2A3933;
  --stone:    #3A4F47;
  --limestone:#F3EFE6;
  --ivory:    #F8F6F1;
  --moss:     #2B322E;
  --brass:    #B79A6B;
  --brass-dk: #A38658;
  --brass-lt: #D4BC8E;
  --white:    #FFFFFF;
  --red-err:  #ff6b6b;
  --radius:   10px;
  --shadow:   0 4px 32px rgba(0,0,0,0.18);
  --shadow-sm:0 2px 12px rgba(0,0,0,0.10);
  --trans:    0.25s ease;
}

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--limestone);
  color: var(--moss);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--brass-dk); }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

/* ---- Typography ------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.25;
  color: var(--forest);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Layout helpers --------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--forest); color: var(--ivory); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--ivory); }
.section-pine { background: var(--pine); color: var(--ivory); }
.section-pine h1,.section-pine h2,.section-pine h3 { color: var(--ivory); }
.section-stone { background: var(--stone); color: var(--ivory); }
.section-stone h2,.section-stone h3 { color: var(--ivory); }
.section-ivory { background: var(--ivory); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--brass);
  color: var(--forest);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans);
  text-align: center;
  min-height: 56px;
  line-height: 1.3;
}
.btn:hover { background: var(--brass-dk); color: var(--forest); box-shadow: 0 6px 24px rgba(183,154,107,0.4); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--brass); color: var(--brass); }
.btn-outline:hover { background: var(--brass); color: var(--forest); }
.btn-white { background: var(--white); color: var(--forest); }
.btn-white:hover { background: var(--limestone); color: var(--forest); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; min-height: 60px; }
.submit-btn {
  display: inline-block;
  background: var(--brass);
  color: var(--forest);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--trans), box-shadow var(--trans);
  width: 100%;
  min-height: 56px;
}
.submit-btn:hover { background: var(--brass-dk); box-shadow: 0 4px 16px rgba(183,154,107,0.35); }

/* ---- CTA blocks ------------------------------------------ */
.cta-block {
  background: var(--forest);
  color: var(--ivory);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.cta-block h3 { color: var(--brass); margin-bottom: 0.75rem; }
.cta-block p { color: var(--ivory); opacity: 0.9; margin-bottom: 1.5rem; }
.cta-block .btn { margin: 0.4rem; }

/* ---- Header ---------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest);
  border-bottom: 1px solid rgba(183,154,107,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 72px;
  max-width: 1300px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--forest); }
.logo-text { color: var(--ivory); }
.logo-text span { display: block; font-family: 'Manrope',sans-serif; font-size: 1.05rem; font-weight: 800; line-height: 1.1; }
.logo-text small { font-size: 0.7rem; opacity: 0.65; letter-spacing: 0.06em; text-transform: uppercase; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(248,246,241,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.nav-link:hover,.nav-link.active { color: var(--brass); background: rgba(183,154,107,0.1); }
.nav-link svg { width: 14px; height: 14px; fill: currentColor; transition: transform var(--trans); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--pine);
  border: 1px solid rgba(183,154,107,0.2);
  border-radius: 10px;
  min-width: 200px;
  padding: 0.6rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: rgba(248,246,241,0.8);
  font-size: 0.875rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  animation: dropIn 0.2s ease both;
}
.dropdown a:nth-child(1) { animation-delay: 0.02s; }
.dropdown a:nth-child(2) { animation-delay: 0.04s; }
.dropdown a:nth-child(3) { animation-delay: 0.06s; }
.dropdown a:nth-child(4) { animation-delay: 0.08s; }
.dropdown a:nth-child(5) { animation-delay: 0.10s; }
.dropdown a:nth-child(6) { animation-delay: 0.12s; }
.dropdown a:nth-child(7) { animation-delay: 0.14s; }
.dropdown a:nth-child(8) { animation-delay: 0.16s; }
.dropdown a:nth-child(9) { animation-delay: 0.18s; }
.dropdown a:nth-child(10) { animation-delay: 0.20s; }
.dropdown a:nth-child(11) { animation-delay: 0.22s; }
.dropdown a:hover { color: var(--brass); background: rgba(183,154,107,0.1); }

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}
.header-phone {
  color: var(--brass);
  font-family: 'Manrope',sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--brass-lt); }
.header-email {
  color: rgba(248,246,241,0.6);
  font-size: 0.75rem;
}
.header-email:hover { color: var(--brass); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; height: 2px; background: var(--ivory); border-radius: 2px; transition: all 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  min-width: 260px;
  max-width: 320px;
  height: 100vh;
  background: var(--forest);
  z-index: 1100;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 1px solid rgba(183,154,107,0.2);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
}
.mobile-overlay.open { display: block; }
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--brass);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-links { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.1rem; }
.mobile-menu-links a {
  display: block;
  padding: 0.7rem 0.5rem;
  color: rgba(248,246,241,0.85);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.mobile-menu-links a:hover { color: var(--brass); }
.mobile-menu-links .mm-label {
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 0.5rem 0.3rem;
}
.mobile-menu-contact { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(183,154,107,0.2); }
.mobile-menu-contact a { display: block; color: var(--brass); font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  background: var(--forest);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/wallpaper-installation-01.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.hero-content { }
.hero-badge {
  display: inline-block;
  background: rgba(183,154,107,0.2);
  border: 1px solid rgba(183,154,107,0.4);
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--ivory); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero-sub { color: rgba(248,246,241,0.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { }
.stat-num { font-family: 'Manrope',sans-serif; font-size: 2rem; font-weight: 800; color: var(--brass); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(248,246,241,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- Form ------------------------------------------------- */
.feedback-form-container {
  background: var(--ivory);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.feedback-form-container h3 {
  font-family: 'Manrope',sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 1.25rem;
  text-align: center;
}
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-group { margin-bottom: 0; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(29,43,38,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter',sans-serif;
  background: var(--white);
  color: var(--moss);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(183,154,107,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; margin-bottom: 0.75rem; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(43,50,46,0.45); }
.form-submit { }
#form-success { text-align: center; padding: 1rem; color: var(--forest); font-weight: 600; }
.error-message { color: var(--red-err); margin-top: 4px; font-size: 0.8rem; }

/* ---- Services Grid --------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--ivory);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { color: var(--forest); margin-bottom: 0.5rem; }
.service-card-body p { color: var(--moss); font-size: 0.9rem; flex: 1; }
.service-card-body .btn { margin-top: 1rem; align-self: flex-start; padding: 0.65rem 1.4rem; font-size: 0.875rem; }

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

/* ---- Feature split sections ------------------------------ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; background: var(--ivory); }
.split-content.dark { background: var(--forest); }
.split-content.dark h2 { color: var(--ivory); }
.split-content.dark p { color: rgba(248,246,241,0.82); }

/* ---- Why Choose Us --------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.why-item { text-align: center; padding: 2rem 1rem; }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(183,154,107,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 28px; height: 28px; fill: var(--brass); }
.why-item h4 { margin-bottom: 0.4rem; }

/* ---- Process steps --------------------------------------- */
.process-steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--ivory);
  border-radius: 10px;
  border-left: 3px solid var(--brass);
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--brass);
  color: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope',sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}
.step-body h4 { margin-bottom: 0.3rem; color: var(--forest); }
.step-body p { margin: 0; font-size: 0.9rem; }

/* ---- FAQ ------------------------------------------------- */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--ivory);
  border-radius: 10px;
  border: 1px solid rgba(29,43,38,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: 'Manrope',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; fill: var(--brass); transition: transform var(--trans); }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding var(--trans); }
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 0 1.25rem 1.1rem; color: var(--moss); font-size: 0.95rem; }
.faq-answer-inner a { color: var(--brass); text-decoration: underline; }

/* ---- Testimonials ---------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial {
  background: var(--pine);
  color: var(--ivory);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.75rem; left: 1.25rem;
  font-size: 4rem;
  color: var(--brass);
  opacity: 0.4;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1rem; padding-top: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--brass);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope',sans-serif;
  font-weight: 800;
  color: var(--forest);
  font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.78rem; opacity: 0.6; }
.stars { color: var(--brass); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ---- Areas grid ------------------------------------------ */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.area-card {
  background: var(--pine);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  transition: background var(--trans), transform var(--trans);
}
.area-card:hover { background: var(--stone); transform: translateY(-2px); }
.area-card a { color: var(--ivory); font-weight: 600; font-size: 0.95rem; display: block; }
.area-card a:hover { color: var(--brass); }
.area-card small { color: rgba(248,246,241,0.55); font-size: 0.75rem; }

/* ---- Map ------------------------------------------------- */
.map-frame { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 400px; border: none; display: block; }

/* ---- Contact page ---------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-detail-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--limestone);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--brass); }
.contact-detail-text strong { display: block; font-family: 'Manrope',sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone); margin-bottom: 0.15rem; }
.contact-detail-text a { color: var(--moss); font-weight: 600; }
.contact-detail-text a:hover { color: var(--brass); }

/* ---- Page hero ------------------------------------------- */
.page-hero {
  background: var(--forest);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pine) 0%, var(--forest) 100%);
  opacity: 0.7;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ivory); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(248,246,241,0.75); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.breadcrumb a, .breadcrumb span { color: rgba(248,246,241,0.55); font-size: 0.82rem; }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb .sep { opacity: 0.4; }

/* ---- Service page content -------------------------------- */
.service-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--brass); display: inline-block; }
.service-content ul, .service-content ol { margin-bottom: 1.25rem; }
.service-content li { font-size: 0.95rem; }
.service-content .cta-inline { margin: 2rem 0; }

/* ---- City page ------------------------------------------- */
.city-hero-img { height: 340px; overflow: hidden; border-radius: 12px; margin-bottom: 2rem; }
.city-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.6rem; }
.neighborhood-tag {
  background: var(--limestone);
  border: 1px solid rgba(29,43,38,0.1);
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  font-size: 0.83rem;
  color: var(--moss);
  text-align: center;
}

/* ---- Footer ---------------------------------------------- */
#site-footer {
  background: var(--forest);
  color: rgba(248,246,241,0.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--brass);
  font-family: 'Manrope',sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(248,246,241,0.65); font-size: 0.875rem; transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-nap { font-size: 0.8rem; }
.footer-nap a { color: rgba(248,246,241,0.55); }
.footer-nap a:hover { color: var(--brass); }

/* ---- Sticky button --------------------------------------- */
#sticky-quote-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--brass);
  color: var(--forest);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-family: 'Manrope',sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(183,154,107,0.5);
  cursor: pointer;
  border: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  letter-spacing: 0.02em;
}
#sticky-quote-btn:hover { background: var(--brass-dk); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(183,154,107,0.55); }

/* ---- Modal ----------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--ivory);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: modalIn 0.28s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--stone);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.modal-close:hover { color: var(--forest); }

/* ---- About page content ---------------------------------- */
.team-img { border-radius: 12px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card {
  padding: 1.75rem;
  background: var(--ivory);
  border-radius: 12px;
  border-top: 3px solid var(--brass);
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; margin: 0; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; max-width: 680px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 4rem 1.5rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-contact { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  #sticky-quote-btn { bottom: 1.25rem; right: 50%; transform: translateX(50%); font-size: 0.88rem; }
  #sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
  .cta-block { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-direction: column; gap: 1rem; }
}

/* ---- Utility classes ------------------------------------- */
.text-center { text-align: center; }
.text-brass { color: var(--brass); }
.text-ivory { color: var(--ivory); }
.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; }
.pb-2 { padding-bottom: 2rem; }
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading p { color: var(--stone); font-size: 1.05rem; max-width: 600px; margin: 0.75rem auto 0; }
.divider { height: 2px; background: linear-gradient(90deg, transparent, var(--brass), transparent); margin: 0 auto 1rem; max-width: 80px; border: none; }

/* ---- Animations ------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
