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

/* ── Header ── */
.site-header {
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Hero Grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap: 32px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 40px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Sections ── */
.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

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

/* ── Contact ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */

/* Tablet — 900px */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile — 800px */
@media (max-width: 800px) {
  .container {
    padding: 0 10px;
  }

  .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-grid {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .hero-right-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
