/* ===== Princeton Wallpaper Installation - Style Sheet ===== */
/* Color Palette:
   Primary bg: #1B1714 (deep espresso)
   Secondary bg: #3A342F (warm taupe)
   Light sections: #F5EFE6 (linen)
   Text on dark: #F3EEE7 (soft ivory)
   Text on light: #2A2521 (rich brown)
   Accent: #B89B5E (antique gold)
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: #1B1714;
  color: #F3EEE7;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: #B89B5E; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #d4b876; text-decoration: underline; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #F3EEE7;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; color: #B89B5E; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; font-size: 1.05rem; }

ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

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

/* ===== HEADER ===== */
.site-header {
  background: #1B1714;
  border-bottom: 1px solid rgba(184,155,94,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184,155,94,0.1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
}

.header-contact a:hover { color: #B89B5E; text-decoration: none; }

.header-contact svg {
  width: 16px;
  height: 16px;
  fill: #B89B5E;
  flex-shrink: 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F3EEE7;
  letter-spacing: 0.5px;
}

.logo a:hover { color: #B89B5E; text-decoration: none; }

.logo span { color: #B89B5E; }

/* ===== NAVIGATION ===== */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
  margin: 0;
}

.nav-list > li > a {
  display: block;
  padding: 10px 16px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-list > li > a:hover { color: #B89B5E; text-decoration: none; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2A2521;
  min-width: 260px;
  border: 1px solid rgba(184,155,94,0.2);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.nav-list > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  opacity: 0;
  transform: translateX(-10px);
  margin: 0;
}

.nav-list > li:hover .nav-dropdown li {
  opacity: 1;
  transform: translateX(0);
}

.nav-dropdown li:nth-child(1) { transition: all 0.3s ease 0.05s; }
.nav-dropdown li:nth-child(2) { transition: all 0.3s ease 0.1s; }
.nav-dropdown li:nth-child(3) { transition: all 0.3s ease 0.15s; }
.nav-dropdown li:nth-child(4) { transition: all 0.3s ease 0.2s; }
.nav-dropdown li:nth-child(5) { transition: all 0.3s ease 0.25s; }
.nav-dropdown li:nth-child(6) { transition: all 0.3s ease 0.3s; }
.nav-dropdown li:nth-child(7) { transition: all 0.3s ease 0.35s; }
.nav-dropdown li:nth-child(8) { transition: all 0.3s ease 0.4s; }
.nav-dropdown li:nth-child(9) { transition: all 0.3s ease 0.45s; }
.nav-dropdown li:nth-child(10) { transition: all 0.3s ease 0.5s; }
.nav-dropdown li:nth-child(11) { transition: all 0.3s ease 0.55s; }

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.nav-dropdown a:hover {
  background: rgba(184,155,94,0.1);
  color: #B89B5E;
  padding-left: 26px;
  text-decoration: none;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #F3EEE7;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.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);
}

/* Mobile overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: #1B1714;
  z-index: 1050;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(184,155,94,0.2);
}

.mobile-nav-overlay.active {
  right: 0;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(184,155,94,0.2);
}

.mobile-nav-close {
  background: none;
  border: 1px solid rgba(184,155,94,0.3);
  color: #F3EEE7;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(184,155,94,0.1);
  border-color: #B89B5E;
}

.mobile-nav-list {
  list-style: none;
  padding: 16px 0;
  margin: 0;
}

.mobile-nav-list > li {
  margin: 0;
}

.mobile-nav-list > li > a {
  display: block;
  padding: 14px 20px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(184,155,94,0.08);
  text-align: left;
}

.mobile-nav-list > li > a:hover {
  color: #B89B5E;
  text-decoration: none;
}

.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(184,155,94,0.08);
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: left;
}

.mobile-sub-toggle:hover { color: #B89B5E; }

.mobile-sub-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}

.mobile-sub-toggle.open .arrow {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(42,37,33,0.5);
}

.mobile-sub-menu.open {
  max-height: 600px;
}

.mobile-sub-menu a {
  display: block;
  padding: 10px 20px 10px 36px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(184,155,94,0.05);
  text-align: left;
}

.mobile-sub-menu a:hover {
  color: #B89B5E;
  text-decoration: none;
}

.mobile-nav-contact {
  padding: 20px;
  border-top: 1px solid rgba(184,155,94,0.2);
  margin-top: 10px;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 8px 0;
}

.mobile-nav-contact svg {
  width: 16px;
  height: 16px;
  fill: #B89B5E;
  flex-shrink: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27,23,20,0.9) 0%, rgba(27,23,20,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-text h1 span { color: #B89B5E; }

.hero-text p {
  font-size: 1.15rem;
  color: rgba(243,238,231,0.85);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

/* ===== FORM STYLES ===== */
.feedback-form-container {
  background: rgba(58,52,47,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184,155,94,0.2);
  border-radius: 8px;
  padding: 32px;
}

.feedback-form-container h3 {
  font-size: 1.4rem;
  color: #B89B5E;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(27,23,20,0.6);
  border: 1px solid rgba(184,155,94,0.25);
  border-radius: 6px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243,238,231,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #B89B5E;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 12px;
}

.form-submit { margin-top: 8px; }

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #B89B5E;
  color: #1B1714;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #d4b876;
  transform: translateY(-1px);
}

#form-success {
  text-align: center;
  padding: 20px;
}

#form-success p {
  color: #B89B5E;
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section--light {
  background: #F5EFE6;
  color: #2A2521;
}

.section--light h2 { color: #2A2521; }
.section--light h3 { color: #3A342F; }
.section--light a { color: #8B6F3A; }
.section--light a:hover { color: #B89B5E; }

.section--dark {
  background: #1B1714;
}

.section--taupe {
  background: #3A342F;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  color: rgba(243,238,231,0.7);
  font-size: 1.1rem;
}

.section--light .section-header p {
  color: rgba(42,37,33,0.7);
}

/* ===== CONTENT GRID ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }

.content-image {
  border-radius: 8px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.content-image img:hover {
  transform: scale(1.03);
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(58,52,47,0.5);
  border: 1px solid rgba(184,155,94,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(184,155,94,0.4);
  transform: translateY(-4px);
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.95rem; color: rgba(243,238,231,0.75); }

/* Light section cards */
.section--light .card {
  background: #fff;
  border-color: rgba(42,37,33,0.1);
}

.section--light .card-body h3 { color: #2A2521; }
.section--light .card-body p { color: rgba(42,37,33,0.7); }

/* ===== CTA ===== */
.cta-block {
  text-align: center;
  padding: 40px;
  margin: 40px 0;
  background: rgba(184,155,94,0.08);
  border: 1px solid rgba(184,155,94,0.2);
  border-radius: 8px;
}

.cta-block h3 { color: #B89B5E; margin-bottom: 12px; }
.cta-block p { margin-bottom: 20px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn--gold {
  background: #B89B5E;
  color: #1B1714;
}

.btn--gold:hover {
  background: #d4b876;
  color: #1B1714;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #B89B5E;
  border: 1px solid #B89B5E;
}

.btn--outline:hover {
  background: #B89B5E;
  color: #1B1714;
}

.section--light .cta-block {
  background: rgba(184,155,94,0.06);
  border-color: rgba(184,155,94,0.15);
}

/* ===== MAP ===== */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(184,155,94,0.2);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(184,155,94,0.15);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: rgba(58,52,47,0.3);
  border: none;
  color: #F3EEE7;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover { background: rgba(58,52,47,0.5); }

.faq-question .icon {
  font-size: 1.2rem;
  color: #B89B5E;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question.active .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 16px 20px;
}

.section--light .faq-item {
  border-color: rgba(42,37,33,0.1);
}

.section--light .faq-question {
  background: rgba(42,37,33,0.04);
  color: #2A2521;
}

.section--light .faq-answer { color: #3A342F; }

/* ===== AREAS LIST ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.area-link {
  display: block;
  padding: 16px 20px;
  background: rgba(58,52,47,0.3);
  border: 1px solid rgba(184,155,94,0.15);
  border-radius: 6px;
  color: #F3EEE7;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.area-link:hover {
  border-color: #B89B5E;
  background: rgba(184,155,94,0.08);
  color: #B89B5E;
  text-decoration: none;
  transform: translateY(-2px);
}

.section--light .area-link {
  background: #fff;
  border-color: rgba(42,37,33,0.1);
  color: #2A2521;
}

.section--light .area-link:hover {
  border-color: #B89B5E;
  color: #8B6F3A;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #141110;
  border-top: 1px solid rgba(184,155,94,0.15);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #B89B5E;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(243,238,231,0.6);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  color: rgba(243,238,231,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: #B89B5E; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(184,155,94,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(243,238,231,0.4);
  font-family: 'Inter', sans-serif;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: 14px 28px;
  background: #B89B5E;
  color: #1B1714;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,155,94,0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.sticky-quote-btn:hover {
  background: #d4b876;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184,155,94,0.4);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #3A342F;
  border: 1px solid rgba(184,155,94,0.3);
  border-radius: 10px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #F3EEE7;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s ease;
}

.modal-close:hover { color: #B89B5E; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 100px 0 60px;
  text-align: center;
  background: #3A342F;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #B89B5E;
}

.page-header h1 { margin-bottom: 12px; }
.page-header p {
  color: rgba(243,238,231,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(243,238,231,0.5);
}

.breadcrumb a { color: rgba(243,238,231,0.5); }
.breadcrumb a:hover { color: #B89B5E; }
.breadcrumb span { margin: 0 6px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,155,94,0.1);
  border: 1px solid rgba(184,155,94,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #B89B5E;
}

.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #B89B5E;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: rgba(243,238,231,0.8);
  margin: 0;
}

/* ===== SERVICES LIST ===== */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.services-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  margin: 0;
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #B89B5E;
  border-radius: 50%;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.neighborhood-tag {
  padding: 8px 14px;
  background: rgba(58,52,47,0.3);
  border: 1px solid rgba(184,155,94,0.12);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(243,238,231,0.7);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav-overlay, .mobile-nav-backdrop { display: block; }

  .hero-content { grid-template-columns: 1fr; gap: 30px; }
  .hero-text h1 { font-size: 2.4rem; }

  .content-grid { grid-template-columns: 1fr; }
  .content-grid--reverse { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
  .header-contact { gap: 16px; font-size: 0.8rem; }

  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 2rem; }

  .section { padding: 50px 0; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .cards-grid { grid-template-columns: 1fr; }

  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 32px);
    max-width: 320px;
    text-align: center;
  }

  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-2px);
  }

  .mobile-nav-overlay { width: 75%; }
}

@media (max-width: 480px) {
  .header-top { flex-direction: column; gap: 8px; }
  .hero-text h1 { font-size: 1.7rem; }
  .feedback-form-container { padding: 20px; }
  .modal-content { padding: 24px; }
  .mobile-nav-overlay { width: 85%; }
}
