/* =========================================
   ABOUT PAGE — Matches PDF exactly
   No nav. Dot=home. Hero + values only.
   ========================================= */

.about-page {
  font-family: 'Neue Montreal', 'Helvetica Neue', -apple-system, sans-serif;
  color: #2B2B2B;
  background: #F5F0EB;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Reveal ── */
.ab-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Top Bar ── */
.ab-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.9vw 10vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ab-topbar__dot {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ab-topbar__dot-img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
  animation: dot-pulse 3s ease-in-out infinite;
}

.ab-topbar__dot-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  color: #fff;
  opacity: 0;
  animation: arrow-fade 3s ease-in-out infinite;
}

.ab-topbar__dot:hover .ab-topbar__dot-img {
  transform: scale(1.15);
}
.ab-topbar__dot:hover .ab-topbar__dot-arrow {
  opacity: 1;
  animation: none;
}

@keyframes dot-pulse {
  0%, 60%, 100% { transform: scale(1); }
  30% { transform: scale(1.25); }
}

@keyframes arrow-fade {
  0%, 20%, 80%, 100% { opacity: 0; }
  35%, 65% { opacity: 1; }
}

.ab-topbar__logo img {
  height: 2.75vw;
}

/* ── Hero ── */
.ab-hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 80px 10vw 50px;
  min-height: auto;
}

.ab-hero__illustration {
  width: 90%;
}

.ab-hero__illustration img {
  width: 100%;
  height: auto;
}

/* ── Values ── */
.ab-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 10vw 80px;
  border-top: none;
}

.ab-values__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ab-values__arrow {
  font-size: 3vw;
  color: #2B2B2B;
}

.ab-values__title {
  font-family: 'PP Editorial New', Georgia, serif;
  font-weight: 200;
  font-size: 3vw;
  margin: 0;
}

.ab-values__bold {
  font-size: 2vw;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 14px;
}

.ab-values__body {
  font-size: 1.5vw;
  line-height: 1.7;
  color: #666;
  margin: 0 0 14px;
}

.ab-values__accent {
  font-family: 'PP Editorial New', Georgia, serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-style: italic;
  color: #d53639;
  margin: 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .ab-topbar {
    padding: 16px 20px;
  }

  .ab-topbar__logo img {
    height: 28px;
  }

  .ab-topbar__dot,
  .ab-topbar__dot-img {
    width: 18px;
    height: 18px;
  }

  .ab-topbar__dot-arrow {
    width: 12px;
    height: 12px;
  }

  .ab-hero {
    padding: 60px 20px 20px;
    min-height: auto;
    justify-content: center;
  }

  .ab-hero__illustration {
    width: 100%;
  }

  .ab-values {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 28px 60px;
    text-align: center;
  }

  .ab-values__header {
    justify-content: center;
  }

  .ab-values__arrow {
    font-size: 18px;
  }

  .ab-values__title {
    font-size: 22px;
  }

  .ab-values__bold {
    font-size: 14px;
  }

  .ab-values__body {
    font-size: 13px;
  }
}