/* ======================== FOUNDER PAGE ======================== */

body {
  background-color: #ffffff;
}

/* ======================== NAV BAR ======================== */
.cs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.cs-nav__logo {
  display: block;
  width: 58px;
  flex-shrink: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cs-nav__logo:hover {
  opacity: 0.7;
}

.cs-nav__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-nav .hero__menu-btn {
  color: #162333;
}

/* ======================== PAGE LAYOUT ======================== */
.founder-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
}

.founder-page__content {
  display: flex;
  flex-direction: column;
  padding: 100px 20px 40px;
}

.founder-page__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 20px;
}

.founder-page__text {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.founder-page__label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #162333;
}

/* Two-column layout: text left, photo right */
.founder-page__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.founder-page__photo {
  width: 100%;
  overflow: hidden;
  order: -1;
}

.founder-page__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.founder-page__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.founder-page__name-block {
  display: flex;
  flex-direction: column;
}

.founder-page__name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  color: #000000;
}

.founder-page__title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  color: #000000;
}

.founder-page__bio {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  white-space: pre-line;
}

.founder-page__action {
  width: 100%;
}

.founder-page__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  background-color: #162333;
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -1px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 100%;
  text-align: center;
}

.founder-page__btn:hover {
  opacity: 0.85;
}

/* ======================== RESPONSIVE — TABLET 768px+ ======================== */
@media (min-width: 768px) {
  .cs-nav {
    padding: 40px;
  }

  .cs-nav__logo {
    width: 74px;
  }

  .cs-nav .hero__menu-btn svg {
    width: 36px;
    height: 36px;
  }

  .founder-page__content {
    padding: 150px 40px 40px;
  }

  .founder-page__label {
    font-size: 16px;
  }

  .founder-page__main {
    flex-direction: row;
    gap: 40px;
  }

  .founder-page__details {
    flex: 1;
    min-width: 0;
    padding-top: 0;
  }

  .founder-page__photo {
    width: 618px;
    max-width: 45%;
    flex-shrink: 0;
    height: auto;
    order: 0;
  }

  .founder-page__name {
    font-size: 28px;
  }

  .founder-page__title {
    font-size: 28px;
  }

  .founder-page__action {
    width: auto;
  }

  .founder-page__btn {
    width: auto;
    font-size: 24px;
  }
}

/* ======================== RESPONSIVE — SMALL DESKTOP 1024px+ ======================== */
@media (min-width: 1024px) {
  .cs-nav {
    padding: 50px 60px;
  }

  .cs-nav__logo {
    width: 85px;
  }

  .cs-nav .hero__menu-btn svg {
    width: 40px;
    height: 40px;
  }

  .founder-page__content {
    padding: 150px 60px 60px;
  }

  .founder-page__label {
    font-size: 17px;
  }

  .founder-page__name {
    font-size: 30px;
  }

  .founder-page__title {
    font-size: 30px;
  }

  .founder-page__bio {
    font-size: 16px;
  }

  .founder-page__details {
    padding-top: 140px;
  }
}

/* ======================== RESPONSIVE — DESKTOP 1440px+ ======================== */
@media (min-width: 1440px) {
  .cs-nav {
    padding: 60px 72px;
  }

  .cs-nav__logo {
    width: 85px;
  }

  .cs-nav .hero__menu-btn svg {
    width: 45px;
    height: 45px;
  }

  .founder-page__content {
    padding: 180px 72px 60px;
  }

  .founder-page__label {
    font-size: 18px;
  }

  .founder-page__name {
    font-size: 32px;
  }

  .founder-page__title {
    font-size: 32px;
  }

  .founder-page__bio {
    font-size: 16px;
  }

  .founder-page__details {
    padding-top: 200px;
    gap: 40px;
  }

  .founder-page__photo {
    width: 618px;
    max-width: 45%;
  }

  .founder-page__btn {
    font-size: 26px;
  }
}
