/* About Page Styles */
.about-page {
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
}

/* Hero Section */
.about-hero {
  padding: 120px 24px 32px;
  text-align: center;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 440;
  line-height: 1.083;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mb);
}

.about-tagline {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 540;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mb);
  margin: 0;
  text-align: center;
}

.about-tagline-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

/* Main Content Wrapper */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: 782px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Image Container */
.about-image-container {
  width: 100%;
  height: 585px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

/* Text Container */
.about-text-container {
  width: 100%;
}

.about-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--mb);
  display: flex;
  flex-direction: column;
  gap: 24px !important;
}

.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


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

/* Logo */
.about-logo {
  display: flex;
  justify-content: center;
  padding: 80px 0 40px;
}

.about-logo img {
  width: 36px;
  height: 43px;
}

/* Back to Home Link */
.about-back-link {
  display: flex;
  justify-content: center;
  padding: 0 0 200px;
}

.about-back {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 540;
  line-height: 1.429;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mb-70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-back:hover {
  color: var(--mb);
}

/* Divider Line */
.about-page::after {
  content: "";
  display: block;
  width: calc(100% - 32px);
  max-width: 1920px;
  height: 1px;
  background-color: var(--mb-70);
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 16px 40px;
  }

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

  .about-tagline {
    font-size: 18px;
    line-height: 1.3;
  }

  .about-content-wrapper {
    gap: 40px;
    padding: 0 16px;
  }

  .about-image-container {
    height: 400px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-logo {
    padding: 60px 0 30px;
  }

  .about-back-link {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

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

  .about-image-container {
    height: 300px;
  }

  .about-text p {
    margin-bottom: 20px;
  }
}