/* ---------- Base ---------- */

body {
  color: #333;
  background-color: #fff;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 20px;
}

/* ---------- Layout ---------- */

section {
    padding: clamp(80px, 12vw, 100px) 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 32px);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

/* ---------- Hero ---------- */

/* ---------- Name ---------- */

.name-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 4px;
}

/* ---------- Projects ---------- */

.project {
  background: #f6f6f6;
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 48px;
}

.project img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}

/* ---------- Muted / Coming Soon ---------- */

.muted {
  opacity: 0.7;
  filter: grayscale(100%);
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  justify-content: flex-end;
  padding: 40px 50px;
  border-top: 1px solid #eee;
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-link {
  margin: 0 20px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  opacity: 0.6;
}

.footer-link:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .site-footer {
    justify-content: center;
    padding: 32px 24px;
  }

  .footer-link {
    margin: 0 14px;
  }
}

/* ---------- Header ---------- */
.site-header {
  padding: 30px 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-logo {
  font-size: 22px;
  font-weight: 800;
  color: #af4173;
  text-decoration: none;
  mix-blend-mode: multiply;
}

/* ---------- Subtitle ---------- */

.header-sub {
  font-size: 16px;
  line-height: 26px;
  margin-top: 0px;
  margin-bottom: 24px;
  opacity: 0.85;
}

/* ---------- Main Heading ---------- */

.heading-jumbo {
  margin: 10px 0;
  font-size: 64px;
  line-height: 80px;
  font-weight: 400 !important;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .heading-jumbo {
    font-size: 42px;
    line-height: 52px;
  }
}

/* ---------- About Grid ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-column h2 {
  margin-bottom: 24px;
}

/* ---------- Paragraph ---------- */

.paragraph-light {
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
