:root{
  --bg: #FFFEFB;
  --text: #454545;
  --muted: rgba(69,69,69,0.65);
  --border: rgba(69,69,69,0.12);
  --quote-line: #b7d6e6;
}

html, body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.about-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 40px;
}

/* ===== HERO (2/3 text, 1/3 image) ===== */
.about-hero{
  display: grid;
  grid-template-columns: 2fr 1fr; /* <- text ~2/3, image ~1/3 */
  gap: 56px;
  align-items: start;
}

.eyebrow{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.about-title{
  font-family: "Instrument Serif", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.05;
  margin: 0 0 14px;
}

/* Quote inline under title */
.quote-inline{
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
}

.quote-line{
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: var(--quote-line);
}

.quote-text{
  font-family: "Instrument Serif", serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 8px;
color: var(--muted);

}

.quote-author{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
}

/* Intro paragraph (body text 16px) */
.about-intro{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 70ch;
}

/* Links */
.about-links{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.text-link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(69,69,69,0.25);
  padding-bottom: 2px;
}
.text-link:hover{
  border-bottom-color: rgba(69,69,69,0.6);
}

.dot{
  color: rgba(69,69,69,0.35);
}

/* Smaller image */
.hero-photo{
  width: 100%;
  max-width: 320px;       /* <- keeps it from feeling huge */
  margin-left: auto;      /* right align */
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* ===== EXPERIENCE + LEADERSHIP two columns ===== */
.two-col{
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.section-heading{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 18px;
  margin: 0 0 14px;
}

/* List rows */
.exp-list{
  display: flex;
  flex-direction: column;
}

.exp-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(69,69,69,0.10);
}

.exp-row:last-child{
  border-bottom: none;
}

.exp-left{
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.exp-company{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}

.exp-slash{
  color: rgba(69,69,69,0.35);
}

.exp-role{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exp-year{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(69,69,69,0.45);
  white-space: nowrap;
}

/* ===== GALLERY ===== */
.gallery{
  margin-top: 62px;
}

.section-title{
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 14px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .about-page{
    padding: 110px 20px 40px;
  }

  .about-hero{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-title{
    font-size: 44px;
  }

  .hero-photo{
    max-width: 360px;
    margin-left: 0;
  }

  .two-col{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-img{
    height: 240px;
  }
}
