@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400;500;700&display=swap');

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

html, body {
  height: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #fff;
  color: #000;
}

/* ─── PAGE WRAPPER ─────────────────────────────────── */
.page {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 13px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── HEADER ────────────────────────────────────────── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 18px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.site-header a {
  color: #000;
  text-decoration: none;
}

.site-header a:hover {
  opacity: 0.5;
}


/* ─── IMAGE ROW ─────────────────────────────────────── */
.images-row {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: flex-start;
}

.img-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.img-wrap img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  display: block;
}

.img-caption {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.4;
  padding-top: 6px;
  color: #000;
}

/* ─── PROJECT PAGE ──────────────────────────────────── */
.project-main {
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.project-content {
  display: grid;
  grid-template-columns: 16.4% 32.7% 32.7% 1fr;
  gap: 0;
}

.meta-col {
  padding-right: 20px;
}

.meta-col p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 14px;
}

.text-col-1,
.text-col-2 {
  padding-right: 30px;
}

.text-col-1 p,
.text-col-2 p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 14px;
}

.text-col-1.fs16 p,
.text-col-2.fs16 p {
  font-size: 16px;
}

/* ─── NAVIGATION ────────────────────────────────────── */
.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 10px;
  flex-shrink: 0;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.nav-btn:hover {
  opacity: 0.4;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── HOME PAGE ─────────────────────────────────────── */
.home-main {
  flex: 1;
  display: grid;
  grid-template-columns: 16.4% 32.7% 1fr;
  grid-template-rows: 1fr auto;
  min-height: 500px;
}

.home-photo {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 20px;
}

.home-photo img {
  width: 100%;
  max-width: 660px;
  height: auto;
  display: block;
}

.home-info {
  grid-column: 1;
  grid-row: 2;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 20px;
}

.home-info h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 26px;
}

.home-info p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}

.home-bio {
  grid-column: 2;
  grid-row: 2;
  padding-right: 30px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-bio p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.home-projects-link {
  display: block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  align-self: flex-start;
}

.home-projects-link:hover {
  opacity: 0.5;
}
