.about-page {
  padding-top: 80px;
  background-color: #ffffff;
  font-family: 'Manrope', sans-serif;
  color: #111111;
  overflow-x: hidden;
}


.about-hero {
  padding: 110px 24px 100px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__brand {
  font-size: clamp(48px, 9vw, 92px);
  font-weight: 800;
  letter-spacing: clamp(6px, 1.8vw, 16px);
  text-transform: uppercase;
  color: #111111;
  line-height: 1;
  margin: 0 0 16px 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero__tagline {
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 700;
  letter-spacing: clamp(3px, 0.8vw, 6px);
  text-transform: uppercase;
  color: #777777;
  margin: 0 0 32px 0;
}

.about-hero__desc {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #444444;
  max-width: 720px;
  margin: 0 auto;
}

.about-hero__divider {
  width: 60px;
  height: 1px;
  background-color: #111111;
  margin: 48px auto 0;
}


.about-section {
  padding: 90px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-grid--reversed .about-grid__image-col {
  order: 2;
}

.about-grid--reversed .about-grid__text-col {
  order: 1;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f7f6f3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.about-image {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.about-grid--reversed .about-text-content {
  margin-left: auto;
}

.about-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888888;
  display: inline-block;
}

.about-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #111111;
  margin: 0;
}

.about-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

.about-highlight {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: #222222;
  border-left: 2px solid #111111;
  padding-left: 16px;
  margin: 8px 0;
}

.about-today {
  padding: 100px 24px;
  background-color: #faf9f6;
  border-top: 1px solid #f0ede6;
  border-bottom: 1px solid #f0ede6;
}

.about-today__container {
  max-width: 1240px;
  margin: 0 auto;
}

.about-today__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.about-today__image-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.about-today__img {
  width: 100%;
  height: clamp(340px, 50vw, 620px);
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-today__image-card:hover .about-today__img {
  transform: scale(1.02);
}

.about-today__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.6);
}


.about-statement {
  padding: 130px 24px 140px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-statement__title {
  font-size: clamp(38px, 7.5vw, 84px);
  font-weight: 900;
  letter-spacing: clamp(4px, 1.2vw, 12px);
  text-transform: uppercase;
  line-height: 1.1;
  color: #111111;
  margin: 0 0 20px 0;
}

.about-statement__subtitle {
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888888;
  margin: 0;
}


.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
