:root {
  --navy: #1B2A4A;
  --navy-light: #253a63;
  --orange: #F47C20;
  --orange-dark: #d96b16;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-300: #DEE2E6;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-900: #212529;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

*, *::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: var(--gray-900); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  line-height: 1.4;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.88rem; }

/* ── Header / Nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--gray-300);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switch {
  display: flex;
  gap: 0.2rem;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 0.2rem;
}
.lang-btn {
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--gray-600);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--navy);
  color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560185007-cde436f6a4d0?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.88) 0%, rgba(27,42,74,0.55) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  max-width: 680px;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.87);
  max-width: 560px;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.hero-trust-item svg { flex-shrink: 0; }

/* ── Section commons ── */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--gray-50); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Apartments ── */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}
.apt-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition);
}
.apt-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.apt-card-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.apt-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.apt-card:hover .apt-card-photo img { transform: scale(1.05); }
.apt-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.apt-badge-avail {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(255,255,255,0.92);
  color: var(--gray-900);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
}
.apt-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.apt-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.apt-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.25rem; }
.apt-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--orange);
}
.apt-price-mo { font-size: 0.85rem; color: var(--gray-600); }
.apt-inclusive { font-size: 0.78rem; color: #27a045; font-weight: 600; margin-bottom: 1rem; }
.apt-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.apt-meta span { display: flex; align-items: center; gap: 0.3rem; }
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.amenity-tag {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 0.22rem 0.7rem;
  font-size: 0.76rem;
  color: var(--gray-900);
  font-weight: 500;
}
.apt-footer { margin-top: auto; display: flex; align-items: center; gap: 0.75rem; }
.apt-min { font-size: 0.78rem; color: var(--gray-600); }

/* ── Location ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.location-intro { font-size: 1rem; color: var(--gray-600); margin-bottom: 1.75rem; line-height: 1.7; }
.dist-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.dist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
}
.dist-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; }
.dist-info strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.dist-info span { font-size: 0.8rem; color: var(--gray-600); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-300);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-note { font-size: 0.75rem; color: var(--gray-500); padding: 0.5rem 0.75rem; background: var(--gray-50); }

/* ── How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: var(--gray-300);
}
.step { text-align: center; padding: 0 1rem; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #fff;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; max-width: 760px; }
.faq-item {
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--navy); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
  color: var(--navy);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Contact / Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-row { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--gray-900); }
.contact-row a { color: var(--navy); font-weight: 500; text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.fg input,
.fg select,
.fg textarea {
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color var(--transition);
  color: var(--gray-900);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { outline: none; border-color: var(--navy); }
.fg textarea { min-height: 110px; resize: vertical; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.65rem; grid-column: 1 / -1; }
.checkbox-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.checkbox-row label { font-size: 0.83rem; color: var(--gray-600); font-weight: 400; cursor: pointer; }
.checkbox-row label a { color: var(--navy); font-weight: 500; }
.hp { display: none; }
.form-submit-row { grid-column: 1 / -1; }
.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--navy);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-600); }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 2.5rem 1.5rem; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-brand { font-weight: 800; color: #fff; font-size: 1rem; letter-spacing: -0.02em; }
.footer-brand span { color: var(--orange); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.staging-banner {
  background: #f59e0b;
  color: #1a1a1a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero { min-height: 88vh; }
  .hero-inner { padding: 4rem 1.25rem 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.25rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .apt-grid { grid-template-columns: 1fr; }
}
