/* ═══════════════════════════════════════════════════════════════════
   Regent Parking — Marketing Site
   Deliberately distinct from the app's own blue/green product styling:
   charcoal + gold, generous whitespace, no emoji — reads as a vendor
   pitching to a condo board, not the app residents actually use.
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --charcoal:      #1C1F2A;
  --charcoal-soft: #2A2E3D;
  --gold:          #B8912F;
  --gold-light:    #D4AF5A;
  --cream:         #F7F6F3;
  --white:         #FFFFFF;
  --text:          #1C1F2A;
  --muted:         #6B7280;
  --border:        #E5E3DD;
  --radius:        10px;
  --max-width:     1120px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.site-nav {
  background: var(--charcoal);
  padding: 20px 0;
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.nav-brand span { color: var(--gold-light); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: .92rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .88rem;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── Hero ── */
.hero { background: var(--charcoal); color: var(--white); padding: 90px 0 100px; text-align: center; }
.hero-eyebrow {
  display: inline-block; color: var(--gold-light); font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: 2.9rem; font-weight: 800; line-height: 1.15; letter-spacing: -1px; max-width: 780px; margin: 0 auto 22px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 14px 28px; border-radius: 6px; font-weight: 700;
  font-size: .95rem; cursor: pointer; border: none; transition: transform .1s, opacity .15s;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── Sections ── */
section { padding: 80px 0; }
.section-eyebrow {
  color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px; text-align: center;
}
.section-title { font-size: 2.1rem; font-weight: 800; text-align: center; letter-spacing: -.5px; margin-bottom: 16px; }
.section-lead { text-align: center; color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto 56px; }

/* ── Feature grid ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px;
}
.feature-card .num { color: var(--gold); font-weight: 800; font-size: .82rem; letter-spacing: 1.5px; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.2px; }
.feature-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ── Two-column band ── */
.band { background: var(--cream); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band-grid h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 18px; }
.band-grid p { color: var(--muted); font-size: 1rem; margin-bottom: 14px; }
.check-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--text); }
.check-list li::before { content: "—"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── Stat strip ── */
.stat-strip { background: var(--charcoal); color: var(--white); padding: 56px 0; }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-strip .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--gold-light); }
.stat-strip .stat-label { font-size: .88rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ── Pricing card ── */
.pricing-card {
  max-width: 460px; margin: 0 auto; background: var(--charcoal); color: var(--white);
  border-radius: 16px; padding: 48px 40px; text-align: center;
}
.pricing-card .plan-name { color: var(--gold-light); font-weight: 700; font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; }
.pricing-card .price { font-size: 3.2rem; font-weight: 800; margin: 14px 0 4px; }
.pricing-card .price sup { font-size: 1.3rem; font-weight: 700; vertical-align: super; top: -1.2em; }
.pricing-card .price-unit { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 28px; }
.pricing-card .btn { width: 100%; margin-top: 8px; }
.pricing-includes { list-style: none; text-align: left; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.pricing-includes li { display: flex; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.9); }
.pricing-includes li::before { content: "✓"; color: var(--gold-light); font-weight: 800; flex-shrink: 0; }

.pricing-notes { max-width: 680px; margin: 48px auto 0; }
.pricing-notes h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: .92rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.contact-info p { color: var(--muted); margin-bottom: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.contact-detail .label { font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.contact-detail .value { font-size: 1.05rem; font-weight: 600; }
.contact-detail .value a { border-bottom: 1.5px solid var(--gold); }

.contact-form { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 6px;
  font-family: inherit; font-size: .95rem; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* ── CTA band ── */
.cta-band { background: var(--charcoal); color: var(--white); text-align: center; padding: 72px 0; }
.cta-band h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 32px; }

/* ── Footer ── */
.site-footer { background: var(--charcoal-soft); color: rgba(255,255,255,.6); padding: 32px 0; font-size: .85rem; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--gold-light); }

/* ── Mobile ── */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-strip .wrap { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 72px; }
}
