/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2D1B35;
  background: #FFFAF5;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR TOKENS ===== */
:root {
  --plum-deep:    #4A1A6B;
  --plum:         #6B3FA0;
  --plum-light:   #9B6FD0;
  --plum-pale:    #F3ECFA;
  --plum-bg:      #FBF7FF;
  --amber:        #E8A020;
  --amber-light:  #F5C060;
  --amber-pale:   #FFF8EC;
  --warm-white:   #FFFAF5;
  --cream:        #FFF9F0;
  --text-dark:    #2D1B35;
  --text-mid:     #5A4565;
  --text-light:   #8A7595;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 8px rgba(74,26,107,0.06);
  --shadow-md:    0 8px 30px rgba(74,26,107,0.10);
  --shadow-lg:    0 16px 50px rgba(74,26,107,0.14);
  --shadow-card:  0 4px 20px rgba(74,26,107,0.08);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--plum-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-title em { color: var(--plum); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 13px 28px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum-light);
}
.btn-outline:hover {
  background: var(--plum-pale);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,250,245,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,63,160,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--plum);
}
.logo-icon { color: var(--plum); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--plum); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--plum);
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--plum-bg) 50%, var(--amber-pale) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(107,63,160,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232,160,32,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-main-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 520px;
}
.hero-image-wrap {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--plum);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.hero-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-greeting {
  font-size: 1rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.hero-sub {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Floating Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107,63,160,0.06);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card:nth-child(1) .stat-icon { background: var(--plum-pale); color: var(--plum); }
.stat-card:nth-child(2) .stat-icon { background: var(--amber-pale); color: var(--amber); }
.stat-card:nth-child(3) .stat-icon { background: #E8F4E8; color: #4A8C5C; }
.stat-icon svg { width: 24px; height: 24px; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  background: var(--amber);
  border-radius: var(--radius-xl);
  opacity: 0.2;
  z-index: -1;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.about-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.about-highlights li svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--plum-bg) 0%, var(--warm-white) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107,63,160,0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-inner {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--plum-pale);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum);
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ===== NEIGHBORHOODS ===== */
.neighborhoods { padding: 100px 0; background: #fff; }
.hood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hood-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107,63,160,0.06);
}
.hood-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hood-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.hood-card-body {
  padding: 20px;
}
.hood-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.hood-card-body p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 100%);
  color: #fff;
}
.testimonials .section-tag { background: rgba(255,255,255,0.15); color: var(--amber-light); }
.testimonials .section-title { color: #fff; }
.testimonials .section-title em { color: var(--amber-light); }
.testimonials .section-sub { color: rgba(255,255,255,0.7); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.testimonial-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--amber-light);
  opacity: 0.5;
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
}
.testimonial-detail {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: var(--amber-pale); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  color: #fff;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-intro {
  font-size: 0.9375rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--plum-pale);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-details strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-details span,
.contact-details a {
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.contact-details a:hover { color: var(--plum); text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(107,63,160,0.06);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(107,63,160,0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107,63,160,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success hidden { display: none; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #E8F4E8;
  color: #4A8C5C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--text-mid);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.footer-contact svg { color: var(--amber-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--amber-light); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--plum-deep); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-main-card { grid-template-columns: 1fr; max-width: 560px; }
  .hero-image-wrap { width: 100%; height: 280px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 160px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,250,245,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(107,63,160,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .hood-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-content { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hood-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-card { flex: none; }
  .container { padding: 0 16px; }
}
