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

body {
  background: #0F1013;
  color: white;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav-bg {
  position: absolute;
  inset: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(5, 7, 13, 0.95), rgba(5, 7, 13, 0));
}

.nav-links {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 32px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}


/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0F1013 0%, rgba(5, 7, 13, 0.55) 60%, #0F1013 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 0 120px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 750px;
}

.hero__left h1 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero__left p {
  font-size: 15px;
  line-height: 1.75;
  color: #EDF4FA;
}

.hero__photo {
  width: 350px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: end;
  margin-bottom: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── SHARED SECTION STYLES ── */
.section-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

/* ── WHAT I EXPECT ── */
.expect {
  padding: 100px 120px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* first item spans full row on its own naturally,
   but per the design: 2 columns top row, 1 bottom left */
.expect__grid .expect__item:nth-child(1) { grid-column: 1; }
.expect__grid .expect__item:nth-child(2) { grid-column: 2; }
.expect__grid .expect__item:nth-child(3) { grid-column: 1; }

.expect__item h3 {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: white;
}

.expect__item p {
  font-size: 15px;
  line-height: 1.75;
  color: #EDF4FA;
  width: 500px;
}

/* ── PERSONAL LIFE ── */
.personal {
  padding: 100px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.personal-card {
  background: #1F2228;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.personal-card:hover {
  transform: translateY(-4px);
}

.personal-card__img {
  height: 240px;
  overflow: hidden;
}

.personal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.personal-card:hover .personal-card__img img {
  transform: scale(1.05);
}

.personal-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.personal-card__body h3 {
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.personal-card__body p {
  font-size: 14px;
  line-height: 1.65;
  color: #B8B8B8;
}

/* ── FOOTER ── */
.footer {
  position: relative;
  background: #0F1013;
  margin: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #0F1013 0%, rgba(5, 7, 13, 0.55) 60%, #0F1013 100%);
}

.footer-inner {
  display: flex;
  gap: 120px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-item .label {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: #8A8F98;
}

.footer-item .value {
  font-size: 16px;
  color: white;
  text-decoration: none;
}

.footer-item .link:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner,
  .expect,
  .personal {
    padding-left: 48px;
    padding-right: 48px;
  }

  .expect__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expect__grid .expect__item:nth-child(3) {
    grid-column: 1;
  }

  .personal__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personal__grid .personal-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
    gap: 40px;
  }

  .hero__photo {
    width: 100%;
  }

  .hero__photo img {
    height: 280px;
  }

  .expect,
  .personal {
    padding: 60px 24px;
  }

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

  .expect__grid .expect__item {
    grid-column: 1 !important;
  }

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

  .personal__grid .personal-card:last-child {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .nav-links {
    gap: 20px;
  }
}
