.host-profile-page {
  background: var(--ivory-50);
}

.host-profile-hero {
  color: var(--ivory-50);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(216, 184, 102, .24);
}

.host-profile-hero-inner {
  min-height: 650px;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
}

.host-profile-copy .breadcrumbs {
  margin-bottom: 34px;
}

.host-profile-copy .breadcrumbs ol {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted-light);
  font-size: .78rem;
}

.host-profile-copy .breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(216, 184, 102, .72);
}

.host-profile-copy .breadcrumbs a {
  text-decoration: none;
}

.host-profile-copy h1 {
  max-width: 760px;
  margin: 13px 0 22px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  font-weight: 500;
  line-height: .89;
  letter-spacing: -.055em;
}

.host-profile-role {
  max-width: 680px;
  margin: 0;
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.host-profile-intro {
  max-width: 690px;
  margin: 22px 0 0;
  color: #c3cede;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.host-profile-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.host-profile-links a {
  color: var(--ivory-100);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration-color: rgba(216, 184, 102, .55);
  text-underline-offset: 5px;
}

.host-profile-portrait {
  position: relative;
  isolation: isolate;
  align-self: end;
  justify-self: end;
  width: min(100%, 520px);
}

.host-profile-portrait::before {
  content: "";
  position: absolute;
  inset: 13% -7% 8% 13%;
  border: 1px solid rgba(216, 184, 102, .26);
  pointer-events: none;
}

.host-profile-portrait::after {
  content: "";
  position: absolute;
  inset: 4% -12% -3% 1%;
  z-index: -1;
  pointer-events: none;
  opacity: .7;
  background:
    radial-gradient(ellipse at 52% 42%, rgba(43, 91, 137, .38), transparent 58%),
    radial-gradient(ellipse at 68% 76%, rgba(216, 184, 102, .09), transparent 46%);
  animation: host-portrait-ambient 15s ease-in-out infinite alternate;
}

.host-profile-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.28));
}

.host-profile-caption {
  position: relative;
  z-index: 2;
  margin-top: -7px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-light);
  border-top: 1px solid rgba(216, 184, 102, .32);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.host-profile-caption::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 38%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-300), rgba(234, 215, 158, .18));
  transform-origin: left;
  animation: host-caption-line .85s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes host-portrait-ambient {
  from { opacity: .56; transform: translate3d(-3px, 2px, 0) scale(.99); }
  to { opacity: .78; transform: translate3d(4px, -3px, 0) scale(1.015); }
}

@keyframes host-caption-line {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.host-profile-body {
  padding: 88px 0 104px;
}

.host-profile-grid {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 800px);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.host-profile-index {
  position: sticky;
  top: 108px;
  border-top: 1px solid var(--gold-500);
}

.host-profile-index strong {
  display: block;
  padding: 16px 0 13px;
  color: var(--navy-950);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.host-profile-index a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line-light);
  font-size: .88rem;
  text-decoration: none;
}

.host-profile-lede {
  padding-bottom: 42px;
  margin: 0 0 50px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.45;
}

.host-profile-section {
  scroll-margin-top: 108px;
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line-light);
}

.host-profile-section:last-child {
  margin-bottom: 0;
}

.host-profile-section > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-600);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.host-profile-section h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.host-profile-section p,
.host-profile-section li {
  color: #3d4b5e;
}

.host-profile-section p {
  margin: 0 0 16px;
}

.host-principle-large {
  padding: 30px 0 8px 28px;
  margin: 30px 0 0;
  border-left: 2px solid var(--gold-500);
}

.host-principle-large p {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-style: italic;
  line-height: 1.28;
}

.host-principle-large footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.host-profile-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.host-profile-note {
  padding: 22px 24px;
  margin-top: 26px;
  color: #405066;
  border: 1px solid var(--line-light);
  background: #fbf7ee;
}

@media (max-width: 920px) {
  .host-profile-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 32px;
  }

  .host-profile-portrait {
    justify-self: center;
    width: min(78vw, 500px);
  }

  .host-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .host-profile-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .host-profile-index strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .host-profile-hero-inner {
    padding: 46px 0 36px;
  }

  .host-profile-copy h1 {
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  .host-profile-links {
    gap: 12px 18px;
  }

  .host-profile-portrait {
    width: min(92vw, 440px);
  }

  .host-profile-body {
    padding: 58px 0 74px;
  }

  .host-profile-index {
    grid-template-columns: 1fr;
  }

  .host-principle-large {
    padding-left: 18px;
  }
}

@media (max-width: 680px), (pointer: coarse) {
  .host-profile-portrait::after {
    inset: 8% -4% 1%;
    opacity: .58;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .host-profile-portrait::after,
  .host-profile-caption::after {
    animation: none;
    transform: none;
  }
}
