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

body {
  background: #f4f1ea;
  color: #101820;
  font-family: -apple-system,
               BlinkMacSystemFont,
               "Segoe UI",
               Helvetica,
               Arial,
               sans-serif;
}

.landing-page {
  min-height: 100vh;
}

.executive-profile {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.profile-content {
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a6a55;
  margin-bottom: 42px;
}

h1 {
  max-width: 900px;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 34px;
}

h2 {
  max-width: 760px;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #1b2733;
}

.divider {
  width: 86px;
  height: 1px;
  background: #101820;
  margin: 52px 0 36px;
}

.intro {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.55;
  color: #24313d;
  margin-bottom: 30px;
}

.text {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.8;
  color: #59636e;
  margin-bottom: 52px;
}

.linkedin-button {
  width: fit-content;
  display: inline-block;
  border: 1px solid #101820;
  padding: 15px 25px;
  text-decoration: none;
  color: #101820;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.linkedin-button:hover {
  background: #101820;
  color: #ffffff;
}

.profile-visual {
  background: #101820;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px;
}

.portrait {
    width: 100%;
    max-width: 340px;

    border-radius: 2px;

    filter: grayscale(100%);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);
}

/* Keeps your hidden video pages working */
.container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.video-container {
  margin-top: 40px;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .executive-profile {
    grid-template-columns: 1fr;
  }

  .profile-content {
    padding: 56px 30px;
  }

  .profile-visual {
    min-height: 260px;
    padding: 80px;
  }

  .portrait-placeholder {
    height: 220px;
  }

  .portrait-placeholder span {
    font-size: 52px;
  }

  .intro {
    font-size: 20px;
  }

  .text {
    font-size: 17px;
  }
}