  .salem-project-page,
  .salem-project-page * {
    box-sizing: border-box;
  }

  .salem-project-page {
    --black: #080808;
    --white: #f4f4f2;
    --paper: #ffffff;
    --ink: #111111;
    --muted: rgba(255, 255, 255, .68);
    --soft: rgba(17, 17, 17, .74);
    --paper-line: rgba(17, 17, 17, .1);
    --display: "Playfair Display", Georgia, serif;
    --body: "DM Sans", Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    overflow-x: hidden;
  }

  .salem-loading,
  .salem-error {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: 32px;
    color: rgba(255, 255, 255, .7);
    font: 500 16px/1.4 var(--body);
    text-align: center;
  }

  .salem-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10;
    min-height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, .58), rgba(0, 0, 0, .18)),
      rgba(8, 8, 8, .22);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .salem-logo,
  .salem-nav a,
  .salem-link-btn {
    color: inherit;
    text-decoration: none;
  }

  .salem-logo {
    display: inline-flex;
    align-items: center;
    width: 104px;
    height: 32px;
    flex: 0 0 auto;
  }

  .salem-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .salem-nav {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .salem-nav a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .82);
  }

  .salem-hero {
    position: relative;
    min-height: 100svh;
    background: #050505;
    color: var(--white);
    overflow: hidden;
    display: grid;
    align-items: end;
    padding: 120px 56px 70px;
  }

  .salem-hero-media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
  }

  .salem-hero-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    transform: translate(-50%, -50%);
    border: 0;
    opacity: 0;
    transition: opacity .3s ease;
  }

  .salem-hero.is-playing .salem-hero-media iframe {
    opacity: 1;
  }

  .salem-shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, .45), rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .78)),
      linear-gradient(to right, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .36));
  }

  .salem-hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
  }

  .salem-eyebrow {
    margin: 0 0 14px;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .18em;
  }

  .salem-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(46px, 8vw, 104px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: 0;
    white-space: nowrap;
    max-width: calc(100vw - 48px);
  }

  .salem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
    align-items: center;
  }

  .salem-play-btn,
  .salem-link-btn {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }

  .salem-play-btn[hidden],
  .salem-link-btn[hidden] {
    display: none;
  }

  .salem-play-icon {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
  }

  .salem-info {
    background: var(--paper);
    color: var(--ink);
    padding: 72px;
  }

  .salem-info-inner {
    max-width: 1500px;
  }

  .salem-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 64px;
    padding-bottom: 40px;
    margin-bottom: 52px;
    border-bottom: 1px solid var(--paper-line);
  }

  .salem-meta-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
  }

  .salem-meta-label,
  .salem-section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .45);
  }

  .salem-meta-value {
    font-size: 22px;
    line-height: 1.35;
  }

  .salem-meta-value.is-highlight {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.2;
  }

  .salem-description {
    max-width: 1100px;
    margin: 18px 0 0;
    color: var(--soft);
    font-size: 24px;
    line-height: 1.75;
  }

  .salem-section {
    margin-top: 52px;
  }

  .salem-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
  }

  .salem-tag {
    border: 1px solid var(--paper-line);
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--soft);
    background: #fff;
    font-size: 16px;
  }

  @media (max-width: 900px) {
    .salem-header {
      height: 64px;
      padding: 0 18px;
    }

    .salem-nav {
      display: none;
    }

    .salem-hero {
      padding: 104px 24px 52px;
    }

    .salem-title {
      font-size: clamp(38px, 12vw, 68px);
      white-space: normal;
      max-width: 100%;
    }

    .salem-info {
      padding: 44px 24px 56px;
    }

    .salem-meta-row {
      gap: 28px 36px;
    }

    .salem-meta-value {
      font-size: 18px;
    }

    .salem-meta-value.is-highlight {
      font-size: 22px;
    }

    .salem-description {
      font-size: 19px;
      line-height: 1.65;
    }
  }