/* ==========================================================================
   Kobina Ennu Van-Ess — static rebuild (from Framer source)
   ========================================================================== */

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.section-title {
  font-family: 'Karantina', sans-serif;
  font-weight: 400;
  font-size: 104px;
  line-height: 1.1em;
  color: #560000;
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  width: 100%;
  height: 86px;
  background-color: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  width: 100%;
  min-height: 100vh;
  background-color: #120606;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 1316px;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 0 40px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 auto;
  max-width: 534px;
}

.hero-firstname,
.hero-nickname {
  font-family: 'Karantina', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #fff;
  line-height: 1.1em;
}

.hero-lastname {
  font-family: 'Karantina', sans-serif;
  font-weight: 400;
  font-size: 140px;
  line-height: 1em;
  color: #fff;
}

.hero-title {
  font-family: 'Inika', serif;
  font-weight: 400;
  font-size: 31px;
  color: #B89414;
  margin-top: 12px;
}

.hero-image {
  flex: none;
  width: 44%;
  max-width: 560px;
  aspect-ratio: 853 / 1280;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43.6% 33.6%;
}

/* ==========================================================================
   SECTION TITLE BARS
   ========================================================================== */

.section-title-bar {
  width: 100%;
  height: 166px;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.about-title-bar {
  background-color: #000;
}

.contact-title-bar {
  background-color: #050505;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-content {
  width: 100%;
  min-height: 483px;
  background-color: #090909;
  display: flex;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 50%;
  min-width: 320px;
  max-height: 602px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 32.8%;
}

.about-text {
  flex: 1 1 50%;
  min-width: 320px;
  background-color: #560000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 50px 40px;
}

.about-text p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4em;
  color: #B89414;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-content {
  width: 100%;
  background-color: #560000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
  padding: 50px 0 60px;
}

.contact-row {
  width: 93%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.contact-photo {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-caption {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #B89414;
  max-width: 520px;
}

.socials {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  padding: 0 20px;
}

.social-icon {
  flex: none;
  display: block;
  text-decoration: none;
  line-height: 0;
}

.social-icon img {
  height: 44px;
  width: auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1199.98px) {
  .nav {
    height: 56px;
  }
  .nav-logo {
    width: 46px;
    height: 46px;
  }
  .hero {
    min-height: 60vh;
  }
  .hero-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    gap: 12px;
    min-height: 60vh;
  }
  .hero-text {
    max-width: 55%;
    align-items: flex-start;
    text-align: left;
  }
  .hero-firstname,
  .hero-nickname {
    font-size: 20px;
  }
  .hero-lastname {
    font-size: 40px;
    line-height: 0.95em;
  }
  .hero-title {
    font-size: 14px;
    margin-top: 8px;
  }
  .hero-image {
    width: 40%;
    max-width: 180px;
  }
  .section-title-bar {
    height: 100px;
    padding-left: 30px;
  }
  .section-title {
    font-size: 56px;
  }
  .about-content {
    flex-direction: column;
  }
  .about-image {
    max-height: 420px;
  }
  .about-text {
    padding: 40px 24px;
  }
  .contact-content {
    padding: 40px 0 40px;
  }
  .social-icon img {
    height: 32px;
  }
  .socials {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    gap: 8px;
    padding: 20px 12px;
  }
  .hero-lastname {
    font-size: 28px;
  }
  .hero-firstname,
  .hero-nickname {
    font-size: 15px;
  }
  .hero-title {
    font-size: 11px;
  }
  .hero-image {
    width: 38%;
    max-width: 130px;
  }
  .section-title {
    font-size: 40px;
  }
  .about-text p {
    font-size: 16px;
  }
  .contact-caption {
    font-size: 17px;
  }
}