/* =========================
   Container
========================= */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 32px 24px;
}

/* =========================
   Sections
========================= */

main section {
  padding: 40px 0;
}

/* About page – tighter vertical spacing */
.about-page main section {
  padding: 20px 0;
}
/* =========================
   Section titles
========================= */

.section-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-page .section-label {
  text-align: left;
}

/* =========================
   Header (Structure Only)
========================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0px 0;                 /* reduced padding */
  margin-bottom: 0;                /* remove gap below */
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

/* =========================
   Footer
========================= */

.site-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   Mobile refinement
========================= */
@media (max-width: 640px) {

  .container {
    padding: 24px 18px 24px;
  }

  main section {
    padding: 40px 0;
  }

  /* Keep header consistent */
  .site-header {
    margin-bottom: 0;
  }

  /* IMPORTANT: keep footer breathing */
  .site-footer {
    margin-top: 60px;     /* not 0 */
    padding-top: 24px;
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

}