/* ============================================
   HOME PAGE — Hero, Proof Strip, Building,
   Blog Preview, CTA
   ============================================ */

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: calc(var(--z-base) + 1);
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.02em;
}

.hero__location svg {
  width: 14px;
  height: 14px;
  color: var(--accent-warm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  max-width: 14ch;
}

.hero__title-accent {
  color: var(--accent-primary);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 48ch;
  line-height: 1.65;
  margin-bottom: var(--space-2xl);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: calc(var(--z-base) + 1);
  color: var(--text-muted);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Proof of Work Strip --- */
.proof {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
  padding: var(--space-4xl) 0;
}

.proof__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof__divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  flex-shrink: 0;
  margin: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .proof__grid {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .proof__divider {
    display: none;
  }

  .proof-item {
    flex: 1 1 40%;
  }
}

@media (max-width: 480px) {
  .proof-item {
    flex: 1 1 100%;
  }
}

/* --- What I'm Building Section --- */
.building__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.building__card--featured {
  grid-column: 1 / -1;
}

.building__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-lg);
}

@media (max-width: 768px) {
  .building__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Blog Preview Section --- */
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-preview__more {
  text-align: center;
  margin-top: var(--space-3xl);
}

@media (max-width: 1024px) {
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-preview__grid {
    grid-template-columns: 1fr;
  }
}

/* --- CTA Section --- */
.home-cta {
  text-align: center;
}

.home-cta__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.home-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.home-cta__desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 50ch;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.home-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.home-cta__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  justify-content: center;
}

/* --- Home CTA Social Links Responsive --- */
@media (max-width: 768px) {
  .home-cta__social .footer__social-link {
    width: 44px;
    height: 44px;
  }
}

/* --- Empathy Bridge Section --- */
.empathy {
  text-align: center;
  padding: var(--space-section) 0;
}

.empathy__content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.empathy__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.empathy__desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

/* --- Social Proof / Stats Section --- */
.social-proof {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.social-proof__stat {
  text-align: center;
  padding: var(--space-lg);
}

.social-proof__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-4xl);
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.social-proof__label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .social-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .social-proof__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Peak Moment Section --- */
.peak {
  background: var(--accent-primary);
  padding: 120px 0;
  text-align: center;
}

.peak__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.peak__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.peak__statement {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-5xl);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.peak__context {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .peak {
    padding: 80px 0;
  }
}

/* --- Hero Responsive --- */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__scroll-hint {
    display: none;
  }
}
