/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;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; }

:root {
  --white: #FFFFFF;
  --bg-secondary: #EEF2F5;
  --bg-warm: #FAFAF8;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --accent: #4F79A7;
  --accent-hover: #3E6388;
  --accent-light: #EBF2FA;
  --border: #E5E9EE;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13);
  --radius: 12px;
  --radius-sm: 6px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin-bottom: 1em; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn, .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  height: 58px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary, .submit-btn {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover, .submit-btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(79,121,167,.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--accent);
}
.btn-white:hover {
  background: var(--bg-secondary);
  color: var(--accent-hover);
}
.submit-btn { width: 100%; justify-content: center; height: 58px; font-size: 1rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--accent);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.top-bar a { color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: #fff; }
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo span { color: var(--accent); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }

/* ===== NAV ===== */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: var(--accent-light); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* ===== DROPDOWN ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--text-mid);
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  animation: dropIn .2s ease both;
}
.dropdown a:nth-child(1) { animation-delay: .03s; }
.dropdown a:nth-child(2) { animation-delay: .06s; }
.dropdown a:nth-child(3) { animation-delay: .09s; }
.dropdown a:nth-child(4) { animation-delay: .12s; }
.dropdown a:nth-child(5) { animation-delay: .15s; }
.dropdown a:nth-child(6) { animation-delay: .18s; }
.dropdown a:nth-child(7) { animation-delay: .21s; }
.dropdown a:nth-child(8) { animation-delay: .24s; }
.dropdown a:nth-child(9) { animation-delay: .27s; }
.dropdown a:nth-child(10) { animation-delay: .30s; }
.dropdown a:nth-child(11) { animation-delay: .33s; }
.dropdown a:hover { color: var(--accent); background: var(--accent-light); }

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

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
  z-index: 1100;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  overflow-y: auto;
  padding: 80px 24px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1040;
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-overlay.open { opacity: 1; }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
}
.mobile-close svg { width: 24px; height: 24px; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  padding: 16px 0 4px;
  border-bottom: none;
  cursor: default;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,24,39,.75) 0%, rgba(17,24,39,.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 640px;
  padding: 80px 0;
}
.hero-content h1 {
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 600;
}
.hero-badge svg { width: 18px; height: 18px; color: #93C5FD; }

/* ===== PAGE HERO (non-home) ===== */
.page-hero {
  background: var(--bg-secondary);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span.sep { color: var(--border); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-bg { background: var(--bg-secondary); }
.section-warm { background: var(--bg-warm); }
.section-accent { background: var(--accent); color: white; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 620px; margin: 12px auto 0; }
.section-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card-body p { color: var(--text-light); font-size: .9rem; margin-bottom: 16px; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; color: var(--accent); }
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--text-light); font-size: .9rem; flex: 1; }

/* ===== FEATURES / WHY US ===== */
.feature-item { display: flex; gap: 16px; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.feature-item h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-item p { color: var(--text-light); font-size: .875rem; margin: 0; }

/* ===== SPLIT LAYOUT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--text-light); margin-bottom: 16px; }
.split-features { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: var(--text-light); font-size: .875rem; }

/* ===== FORM ===== */
.feedback-form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.feedback-form-container h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,121,167,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  margin-bottom: 16px;
}
.form-submit { margin-top: 4px; }
#form-success {
  text-align: center;
  padding: 32px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== HERO FORM WRAPPER ===== */
.hero-form-wrap .feedback-form-container {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
}

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-container iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { color: var(--text-mid); font-size: .9rem; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author strong { font-size: .9rem; display: block; }
.testimonial-author span { font-size: .8rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--accent);
  color: white;
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== INLINE CTA ===== */
.inline-cta {
  background: var(--accent-light);
  border: 1px solid rgba(79,121,167,.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.inline-cta p { color: var(--text-mid); font-size: .95rem; margin: 0; }
.inline-cta strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0F1822;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .site-logo { color: white; margin-bottom: 16px; }
.footer-brand .site-logo span { color: #93C5FD; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: #93C5FD; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 800;
  background: var(--accent);
  color: white;
  padding: 0 28px;
  height: 54px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(79,121,167,.4);
  transition: all var(--transition);
}
.sticky-quote-btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(79,121,167,.5); }
.sticky-quote-btn svg { width: 18px; height: 18px; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-secondary);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 18px; height: 18px; }
.modal-box .feedback-form-container { box-shadow: none; border: none; }

/* ===== LISTS IN CONTENT ===== */
.content-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.content-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===== PROCESS STEPS ===== */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px; top: 40px;
  width: 2px;
  bottom: 0;
  background: var(--border);
}
.step-num {
  width: 38px; height: 38px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.step-body h4 { font-size: 1rem; margin-bottom: 4px; padding-top: 8px; }
.step-body p { font-size: .875rem; color: var(--text-light); margin: 0; }

/* ===== AREA LINKS ===== */
.area-links { display: flex; flex-wrap: wrap; gap: 10px; }
.area-links a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--transition);
}
.area-links a:hover { background: var(--accent); color: white; }

/* ===== NEIGHBORHOODS ===== */
.neighborhood-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.neighborhood-grid li {
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ===== PHOTO GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  text-align: center;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin: 0 auto 16px; max-width: 120px; }
.team-card strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: .875rem; color: var(--text-light); }

/* ===== CONTACT PAGE ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-info-item h4 { font-size: .875rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-dark); font-weight: 600; margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 0; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-quote-btn { bottom: 20px; right: 50%; transform: translateX(50%); }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .feedback-form-container { padding: 24px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .neighborhood-grid { grid-template-columns: 1fr 1fr; }
}
