:root {
  --bg: #F7F5F0;
  --bg-alt: #FFFFFF;
  --fg: #1A1A18;
  --fg-muted: #5C5C54;
  --accent: #2A6049;
  --accent-light: #E9F4EE;
  --gold: #C4922A;
  --gold-light: #FEF3E2;
  --border: #E2DED6;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav { border-bottom: 1px solid var(--border); background: var(--bg); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); font-style: italic; font-family: var(--font-head); }

/* ── SECTIONS ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-headline { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 0.5em; }

/* ── HERO ── */
.hero { padding: 80px 0 60px; }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.hero-headline { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; color: var(--fg); margin-bottom: 20px; }
.hero-lede { font-size: 1.05rem; color: var(--fg-muted); max-width: 480px; line-height: 1.7; }

/* ── APARTMENT ILLUSTRATION ── */
.apartment-illustration { position: relative; display: flex; align-items: flex-end; justify-content: center; height: 300px; }
.apt-building { display: flex; flex-direction: column; align-items: center; }
.apt-ground { width: 100px; height: 8px; background: var(--fg); border-radius: 2px; }
.apt-floor { display: flex; gap: 8px; padding: 4px 8px; background: var(--fg); border-radius: 2px 2px 0 0; }
.apt-window { width: 20px; height: 24px; background: var(--gold); border-radius: 1px; }
.spark-group { position: absolute; top: 20px; right: 40px; }
.spark { position: absolute; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.spark.s1 { top: 0; right: 0; animation-delay: 0s; }
.spark.s2 { top: 20px; right: 30px; animation-delay: 0.4s; }
.spark.s3 { top: 8px; right: 55px; animation-delay: 0.8s; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.6); } }
.clean-badge { position: absolute; bottom: 10px; right: 20px; background: var(--accent); color: white; padding: 8px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.badge-check { width: 14px; height: 14px; border: 2px solid white; border-radius: 50%; }

/* ── DIFFERENT ── */
.different { padding: 80px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.diff-card { }
.diff-icon { width: 52px; height: 52px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.diff-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.diff-card p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.65; }

/* ── SERVICES ── */
.services { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; margin-top: 40px; }
.service-item { display: flex; gap: 16px; align-items: flex-start; }
.service-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.service-item h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.service-item p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.5; }
.services-note { margin-top: 32px; font-size: 0.875rem; color: var(--fg-muted); font-style: italic; }

/* ── PRICING ── */
.pricing { padding: 80px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.pricing-sub { color: var(--fg-muted); font-size: 1.05rem; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px; background: var(--bg); }
.pricing-card.featured { border-color: var(--accent); background: var(--accent-light); }
.pricing-tier { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); font-weight: 600; margin-bottom: 12px; }
.pricing-price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--fg); line-height: 1; margin-bottom: 8px; }
.pricing-note { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.9rem; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.pricing-card.featured .pricing-features li::before { background: var(--accent); }
.pricing-cta { margin-top: 32px; font-size: 0.9rem; color: var(--fg-muted); font-style: italic; }

/* ── CLIENTS ── */
.clients { padding: 80px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.client-card { }
.client-icon { width: 44px; height: 44px; background: var(--gold-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; }
.client-card h4 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.client-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* ── CLOSING ── */
.closing { padding: 80px 0; background: var(--fg); }
.closing-box { max-width: 720px; }
.closing-statement { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; font-style: italic; color: #F7F5F0; line-height: 1.5; letter-spacing: -0.01em; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.footer-loc { font-size: 0.8rem; color: var(--fg-muted); margin-left: 12px; }
.footer-claim p { font-family: var(--font-head); font-style: italic; font-size: 0.9rem; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .apartment-illustration { height: 200px; }
  .diff-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-loc { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 50px 0 40px; }
  .hero-headline { font-size: 1.8rem; }
  .pricing-price { font-size: 2.2rem; }
  .closing-statement { font-size: 1.25rem; }
}