/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta:    #C0603A;
  --terracotta-dark: #9E4A2A;
  --terracotta-light: #D4845E;
  --sand:          #F4E8DC;
  --sand-light:    #FDF6EE;
  --sand-mid:      #EDE0D0;
  --cream:         #FFF9F3;
  --charcoal:      #3A2E28;
  --charcoal-light:#5C4D43;
  --warm-gray:     #8A7B70;
  --white:         #FFFFFF;
  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;
  --shadow-sm:     0 2px 8px rgba(58,46,40,.08);
  --shadow-md:     0 8px 30px rgba(58,46,40,.12);
  --shadow-lg:     0 16px 50px rgba(58,46,40,.16);
  --transition:    .3s ease;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--charcoal);
}

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }

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

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

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Labels ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 600px;
}

.text-center { text-align: center; }

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,246,238,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,96,58,.1);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-brand:hover { color: var(--terracotta); }

.nav-logo { width: 36px; height: 36px; flex-shrink: 0; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal-light);
  text-decoration: none;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
  background: rgba(192,96,58,.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) 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(-7.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--sand-light);
  padding-top: 72px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero-greeting {
  font-size: 1rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal-light);
  box-shadow: var(--shadow-sm);
}

/* Hero Images */
.hero-image-wrap {
  position: relative;
  height: 620px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform .5s ease;
}
.hero-img:hover { transform: scale(1.02); }

.hero-img-main {
  width: 380px;
  height: 480px;
  top: 20px;
  right: 0;
}

.hero-img-float {
  width: 200px;
  height: 140px;
  border: 4px solid var(--white);
}

.hero-img-float-1 {
  bottom: 140px;
  left: -30px;
}

.hero-img-float-2 {
  bottom: 20px;
  right: 20px;
}

.hero-wave {
  margin-top: auto;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── About ──────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-img-1 {
  width: 280px;
  height: 360px;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 260px;
  height: 240px;
  bottom: 0;
  right: 0;
  border: 5px solid var(--white);
}

.about-content { max-width: 500px; }

.about-content p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.about-features svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--terracotta);
}

/* ── Amenities ──────────────────────────────────────── */
.amenities {
  padding: 100px 0;
  background: var(--sand-light);
}

.section-header { margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(192,96,58,.06);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192,96,58,.15);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.amenity-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.amenity-card p {
  font-size: .95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ── Neighborhood ───────────────────────────────────── */
.neighborhood {
  padding: 100px 0;
  background: var(--white);
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.neighborhood-content { max-width: 500px; }

.neighborhood-content p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.neighborhood-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.neighborhood-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.02rem;
}

.neighborhood-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--terracotta);
}

.neighborhood-images {
  position: relative;
  height: 520px;
}

.nb-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform .5s ease;
}
.nb-img:hover { transform: scale(1.02); }

.nb-img-1 {
  width: 300px;
  height: 200px;
  top: 0;
  right: 0;
}

.nb-img-2 {
  width: 260px;
  height: 170px;
  bottom: 120px;
  left: 0;
  border: 4px solid var(--white);
}

.nb-img-3 {
  width: 240px;
  height: 150px;
  bottom: 0;
  right: 20px;
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  text-align: center;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-actions .btn-lg { min-width: 220px; justify-content: center; }

/* ── Contact ────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--sand-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-intro {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-icon svg { width: 24px; height: 24px; }

.contact-item strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 600;
}
.contact-item a:hover { color: var(--terracotta-dark); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192,96,58,.06);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(192,96,58,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E8F5E9;
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}

.footer-brand-link .nav-logo { opacity: .9; }

.footer h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; display: grid; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sand); }

.footer-contact p {
  font-size: .95rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--sand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
}

/* ── Scroll Reveal (progressive enhancement) ────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-image-wrap { height: 450px; max-width: 480px; margin: 0 auto; }
  .hero-img-main { width: 280px; height: 360px; right: 0; }
  .hero-img-float { width: 150px; height: 110px; }

  .about-grid,
  .neighborhood-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-images { height: 400px; max-width: 440px; margin: 0 auto; }
  .neighborhood-images { height: 400px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,246,238,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(192,96,58,.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 12px 18px; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 0; }
  .hero-inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-image-wrap { height: 360px; }
  .hero-img-main { width: 220px; height: 280px; }
  .hero-img-float { width: 130px; height: 95px; }

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

  .about-images { height: 320px; }
  .about-img-1 { width: 200px; height: 260px; }
  .about-img-2 { width: 180px; height: 170px; }

  .neighborhood-images { height: 340px; }
  .nb-img-1 { width: 220px; height: 150px; }
  .nb-img-2 { width: 200px; height: 130px; }
  .nb-img-3 { width: 180px; height: 120px; }

  .contact-form-wrap { padding: 28px 22px; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-lg { width: 100%; }
}
