:root{
--colorPink: #ce64b7;
--colorLightPink: #E6A0A0;
--colorPurple: #8a6dbf;
}



.headline1{
    font-weight: 900;
}

.colorLightPink {
    color: var(--colorLightPink);
}

.lightPurple {
    color: var(--colorPurple);
}


/* Compact homepage systems overview. */
.systems-summary .end {
  padding-top: 40px;
  padding-bottom: 30px;
}
.systems-artwork {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 80px;
}

.small{
    font-size: 0.5em;
    line-height: 1.2em;
    letter-spacing: .1em;
    color: #AAAAAA;
}
h1 em {
    font-style: italic;
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
}


.pink {
    color: var(--colorPink);
    font-size: 1.2em;
}


/* Leadership story with a square behind-the-scenes photo. */
.leadership-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 5%;
  align-items: center;
}
.leadership-copy .eyebrow { margin-bottom: 8px; }
.leadership-split h2 { font-size: clamp(30px, 3.1vw, 44px); }
.leadership-photo-placeholder {
  aspect-ratio: 1;
  width: 100%;
  border: 1px solid #655a72;
  border-radius: 12px;
  background: linear-gradient(145deg, #27232e, #19191d);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  color: #c5b9d3;
  gap: 12px;
}
.leadership-photo-placeholder small { color: #aaa3b2; line-height: 1.6; }
@media (max-width: 800px) {
  .leadership-split { grid-template-columns: 1fr; gap: 30px; }
}

.leadership-copy { text-align: left; }

/* One page frame for the homepage, including the embedded galleries. */
:root {
  --homepage-max-width: 1440px;
  --homepage-gutter: clamp(24px, 5vw, 72px);
}
body > header,
body > .intro,
body > .portfolio-story,
body > .leadership,
.systems-summary > .end,
.systems-summary > .systems-artwork,
body > .technology,
body > .contact {
  width: 100%;
  max-width: var(--homepage-max-width);
  margin-inline: auto;
  padding-inline: var(--homepage-gutter);
}
body > .gallery-interlude {
  width: 100%;
  margin-inline: 0;
}
