  @font-face { font-family: 'Avenir Next'; src: local('Avenir Next'), local('AvenirNext-Regular'); font-weight: 400; }
  @font-face { font-family: 'Avenir Next'; src: local('Avenir Next Medium'), local('AvenirNext-Medium'); font-weight: 500; }
  @font-face { font-family: 'Avenir Next'; src: local('Avenir Next Demi Bold'), local('AvenirNext-DemiBold'); font-weight: 600; }
  @font-face { font-family: 'Avenir Next'; src: local('Avenir Next Bold'), local('AvenirNext-Bold'); font-weight: 700; }

  /* ── BRAND TOKENS ── */
  :root {
    --baywatch-red: #D20000;
    --baywatch-red-hover: #B00000;
    --dusk: #231F20;
    --sandstone: #786E64;
    --sandy-beach: #A6988A;
    --coin-gold: #C4A24E;
    --white: #FFFFFF;
    --off-white: #F4FAFF;
    --sandstone-light: #F0ECE8;
    --light-gray: #E8E4E0;
    --border-light: #E0DCD8;
    --font-body: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --nav-height: 85px;
    --container-max: 1200px;
  }

  /* ── HERO BANNER ── */
  .hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: var(--sandstone-light);
  }
  .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-title {
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 42px;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    line-height: 1.1;
    text-transform: lowercase;
  }

  /* ── PROFILE SECTION ── */
  .profile-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: -60px;
    position: relative;
    z-index: 10;
  }
  .profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--sandstone-light);
  }
  /* Logo variant — for partners using a logo instead of a headshot */
  .profile-avatar.is-logo {
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
  }
  .profile-body {
    padding-top: 72px;
  }

  /* ── SOCIAL / AFFILIATE LINKS ── */
  .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }
  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sandstone-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--sandstone);
    transition: background 0.2s, color 0.2s;
  }
  .social-link:hover {
    background: var(--dusk);
    color: var(--white);
  }
  .social-link svg { width: 16px; height: 16px; fill: currentColor; }

  /* ── BIO TEXT ── */
  .bio-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--dusk);
    max-width: 640px;
  }
  .bio-text a {
    color: var(--baywatch-red);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
  }
  .bio-text a:hover { color: var(--baywatch-red-hover); }

  /* ── PARTNER BADGE (small "affiliate partner" label) ── */
  .partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sandy-beach);
    margin-bottom: 14px;
  }
  .partner-badge svg { width: 14px; height: 14px; fill: var(--sandy-beach); }

  /* ── TABS (videos only — no photos tab) ── */
  .content-tabs {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding: 0 24px;
  }
  .tab-bar {
    display: flex;
    border-bottom: 2px solid var(--light-gray);
  }
  .tab {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--sandstone);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
  }
  .tab.active {
    color: var(--white);
    background: var(--baywatch-red);
    border-bottom-color: var(--baywatch-red);
  }
  .tab:not(.active):hover {
    color: var(--dusk);
  }

  /* ── VIDEO GRID ── */
  .video-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .video-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dusk);
    transition: box-shadow 0.2s;
  }
  .video-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--sandstone-light);
    overflow: hidden;
  }
  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .thumb-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 0;
    color: var(--white);
  }
  .thumb-badge.vip { background: var(--baywatch-red); }
  .thumb-badge.premium { background: var(--dusk); }
  .thumb-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 2px;
  }
  .video-info { padding: 14px 16px; }
  .video-cats {
    font-size: 11px;
    font-weight: 500;
    color: var(--sandy-beach);
    margin-bottom: 6px;
  }
  .video-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dusk);
  }

  /* ── "MORE PARTNERS" STRIP (replaces "more models") ── */
  .more-partners {
    max-width: var(--container-max);
    margin: 48px auto 0;
    padding: 0 24px 48px;
    border-top: 1px solid var(--light-gray);
    padding-top: 32px;
  }
  .more-partners-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--dusk);
    margin-bottom: 20px;
    text-transform: lowercase;
  }
  .partners-strip {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .partner-card {
    flex-shrink: 0;
    text-align: center;
    text-decoration: none;
    width: 140px;
  }
  .partner-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 2px solid var(--light-gray);
    background: var(--sandstone-light);
  }
  .partner-card-avatar.is-logo {
    object-fit: cover;
    background: var(--white);
  }
  .partner-card-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--dusk);
    line-height: 1.2;
    text-transform: lowercase;
  }
  .partner-card-snippet {
    font-size: 12px;
    color: var(--sandy-beach);
    margin-top: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .hero-banner { height: 280px; }
    .hero-title { font-size: 28px; }
    .profile-section { flex-direction: column; align-items: center; text-align: center; margin-top: -50px; }
    .profile-avatar { width: 140px; height: 140px; }
    .profile-body { padding-top: 12px; }
    .social-links { justify-content: center; }
    .bio-text { text-align: center; }
    .partner-badge { justify-content: center; }
    .video-grid { grid-template-columns: 1fr; padding: 16px; }
    .tab { font-size: 11px; letter-spacing: 0.5px; }
  }

  .placeholder-img {
    background: linear-gradient(135deg, var(--sandstone-light) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sandy-beach);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
