.page-header {
  position: relative;
  height: 549px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: var(--navbar-height);
}

.page-header--tall {
  height: 549px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 0;
}

.page-header .container,
.page-header-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  padding: var(--spacing-xxl) var(--spacing-lg);
}

.page-header h1,
.page-header-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-header-title--large {
  font-size: var(--fs-5xl);
  font-style: italic;
  line-height: 1.2;
}

.page-header-title--italic {
  font-style: italic;
  font-size: var(--fs-6xl) !important;
  line-height: 1.2;
  letter-spacing: 1.8px;
  padding-top: 0.1em;
  padding-right: 0.08em;
}

.page-header p,
.page-header-subtitle {
  font-size: var(--fs-xl);
  color: var(--color-neutral);
  font-weight: var(--fw-regular);
  max-width: 829px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: 1px;
}

.page-header-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-highlight);
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.page-header-subtitle-large {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-neutral);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  letter-spacing: 1.8px;
  max-width: 922px;
}

.page-header-subtitle--upper {
  text-transform: uppercase;
  font-size: var(--fs-base);
  letter-spacing: 1px;
}

.page-header-badge {
  display: inline-block;
  padding: 6px var(--spacing-md);
  border: 1px solid rgba(192, 215, 139, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-highlight);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--spacing-md);
  background: rgba(192, 215, 139, 0.06);
}

.page-header-badge--gold {
  color: var(--color-gold);
  border-color: rgba(212, 168, 83, 0.4);
  background: rgba(212, 168, 83, 0.08);
}

/* Mobile — Figma 428px reference */
@media (max-width: 768px) {
  .page-header,
  .page-header--tall {
    height: auto;
    min-height: 220px;
    padding: 46px 0 0;
  }

  .page-header .container,
  .page-header-content {
    padding: 32px 24px;
  }

  .page-header h1,
  .page-header-title {
    font-size: 32px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .page-header-title--large {
    font-size: 36px;
    line-height: 1.2;
  }

  .page-header-title--italic {
    font-size: 40px !important;
    line-height: 1.2;
    letter-spacing: 0.8px;
    padding-top: 0.08em;
    padding-right: 0.06em;
  }

  .page-header p,
  .page-header-subtitle {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.5px;
  }

  .page-header-label {
    font-size: 24px;
    line-height: 1.2;
  }

  .page-header-subtitle-large {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.8px;
  }

  .page-header-subtitle--upper {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .page-header-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
}

