/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #222629; background: #F4EFE7; line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', sans-serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== COLORS ===== */
:root {
  --bg-dark: #15181B;
  --bg-graphite: #242A30;
  --bg-light: #F4EFE7;
  --text-light: #FAFAF8;
  --text-dark: #222629;
  --accent: #B88A58;
  --accent-hover: #A07142;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { margin-bottom: 1rem; }

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

/* ===== HEADER ===== */
.site-header { background: var(--bg-dark); position: sticky; top: 0; z-index: 1000; padding: 0; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.header-top .contact-info { display: flex; gap: 20px; align-items: center; }
.header-top .contact-info a { color: var(--accent); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.header-top .contact-info a:hover { color: #fff; }
.header-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; max-width: 1200px; margin: 0 auto; }
.logo { padding: 14px 0; }
.logo a { color: var(--text-light); font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 800; }
.logo a span { color: var(--accent); }

/* ===== DESKTOP NAV ===== */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a { display: block; padding: 18px 16px; color: var(--text-light); font-size: 0.95rem; font-weight: 500; transition: color .3s, background .3s; }
.main-nav > li > a:hover { color: var(--accent); }

/* ===== DROPDOWN ===== */
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--bg-graphite); min-width: 240px; border-radius: 0 0 8px 8px; box-shadow: 0 12px 32px rgba(0,0,0,.4); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .3s, transform .3s, visibility .3s; z-index: 999; }
.main-nav > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { opacity: 0; transform: translateY(-6px); transition: opacity .25s, transform .25s; }
.main-nav > li:hover .dropdown-menu li { opacity: 1; transform: translateY(0); }
.main-nav > li:hover .dropdown-menu li:nth-child(1) { transition-delay: .05s; }
.main-nav > li:hover .dropdown-menu li:nth-child(2) { transition-delay: .1s; }
.main-nav > li:hover .dropdown-menu li:nth-child(3) { transition-delay: .15s; }
.main-nav > li:hover .dropdown-menu li:nth-child(4) { transition-delay: .2s; }
.main-nav > li:hover .dropdown-menu li:nth-child(5) { transition-delay: .25s; }
.main-nav > li:hover .dropdown-menu li:nth-child(6) { transition-delay: .3s; }
.main-nav > li:hover .dropdown-menu li:nth-child(7) { transition-delay: .35s; }
.main-nav > li:hover .dropdown-menu li:nth-child(8) { transition-delay: .4s; }
.main-nav > li:hover .dropdown-menu li:nth-child(9) { transition-delay: .45s; }
.main-nav > li:hover .dropdown-menu li:nth-child(10) { transition-delay: .5s; }
.dropdown-menu a { display: block; padding: 12px 20px; color: var(--text-light); font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,.05); transition: background .3s, color .3s; }
.dropdown-menu a:hover { background: rgba(184,138,88,.15); color: var(--accent); }

/* ===== MOBILE MENU ===== */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { display: block; width: 26px; height: 3px; background: var(--text-light); margin: 5px 0; border-radius: 2px; transition: .3s; }
.mobile-nav { position: fixed; top: 0; right: 0; width: 50%; height: 100vh; background: var(--bg-dark); z-index: 2000; padding: 70px 30px 30px; overflow-y: auto; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); visibility: hidden; }
.mobile-nav.active { transform: translateX(0); visibility: visible; }
.mobile-nav .close-btn { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; }
.mobile-nav .close-btn svg { width: 28px; height: 28px; stroke: var(--text-light); }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav > ul > li > a,
.mobile-nav > ul > li > .mob-toggle a { display: block; padding: 14px 0; color: var(--text-light); font-size: 1.05rem; font-weight: 500; text-align: left; }
.mobile-nav .mob-dropdown { padding-left: 16px; display: none; }
.mobile-nav .mob-dropdown.open { display: block; }
.mobile-nav .mob-dropdown a { display: block; padding: 10px 0; color: rgba(250,250,248,.7); font-size: 0.9rem; text-align: left; }
.mobile-nav .mob-dropdown a:hover { color: var(--accent); }
.mobile-nav .mob-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0; cursor: pointer; }
.mobile-nav .mob-toggle .arrow { transition: transform .3s; color: var(--accent); font-size: 0.8rem; }
.mobile-nav .mob-toggle .arrow.rotated { transform: rotate(180deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1999; }
.mobile-overlay.active { display: block; }

@media(max-width: 992px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(21,24,27,.88) 0%, rgba(21,24,27,.5) 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: 60px 20px; }
.hero-text { color: var(--text-light); }
.hero-text h1 { margin-bottom: 20px; }
.hero-text p { font-size: 1.1rem; margin-bottom: 30px; opacity: .9; }
@media(max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: auto; padding: 80px 0 40px; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 16px 32px; background: var(--accent); color: var(--bg-dark); font-weight: 700; font-size: 1rem; border-radius: 8px; border: none; cursor: pointer; transition: background .3s, box-shadow .3s, transform .2s; }
.btn:hover { background: var(--accent-hover); box-shadow: 0 8px 24px rgba(184,138,88,.3); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg-dark); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-graphite { background: var(--bg-graphite); color: var(--text-light); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { opacity: .7; max-width: 600px; margin: 0 auto; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media(max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ===== CARDS ===== */
.card { background: var(--bg-graphite); border-radius: 12px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; color: var(--text-light); }
.card-body p { color: rgba(250,250,248,.7); font-size: 0.95rem; }
.card-body a { color: var(--accent); font-weight: 600; margin-top: 12px; display: inline-block; }

/* ===== FORM ===== */
.feedback-form-container { background: var(--bg-graphite); padding: 40px; border-radius: 12px; }
.feedback-form-container h3 { color: var(--text-light); margin-bottom: 24px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { position: relative; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: var(--text-light); font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: border-color .3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; margin-bottom: 16px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(250,250,248,.4); }
.form-submit { text-align: center; }
.submit-btn { display: inline-block; padding: 16px 48px; background: var(--accent); color: var(--bg-dark); font-weight: 700; font-size: 1rem; border-radius: 8px; border: none; cursor: pointer; transition: background .3s, box-shadow .3s; }
.submit-btn:hover { background: var(--accent-hover); box-shadow: 0 8px 24px rgba(184,138,88,.3); }
#form-success { text-align: center; }
#form-success p { color: var(--accent); font-size: 1.1rem; font-weight: 600; }

/* ===== MAP ===== */
.map-container { border-radius: 12px; overflow: hidden; margin-top: 30px; }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-dark); color: var(--text-light); padding: 60px 0 20px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--accent); margin-bottom: 16px; font-size: 1rem; }
.footer-col p, .footer-col a { color: rgba(250,250,248,.7); font-size: 0.9rem; line-height: 2; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); color: rgba(250,250,248,.5); font-size: 0.85rem; }

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.sticky-quote .btn { box-shadow: 0 8px 32px rgba(184,138,88,.4); font-size: 0.95rem; padding: 14px 28px; }
@media(max-width: 768px) { .sticky-quote { bottom: 16px; right: 50%; transform: translateX(50%); } }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 3000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--bg-dark); border-radius: 16px; padding: 40px; max-width: 560px; width: 90%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; }
.modal-close svg { width: 24px; height: 24px; stroke: var(--text-light); }

/* ===== CTA BLOCK ===== */
.cta-block { background: var(--bg-graphite); border-left: 4px solid var(--accent); padding: 24px 30px; border-radius: 0 8px 8px 0; margin: 30px 0; }
.cta-block p { margin-bottom: 12px; color: var(--text-light); }
.cta-block .btn { padding: 12px 24px; font-size: 0.9rem; }

/* ===== SERVICE PAGE ===== */
.service-hero { padding: 120px 0 60px; background: var(--bg-dark); color: var(--text-light); text-align: center; }
.service-content { padding: 60px 0; }
.service-content h2 { color: var(--text-dark); margin: 40px 0 16px; }
.service-content h3 { color: var(--text-dark); margin: 24px 0 12px; }
.service-content ul, .service-content ol { padding-left: 24px; margin-bottom: 20px; }
.service-content li { margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.service-content ol li { list-style: decimal; }

/* ===== CITY PAGE ===== */
.city-hero { padding: 120px 0 60px; background: var(--bg-dark); color: var(--text-light); text-align: center; }
.neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin: 20px 0; }
.neighborhoods-grid span { background: rgba(184,138,88,.1); padding: 10px 16px; border-radius: 6px; font-size: 0.9rem; border: 1px solid rgba(184,138,88,.2); }

/* ===== FAQ ===== */
.faq-item { background: var(--bg-graphite); border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; color: var(--text-light); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform .3s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { padding: 0 24px 20px; color: rgba(250,250,248,.7); display: none; }
.faq-item.active .faq-answer { display: block; }

/* ===== ABOUT ===== */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.about-values .value-card { text-align: center; padding: 30px 20px; background: var(--bg-graphite); border-radius: 12px; }
.about-values .value-card h3 { color: var(--accent); margin: 16px 0 10px; }
@media(max-width: 768px) { .about-values { grid-template-columns: 1fr; } }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--bg-graphite); padding: 30px; border-radius: 12px; margin-bottom: 20px; }
.contact-info-card h3 { color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-info-card p { color: rgba(250,250,248,.7); }
.contact-info-card a { color: var(--accent); }

/* ===== ICON STYLES ===== */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 0; font-size: 0.85rem; color: rgba(250,250,248,.5); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

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