/* ============================================
   MARIE HARTIG STUDIO — Meet Marie Page
   Split layout: photo left, text right
   ============================================ */

.meet-marie-page {
  background: #ffffff;
}

/* ---- Main split layout ---- */
.about-wrap {
  display: flex;
  gap: 2vw;
  min-height: calc(100vh - 64px - 4vw);
  margin: 64px 2vw 2vw;
}

/* ---- LEFT — Photo panel (pure white bg) ---- */
.about-photo {
  flex: 0 0 42%;
  background: #ffffff;
  display: flex;
  align-items: stretch;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---- RIGHT — Text panel (warm off-white) ---- */
.about-text {
  flex: 1;
  background: #dedad3;
  display: flex;
  align-items: center;
  padding: 6vw 7vw;
}

.about-text-inner {
  max-width: 560px;
}

/* Thin horizontal rule above heading — exactly like Nate Berkus */
.about-rule {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.18);
  margin-bottom: 2.4rem;
}

.about-heading {
  font-family: 'Velour', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.about-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: #333;
  margin-bottom: 1.4rem;
}

.about-body:last-child {
  margin-bottom: 0;
}

/* ---- FOOTER ---- */
.about-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4vw;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #888;
}

.about-footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-footer a:hover {
  color: #333;
}

/* Active nav link */
.nav-links a.active {
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
    gap: 0;
    min-height: auto;
    margin: 56px 0 0;
  }

  .about-photo {
    flex: none;
    height: 85vw;
    min-height: 320px;
    max-height: 480px;
  }

  .about-text {
    align-items: flex-start;
    padding: 12vw 8vw 14vw;
  }

  .about-text-inner {
    max-width: 100%;
  }

  .about-rule {
    margin-bottom: 2rem;
  }

  .about-heading {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 1.6rem;
  }

  .about-body {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .about-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
