/* ============================================================
   about.css — styles specific to the About page
   style.css handles nav, footer, base — don't repeat those here
   ============================================================ */


/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav__link--active {
  opacity: 1 !important;
}

.nav__link--active::after {
  width: 100% !important;
}


/* ============================================================
   INTRO — PHOTO + IDENTITY
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: calc(100vh - var(--nav-height));
  margin-top: calc(var(--nav-height) + 32px);
  position: relative;
}


/* Photo — flush left, no padding */
.about-intro__photo {
   position: relative;
  overflow: hidden;
  
}

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

.about-intro__photo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--color-bg));
  z-index: 1;
}

@media (max-width: 900px) {
  .about-intro__photo::after {
    display: none;
  }
}

/* Details — right column, vertically anchored to bottom */
.about-intro__details {
 display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 64px);
}

.about-intro__name {
  font-size: clamp(15px, 1.2vw, 18px);
   font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
}

/* Fact list with left blue border — matching Wix style */
.about-intro__facts {
  list-style: none;
  border-left: 2px solid #2d5be3;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
}

.about-intro__facts li {
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.about-intro__opener {
  font-size: clamp(14px, 1.3vw, 17px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.6;
  letter-spacing: 0.01em;
}


/* ============================================================
   BODY TEXT
   ============================================================ */
.about-body {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--color-divider);
}

.about-body__inner {
  width: 55%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-body__inner p {
  font-size: clamp(16px, 1.5vw, 19px);
   font-family: var(--font-body);
  line-height: 1.75;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

.about-body__inner p:nth-child(3),
.about-body__inner p:nth-child(4) {
  color: var(--color-text);
}

.about-body__inner p strong {
  font-family: var(--font-display);
  color: var(--color-text);
}


/* ============================================================
   PULL QUOTE
   ============================================================ */
.about-quote {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
  text-align: center;
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-quote__text {
  font-size: clamp(20px, 2.8vw, 36px);
  font-family: var(--font-body);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  max-width: 780px;
  letter-spacing: 0.01em;
}

.about-quote__attribution {
  font-size: clamp(11px, 1vw, 13px);
   font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.about-quote__closing {
  font-size: clamp(15px, 1.4vw, 18px);
   font-family: var(--font-body);
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

/* ============================================================
   CLOSING STATEMENT
   ============================================================ */
.about-closing {
  border-top: 1px solid var(--color-divider);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-closing__statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.about-closing__cta {
  font-family: var(--font-ui);
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.about-closing__cta:hover {
  opacity: 0.6;
}
/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 900px) {

  /* Stack photo above details */
  .about-intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-intro__photo {
    height: 70vw;
    min-height: 320px;
  }

  .about-intro__details {
    justify-content: flex-start;
    padding: 32px 24px 48px;
  }

  /* Body text full width on mobile */
  .about-body__inner {
    width: 100%;
    margin: 0 auto;
  }

  .about-quote__text {
    font-size: clamp(18px, 5vw, 26px);
  }
}
.about-body__img {
   width: 50%;
  max-width: 380px;
  margin: 8px auto
}

.about-body__img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 680px) {
  .about-body__img {
    width: 100%;
  }
}