/* LA Housing Help — Design tokens from ACCESS NYC */

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

:root {
  --navy:      #1B2A41;
  --amber:     #F2C94C;
  --green:     #24693D;
  --blue:      #1765CF;
  --grey-bg:   #F0F2F5;
  --grey-card: #D9D9D9;
  --text-pri:  #1B2A41;
  --text-sec:  #414141;
  --white:     #FFFFFF;
}

html { font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: var(--grey-bg);
  color: var(--text-pri);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.site-header {
  background: var(--navy);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0.85;
}

.lang-toggle {
  color: var(--white);
  font-size: 0.8125rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 3rem 1.25rem 3.5rem;
  text-align: center;
  flex-shrink: 0;
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ── CTA card ── */
.cta-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.trust-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-pri);
  margin-bottom: 0.5rem;
}

.trust-list .check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.btn-primary {
  display: block;
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s;
}

.btn-primary:hover { filter: brightness(0.94); }

.secondary-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-sec);
}

.secondary-link a {
  color: var(--blue);
  text-decoration: underline;
}

/* ── Coming Soon banner ── */
.coming-soon-banner {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  text-align: center;
}

.coming-soon-banner strong { color: var(--amber); }

/* ── Program category chips ── */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 0.35rem 0.875rem;
}

/* ── Disclaimer bar ── */
.disclaimer-bar {
  background: #0e1d2e;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.875rem 1.25rem;
  text-align: center;
  margin-top: auto;
}

.disclaimer-bar a {
  color: var(--amber);
  text-decoration: underline;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  text-align: center;
  padding: 1.25rem;
}

.site-footer a { color: rgba(255,255,255,0.65); }

/* ── Responsive ── */
@media (min-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
  .hero { padding: 4rem 2rem 4.5rem; }
  .cta-card { padding: 2.5rem 2rem; }
}
