/**
 * ============================================================================
 *  HOME PAGE
 * ============================================================================
 *  Hero (full-bleed portrait), bio panel on blush, and two "path" cards
 *  that route into the Sports / Art views.
 * ============================================================================
 */

/* -------------------------------------------------------------------------- */
/*  HERO                                                                       */
/* -------------------------------------------------------------------------- */
.nh-hero {
  position: relative;
  overflow: hidden;
  background: var(--nh-cream);
}

.nh-hero__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.95;
}

.nh-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 245, 243, 0.04) 0%,
    rgba(250, 245, 243, 0.3) 52%,
    rgba(250, 245, 243, 0.82) 86%,
    var(--nh-cream) 100%
  );
}

.nh-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  min-height: clamp(420px, 74vh, 664px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: clamp(64px, 12vw, 120px) clamp(20px, 5vw, 44px) clamp(16px, 3vw, 34px);
}

.nh-hero__card {
  background: rgba(250, 245, 243, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 26px;
  padding: clamp(18px, 3vw, 30px) clamp(24px, 4.5vw, 48px);
}

.nh-hero__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(40px, 8.4vw, 76px);
  line-height: 1.03;
  color: var(--nh-ink);
  margin-bottom: 16px;
}

.nh-hero__sub {
  font-size: clamp(15px, 2.3vw, 20px);
  color: #6b5258;
  max-width: 540px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*  BIO                                                                        */
/* -------------------------------------------------------------------------- */
.nh-bio {
  background: var(--nh-blush);
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 44px);
}

.nh-bio__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.nh-bio__media {
  flex: 1 1 300px;
  min-width: 260px;
}

.nh-bio__portrait {
  overflow: hidden;
  width: 100%;
  height: clamp(360px, 58vw, 500px);
  box-shadow: var(--nh-shadow-hero);
  border-radius: 22px;
}

.nh-bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nh-bio__copy {
  flex: 1 1 360px;
  min-width: 280px;
}

.nh-bio__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12;
  color: var(--nh-ink);
  margin-bottom: 20px;
}

.nh-bio__p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--nh-muted);
  margin-bottom: 15px;
}

.nh-bio__p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
/*  PATH CARDS                                                                 */
/* -------------------------------------------------------------------------- */
.nh-path {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 44px);
}

.nh-path__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.nh-path__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--nh-ink);
}

.nh-path__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.nh-path-card {
  text-align: start;
  background: #fff;
  border: 1px solid rgba(58, 47, 52, 0.08);
  border-radius: 24px;
  padding: 14px 14px 26px;
  cursor: pointer;
  box-shadow: var(--nh-shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nh-path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nh-shadow-lift);
}

.nh-path-card__img {
  overflow: hidden;
  width: 100%;
  height: clamp(190px, 30vw, 250px);
  margin-bottom: 20px;
  border-radius: 16px;
}

.nh-path-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nh-path-card__body {
  padding: 0 12px;
}

.nh-path-card__title {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--nh-ink);
  margin-bottom: 8px;
}

.nh-path-card__desc {
  font-size: 14.5px;
  color: var(--nh-muted-2);
  margin-bottom: 16px;
}
