/* =========================================================
   ABOUT — editorial split-screen, bone gallery + ink + oxblood.
   Keeps existing IDs (#aboutTitle, #aboutBio, #aboutFeatures,
   #aboutImage, statShoots/Years/Clients/Photos, aboutBadgeNum).
   ========================================================= */

.about-section {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--ds-bone-warm, #fafaf6);
  position: relative;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(26,22,20,0.10);
}

.about-section .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start; /* must be start — not center — so sticky has vertical room */
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Portrait column — sticky so the face stays visible while bio is read */
.about-section .about-photo-wrap {
  position: sticky;
  top: clamp(80px, 12vh, 120px);
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ds-ink, #1a1614);
}
.about-section .about-photo-frame {
  display: none;
}
.about-section .about-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(141,47,42,0.18), transparent 60%),
    linear-gradient(180deg, #2c2620 0%, #1a1614 100%);
  overflow: hidden;
}
.about-section .about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  filter: contrast(1.05);
}
.about-section .about-image-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  background: var(--ds-oxblood, #8d2f2a);
  color: var(--ds-bone, #f4f0e8);
  padding: 16px 22px;
  text-align: left;
  border-radius: 0;
}
.about-section .about-image-badge .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ds-bone, #f4f0e8);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}
.about-section .about-image-badge .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.78);
  margin-top: 4px;
}

/* Copy column */
.about-section .about-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-section .about-text .section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ds-oxblood, #8d2f2a);
  font-weight: 500;
  margin: 0;
}
.about-section .about-text h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  color: var(--ds-ink, #1a1614);
  letter-spacing: -0.012em;
}
.about-section .about-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ds-ink, #1a1614);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}

/* Drop-cap on first paragraph of bio */
.about-section .about-bio p {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--ds-ink-muted, #4a4641);
}
.about-section .about-bio p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.12em 0 0;
  color: var(--ds-oxblood, #8d2f2a);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}

/* Features list with oxblood checkmarks */
.about-section .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin-top: 6px;
}
.about-section .about-feature {
  position: relative;
  padding-left: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ds-ink-muted, #4a4641);
}
.about-section .about-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 18px;
  height: 11px;
  background-color: var(--ds-oxblood, #8d2f2a);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 11'><path d='M1 5l5 5L17 1' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 11'><path d='M1 5l5 5L17 1' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* Stats */
.about-section .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(26,22,20,0.18);
}
.about-section .about-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ds-ink, #1a1614);
}
.about-section .about-stat-num .counter {
  color: var(--ds-oxblood, #8d2f2a);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
}
.about-section .about-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ds-ink-muted, #4a4641);
  margin-top: 6px;
}

/* Mobile */
@media (max-width: 900px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-section .about-photo-wrap {
    position: static; /* sticky makes no sense in single-column stacked layout */
    max-width: 480px;
    margin: 0 auto;
  }
  .about-section .about-features { grid-template-columns: 1fr; }
  .about-section .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .about-section .about-image img { animation: none; }
}
