/* ============================
   HustleHouse — Theme CSS
   ============================ */

:root {
  --bg: #F7F4EE;
  --fg: #1A1A18;
  --muted: #6B6A66;
  --accent: #C8540C;
  --accent-light: rgba(200, 84, 12, 0.08);
  --accent-mid: rgba(200, 84, 12, 0.15);
  --surface: #FFFFFF;
  --border: rgba(26, 26, 24, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ---- HERO ---- */
.hero {
  padding: 80px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-text h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-text .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  max-width: 80px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.brick-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

.brick {
  height: 64px;
  background: var(--fg);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease;
}

.brick:hover {
  transform: translateY(-4px);
}

.brick-1 { background: #2E2E2B; }
.brick-2 { background: var(--fg); }
.brick-3 { background: var(--accent); }
.brick-4 { background: #2E2E2B; }
.brick-5 { background: var(--fg); }
.brick-6 { background: #3A3A35; }
.brick-7 { background: #2E2E2B; }
.brick-8 { background: var(--accent); opacity: 0.7; }
.brick-9 { background: #3A3A35; }
.brick-10 { background: var(--fg); }
.brick-11 { background: #2E2E2B; }
.brick-12 { background: var(--fg); }
.brick-13 { background: var(--accent); opacity: 0.4; }
.brick-14 { background: #3A3A35; }
.brick-15 { background: var(--fg); }
.brick-16 { background: var(--accent); opacity: 0.9; }

.home-icon {
  width: 100px;
  height: 100px;
}

/* ---- SECTIONS ---- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.section-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ---- EARNINGS ---- */
.earnings {
  padding: 100px 0;
  background: var(--surface);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.col-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.col-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.col-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- FAMILY ---- */
.family {
  padding: 100px 0;
  background: var(--fg);
  color: white;
}

.family .section-label,
.family .section-title {
  color: white;
}

.family .section-body {
  color: rgba(255,255,255,0.6);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.family-stat {
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  margin-bottom: 24px;
}

.family-stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.family-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ---- HOUSING ---- */
.housing {
  padding: 100px 0;
  background: var(--bg);
}

.housing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.housing-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.housing-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

/* House diagram */
.house-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.house-roof {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 60px solid var(--fg);
  margin-bottom: -1px;
}

.house-body {
  width: 160px;
  height: 100px;
  background: var(--surface);
  border: 2px solid var(--fg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  position: relative;
}

.house-window {
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent);
  border-radius: 2px;
  background: var(--accent-light);
}

.house-door {
  width: 28px;
  height: 52px;
  background: var(--fg);
  border-radius: 2px 2px 0 0;
}

.house-foundation {
  width: 160px;
  padding: 12px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.foundation-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.house-wheels {
  display: flex;
  gap: 80px;
  margin-top: -1px;
}

.wheel {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--fg);
  background: transparent;
}

.house-caption {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 100px 0;
  background: var(--accent);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.manifesto-bar {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  margin: 0 auto 40px;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: white;
  line-height: 1.5;
  margin-bottom: 40px;
}

.manifesto-cta p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

/* ---- FOOTER ---- */
footer {
  background: var(--fg);
  color: white;
  padding: 64px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 200px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-col span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner,
  .two-col,
  .housing-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { padding: 60px 24px; }
  .section-inner { padding: 0 24px; }

  .three-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stat-row { gap: 24px; }
  .stat-num { font-size: 28px; }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .manifesto blockquote { font-size: 20px; }
}