/* ─── 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, sans-serif;
  color: #0B1F3F;
  background: #FAFCFB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #0B1F3F; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 .5rem .5rem; z-index: 200;
}
.skip-link:focus { top: 0; }

/* ─── Color Tokens ─── */
:root {
  --navy:    #0B1F3F;
  --navy-l:  #132D54;
  --mint:    #4ADEB8;
  --mint-d:  #34B890;
  --mint-p:  #E0F5E9;
  --sand:    #F5F0E8;
  --cream:   #FAFCFB;
  --white:   #FFFFFF;
  --gray:    #6B7B8D;
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 4px 24px rgba(11,31,63,.08);
  --shadow-lg: 0 12px 48px rgba(11,31,63,.12);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}
.text-mint { color: var(--mint-d); }

/* ─── Layout ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Section Shared ─── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mint-d);
  margin-bottom: .75rem;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--mint);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem; color: var(--gray);
  max-width: 600px; line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-mint {
  background: var(--mint); color: var(--navy);
  box-shadow: 0 4px 16px rgba(74,222,184,.35);
}
.btn-mint:hover { background: var(--mint-d); color: var(--navy); box-shadow: 0 8px 24px rgba(74,222,184,.4); }
.btn-outline-light {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,.22); color: var(--white); }
.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Card ─── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,31,63,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--white);
}
.nav-logo-sub {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .65rem; font-weight: 500; letter-spacing: .06em;
  color: var(--mint); text-transform: uppercase;
}
.nav-menu {
  display: flex; align-items: center; gap: .25rem;
}
.nav-menu a {
  padding: .5rem .875rem; border-radius: 50px;
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.75);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--mint) !important; color: var(--navy) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--mint-d) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle-bar {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(11,31,63,.97); backdrop-filter: blur(12px);
    flex-direction: column; padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    transform: translateY(-120%); opacity: 0;
    transition: transform .35s, opacity .35s;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-menu a { padding: .75rem 1rem; font-size: 1rem; width: 100%; }
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,63,.82) 0%,
    rgba(11,31,63,.65) 50%,
    rgba(11,31,63,.45) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 720px; padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(74,222,184,.15); border: 1px solid rgba(74,222,184,.3);
  color: var(--mint); border-radius: 50px;
  padding: .4rem 1rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8); line-height: 1.7;
  max-width: 560px; margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 4rem;
}
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); backdrop-filter: blur(8px);
  padding: 1.5rem 2rem; max-width: 520px; margin: 0 auto;
}
.hero-stat {
  flex: 1; text-align: center; padding: 0 1rem;
}
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--mint);
  line-height: 1;
}
.hero-stat-suffix {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--mint);
}
.hero-stat-label {
  display: block; font-size: .78rem; color: rgba(255,255,255,.6);
  line-height: 1.4; margin-top: .35rem;
}
.hero-stat-divider {
  width: 1px; background: rgba(255,255,255,.15);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

/* ─── SERVICES ─── */
.services {
  padding: 7rem 0;
  background: var(--cream);
}
.services .section-label,
.services .section-title,
.services .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card { padding: 2rem; }
.card-icon {
  margin-bottom: 1.25rem;
  transition: transform .3s;
}
.service-card:hover .card-icon { transform: scale(1.05); }
.card-title {
  font-size: 1.35rem; color: var(--navy);
  margin-bottom: .75rem;
}
.service-card > p {
  font-size: .95rem; color: var(--gray); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.card-features {
  display: flex; flex-direction: column; gap: .5rem;
}
.card-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--navy);
}
.card-features li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
}

/* ─── ABOUT ─── */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/6; }
.about-image-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  opacity: .6;
}
.about-badge {
  position: absolute; top: 1.5rem; right: -1rem;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .6rem 1rem;
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--navy);
}
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }
.about-body {
  font-size: 1rem; color: var(--gray); line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem;
  background: var(--mint-p); border-radius: var(--radius-sm);
}
.value-item span { font-size: .9rem; font-weight: 500; color: var(--navy); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap { max-width: 480px; }
}

/* ─── NEIGHBORHOODS ─── */
.neighborhoods {
  padding: 7rem 0;
  background: var(--sand);
}
.neighborhoods .section-label,
.neighborhoods .section-title,
.neighborhoods .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
.neighborhoods-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.neighborhood-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.neighborhood-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .4s;
}
.neighborhood-card:hover img { transform: scale(1.04); }
.neighborhood-info {
  padding: 1.5rem;
  background: var(--white);
}
.neighborhood-info h3 {
  font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem;
}
.neighborhood-info p {
  font-size: .9rem; color: var(--gray); line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,222,184,.08) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-label,
.testimonials .section-title,
.testimonials .section-desc { text-align: center; margin-left: auto; margin-right: auto; color: var(--white); }
.testimonials .section-label { color: var(--mint); }
.testimonials .section-desc { color: rgba(255,255,255,.6); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
  position: relative; z-index: 1;
}
.testimonial-card {
  padding: 2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.testimonial-quote {
  margin-bottom: 1rem; opacity: .8;
}
.testimonial-text {
  font-size: .95rem; color: rgba(255,255,255,.85);
  line-height: 1.75; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial-avatar { flex-shrink: 0; }
.testimonial-name {
  font-weight: 600; font-size: .95rem; color: var(--white);
}
.testimonial-detail {
  font-size: .8rem; color: rgba(255,255,255,.5);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--mint-p) 0%, #D4F5E4 100%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy); margin-bottom: .75rem;
}
.cta-desc {
  font-size: 1.05rem; color: var(--gray); line-height: 1.7;
  max-width: 480px;
}
.cta-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info .section-label,
.contact-info .section-title { text-align: left; }
.contact-desc {
  font-size: 1rem; color: var(--gray); line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.contact-item:hover { transform: translateX(4px); }
.contact-item-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mint-p); border-radius: 12px;
}
.contact-item-label {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray); margin-bottom: .2rem;
}
.contact-item-value {
  font-size: .95rem; color: var(--navy); line-height: 1.5;
}
.contact-item a:hover { color: var(--mint-d); }

.contact-form-wrap { width: 100%; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 2.5rem;
}
.contact-form-title {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--navy); margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #D8E2EA; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: .95rem;
  color: var(--navy); background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--mint-d);
  box-shadow: 0 0 0 3px rgba(74,222,184,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A8B8C8; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center; padding: 2rem;
}
.form-success h4 {
  font-size: 1.4rem; color: var(--navy); margin: 1rem 0 .5rem;
}
.form-success p { color: var(--gray); font-size: .95rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--white);
}
.footer-logo-sub {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .65rem; font-weight: 500; letter-spacing: .06em;
  color: var(--mint); text-transform: uppercase;
}
.footer-tagline {
  font-size: .9rem; line-height: 1.7; margin-bottom: 1rem;
  max-width: 320px;
}
.footer-disclaimer {
  font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--white); margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--mint); }
.footer-contact p {
  font-size: .9rem; line-height: 1.7; margin-bottom: .25rem;
}
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--mint); }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
