/* Author profile — editorial, photo-led (fonts loaded from blade) */
:root {
  --ap-ink: #07111f;
  --ap-navy: #092d5b;
  --ap-amber: #e8940a;
  --ap-amber-hot: #ff6a00;
  --ap-mist: #eef3f8;
  --ap-paper: #f6f8fb;
  --ap-muted: rgba(7, 17, 31, 0.62);
  --ap-line: rgba(7, 17, 31, 0.1);
  --ap-display: "Fraunces", "Montserrat Alternates", Georgia, serif;
  --ap-body: Mulish, "Segoe UI", sans-serif;
}

.ap-page {
  color: var(--ap-ink);
  font-family: var(--ap-body);
  background: var(--ap-paper);
  overflow-x: hidden;
}

/* —— Hero: one composition, photo full-bleed —— */
.ap-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background:
    radial-gradient(900px 480px at 12% 18%, rgba(232, 148, 10, 0.16), transparent 55%),
    linear-gradient(145deg, #05101d 0%, #0a2748 48%, #123a66 100%);
  color: #fff;
}

.ap-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 80px);
  max-width: 720px;
}

.ap-hero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ap-hero__crumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ap-hero__crumb a:hover {
  color: var(--ap-amber);
}

.ap-hero__role {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ap-amber);
}

.ap-hero__name {
  margin: 0 0 18px;
  font-family: var(--ap-display);
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}

.ap-hero__lead {
  margin: 0 0 32px;
  max-width: 34ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.ap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ap-btn--primary {
  background: linear-gradient(90deg, var(--ap-amber-hot), var(--ap-amber));
  color: #0b1728;
}

.ap-btn--primary:hover {
  transform: translateY(-2px);
  color: #0b1728;
}

.ap-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ap-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.ap-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ap-hero__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.ap-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.06);
  animation: ap-photo-settle 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ap-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 16, 29, 0.55) 0%, rgba(5, 16, 29, 0.08) 42%, transparent 70%);
  pointer-events: none;
}

.ap-hero__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(232, 148, 10, 0.22);
  filter: blur(70px);
  left: 8%;
  bottom: 12%;
  pointer-events: none;
  animation: ap-glow 4.5s ease-in-out infinite alternate;
}

@keyframes ap-photo-settle {
  to { transform: scale(1); }
}

@keyframes ap-glow {
  from { opacity: 0.55; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-12px); }
}

.ap-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: ap-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ap-reveal--1 { animation-delay: 0.08s; }
.ap-reveal--2 { animation-delay: 0.18s; }
.ap-reveal--3 { animation-delay: 0.28s; }
.ap-reveal--4 { animation-delay: 0.4s; }

@keyframes ap-rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ap-hero__media img,
  .ap-hero__glow,
  .ap-reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* —— Bio —— */
.ap-bio {
  padding: clamp(64px, 10vw, 112px) 0;
  background:
    linear-gradient(180deg, #fff 0%, var(--ap-paper) 100%);
}

.ap-bio__grid {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.ap-bio__aside {
  position: sticky;
  top: 100px;
}

.ap-bio__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ap-amber-hot);
}

.ap-bio__aside-title {
  margin: 0;
  font-family: var(--ap-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--ap-navy);
}

.ap-bio__body {
  max-width: 68ch;
}

.ap-bio__body p {
  margin: 0 0 1.35em;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.75;
  color: var(--ap-muted);
  font-weight: 500;
}

.ap-bio__body p:last-child {
  margin-bottom: 0;
}

.ap-bio__body p:first-of-type {
  color: var(--ap-ink);
  font-size: clamp(1.15rem, 1.55vw, 1.32rem);
  line-height: 1.65;
}

/* —— Focus —— */
.ap-focus {
  padding: 0 0 clamp(72px, 10vw, 120px);
  background: var(--ap-paper);
}

.ap-focus__inner {
  border-top: 1px solid var(--ap-line);
  padding-top: clamp(40px, 6vw, 64px);
}

.ap-focus__head {
  margin: 0 0 28px;
  max-width: 28ch;
  font-family: var(--ap-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: var(--ap-navy);
}

.ap-focus__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ap-line);
}

.ap-focus__list li {
  padding: 28px 22px 8px 0;
  border-bottom: 1px solid var(--ap-line);
  border-right: 1px solid var(--ap-line);
}

.ap-focus__list li:nth-child(4n) {
  border-right: 0;
  padding-right: 0;
}

.ap-focus__list strong {
  display: block;
  font-family: var(--ap-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ap-ink);
  margin-bottom: 8px;
}

.ap-focus__list span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ap-muted);
  max-width: 28ch;
}

/* —— CTA band —— */
.ap-cta {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--ap-navy);
  color: #fff;
  overflow: hidden;
}

.ap-cta::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: rgba(232, 148, 10, 0.18);
  filter: blur(40px);
  pointer-events: none;
}

.ap-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.ap-cta__title {
  margin: 0 0 10px;
  font-family: var(--ap-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  max-width: 16ch;
}

.ap-cta__text {
  margin: 0;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
  .ap-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ap-hero__media {
    order: -1;
    min-height: 58vw;
    max-height: 480px;
  }

  .ap-hero__media::after {
    background: linear-gradient(180deg, transparent 35%, rgba(5, 16, 29, 0.75) 100%);
  }

  .ap-hero__copy {
    padding-top: 36px;
    padding-bottom: 56px;
    max-width: none;
  }

  .ap-bio__grid {
    grid-template-columns: 1fr;
  }

  .ap-bio__aside {
    position: static;
  }

  .ap-focus__list {
    grid-template-columns: 1fr 1fr;
  }

  .ap-focus__list li:nth-child(4n) {
    border-right: 1px solid var(--ap-line);
    padding-right: 22px;
  }

  .ap-focus__list li:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .ap-hero__media {
    min-height: 72vw;
  }

  .ap-focus__list {
    grid-template-columns: 1fr;
  }

  .ap-focus__list li,
  .ap-focus__list li:nth-child(2n),
  .ap-focus__list li:nth-child(4n) {
    border-right: 0;
    padding-right: 0;
  }

  .ap-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ap-btn {
    justify-content: center;
  }
}
