/* ===== Hero Grid ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: max(400px, 70vh);
  border-bottom: 3px solid var(--black);
}

.hero-text {
  padding: 3.5rem 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.583rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: var(--size-md);
  color: var(--text2);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-bio {
  max-width: 480px;
  line-height: 1.7;
  font-size: var(--body-size);
  margin-bottom: 1.5rem;
}

/* Mondrian composition — CSS Grid, clickable color blocks */
.mondrian {
  display: grid;
  grid-template-columns: 40% 5% 20% 35%;
  grid-template-rows: 55% 45%;
  border-left: 3px solid var(--black);
  position: relative;
}

.m-white {
  background: var(--surface);
  grid-column: 1;
  grid-row: 1;
  border-bottom: 3px solid var(--black);
  border-right: 3px solid var(--black);
}

.m-blue {
  background: var(--blue);
  grid-column: 2 / 5;
  grid-row: 1;
  border-bottom: 3px solid var(--black);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-yellow {
  background: var(--yellow);
  grid-column: 1 / 3;
  grid-row: 2;
  border-right: 3px solid var(--black);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-cream {
  background: var(--bg);
  grid-column: 3;
  grid-row: 2;
  border-right: 3px solid var(--black);
}

.m-red {
  background: var(--red);
  grid-column: 4;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text on blocks */
.m-blue .text-wrap,
.m-yellow .text-wrap,
.m-red .text-wrap {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-blue:hover .text-wrap,
.m-yellow:hover .text-wrap,
.m-red:hover .text-wrap {
  transform: translateX(4px);
}

.m-blue:hover,
.m-yellow:hover,
.m-red:hover {
  filter: brightness(1.08);
}

.m-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
}

.m-sublabel {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.m-blue .m-sublabel { color: rgba(255,255,255,0.7); }
.m-yellow .m-sublabel { color: rgba(0,0,0,0.5); }
.m-red .m-sublabel { color: rgba(255,255,255,0.7); }

/* Circle overlay */
.mondrian .circle-overlay {
  position: absolute;
  width: clamp(100px, 12vw, 160px);
  height: clamp(100px, 12vw, 160px);
  border-radius: 50%;
  border: 3px solid var(--black);
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}
