:root {
  --navy: #0A1628;
  --navy-mid: #132240;
  --ivory: #F5F0E8;
  --ivory-dark: #EDE7D9;
  --brass: #C9A84C;
  --brass-light: #D4B96A;
  --text: #1A1A2E;
  --text-muted: #5A6070;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brass); }

/* Section utilities */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

/* Hero */
.hero {
  background: var(--navy);
  padding: 140px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-headline em {
  color: var(--brass);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(245, 240, 232, 0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  position: relative;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
}
.badge {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--brass-light);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Cities */
.cities {
  background: var(--white);
  padding: 80px 2rem;
}
.cities .section-label,
.cities .section-title { text-align: center; }
.city-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.city-card {
  border: 1px solid var(--ivory-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
}
.city-skyline {
  height: 120px;
  position: relative;
  overflow: hidden;
}
/* City skylines using CSS gradients */
.nyc-skyline { background: linear-gradient(180deg, #1a3a5c 0%, #2d5a87 40%, #8ba9c4 100%); }
.nyc-skyline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: 
    linear-gradient(90deg, transparent 0%, #0A1628 5%, transparent 10%) 0 bottom / 8px 50px no-repeat,
    linear-gradient(90deg, transparent 12%, #0A1628 14%, transparent 16%) 0 bottom / 10px 65px no-repeat,
    linear-gradient(90deg, transparent 20%, #0A1628 22%, transparent 25%) 0 bottom / 7px 40px no-repeat,
    linear-gradient(90deg, transparent 28%, #0A1628 30%, transparent 34%) 0 bottom / 12px 80px no-repeat,
    linear-gradient(90deg, transparent 40%, #0A1628 42%, transparent 45%) 0 bottom / 8px 55px no-repeat,
    linear-gradient(90deg, transparent 50%, #0A1628 52%, transparent 56%) 0 bottom / 14px 90px no-repeat,
    linear-gradient(90deg, transparent 62%, #0A1628 64%, transparent 68%) 0 bottom / 9px 48px no-repeat,
    linear-gradient(90deg, transparent 72%, #0A1628 74%, transparent 77%) 0 bottom / 11px 70px no-repeat,
    linear-gradient(90deg, transparent 82%, #0A1628 84%, transparent 87%) 0 bottom / 7px 38px no-repeat;
}
.chicago-skyline { background: linear-gradient(180deg, #1a2a4a 0%, #2d4a7a 40%, #8aa5c4 100%); }
.chicago-skyline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: 
    linear-gradient(90deg, transparent 0%, #0A1628 3%, transparent 6%) 0 bottom / 8px 60px no-repeat,
    linear-gradient(90deg, transparent 10%, #0A1628 12%, transparent 15%) 0 bottom / 12px 75px no-repeat,
    linear-gradient(90deg, transparent 20%, #0A1628 22%, transparent 26%) 0 bottom / 6px 45px no-repeat,
    linear-gradient(90deg, transparent 35%, #0A1628 37%, transparent 40%) 0 bottom / 10px 85px no-repeat,
    linear-gradient(90deg, transparent 50%, #0A1628 52%, transparent 55%) 0 bottom / 8px 50px no-repeat,
    linear-gradient(90deg, transparent 65%, #0A1628 67%, transparent 70%) 0 bottom / 14px 68px no-repeat;
}
.la-skyline { background: linear-gradient(180deg, #2a3a5a 0%, #3d5a8a 40%, #9ab5d4 100%); }
.la-skyline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: 
    linear-gradient(90deg, transparent 0%, #0A1628 5%, transparent 10%) 0 bottom / 9px 48px no-repeat,
    linear-gradient(90deg, transparent 15%, #0A1628 17%, transparent 21%) 0 bottom / 7px 38px no-repeat,
    linear-gradient(90deg, transparent 30%, #0A1628 32%, transparent 36%) 0 bottom / 11px 62px no-repeat,
    linear-gradient(90deg, transparent 48%, #0A1628 50%, transparent 54%) 0 bottom / 8px 70px no-repeat,
    linear-gradient(90deg, transparent 65%, #0A1628 67%, transparent 71%) 0 bottom / 12px 55px no-repeat;
}
.houston-skyline { background: linear-gradient(180deg, #1a2a4a 0%, #2d4a7a 40%, #8aa5c4 100%); }
.houston-skyline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: 
    linear-gradient(90deg, transparent 0%, #0A1628 6%, transparent 12%) 0 bottom / 10px 52px no-repeat,
    linear-gradient(90deg, transparent 18%, #0A1628 20%, transparent 25%) 0 bottom / 7px 40px no-repeat,
    linear-gradient(90deg, transparent 35%, #0A1628 37%, transparent 42%) 0 bottom / 13px 78px no-repeat,
    linear-gradient(90deg, transparent 55%, #0A1628 57%, transparent 61%) 0 bottom / 8px 46px no-repeat;
}
.miami-skyline { background: linear-gradient(180deg, #0d2a4a 0%, #1a4a7a 40%, #5d9abd 100%); }
.miami-skyline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: 
    linear-gradient(90deg, transparent 0%, #0A1628 5%, transparent 9%) 0 bottom / 8px 44px no-repeat,
    linear-gradient(90deg, transparent 15%, #0A1628 17%, transparent 21%) 0 bottom / 11px 65px no-repeat,
    linear-gradient(90deg, transparent 30%, #0A1628 32%, transparent 37%) 0 bottom / 7px 38px no-repeat,
    linear-gradient(90deg, transparent 45%, #0A1628 47%, transparent 52%) 0 bottom / 12px 72px no-repeat,
    linear-gradient(90deg, transparent 62%, #0A1628 64%, transparent 68%) 0 bottom / 9px 54px no-repeat;
}
.seattle-skyline { background: linear-gradient(180deg, #1a2a4a 0%, #2d5a8a 40%, #8aa5c4 100%); }
.seattle-skyline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: 
    linear-gradient(90deg, transparent 0%, #0A1628 4%, transparent 8%) 0 bottom / 7px 36px no-repeat,
    linear-gradient(90deg, transparent 12%, #0A1628 14%, transparent 18%) 0 bottom / 10px 56px no-repeat,
    linear-gradient(90deg, transparent 25%, #0A1628 27%, transparent 31%) 0 bottom / 6px 44px no-repeat,
    linear-gradient(90deg, transparent 38%, #0A1628 40%, transparent 45%) 0 bottom / 12px 68px no-repeat,
    linear-gradient(90deg, transparent 55%, #0A1628 57%, transparent 61%) 0 bottom / 9px 48px no-repeat;
}
.city-info { padding: 1rem 1.25rem 1.25rem; }
.city-name { font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.city-tag { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.city-price { font-size: 1rem; font-weight: 600; color: var(--brass); margin-top: 0.5rem; }

/* Amenities */
.amenities { background: var(--ivory); padding: 80px 2rem; }
.amenities-inner { max-width: 1200px; margin: 0 auto; }
.amenities-header { text-align: center; margin-bottom: 3rem; }
.amenities-desc { color: var(--text-muted); max-width: 500px; margin: 0.75rem auto 0; font-size: 1.05rem; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,22,40,0.07); }
.amenity-icon { color: var(--brass); margin-bottom: 1rem; }
.amenity-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.amenity-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* Pricing */
.pricing { background: var(--navy); padding: 80px 2rem; }
.pricing .section-label { text-align: center; }
.pricing .section-title { text-align: center; color: var(--ivory); }
.pricing-intro { text-align: center; color: rgba(245,240,232,0.65); margin: 0.75rem auto 2.5rem; font-size: 1rem; }
.pricing-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  overflow: hidden;
}
.pricing-header, .pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.pricing-header {
  background: rgba(201,168,76,0.15);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}
.pricing-row {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
  transition: background 0.15s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(255,255,255,0.04); }
.pr-city { font-weight: 600; color: var(--ivory); }
.pr-neighborhood { display: block; font-size: 0.75rem; color: rgba(245,240,232,0.45); font-weight: 400; margin-top: 0.15rem; }
.pr-price { font-weight: 600; color: var(--brass-light); text-align: center; }
.pricing-note { max-width: 600px; margin: 1.5rem auto 0; text-align: center; color: rgba(245,240,232,0.45); font-size: 0.8rem; }

/* Process */
.process { background: var(--white); padding: 80px 2rem; }
.process .section-label, .process .section-title { text-align: center; }
.process-steps {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--ivory-dark), var(--brass), var(--ivory-dark));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-block;
  background: var(--navy);
  color: var(--brass);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  line-height: 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.step h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.825rem; color: var(--text-muted); line-height: 1.5; }
.process-fee-callout {
  max-width: 500px;
  margin: 3rem auto 0;
  background: var(--ivory);
  border: 1px solid var(--brass);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.fee-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.fee-text strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.25rem; }
.fee-text span { font-size: 0.8rem; color: var(--text-muted); }

/* Closing */
.closing {
  background: var(--navy-mid);
  padding: 100px 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.closing-sub { font-size: 1.05rem; color: rgba(245,240,232,0.7); font-weight: 300; margin-bottom: 2rem; }
.closing-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.55);
}
.closing-cities .dot { color: var(--brass); }

/* Footer */
.footer {
  background: var(--navy);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.875rem; color: rgba(245,240,232,0.5); margin-bottom: 1rem; }
.footer-cities { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.25rem; }
.footer-cities span { font-size: 0.75rem; color: rgba(245,240,232,0.35); }
.footer-note { font-size: 0.75rem; color: rgba(245,240,232,0.25); }

/* Responsive */
@media (max-width: 900px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .pricing-header, .pricing-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .city-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { padding: 100px 1.5rem 70px; }
  .pricing-header, .pricing-row { grid-template-columns: 1fr 1fr; }
  .ph-unit:last-child, .pr-price:last-child { display: none; }
  .hero-badges { flex-direction: column; align-items: center; }
  .process-fee-callout { flex-direction: column; text-align: center; }
}