*,
*::after,
*::before {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  width: 100%;
  max-width: 100%;
  padding: 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-photo-col {
  display: flex;
  justify-content: center;
}

.photo-wrapper {
  position: relative;
  width: 400px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  display: block;
}

.photo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
  max-width: 60%;
  object-fit: contain;
  pointer-events: none;
}

.about-text-col {
  max-width: 700px;
}

.section-num {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px 0;
}

.about-title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  margin: 0 0 40px 0;
  line-height: 0.95;
}

.about-intro {
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.about-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #ccc;
  margin: 0 0 16px 0;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body em {
  font-style: italic;
}

@media (max-width: 1024px) {
  .about-container {
    padding: 0 40px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-title {
    font-size: 44px;
  }

  .about-intro {
    font-size: 16px;
  }

  .about-body p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-col {
    order: -1;
  }

  .photo-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-intro {
    font-size: 15px;
  }

  .about-body p {
    font-size: 12px;
  }
}
