/* ── About page ── */

/* ── WHITE HEADER (inner pages — before scroll) ── */
.inner-page .site-header:not(.is-scrolled) {
  color: #f5f2ed;
}

.inner-page .site-header:not(.is-scrolled) .brand-mark img {
  filter: brightness(0) invert(1);
}

.inner-page .site-header:not(.is-scrolled) .menu-toggle span {
  background: #f5f2ed;
}

.inner-page .site-header:not(.is-scrolled) .nav-dropdown__menu {
  color: var(--text-color);
}

/* ── HERO ── */
.ab-hero {
  position: relative;
  min-height: 100svh;
  background: #1a1410;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ab-hero__media {
  position: absolute;
  inset: 0;
}

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

.ab-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(20, 14, 8, 0.82) 0%,
    rgba(20, 14, 8, 0.28) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.ab-hero__caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--side-padding) clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  color: #f5f2ed;
}

.ab-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.62;
}

.ab-eyebrow--dark {
  color: var(--text-color);
  opacity: 0.5;
}

.ab-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.08;
}

/* ── PROFILE SECTION ── */
.ab-profile {
  background: var(--page-bg);
}

.ab-profile__inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 7rem 0 7rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3.5rem, 6vw, 6rem);
  align-items: start;
}

/* Image column — single working shot */
.ab-profile__image-col {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.ab-profile__working {
  margin: 0;
  overflow: hidden;
  background: #e8e3db;
}

.ab-profile__working img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 0.82;
  object-position: center center;
}

/* Copy column */
.ab-profile__copy {
  padding-top: 0.5rem;
}

.ab-tagline {
  margin: 0 0 0.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--text-color);
  font-style: italic;
}

.ab-role {
  margin: 0 0 2.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* Thin rule between role and bio */
.ab-profile__copy .ab-role::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--text-color);
  margin-top: 2rem;
  opacity: 0.2;
}

.ab-profile__copy p {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.82;
  letter-spacing: 0.02em;
  color: var(--text-color);
  opacity: 0.78;
  max-width: 36rem;
}

.ab-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.55;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.18rem;
  transition: opacity var(--transition);
}

.ab-instagram:hover {
  opacity: 1;
}

/* ── CONTACT SECTION ── */
.ab-contact {
  background: #ffffff;
  border-top: 1px solid var(--surface-border);
}

.ab-contact__top {
  padding: 6.5rem 0 6rem;
}

.ab-contact__inner {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.ab-contact__heading {
  margin: 0.5rem 0 1.2rem;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--text-color);
}

.ab-contact__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--text-color);
  opacity: 0.6;
  max-width: 28rem;
}

.ab-contact__details {
  display: grid;
  gap: 2rem;
  padding-top: 0.25rem;
}

.ab-contact__item {
  display: grid;
  gap: 0.35rem;
}

.ab-contact__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
}

.ab-contact__value {
  font-size: 0.88rem;
  line-height: 1.72;
  letter-spacing: 0.02em;
  color: var(--text-color);
}

.ab-contact__link {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.82;
}

.ab-contact__link:hover {
  opacity: 1;
  border-color: var(--text-color);
}

/* Full-width map */
.ab-contact__map {
  width: 100%;
  height: 480px;
  background: #e4ddd4;
}

.ab-contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(18%) contrast(0.95);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .ab-profile__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 5rem 0;
  }

  .ab-profile__image-col {
    position: static;
  }

  .ab-contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ab-contact__top {
    padding: 5rem 0 4.5rem;
  }
}

@media (max-width: 540px) {
  .ab-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .ab-contact__map {
    height: 360px;
  }
}
