/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D2B1F;
  background: #FDF6EE;
  -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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #C0603A; color: #fff; padding: 8px 16px;
  border-radius: 8px; z-index: 9999; font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }
.h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #C0603A; margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: #C0603A; border-radius: 2px;
}
.section-sub { font-size: 1.1rem; color: #7A5C4A; max-width: 520px; }
.text-accent { color: #C0603A; }
.text-gradient {
  background: linear-gradient(135deg, #C0603A 0%, #E08A5E 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  border: 2px solid transparent; border-radius: 50px;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-cta {
  background: #C0603A; color: #fff; border-color: #C0603A;
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.35);
}
.btn-cta:hover {
  background: #A84E2E; border-color: #A84E2E;
  box-shadow: 0 6px 28px rgba(192, 96, 58, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: #3D2B1F; border-color: #3D2B1F;
}
.btn-outline:hover { background: #3D2B1F; color: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: #3D2B1F; border-color: #3D2B1F;
}
.btn-outline-light:hover { background: #fff; color: #C0603A; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: #C0603A; border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #FDF6EE; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.2); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 246, 238, 0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(61, 43, 31, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: #3D2B1F; }
.logo-accent { color: #C0603A; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  padding: 8px 16px; border-radius: 50px; font-weight: 600;
  font-size: 0.92rem; color: #5A3E2B; transition: all 0.2s ease;
}
.nav-list a:hover { background: rgba(192, 96, 58, 0.1); color: #C0603A; }

/* NAV TOGGLE */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: #3D2B1F;
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; }
.hamburger::after { content: ''; position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #FDF6EE 0%, #F5E6D3 50%, #EDD5BE 100%);
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, #C0603A 1.5px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192, 96, 58, 0.12); color: #C0603A;
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 700; margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 24px; color: #3D2B1F;
}
.hero-sub {
  font-size: 1.15rem; color: #6B4C3A; margin-bottom: 36px;
  max-width: 480px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* HERO CARDS */
.hero-visual { position: relative; min-height: 480px; }
.hero-card { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 40px rgba(61, 43, 31, 0.12); }
.hero-card-main { width: 100%; }
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute; background: #fff;
  padding: 16px 20px; border-radius: 18px;
  box-shadow: 0 8px 32px rgba(61, 43, 31, 0.15);
}
.hero-card-1 { bottom: 60px; left: -30px; }
.hero-card-2 { top: 40px; right: -20px; }
.hero-card-3 { bottom: 10px; right: 20px; padding: 14px 18px; }
.float-stat { display: flex; align-items: center; gap: 10px; }
.float-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: #C0603A; }
.float-stat-label { font-size: 0.82rem; font-weight: 700; color: #3D2B1F; line-height: 1.3; }
.float-stat-sub { font-size: 0.75rem; color: #8A6B55; margin-top: 2px; }

/* FLOAT ANIMATIONS */
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float 4s ease-in-out 1s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== INTRO ===== */
.intro { padding: 100px 0; background: #FDF6EE; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-text p { color: #6B4C3A; margin-bottom: 16px; font-size: 1.05rem; }
.intro-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.intro-features li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #3D2B1F; }
.intro-image { position: relative; }
.intro-image img { border-radius: 24px; width: 100%; height: 560px; object-fit: cover; box-shadow: 0 8px 40px rgba(61, 43, 31, 0.1); }
.intro-image-badge {
  position: absolute; bottom: -16px; left: 24px;
  background: #C0603A; color: #fff; padding: 12px 20px;
  border-radius: 14px; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.4);
}

/* ===== APARTMENTS ===== */
.apartments { padding: 100px 0; background: #F5E6D3; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-label { justify-content: center; }
.section-header .section-sub { margin: 0 auto; }
.apt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.apt-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(61, 43, 31, 0.07);
  transition: all 0.35s ease;
}
.apt-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(61, 43, 31, 0.14); }
.apt-card-img { position: relative; overflow: hidden; height: 220px; }
.apt-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.apt-card:hover .apt-card-img img { transform: scale(1.05); }
.apt-tag {
  position: absolute; top: 16px; left: 16px;
  background: #C0603A; color: #fff; padding: 4px 14px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 800;
}
.apt-card-body { padding: 28px; }
.apt-name { font-size: 1.3rem; margin-bottom: 10px; color: #3D2B1F; }
.apt-desc { font-size: 0.95rem; color: #7A5C4A; margin-bottom: 18px; line-height: 1.7; }
.apt-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.apt-includes li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #5A3E2B; font-weight: 600; }
.apt-includes li::before { content: '✓'; color: #C0603A; font-weight: 800; font-size: 0.85rem; }

/* ===== AMENITIES ===== */
.amenities { padding: 100px 0; background: #FDF6EE; }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.amenity-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(61, 43, 31, 0.05);
  transition: all 0.3s ease; border: 1px solid rgba(192, 96, 58, 0.06);
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(61, 43, 31, 0.1); border-color: rgba(192, 96, 58, 0.15); }
.amenity-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(192, 96, 58, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.amenity-name { font-size: 1.15rem; margin-bottom: 8px; color: #3D2B1F; }
.amenity-desc { font-size: 0.92rem; color: #7A5C4A; line-height: 1.7; }

/* ===== LIFE ===== */
.life { padding: 100px 0; background: #F5E6D3; }
.life-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.life-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.life-img-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.life-img-1 img { border-radius: 20px; width: 100%; height: 100%; object-fit: cover; }
.life-img-2 img, .life-img-3 img { border-radius: 20px; width: 100%; height: 100%; object-fit: cover; }
.life-content p { color: #6B4C3A; margin-bottom: 16px; font-size: 1.05rem; }
.life-cta { margin-top: 32px; }

/* ===== LOCATION ===== */
.location { padding: 100px 0; background: #FDF6EE; }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.location-desc { color: #6B4C3A; margin-bottom: 32px; font-size: 1.05rem; }
.location-details { display: flex; flex-direction: column; gap: 20px; }
.location-item { display: flex; align-items: flex-start; gap: 16px; }
.location-item svg { flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; color: #3D2B1F; font-size: 1rem; }
.location-item span { display: block; color: #7A5C4A; font-size: 0.9rem; }
.location-map { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 40px rgba(61, 43, 31, 0.1); }
.location-map iframe { width: 100%; height: 450px; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(160deg, #C0603A 0%, #A84E2E 100%); }
.cta-card {
  background: rgba(255,255,255,0.1); border-radius: 32px; padding: 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, #fff 1.5px, transparent 0);
  background-size: 28px 28px; pointer-events: none;
}
.cta-content { position: relative; }
.cta-title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.cta-text { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #F5E6D3; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-methods { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: #fff; border-radius: 16px; transition: all 0.2s ease; }
.contact-method:hover { box-shadow: 0 4px 20px rgba(61, 43, 31, 0.08); transform: translateX(4px); }
.contact-method-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(192, 96, 58, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-label { display: block; font-size: 0.8rem; color: #8A6B55; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method-value { display: block; font-size: 1rem; color: #3D2B1F; font-weight: 700; }
.contact-method a { color: #3D2B1F; }
.contact-method a:hover { color: #C0603A; }

/* FORM */
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 4px 24px rgba(61, 43, 31, 0.07); }
.form-title { font-size: 1.4rem; margin-bottom: 28px; color: #3D2B1F; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #5A3E2B; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #E8D5C4;
  border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: #3D2B1F; background: #FDF6EE; transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #C0603A; background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B89B85; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 12px;
  background: rgba(26, 107, 60, 0.08); color: #1A6B3C;
  font-weight: 700; font-size: 0.92rem;
}

/* ===== FOOTER ===== */
.footer { background: #3D2B1F; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-desc { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; max-width: 280px; }
.footer h4 { color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.95rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #E08A5E; }
.footer-contact p { margin-bottom: 8px; font-size: 0.95rem; }
.footer-contact a { transition: color 0.2s ease; }
.footer-contact a:hover { color: #E08A5E; }
.footer-hours { font-size: 0.88rem !important; margin-top: 8px !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; font-size: 0.85rem; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-list {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253, 246, 238, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px; gap: 4px;
    border-bottom: 1px solid rgba(192, 96, 58, 0.1);
    transform: translateY(-120%); opacity: 0;
    transition: all 0.35s ease; pointer-events: none;
    box-shadow: 0 8px 32px rgba(61, 43, 31, 0.1);
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list a { padding: 14px 20px; width: 100%; border-radius: 12px; font-size: 1rem; }
  .nav-list a:hover { background: rgba(192, 96, 58, 0.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 320px; order: -1; }
  .hero-card-float { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { order: -1; }
  .intro-image img { height: 360px; }
  .apt-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .life-grid { grid-template-columns: 1fr; }
  .life-images { order: -1; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 300px; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .amenity-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
